diff options
author | Michael Vogt <mvo@debian.org> | 2014-06-12 08:36:58 +0200 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2014-06-12 08:36:58 +0200 |
commit | cfc7f735774ba30dbee1897248f8dfedf0229a4c (patch) | |
tree | b4e0ac29a6b398045a803e890f5cdabcca189d6a | |
parent | a0187f0f82a184b850b05b62e5a59b6a2055a506 (diff) | |
parent | 7701680af12a2c1a65121533c6ebcd635c013c25 (diff) |
Merge tag '1.0.1ubuntu2' into ubuntu/trusty
Conflicts:
configure.ac
debian/changelog
debian/control
test/integration/framework
346 files changed, 38353 insertions, 33784 deletions
diff --git a/.gitignore b/.gitignore index 69a229c3e..488682ee7 100644 --- a/.gitignore +++ b/.gitignore @@ -35,9 +35,10 @@ /cmdline/apt-key /doc/apt-vendor.ent /doc/examples/sources.list +/debian/apt.install /debian/libapt-pkg*.install /debian/libapt-inst*.install /debian/libapt-pkg-dev.install /vendor/current -/vendor/debian/sources.list -/vendor/ubuntu/sources.list +/vendor/*/sources.list +/vendor/*/makefile.auto diff --git a/apt-inst/contrib/arfile.cc b/apt-inst/contrib/arfile.cc index 77dbc55d6..905110781 100644 --- a/apt-inst/contrib/arfile.cc +++ b/apt-inst/contrib/arfile.cc @@ -21,7 +21,9 @@ #include <apt-pkg/fileutl.h> #include <apt-pkg/error.h> -#include <stdlib.h> +#include <string.h> +#include <sys/types.h> +#include <string> #include <apti18n.h> /*}}}*/ diff --git a/apt-inst/contrib/extracttar.cc b/apt-inst/contrib/extracttar.cc index 41301d1a6..0ba3f0521 100644 --- a/apt-inst/contrib/extracttar.cc +++ b/apt-inst/contrib/extracttar.cc @@ -23,9 +23,11 @@ #include <apt-pkg/error.h> #include <apt-pkg/strutl.h> #include <apt-pkg/configuration.h> -#include <apt-pkg/macros.h> +#include <apt-pkg/fileutl.h> -#include <stdlib.h> +#include <string.h> +#include <algorithm> +#include <string> #include <unistd.h> #include <signal.h> #include <fcntl.h> @@ -120,7 +122,7 @@ bool ExtractTar::StartGzip() int Pipes[2]; if (pipe(Pipes) != 0) return _error->Errno("pipe",_("Failed to create pipes")); - + // Fork off the process GZPid = ExecFork(); @@ -136,9 +138,9 @@ bool ExtractTar::StartGzip() dup2(Fd,STDERR_FILENO); close(Fd); SetCloseExec(STDOUT_FILENO,false); - SetCloseExec(STDIN_FILENO,false); + SetCloseExec(STDIN_FILENO,false); SetCloseExec(STDERR_FILENO,false); - + const char *Args[3]; string confvar = string("dir::bin::") + DecompressProg; string argv0 = _config->Find(confvar.c_str(),DecompressProg.c_str()); diff --git a/apt-inst/deb/debfile.cc b/apt-inst/deb/debfile.cc index 8f2a83547..a63cb6716 100644 --- a/apt-inst/deb/debfile.cc +++ b/apt-inst/deb/debfile.cc @@ -21,11 +21,17 @@ #include <apt-pkg/debfile.h> #include <apt-pkg/extracttar.h> #include <apt-pkg/error.h> -#include <apt-pkg/deblistparser.h> #include <apt-pkg/aptconfiguration.h> - +#include <apt-pkg/arfile.h> +#include <apt-pkg/dirstream.h> +#include <apt-pkg/fileutl.h> +#include <apt-pkg/tagfile.h> + +#include <string.h> +#include <string> +#include <vector> #include <sys/stat.h> -#include <unistd.h> + #include <apti18n.h> /*}}}*/ @@ -196,7 +202,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, +bool debDebFile::MemControlExtract::Process(Item &/*Itm*/,const unsigned char *Data, unsigned long Size,unsigned long Pos) { memcpy(Control + Pos, Data,Size); diff --git a/apt-inst/deb/debfile.h b/apt-inst/deb/debfile.h index ecef71d21..880bcf6c5 100644 --- a/apt-inst/deb/debfile.h +++ b/apt-inst/deb/debfile.h @@ -27,11 +27,15 @@ #include <apt-pkg/arfile.h> #include <apt-pkg/dirstream.h> #include <apt-pkg/tagfile.h> -#include <apt-pkg/pkgcache.h> + +#include <string> #ifndef APT_8_CLEANER_HEADERS #include <apt-pkg/md5.h> #endif +#ifndef APT_10_CLEANER_HEADERS +#include <apt-pkg/pkgcache.h> +#endif class FileFd; diff --git a/apt-inst/dirstream.cc b/apt-inst/dirstream.cc index e06c30a57..39ebb3bb4 100644 --- a/apt-inst/dirstream.cc +++ b/apt-inst/dirstream.cc @@ -18,7 +18,6 @@ #include <fcntl.h> #include <sys/stat.h> -#include <sys/types.h> #include <sys/time.h> #include <errno.h> #include <unistd.h> @@ -110,7 +109,7 @@ bool pkgDirStream::FinishedFile(Item &Itm,int Fd) // DirStream::Fail - Failed processing a file /*{{{*/ // --------------------------------------------------------------------- /* */ -bool pkgDirStream::Fail(Item &Itm,int Fd) +bool pkgDirStream::Fail(Item &/*Itm*/, int Fd) { if (Fd < 0) return true; diff --git a/apt-inst/dirstream.h b/apt-inst/dirstream.h index 9d1af2188..1be2688a1 100644 --- a/apt-inst/dirstream.h +++ b/apt-inst/dirstream.h @@ -49,8 +49,8 @@ class pkgDirStream virtual bool DoItem(Item &Itm,int &Fd); 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;}; + virtual bool Process(Item &/*Itm*/,const unsigned char * /*Data*/, + unsigned long /*Size*/,unsigned long /*Pos*/) {return true;}; virtual ~pkgDirStream() {}; }; diff --git a/apt-inst/extract.cc b/apt-inst/extract.cc index b3dfccfc6..b60784450 100644 --- a/apt-inst/extract.cc +++ b/apt-inst/extract.cc @@ -50,13 +50,20 @@ #include <apt-pkg/error.h> #include <apt-pkg/debversion.h> #include <apt-pkg/fileutl.h> +#include <apt-pkg/dirstream.h> +#include <apt-pkg/filelist.h> +#include <apt-pkg/mmap.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> +#include <string.h> +#include <string> #include <sys/stat.h> #include <stdio.h> -#include <unistd.h> #include <errno.h> #include <dirent.h> #include <iostream> + #include <apti18n.h> /*}}}*/ using namespace std; @@ -79,7 +86,7 @@ pkgExtract::pkgExtract(pkgFLCache &FLCache,pkgCache::VerIterator Ver) : // Extract::DoItem - Handle a single item from the stream /*{{{*/ // --------------------------------------------------------------------- /* This performs the setup for the extraction.. */ -bool pkgExtract::DoItem(Item &Itm,int &Fd) +bool pkgExtract::DoItem(Item &Itm, int &/*Fd*/) { /* Strip any leading/trailing /s from the filename, then copy it to the temp buffer and re-apply the leading / We use a class variable @@ -253,7 +260,7 @@ bool pkgExtract::DoItem(Item &Itm,int &Fd) // Extract::Finished - Sequence finished, erase the temp files /*{{{*/ // --------------------------------------------------------------------- /* */ -bool pkgExtract::Finished() +APT_CONST bool pkgExtract::Finished() { return true; } diff --git a/apt-inst/extract.h b/apt-inst/extract.h index 7143fa409..8ad9ac629 100644 --- a/apt-inst/extract.h +++ b/apt-inst/extract.h @@ -17,11 +17,12 @@ #ifndef PKGLIB_EXTRACT_H #define PKGLIB_EXTRACT_H - - #include <apt-pkg/dirstream.h> #include <apt-pkg/filelist.h> #include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> + +#include <string> class pkgExtract : public pkgDirStream { diff --git a/apt-inst/filelist.cc b/apt-inst/filelist.cc index defc4f4df..4dbc4a2d7 100644 --- a/apt-inst/filelist.cc +++ b/apt-inst/filelist.cc @@ -39,8 +39,6 @@ #include <apt-pkg/error.h> #include <apt-pkg/strutl.h> -#include <stdio.h> -#include <stdlib.h> #include <string.h> #include <iostream> #include <apti18n.h> @@ -87,7 +85,7 @@ pkgFLCache::Header::Header() // FLCache::Header::CheckSizes - Check if the two headers have same *sz /*{{{*/ // --------------------------------------------------------------------- /* Compare to make sure we are matching versions */ -bool pkgFLCache::Header::CheckSizes(Header &Against) const +APT_PURE bool pkgFLCache::Header::CheckSizes(Header &Against) const { if (HeaderSz == Against.HeaderSz && NodeSz == Against.NodeSz && @@ -355,7 +353,7 @@ pkgFLCache::NodeIterator pkgFLCache::GetNode(const char *Name, // --------------------------------------------------------------------- /* This is one of two hashing functions. The other is inlined into the GetNode routine. */ -pkgFLCache::Node *pkgFLCache::HashNode(NodeIterator const &Nde) +APT_PURE pkgFLCache::Node *pkgFLCache::HashNode(NodeIterator const &Nde) { // Hash the node unsigned long HashPos = 0; @@ -572,7 +570,7 @@ bool pkgFLCache::AddConfFile(const char *Name,const char *NameEnd, // --------------------------------------------------------------------- /* Since the package pointer is indirected in all sorts of interesting ways this is used to get a pointer to the owning package */ -pkgFLCache::Package *pkgFLCache::NodeIterator::RealPackage() const +APT_PURE pkgFLCache::Package *pkgFLCache::NodeIterator::RealPackage() const { if (Nde->Pointer == 0) return 0; diff --git a/apt-inst/filelist.h b/apt-inst/filelist.h index 0405d61df..8c4891bcf 100644 --- a/apt-inst/filelist.h +++ b/apt-inst/filelist.h @@ -42,25 +42,25 @@ class pkgFLCache struct Package; struct Diversion; struct ConfFile; - + class NodeIterator; class DirIterator; class PkgIterator; class DiverIterator; - + protected: std::string CacheFile; DynamicMMap ⤅ map_ptrloc LastTreeLookup; unsigned long LastLookupSize; - + // Helpers for the addition algorithms map_ptrloc TreeLookup(map_ptrloc *Base,const char *Text,const char *TextEnd, unsigned long Size,unsigned int *Count = 0, bool Insert = false); - + public: - + // Pointers to the arrays of items Header *HeaderP; Node *NodeP; @@ -70,10 +70,10 @@ class pkgFLCache ConfFile *ConfP; char *StrP; unsigned char *AnyP; - + // Quick accessors Node *FileHash; - + // Accessors Header &Head() {return *HeaderP;}; void PrintTree(map_ptrloc Base,unsigned long Size); @@ -89,7 +89,7 @@ class pkgFLCache void DropNode(map_ptrloc Node); inline DiverIterator DiverBegin(); - + // Diversion control void BeginDiverLoad(); void FinishDiverLoad(); @@ -97,7 +97,7 @@ class pkgFLCache const char *To); bool AddConfFile(const char *Name,const char *NameEnd, PkgIterator const &Owner,const unsigned char *Sum); - + pkgFLCache(DynamicMMap &Map); // ~pkgFLCache(); }; @@ -109,7 +109,7 @@ struct pkgFLCache::Header short MajorVersion; short MinorVersion; bool Dirty; - + // Size of structure values unsigned HeaderSz; unsigned NodeSz; @@ -117,7 +117,7 @@ struct pkgFLCache::Header unsigned PackageSz; unsigned DiversionSz; unsigned ConfFileSz; - + // Structure Counts; unsigned int NodeCount; unsigned int DirCount; @@ -126,13 +126,13 @@ struct pkgFLCache::Header unsigned int ConfFileCount; unsigned int HashSize; unsigned long UniqNodes; - + // Offsets map_ptrloc FileHash; map_ptrloc DirTree; map_ptrloc Packages; map_ptrloc Diversions; - + /* Allocation pools, there should be one of these for each structure excluding the header */ DynamicMMap::Pool Pools[5]; @@ -177,7 +177,7 @@ struct pkgFLCache::Diversion map_ptrloc OwnerPkg; // Package map_ptrloc DivertFrom; // Node map_ptrloc DivertTo; // String - + map_ptrloc Next; // Diversion unsigned long Flags; @@ -194,120 +194,120 @@ class pkgFLCache::PkgIterator { Package *Pkg; pkgFLCache *Owner; - + public: - + inline bool end() const {return Owner == 0 || Pkg == Owner->PkgP?true:false;} - + // Accessors - inline Package *operator ->() {return Pkg;}; - inline Package const *operator ->() const {return Pkg;}; - inline Package const &operator *() const {return *Pkg;}; - inline operator Package *() {return Pkg == Owner->PkgP?0:Pkg;}; - inline operator Package const *() const {return Pkg == Owner->PkgP?0:Pkg;}; - - inline unsigned long Offset() const {return Pkg - Owner->PkgP;}; - inline const char *Name() const {return Pkg->Name == 0?0:Owner->StrP + Pkg->Name;}; + inline Package *operator ->() {return Pkg;} + inline Package const *operator ->() const {return Pkg;} + inline Package const &operator *() const {return *Pkg;} + inline operator Package *() {return Pkg == Owner->PkgP?0:Pkg;} + inline operator Package const *() const {return Pkg == Owner->PkgP?0:Pkg;} + + inline unsigned long Offset() const {return Pkg - Owner->PkgP;} + inline const char *Name() const {return Pkg->Name == 0?0:Owner->StrP + Pkg->Name;} inline pkgFLCache::NodeIterator Files() const; - PkgIterator() : Pkg(0), Owner(0) {}; - PkgIterator(pkgFLCache &Owner,Package *Trg) : Pkg(Trg), Owner(&Owner) {}; + PkgIterator() : Pkg(0), Owner(0) {} + PkgIterator(pkgFLCache &Owner,Package *Trg) : Pkg(Trg), Owner(&Owner) {} }; class pkgFLCache::DirIterator { Directory *Dir; pkgFLCache *Owner; - + public: - + // Accessors - inline Directory *operator ->() {return Dir;}; - inline Directory const *operator ->() const {return Dir;}; - inline Directory const &operator *() const {return *Dir;}; - inline operator Directory *() {return Dir == Owner->DirP?0:Dir;}; - inline operator Directory const *() const {return Dir == Owner->DirP?0:Dir;}; + inline Directory *operator ->() {return Dir;} + inline Directory const *operator ->() const {return Dir;} + inline Directory const &operator *() const {return *Dir;} + inline operator Directory *() {return Dir == Owner->DirP?0:Dir;} + inline operator Directory const *() const {return Dir == Owner->DirP?0:Dir;} - inline const char *Name() const {return Dir->Name == 0?0:Owner->StrP + Dir->Name;}; + inline const char *Name() const {return Dir->Name == 0?0:Owner->StrP + Dir->Name;} - DirIterator() : Dir(0), Owner(0) {}; - DirIterator(pkgFLCache &Owner,Directory *Trg) : Dir(Trg), Owner(&Owner) {}; + DirIterator() : Dir(0), Owner(0) {} + DirIterator(pkgFLCache &Owner,Directory *Trg) : Dir(Trg), Owner(&Owner) {} }; class pkgFLCache::DiverIterator { Diversion *Diver; pkgFLCache *Owner; - + public: // Iteration - void operator ++(int) {if (Diver != Owner->DiverP) Diver = Owner->DiverP + Diver->Next;}; - inline void operator ++() {operator ++(0);}; - inline bool end() const {return Owner == 0 || Diver == Owner->DiverP;}; + void operator ++(int) {if (Diver != Owner->DiverP) Diver = Owner->DiverP + Diver->Next;} + inline void operator ++() {operator ++(0);} + inline bool end() const {return Owner == 0 || Diver == Owner->DiverP;} // Accessors - inline Diversion *operator ->() {return Diver;}; - inline Diversion const *operator ->() const {return Diver;}; - inline Diversion const &operator *() const {return *Diver;}; - inline operator Diversion *() {return Diver == Owner->DiverP?0:Diver;}; - inline operator Diversion const *() const {return Diver == Owner->DiverP?0:Diver;}; + inline Diversion *operator ->() {return Diver;} + inline Diversion const *operator ->() const {return Diver;} + inline Diversion const &operator *() const {return *Diver;} + inline operator Diversion *() {return Diver == Owner->DiverP?0:Diver;} + inline operator Diversion const *() const {return Diver == Owner->DiverP?0:Diver;} - inline PkgIterator OwnerPkg() const {return PkgIterator(*Owner,Owner->PkgP + Diver->OwnerPkg);}; + inline PkgIterator OwnerPkg() const {return PkgIterator(*Owner,Owner->PkgP + Diver->OwnerPkg);} inline NodeIterator DivertFrom() const; inline NodeIterator DivertTo() const; DiverIterator() : Diver(0), Owner(0) {}; - DiverIterator(pkgFLCache &Owner,Diversion *Trg) : Diver(Trg), Owner(&Owner) {}; + DiverIterator(pkgFLCache &Owner,Diversion *Trg) : Diver(Trg), Owner(&Owner) {} }; class pkgFLCache::NodeIterator { Node *Nde; - enum {NdePkg, NdeHash} Type; + enum {NdePkg, NdeHash} Type; pkgFLCache *Owner; - + public: - + // Iteration - void operator ++(int) {if (Nde != Owner->NodeP) Nde = Owner->NodeP + - (Type == NdePkg?Nde->NextPkg:Nde->Next);}; - inline void operator ++() {operator ++(0);}; - inline bool end() const {return Owner == 0 || Nde == Owner->NodeP;}; + void operator ++(int) {if (Nde != Owner->NodeP) Nde = Owner->NodeP + + (Type == NdePkg?Nde->NextPkg:Nde->Next);} + inline void operator ++() {operator ++(0);} + inline bool end() const {return Owner == 0 || Nde == Owner->NodeP;} // Accessors - inline Node *operator ->() {return Nde;}; - inline Node const *operator ->() const {return Nde;}; - inline Node const &operator *() const {return *Nde;}; - inline operator Node *() {return Nde == Owner->NodeP?0:Nde;}; - inline operator Node const *() const {return Nde == Owner->NodeP?0:Nde;}; - inline unsigned long Offset() const {return Nde - Owner->NodeP;}; - inline DirIterator Dir() const {return DirIterator(*Owner,Owner->DirP + Nde->Dir);}; - inline DiverIterator Diversion() const {return DiverIterator(*Owner,Owner->DiverP + Nde->Pointer);}; - inline const char *File() const {return Nde->File == 0?0:Owner->StrP + Nde->File;}; - inline const char *DirN() const {return Owner->StrP + Owner->DirP[Nde->Dir].Name;}; + inline Node *operator ->() {return Nde;} + inline Node const *operator ->() const {return Nde;} + inline Node const &operator *() const {return *Nde;} + inline operator Node *() {return Nde == Owner->NodeP?0:Nde;} + inline operator Node const *() const {return Nde == Owner->NodeP?0:Nde;} + inline unsigned long Offset() const {return Nde - Owner->NodeP;} + inline DirIterator Dir() const {return DirIterator(*Owner,Owner->DirP + Nde->Dir);} + inline DiverIterator Diversion() const {return DiverIterator(*Owner,Owner->DiverP + Nde->Pointer);} + inline const char *File() const {return Nde->File == 0?0:Owner->StrP + Nde->File;} + inline const char *DirN() const {return Owner->StrP + Owner->DirP[Nde->Dir].Name;} Package *RealPackage() const; - + NodeIterator() : Nde(0), Type(NdeHash), Owner(0) {}; - NodeIterator(pkgFLCache &Owner) : Nde(Owner.NodeP), Type(NdeHash), Owner(&Owner) {}; - NodeIterator(pkgFLCache &Owner,Node *Trg) : Nde(Trg), Type(NdeHash), Owner(&Owner) {}; - NodeIterator(pkgFLCache &Owner,Node *Trg,Package *) : Nde(Trg), Type(NdePkg), Owner(&Owner) {}; + NodeIterator(pkgFLCache &Owner) : Nde(Owner.NodeP), Type(NdeHash), Owner(&Owner) {} + NodeIterator(pkgFLCache &Owner,Node *Trg) : Nde(Trg), Type(NdeHash), Owner(&Owner) {} + NodeIterator(pkgFLCache &Owner,Node *Trg,Package *) : Nde(Trg), Type(NdePkg), Owner(&Owner) {} }; /* Inlines with forward references that cannot be included directly in their respsective classes */ -inline pkgFLCache::NodeIterator pkgFLCache::DiverIterator::DivertFrom() const - {return NodeIterator(*Owner,Owner->NodeP + Diver->DivertFrom);}; +inline pkgFLCache::NodeIterator pkgFLCache::DiverIterator::DivertFrom() const + {return NodeIterator(*Owner,Owner->NodeP + Diver->DivertFrom);} inline pkgFLCache::NodeIterator pkgFLCache::DiverIterator::DivertTo() const - {return NodeIterator(*Owner,Owner->NodeP + Diver->DivertTo);}; + {return NodeIterator(*Owner,Owner->NodeP + Diver->DivertTo);} inline pkgFLCache::NodeIterator pkgFLCache::PkgIterator::Files() const - {return NodeIterator(*Owner,Owner->NodeP + Pkg->Files,Pkg);}; + {return NodeIterator(*Owner,Owner->NodeP + Pkg->Files,Pkg);} inline pkgFLCache::DiverIterator pkgFLCache::DiverBegin() - {return DiverIterator(*this,DiverP + HeaderP->Diversions);}; + {return DiverIterator(*this,DiverP + HeaderP->Diversions);} -inline pkgFLCache::PkgIterator pkgFLCache::GetPkg(const char *Name,bool Insert) - {return GetPkg(Name,Name+strlen(Name),Insert);}; +inline pkgFLCache::PkgIterator pkgFLCache::GetPkg(const char *Name,bool Insert) + {return GetPkg(Name,Name+strlen(Name),Insert);} #endif diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc index 4041d9457..30743addf 100644 --- a/apt-pkg/acquire-item.cc +++ b/apt-pkg/acquire-item.cc @@ -22,12 +22,21 @@ #include <apt-pkg/error.h> #include <apt-pkg/strutl.h> #include <apt-pkg/fileutl.h> -#include <apt-pkg/md5.h> #include <apt-pkg/sha1.h> #include <apt-pkg/tagfile.h> #include <apt-pkg/indexrecords.h> -#include <apt-pkg/metaindex.h> - +#include <apt-pkg/acquire.h> +#include <apt-pkg/hashes.h> +#include <apt-pkg/indexfile.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> +#include <apt-pkg/pkgrecords.h> + +#include <stddef.h> +#include <stdlib.h> +#include <string.h> +#include <iostream> +#include <vector> #include <sys/stat.h> #include <unistd.h> #include <errno.h> @@ -108,8 +117,8 @@ 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, - pkgAcquire::MethodConfig *Cnf) +void pkgAcquire::Item::Done(string Message,unsigned long long Size,string /*Hash*/, + pkgAcquire::MethodConfig * /*Cnf*/) { // We just downloaded something.. string FileName = LookupTag(Message,"Filename"); @@ -253,10 +262,10 @@ string pkgAcqSubIndex::Custom600Headers() return "\nIndex-File: true\nFail-Ignore: true\nLast-Modified: " + TimeRFC1123(Buf.st_mtime); } /*}}}*/ -void pkgAcqSubIndex::Failed(string Message,pkgAcquire::MethodConfig *Cnf) /*{{{*/ +void pkgAcqSubIndex::Failed(string Message,pkgAcquire::MethodConfig * /*Cnf*/)/*{{{*/ { if(Debug) - std::clog << "pkgAcqSubIndex failed: " << Desc.URI << std::endl; + std::clog << "pkgAcqSubIndex failed: " << Desc.URI << " with " << Message << std::endl; Complete = false; Status = StatDone; @@ -544,10 +553,10 @@ bool pkgAcqDiffIndex::ParseDiffIndex(string IndexDiffFile) /*{{{*/ return false; } /*}}}*/ -void pkgAcqDiffIndex::Failed(string Message,pkgAcquire::MethodConfig *Cnf) /*{{{*/ +void pkgAcqDiffIndex::Failed(string Message,pkgAcquire::MethodConfig * /*Cnf*/)/*{{{*/ { if(Debug) - std::clog << "pkgAcqDiffIndex failed: " << Desc.URI << std::endl + 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, @@ -624,10 +633,10 @@ pkgAcqIndexDiffs::pkgAcqIndexDiffs(pkgAcquire *Owner, } } /*}}}*/ -void pkgAcqIndexDiffs::Failed(string Message,pkgAcquire::MethodConfig *Cnf) /*{{{*/ +void pkgAcqIndexDiffs::Failed(string Message,pkgAcquire::MethodConfig * /*Cnf*/)/*{{{*/ { if(Debug) - std::clog << "pkgAcqIndexDiffs failed: " << Desc.URI << std::endl + 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); @@ -709,7 +718,7 @@ bool pkgAcqIndexDiffs::QueueNextDiff() /*{{{*/ } // queue the right diff - Desc.URI = string(RealURI) + ".diff/" + available_patches[0].file + ".gz"; + Desc.URI = RealURI + ".diff/" + available_patches[0].file + ".gz"; Desc.Description = Description + " " + available_patches[0].file + string(".pdiff"); DestFile = _config->FindDir("Dir::State::lists") + "partial/"; DestFile += URItoFileName(RealURI + ".diff/" + available_patches[0].file); @@ -797,7 +806,7 @@ pkgAcqIndexMergeDiffs::pkgAcqIndexMergeDiffs(pkgAcquire *Owner, Desc.Owner = this; Desc.ShortDesc = ShortDesc; - Desc.URI = string(RealURI) + ".diff/" + patch.file + ".gz"; + Desc.URI = RealURI + ".diff/" + patch.file + ".gz"; Desc.Description = Description + " " + patch.file + string(".pdiff"); DestFile = _config->FindDir("Dir::State::lists") + "partial/"; DestFile += URItoFileName(RealURI + ".diff/" + patch.file); @@ -808,7 +817,7 @@ pkgAcqIndexMergeDiffs::pkgAcqIndexMergeDiffs(pkgAcquire *Owner, QueueURI(Desc); } /*}}}*/ -void pkgAcqIndexMergeDiffs::Failed(string Message,pkgAcquire::MethodConfig *Cnf)/*{{{*/ +void pkgAcqIndexMergeDiffs::Failed(string Message,pkgAcquire::MethodConfig * /*Cnf*/)/*{{{*/ { if(Debug) std::clog << "pkgAcqIndexMergeDiffs failed: " << Desc.URI << " with " << Message << std::endl; @@ -1558,7 +1567,7 @@ void pkgAcqMetaIndex::QueueIndexes(bool verify) /*{{{*/ { std::vector<std::string> types = APT::Configuration::getCompressionTypes(); for (std::vector<std::string>::const_iterator t = types.begin(); t != types.end(); ++t) - if (MetaIndexParser->Exists(string((*Target)->MetaKey).append(".").append(*t)) == true) + if (MetaIndexParser->Exists((*Target)->MetaKey + "." + *t) == true) { compressedAvailable = true; break; @@ -1596,7 +1605,7 @@ void pkgAcqMetaIndex::QueueIndexes(bool verify) /*{{{*/ else if (transInRelease == false || Record != NULL || compressedAvailable == true) { if (_config->FindB("Acquire::PDiffs",true) == true && transInRelease == true && - MetaIndexParser->Exists(string((*Target)->MetaKey).append(".diff/Index")) == true) + MetaIndexParser->Exists((*Target)->MetaKey + ".diff/Index") == true) new pkgAcqDiffIndex(Owner, (*Target)->URI, (*Target)->Description, (*Target)->ShortDesc, ExpectedIndexHash); else @@ -1610,7 +1619,7 @@ void pkgAcqMetaIndex::QueueIndexes(bool verify) /*{{{*/ in the Meta-Index file. Ideal would be if pkgAcqDiffIndex would test this instead, but passing the required info to it is to much hassle */ if(_config->FindB("Acquire::PDiffs",true) == true && (verify == false || - MetaIndexParser->Exists(string((*Target)->MetaKey).append(".diff/Index")) == true)) + MetaIndexParser->Exists((*Target)->MetaKey + ".diff/Index") == true)) new pkgAcqDiffIndex(Owner, (*Target)->URI, (*Target)->Description, (*Target)->ShortDesc, ExpectedIndexHash); else @@ -1635,7 +1644,7 @@ bool pkgAcqMetaIndex::VerifyVendor(string Message) /*{{{*/ missingkeys += (Fingerprint); } if(!missingkeys.empty()) - _error->Warning("%s", string(msg+missingkeys).c_str()); + _error->Warning("%s", (msg + missingkeys).c_str()); string Transformed = MetaIndexParser->GetExpectedDist(); @@ -1698,7 +1707,7 @@ bool pkgAcqMetaIndex::VerifyVendor(string Message) /*{{{*/ // pkgAcqMetaIndex::Failed - no Release file present or no signature file present /*{{{*/ // --------------------------------------------------------------------- /* */ -void pkgAcqMetaIndex::Failed(string Message,pkgAcquire::MethodConfig *Cnf) +void pkgAcqMetaIndex::Failed(string Message,pkgAcquire::MethodConfig * /*Cnf*/) { if (AuthPass == true) { @@ -2149,7 +2158,7 @@ void pkgAcqArchive::Failed(string Message,pkgAcquire::MethodConfig *Cnf) /*}}}*/ // AcqArchive::IsTrusted - Determine whether this archive comes from a trusted source /*{{{*/ // --------------------------------------------------------------------- -bool pkgAcqArchive::IsTrusted() +APT_PURE bool pkgAcqArchive::IsTrusted() { return Trusted; } @@ -2197,7 +2206,7 @@ pkgAcqFile::pkgAcqFile(pkgAcquire *Owner,string URI,string Hash, if (stat(DestFile.c_str(),&Buf) == 0) { // Hmm, the partial file is too big, erase it - if ((unsigned long long)Buf.st_size > Size) + if ((Size > 0) && (unsigned long long)Buf.st_size > Size) unlink(DestFile.c_str()); else PartialSize = Buf.st_size; diff --git a/apt-pkg/acquire-item.h b/apt-pkg/acquire-item.h index 5a1c7979c..f48d2a0d7 100644 --- a/apt-pkg/acquire-item.h +++ b/apt-pkg/acquire-item.h @@ -24,6 +24,10 @@ #include <apt-pkg/hashes.h> #include <apt-pkg/weakptr.h> #include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> + +#include <string> +#include <vector> #ifndef APT_8_CLEANER_HEADERS #include <apt-pkg/indexfile.h> @@ -64,7 +68,7 @@ class pkgAcquire::Item : public WeakPointable /** \brief Insert this item into its owner's queue. * - * \param ItemDesc Metadata about this item (its URI and + * \param Item Metadata about this item (its URI and * description). */ inline void QueueURI(ItemDesc &Item) @@ -79,7 +83,7 @@ class pkgAcquire::Item : public WeakPointable * * \param From The file to be renamed. * - * \param To The new name of #From. If #To exists it will be + * \param To The new name of \a From. If \a To exists it will be * overwritten. */ void Rename(std::string From,std::string To); @@ -115,7 +119,7 @@ class pkgAcquire::Item : public WeakPointable } Status; /** \brief Contains a textual description of the error encountered - * if #Status is #StatError or #StatAuthError. + * if #ItemState is #StatError or #StatAuthError. */ std::string ErrorText; @@ -293,7 +297,6 @@ class pkgAcquire::Item : public WeakPointable /** \brief Rename failed file and set error * * \param state respresenting the error we encountered - * \param errorMsg a message describing the error */ bool RenameOnError(RenameOnErrorState const state); }; @@ -636,7 +639,7 @@ class pkgAcqIndexDiffs : public pkgAcquire::Item /** \brief Create an index diff item. * * After filling in its basic fields, this invokes Finish(true) if - * #diffs is empty, or QueueNextDiff() otherwise. + * \a diffs is empty, or QueueNextDiff() otherwise. * * \param Owner The pkgAcquire object that owns this item. * @@ -651,6 +654,8 @@ class pkgAcqIndexDiffs : public pkgAcquire::Item * reconstructed package index file; the index file will be tested * against this value when it is entirely reconstructed. * + * \param ServerSha1 is the sha1sum of the current file on the server + * * \param diffs The remaining diffs from the index of diffs. They * should be ordered so that each diff appears before any diff * that depends on it. @@ -1162,8 +1167,8 @@ class pkgAcqFile : public pkgAcquire::Item * \param IsIndexFile The file is considered a IndexFile and cache-control * headers like "cache-control: max-age=0" are send * - * If DestFilename is empty, download to DestDir/<basename> if - * DestDir is non-empty, $CWD/<basename> otherwise. If + * If DestFilename is empty, download to DestDir/\<basename\> if + * DestDir is non-empty, $CWD/\<basename\> otherwise. If * DestFilename is NOT empty, DestDir is ignored and DestFilename * is the absolute name to which the file should be downloaded. */ diff --git a/apt-pkg/acquire-method.cc b/apt-pkg/acquire-method.cc index 5bc1c159a..746c553f1 100644 --- a/apt-pkg/acquire-method.cc +++ b/apt-pkg/acquire-method.cc @@ -23,10 +23,18 @@ #include <apt-pkg/strutl.h> #include <apt-pkg/fileutl.h> #include <apt-pkg/hashes.h> - +#include <apt-pkg/md5.h> +#include <apt-pkg/sha1.h> +#include <apt-pkg/sha2.h> + +#include <stdarg.h> +#include <stdlib.h> +#include <string.h> +#include <unistd.h> +#include <string> +#include <vector> #include <iostream> #include <stdio.h> -#include <sys/signal.h> /*}}}*/ using namespace std; diff --git a/apt-pkg/acquire-method.h b/apt-pkg/acquire-method.h index 00f99e0a0..221ccf273 100644 --- a/apt-pkg/acquire-method.h +++ b/apt-pkg/acquire-method.h @@ -20,7 +20,10 @@ #ifndef PKGLIB_ACQUIRE_METHOD_H #define PKGLIB_ACQUIRE_METHOD_H +#include <apt-pkg/macros.h> + #include <stdarg.h> +#include <time.h> #include <string> #include <vector> @@ -106,7 +109,7 @@ class pkgAcqMethod virtual ~pkgAcqMethod() {}; private: - void Dequeue(); + APT_HIDDEN void Dequeue(); }; /** @} */ diff --git a/apt-pkg/acquire-worker.cc b/apt-pkg/acquire-worker.cc index de62080da..047a655ce 100644 --- a/apt-pkg/acquire-worker.cc +++ b/apt-pkg/acquire-worker.cc @@ -14,20 +14,23 @@ // Include Files /*{{{*/ #include <config.h> +#include <apt-pkg/acquire.h> #include <apt-pkg/acquire-worker.h> #include <apt-pkg/acquire-item.h> #include <apt-pkg/configuration.h> #include <apt-pkg/error.h> #include <apt-pkg/fileutl.h> #include <apt-pkg/strutl.h> +#include <apt-pkg/hashes.h> +#include <string> +#include <vector> #include <iostream> #include <sstream> -#include <fstream> #include <sys/stat.h> +#include <stdlib.h> #include <unistd.h> -#include <fcntl.h> #include <signal.h> #include <stdio.h> #include <errno.h> diff --git a/apt-pkg/acquire-worker.h b/apt-pkg/acquire-worker.h index 848a6bad7..67aee4b59 100644 --- a/apt-pkg/acquire-worker.h +++ b/apt-pkg/acquire-worker.h @@ -22,6 +22,9 @@ #include <apt-pkg/acquire.h> #include <apt-pkg/weakptr.h> +#include <sys/types.h> +#include <string> +#include <vector> /** \brief A fetch subprocess. * @@ -136,8 +139,8 @@ class pkgAcquire::Worker : public WeakPointable /** \brief Retrieve any available messages from the subprocess. * - * The messages are retrieved as in ::ReadMessages(), and - * MessageFailure() is invoked if an error occurs; in particular, + * The messages are retrieved as in \link strutl.h ReadMessages()\endlink, and + * #MethodFailure() is invoked if an error occurs; in particular, * if the pipe to the subprocess dies unexpectedly while a message * is being read. * diff --git a/apt-pkg/acquire.cc b/apt-pkg/acquire.cc index 120e809e1..a187a00ae 100644 --- a/apt-pkg/acquire.cc +++ b/apt-pkg/acquire.cc @@ -23,12 +23,18 @@ #include <apt-pkg/strutl.h> #include <apt-pkg/fileutl.h> +#include <string> +#include <vector> #include <iostream> #include <sstream> #include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <unistd.h> #include <dirent.h> #include <sys/time.h> +#include <sys/select.h> #include <errno.h> #include <apti18n.h> @@ -468,7 +474,7 @@ void pkgAcquire::Bump() pkgAcquire::Worker *pkgAcquire::WorkerStep(Worker *I) { return I->NextAcquire; -}; +} /*}}}*/ // Acquire::Clean - Cleans a directory /*{{{*/ // --------------------------------------------------------------------- @@ -520,7 +526,7 @@ bool pkgAcquire::Clean(string Dir) // Acquire::TotalNeeded - Number of bytes to fetch /*{{{*/ // --------------------------------------------------------------------- /* This is the total number of bytes needed */ -unsigned long long pkgAcquire::TotalNeeded() +APT_PURE unsigned long long pkgAcquire::TotalNeeded() { unsigned long long Total = 0; for (ItemCIterator I = ItemsBegin(); I != ItemsEnd(); ++I) @@ -531,7 +537,7 @@ unsigned long long pkgAcquire::TotalNeeded() // Acquire::FetchNeeded - Number of bytes needed to get /*{{{*/ // --------------------------------------------------------------------- /* This is the number of bytes that is not local */ -unsigned long long pkgAcquire::FetchNeeded() +APT_PURE unsigned long long pkgAcquire::FetchNeeded() { unsigned long long Total = 0; for (ItemCIterator I = ItemsBegin(); I != ItemsEnd(); ++I) @@ -543,7 +549,7 @@ unsigned long long pkgAcquire::FetchNeeded() // Acquire::PartialPresent - Number of partial bytes we already have /*{{{*/ // --------------------------------------------------------------------- /* This is the number of bytes that is not local */ -unsigned long long pkgAcquire::PartialPresent() +APT_PURE unsigned long long pkgAcquire::PartialPresent() { unsigned long long Total = 0; for (ItemCIterator I = ItemsBegin(); I != ItemsEnd(); ++I) diff --git a/apt-pkg/acquire.h b/apt-pkg/acquire.h index 3d5d7a4b7..ef16d8556 100644 --- a/apt-pkg/acquire.h +++ b/apt-pkg/acquire.h @@ -72,8 +72,13 @@ #include <vector> #include <string> +#include <stddef.h> #include <sys/time.h> +#include <sys/select.h> + +#ifndef APT_10_CLEANER_HEADERS #include <unistd.h> +#endif #ifndef APT_8_CLEANER_HEADERS using std::vector; @@ -282,18 +287,18 @@ class pkgAcquire */ void Shutdown(); - /** \brief Get the first #Worker object. + /** \brief Get the first Worker object. * * \return the first active worker in this download process. */ inline Worker *WorkersBegin() {return Workers;}; - /** \brief Advance to the next #Worker object. + /** \brief Advance to the next Worker object. * * \return the worker immediately following I, or \b NULL if none * exists. */ - Worker *WorkerStep(Worker *I); + Worker *WorkerStep(Worker *I) APT_PURE; /** \brief Get the head of the list of items. */ inline ItemIterator ItemsBegin() {return Items.begin();}; @@ -353,7 +358,7 @@ class pkgAcquire void SetLog(pkgAcquireStatus *Progress) { Log = Progress; } /** \brief Construct a new pkgAcquire. */ - pkgAcquire(pkgAcquireStatus *Log) __deprecated; + pkgAcquire(pkgAcquireStatus *Log) APT_DEPRECATED; pkgAcquire(); /** \brief Destroy this pkgAcquire object. @@ -476,7 +481,7 @@ class pkgAcquire::Queue * \return the first item in the queue whose URI is #URI and that * is being downloaded by #Owner. */ - QItem *FindItem(std::string URI,pkgAcquire::Worker *Owner); + QItem *FindItem(std::string URI,pkgAcquire::Worker *Owner) APT_PURE; /** Presumably this should start downloading an item? * diff --git a/apt-pkg/algorithms.cc b/apt-pkg/algorithms.cc index 0363ab3e2..a7b676660 100644 --- a/apt-pkg/algorithms.cc +++ b/apt-pkg/algorithms.cc @@ -19,19 +19,18 @@ #include <apt-pkg/algorithms.h> #include <apt-pkg/error.h> #include <apt-pkg/configuration.h> -#include <apt-pkg/version.h> #include <apt-pkg/sptr.h> -#include <apt-pkg/acquire-item.h> #include <apt-pkg/edsp.h> -#include <apt-pkg/sourcelist.h> -#include <apt-pkg/fileutl.h> #include <apt-pkg/progress.h> +#include <apt-pkg/depcache.h> +#include <apt-pkg/packagemanager.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> -#include <sys/types.h> +#include <string.h> +#include <string> #include <cstdlib> -#include <algorithm> #include <iostream> -#include <stdio.h> #include <apti18n.h> /*}}}*/ @@ -394,8 +393,18 @@ void pkgProblemResolver::MakeScores() }; int PrioEssentials = _config->FindI("pkgProblemResolver::Scores::Essentials",100); int PrioInstalledAndNotObsolete = _config->FindI("pkgProblemResolver::Scores::NotObsolete",1); - int PrioDepends = _config->FindI("pkgProblemResolver::Scores::Depends",1); - int PrioRecommends = _config->FindI("pkgProblemResolver::Scores::Recommends",1); + int DepMap[] = { + 0, + _config->FindI("pkgProblemResolver::Scores::Depends",1), + _config->FindI("pkgProblemResolver::Scores::PreDepends",1), + _config->FindI("pkgProblemResolver::Scores::Suggests",0), + _config->FindI("pkgProblemResolver::Scores::Recommends",1), + _config->FindI("pkgProblemResolver::Scores::Conflicts",-1), + _config->FindI("pkgProblemResolver::Scores::Replaces",0), + _config->FindI("pkgProblemResolver::Scores::Obsoletes",0), + _config->FindI("pkgProblemResolver::Scores::Breaks",-1), + _config->FindI("pkgProblemResolver::Scores::Enhances",0) + }; int AddProtected = _config->FindI("pkgProblemResolver::Scores::AddProtected",10000); int AddEssential = _config->FindI("pkgProblemResolver::Scores::AddEssential",5000); @@ -408,8 +417,15 @@ void pkgProblemResolver::MakeScores() << " Extra => " << PrioMap[pkgCache::State::Extra] << endl << " Essentials => " << PrioEssentials << endl << " InstalledAndNotObsolete => " << PrioInstalledAndNotObsolete << endl - << " Depends => " << PrioDepends << endl - << " Recommends => " << PrioRecommends << endl + << " Pre-Depends => " << DepMap[pkgCache::Dep::PreDepends] << endl + << " Depends => " << DepMap[pkgCache::Dep::Depends] << endl + << " Recommends => " << DepMap[pkgCache::Dep::Recommends] << endl + << " Suggests => " << DepMap[pkgCache::Dep::Suggests] << endl + << " Conflicts => " << DepMap[pkgCache::Dep::Conflicts] << endl + << " Breaks => " << DepMap[pkgCache::Dep::DpkgBreaks] << endl + << " Replaces => " << DepMap[pkgCache::Dep::Replaces] << endl + << " Obsoletes => " << DepMap[pkgCache::Dep::Obsoletes] << endl + << " Enhances => " << DepMap[pkgCache::Dep::Enhances] << endl << " AddProtected => " << AddProtected << endl << " AddEssential => " << AddEssential << endl; @@ -439,24 +455,23 @@ void pkgProblemResolver::MakeScores() */ if (I->CurrentVer != 0 && Cache[I].CandidateVer != 0 && Cache[I].CandidateVerIter(Cache).Downloadable()) Score += PrioInstalledAndNotObsolete; - } - // Now that we have the base scores we go and propagate dependencies - for (pkgCache::PkgIterator I = Cache.PkgBegin(); I.end() == false; ++I) - { - if (Cache[I].InstallVer == 0) - continue; - + // propagate score points along dependencies for (pkgCache::DepIterator D = Cache[I].InstVerIter(Cache).DependsList(); D.end() == false; ++D) { - if (D->Type == pkgCache::Dep::Depends || - D->Type == pkgCache::Dep::PreDepends) - Scores[D.TargetPkg()->ID] += PrioDepends; - else if (D->Type == pkgCache::Dep::Recommends) - Scores[D.TargetPkg()->ID] += PrioRecommends; + if (DepMap[D->Type] == 0) + continue; + pkgCache::PkgIterator const T = D.TargetPkg(); + if (D->Version != 0) + { + pkgCache::VerIterator const IV = Cache[T].InstVerIter(Cache); + if (IV.end() == true || D.IsSatisfied(IV) != D.IsNegative()) + continue; + } + Scores[T->ID] += DepMap[D->Type]; } - } - + } + // Copy the scores to advoid additive looping SPtrArray<int> OldScores = new int[Size]; memcpy(OldScores,Scores,sizeof(*Scores)*Size); @@ -869,8 +884,8 @@ bool pkgProblemResolver::ResolveInternal(bool const BrokenFix) } if (Debug == true) - clog << " Considering " << Pkg.FullName(false) << ' ' << (int)Scores[Pkg->ID] << - " as a solution to " << I.FullName(false) << ' ' << (int)Scores[I->ID] << endl; + clog << " Considering " << Pkg.FullName(false) << ' ' << Scores[Pkg->ID] << + " as a solution to " << I.FullName(false) << ' ' << Scores[I->ID] << endl; /* Try to fix the package under consideration rather than fiddle with the VList package */ diff --git a/apt-pkg/algorithms.h b/apt-pkg/algorithms.h index 489d81159..f35bd9a13 100644 --- a/apt-pkg/algorithms.h +++ b/apt-pkg/algorithms.h @@ -33,8 +33,11 @@ #include <apt-pkg/packagemanager.h> #include <apt-pkg/depcache.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> #include <iostream> +#include <string> #include <apt-pkg/macros.h> @@ -111,7 +114,7 @@ class pkgProblemResolver /*{{{*/ // Sort stuff static pkgProblemResolver *This; - static int ScoreSort(const void *a,const void *b); + static int ScoreSort(const void *a,const void *b) APT_PURE; struct PackageKill { @@ -140,7 +143,7 @@ class pkgProblemResolver /*{{{*/ // Try to resolve problems only by using keep bool ResolveByKeep(); - __deprecated void InstallProtect(); + APT_DEPRECATED void InstallProtect(); pkgProblemResolver(pkgDepCache *Cache); ~pkgProblemResolver(); diff --git a/apt-pkg/aptconfiguration.cc b/apt-pkg/aptconfiguration.cc index 0b0b546c5..6ba047560 100644 --- a/apt-pkg/aptconfiguration.cc +++ b/apt-pkg/aptconfiguration.cc @@ -17,14 +17,19 @@ #include <apt-pkg/macros.h> #include <apt-pkg/strutl.h> -#include <sys/types.h> #include <dirent.h> #include <stdio.h> #include <fcntl.h> - +#include <ctype.h> +#include <stddef.h> +#include <stdlib.h> +#include <string.h> +#include <unistd.h> #include <algorithm> #include <string> #include <vector> + +#include <apti18n.h> /*}}}*/ namespace APT { // getCompressionTypes - Return Vector of usable compressiontypes /*{{{*/ @@ -49,11 +54,6 @@ const Configuration::getCompressionTypes(bool const &Cached) { setDefaultConfigurationForCompressors(); std::vector<APT::Configuration::Compressor> const compressors = getCompressors(); - // accept non-list order as override setting for config settings on commandline - std::string const overrideOrder = _config->Find("Acquire::CompressionTypes::Order",""); - if (overrideOrder.empty() == false) - types.push_back(overrideOrder); - // load the order setting into our vector std::vector<std::string> const order = _config->FindVector("Acquire::CompressionTypes::Order"); for (std::vector<std::string>::const_iterator o = order.begin(); @@ -227,61 +227,11 @@ std::vector<std::string> const Configuration::getLanguages(bool const &All, } } } else { + // cornercase: LANG=C, so we use only "en" Translation environment.push_back("en"); } - // Support settings like Acquire::Languages=none on the command line to - // override the configuration settings vector of languages. - string const forceLang = _config->Find("Acquire::Languages",""); - if (forceLang.empty() == false) { - if (forceLang == "none") { - codes.clear(); - allCodes.clear(); - allCodes.push_back("none"); - } else { - if (forceLang == "environment") - codes = environment; - else - codes.push_back(forceLang); - allCodes = codes; - for (std::vector<string>::const_iterator b = builtin.begin(); - b != builtin.end(); ++b) - if (std::find(allCodes.begin(), allCodes.end(), *b) == allCodes.end()) - allCodes.push_back(*b); - } - if (All == true) - return allCodes; - else - return codes; - } - - // cornercase: LANG=C, so we use only "en" Translation - if (envShort == "C") { - allCodes = codes = environment; - allCodes.insert(allCodes.end(), builtin.begin(), builtin.end()); - if (All == true) - return allCodes; - else - return codes; - } - - std::vector<string> const lang = _config->FindVector("Acquire::Languages"); - // the default setting -> "environment, en" - if (lang.empty() == true) { - codes = environment; - if (envShort != "en") - codes.push_back("en"); - allCodes = codes; - for (std::vector<string>::const_iterator b = builtin.begin(); - b != builtin.end(); ++b) - if (std::find(allCodes.begin(), allCodes.end(), *b) == allCodes.end()) - allCodes.push_back(*b); - if (All == true) - return allCodes; - else - return codes; - } - + std::vector<string> const lang = _config->FindVector("Acquire::Languages", "environment,en"); // the configs define the order, so add the environment // then needed and ensure the codes are not listed twice. bool noneSeen = false; @@ -308,10 +258,15 @@ std::vector<std::string> const Configuration::getLanguages(bool const &All, allCodes.push_back(*l); } - for (std::vector<string>::const_iterator b = builtin.begin(); - b != builtin.end(); ++b) - if (std::find(allCodes.begin(), allCodes.end(), *b) == allCodes.end()) - allCodes.push_back(*b); + if (allCodes.empty() == false) { + for (std::vector<string>::const_iterator b = builtin.begin(); + b != builtin.end(); ++b) + if (std::find(allCodes.begin(), allCodes.end(), *b) == allCodes.end()) + allCodes.push_back(*b); + } else { + // "none" was forced + allCodes.push_back("none"); + } if (All == true) return allCodes; @@ -320,7 +275,7 @@ std::vector<std::string> const Configuration::getLanguages(bool const &All, } /*}}}*/ // checkLanguage - are we interested in the given Language? /*{{{*/ -bool const Configuration::checkLanguage(std::string Lang, bool const All) { +bool Configuration::checkLanguage(std::string Lang, bool const All) { // the empty Language is always interesting as it is the original if (Lang.empty() == true) return true; @@ -440,7 +395,7 @@ std::vector<std::string> const Configuration::getArchitectures(bool const &Cache } /*}}}*/ // checkArchitecture - are we interested in the given Architecture? /*{{{*/ -bool const Configuration::checkArchitecture(std::string const &Arch) { +bool Configuration::checkArchitecture(std::string const &Arch) { if (Arch == "all") return true; std::vector<std::string> const archs = getArchitectures(true); @@ -476,7 +431,7 @@ void Configuration::setDefaultConfigurationForCompressors() { } } /*}}}*/ -// getCompressors - Return Vector of usbale compressors /*{{{*/ +// getCompressors - Return Vector of usealbe compressors /*{{{*/ // --------------------------------------------------------------------- /* return a vector of compressors used by apt-ftparchive in the multicompress functionality or to detect data.tar files */ @@ -507,8 +462,16 @@ const Configuration::getCompressors(bool const Cached) { #endif if (_config->Exists("Dir::Bin::xz") == false || FileExists(_config->FindFile("Dir::Bin::xz")) == true) compressors.push_back(Compressor("xz",".xz","xz","-6","-d",4)); +#ifdef HAVE_LZMA + else + compressors.push_back(Compressor("xz",".xz","false", NULL, NULL, 4)); +#endif if (_config->Exists("Dir::Bin::lzma") == false || FileExists(_config->FindFile("Dir::Bin::lzma")) == true) compressors.push_back(Compressor("lzma",".lzma","lzma","-9","-d",5)); +#ifdef HAVE_LZMA + else + compressors.push_back(Compressor("lzma",".lzma","false", NULL, NULL, 5)); +#endif std::vector<std::string> const comp = _config->FindVector("APT::Compressor"); for (std::vector<std::string>::const_iterator c = comp.begin(); @@ -558,4 +521,28 @@ Configuration::Compressor::Compressor(char const *name, char const *extension, UncompressArgs.push_back(uncompressArg); } /*}}}*/ +// getBuildProfiles - return a vector of enabled build profiles /*{{{*/ +std::vector<std::string> const Configuration::getBuildProfiles() { + // order is: override value (~= commandline), environment variable, list (~= config file) + std::string profiles_env = getenv("DEB_BUILD_PROFILES") == 0 ? "" : getenv("DEB_BUILD_PROFILES"); + if (profiles_env.empty() == false) { + profiles_env = SubstVar(profiles_env, " ", ","); + std::string const bp = _config->Find("APT::Build-Profiles"); + _config->Clear("APT::Build-Profiles"); + if (bp.empty() == false) + _config->Set("APT::Build-Profiles", bp); + } + return _config->FindVector("APT::Build-Profiles", profiles_env); +} +std::string const Configuration::getBuildProfilesString() { + std::vector<std::string> profiles = getBuildProfiles(); + if (profiles.empty() == true) + return ""; + std::vector<std::string>::const_iterator p = profiles.begin(); + std::string list = *p; + for (; p != profiles.end(); ++p) + list.append(",").append(*p); + return list; +} + /*}}}*/ } diff --git a/apt-pkg/aptconfiguration.h b/apt-pkg/aptconfiguration.h index bf7deae85..dfed194ae 100644 --- a/apt-pkg/aptconfiguration.h +++ b/apt-pkg/aptconfiguration.h @@ -73,7 +73,7 @@ public: /*{{{*/ * \param All defines if we check against all codes or only against used codes * \return true if we are interested, false otherwise */ - bool static const checkLanguage(std::string Lang, bool const All = false); + bool static checkLanguage(std::string Lang, bool const All = false); /** \brief Returns a vector of Architectures we support * @@ -89,7 +89,7 @@ public: /*{{{*/ * \param Arch we want to check * \return true if we are interested, false otherwise */ - bool static const checkArchitecture(std::string const &Arch); + bool static checkArchitecture(std::string const &Arch); /** \brief Representation of supported compressors */ struct Compressor { @@ -117,6 +117,11 @@ public: /*{{{*/ /** \brief Return a vector of extensions supported for data.tar's */ std::vector<std::string> static const getCompressorExtensions(); + + /** \return Return a vector of enabled build profile specifications */ + std::vector<std::string> static const getBuildProfiles(); + /** \return Return a comma-separated list of enabled build profile specifications */ + std::string static const getBuildProfilesString(); /*}}}*/ private: /*{{{*/ void static setDefaultConfigurationForCompressors(); diff --git a/apt-pkg/cachefile.cc b/apt-pkg/cachefile.cc index 7c2276185..0fd40106f 100644 --- a/apt-pkg/cachefile.cc +++ b/apt-pkg/cachefile.cc @@ -21,9 +21,16 @@ #include <apt-pkg/configuration.h> #include <apt-pkg/policy.h> #include <apt-pkg/pkgsystem.h> -#include <apt-pkg/acquire-item.h> #include <apt-pkg/fileutl.h> #include <apt-pkg/progress.h> +#include <apt-pkg/depcache.h> +#include <apt-pkg/mmap.h> +#include <apt-pkg/pkgcache.h> + +#include <string.h> +#include <unistd.h> +#include <string> +#include <vector> #include <apti18n.h> /*}}}*/ @@ -99,7 +106,7 @@ bool pkgCacheFile::BuildCaches(OpProgress *Progress, bool WithLock) // CacheFile::BuildSourceList - Open and build all relevant sources.list/*{{{*/ // --------------------------------------------------------------------- /* */ -bool pkgCacheFile::BuildSourceList(OpProgress *Progress) +bool pkgCacheFile::BuildSourceList(OpProgress * /*Progress*/) { if (SrcList != NULL) return true; @@ -113,7 +120,7 @@ bool pkgCacheFile::BuildSourceList(OpProgress *Progress) // CacheFile::BuildPolicy - Open and build all relevant preferences /*{{{*/ // --------------------------------------------------------------------- /* */ -bool pkgCacheFile::BuildPolicy(OpProgress *Progress) +bool pkgCacheFile::BuildPolicy(OpProgress * /*Progress*/) { if (Policy != NULL) return true; diff --git a/apt-pkg/cachefile.h b/apt-pkg/cachefile.h index 802b12b61..36b20893a 100644 --- a/apt-pkg/cachefile.h +++ b/apt-pkg/cachefile.h @@ -17,8 +17,12 @@ #ifndef PKGLIB_CACHEFILE_H #define PKGLIB_CACHEFILE_H +#include <stddef.h> + #include <apt-pkg/depcache.h> #include <apt-pkg/macros.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> #ifndef APT_8_CLEANER_HEADERS #include <apt-pkg/acquire.h> @@ -26,6 +30,7 @@ #include <apt-pkg/sourcelist.h> #endif +class MMap; class pkgPolicy; class pkgSourceList; class OpProgress; @@ -60,13 +65,13 @@ class pkgCacheFile inline unsigned char &operator [](pkgCache::DepIterator const &I) {return (*DCache)[I];}; bool BuildCaches(OpProgress *Progress = NULL,bool WithLock = true); - __deprecated bool BuildCaches(OpProgress &Progress,bool const &WithLock = true) { return BuildCaches(&Progress, WithLock); }; + APT_DEPRECATED bool BuildCaches(OpProgress &Progress,bool const &WithLock = true) { return BuildCaches(&Progress, WithLock); }; bool BuildSourceList(OpProgress *Progress = NULL); bool BuildPolicy(OpProgress *Progress = NULL); bool BuildDepCache(OpProgress *Progress = NULL); bool Open(OpProgress *Progress = NULL, bool WithLock = true); inline bool ReadOnlyOpen(OpProgress *Progress = NULL) { return Open(Progress, false); }; - __deprecated bool Open(OpProgress &Progress,bool const &WithLock = true) { return Open(&Progress, WithLock); }; + APT_DEPRECATED bool Open(OpProgress &Progress,bool const &WithLock = true) { return Open(&Progress, WithLock); }; static void RemoveCaches(); void Close(); diff --git a/apt-pkg/cachefilter.cc b/apt-pkg/cachefilter.cc index 57b9af159..e388f2450 100644 --- a/apt-pkg/cachefilter.cc +++ b/apt-pkg/cachefilter.cc @@ -9,10 +9,12 @@ #include <apt-pkg/cachefilter.h> #include <apt-pkg/error.h> #include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> #include <apt-pkg/strutl.h> +#include <apt-pkg/macros.h> #include <string> - +#include <string.h> #include <regex.h> #include <fnmatch.h> diff --git a/apt-pkg/cachefilter.h b/apt-pkg/cachefilter.h index 34b7d0b46..49d2855f5 100644 --- a/apt-pkg/cachefilter.h +++ b/apt-pkg/cachefilter.h @@ -7,6 +7,7 @@ #define APT_CACHEFILTER_H // Include Files /*{{{*/ #include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> #include <string> @@ -47,7 +48,7 @@ public: /** \class PackageArchitectureMatchesSpecification \brief matching against architecture specification strings - The strings are of the format <kernel>-<cpu> where either component, + The strings are of the format \<kernel\>-\<cpu\> where either component, or the whole string, can be the wildcard "any" as defined in debian-policy §11.1 "Architecture specification strings". diff --git a/apt-pkg/cacheiterators.h b/apt-pkg/cacheiterators.h index ea6a4afba..2fdf8404d 100644 --- a/apt-pkg/cacheiterators.h +++ b/apt-pkg/cacheiterators.h @@ -29,7 +29,12 @@ /*}}}*/ #ifndef PKGLIB_CACHEITERATORS_H #define PKGLIB_CACHEITERATORS_H +#include<apt-pkg/pkgcache.h> +#include<apt-pkg/macros.h> + #include<iterator> +#include <iosfwd> +#include <string> #include<string.h> @@ -55,36 +60,36 @@ template<typename Str, typename Itr> class pkgCache::Iterator : public: // Iteration virtual void operator ++(int) = 0; - virtual void operator ++() = 0; // Should be {operator ++(0);}; - inline bool end() const {return Owner == 0 || S == OwnerPointer();}; + virtual void operator ++() = 0; // Should be {operator ++(0);} + inline bool end() const {return Owner == 0 || S == OwnerPointer();} // Comparison - inline bool operator ==(const Itr &B) const {return S == B.S;}; - inline bool operator !=(const Itr &B) const {return S != B.S;}; + inline bool operator ==(const Itr &B) const {return S == B.S;} + inline bool operator !=(const Itr &B) const {return S != B.S;} // Accessors - inline Str *operator ->() {return S;}; - inline Str const *operator ->() const {return S;}; - inline operator Str *() {return S == OwnerPointer() ? 0 : S;}; - inline operator Str const *() const {return S == OwnerPointer() ? 0 : S;}; - inline Str &operator *() {return *S;}; - inline Str const &operator *() const {return *S;}; - inline pkgCache *Cache() const {return Owner;}; + inline Str *operator ->() {return S;} + inline Str const *operator ->() const {return S;} + inline operator Str *() {return S == OwnerPointer() ? 0 : S;} + inline operator Str const *() const {return S == OwnerPointer() ? 0 : S;} + inline Str &operator *() {return *S;} + inline Str const &operator *() const {return *S;} + inline pkgCache *Cache() const {return Owner;} // Mixed stuff - inline void operator =(const Itr &B) {S = B.S; Owner = B.Owner;}; - inline bool IsGood() const { return S && Owner && ! end();}; - inline unsigned long Index() const {return S - OwnerPointer();}; + inline void operator =(const Itr &B) {S = B.S; Owner = B.Owner;} + inline bool IsGood() const { return S && Owner && ! end();} + inline unsigned long Index() const {return S - OwnerPointer();} void ReMap(void const * const oldMap, void const * const newMap) { if (Owner == 0 || S == 0) return; - S += (Str*)(newMap) - (Str*)(oldMap); + S += (Str const * const)(newMap) - (Str const * const)(oldMap); } // Constructors - look out for the variable assigning - inline Iterator() : S(0), Owner(0) {}; - inline Iterator(pkgCache &Owner,Str *T = 0) : S(T), Owner(&Owner) {}; + inline Iterator() : S(0), Owner(0) {} + inline Iterator(pkgCache &Owner,Str *T = 0) : S(T), Owner(&Owner) {} }; /*}}}*/ // Group Iterator /*{{{*/ @@ -98,19 +103,19 @@ class pkgCache::GrpIterator: public Iterator<Group, GrpIterator> { protected: inline Group* OwnerPointer() const { return (Owner != 0) ? Owner->GrpP : 0; - }; + } public: // This constructor is the 'begin' constructor, never use it. inline GrpIterator(pkgCache &Owner) : Iterator<Group, GrpIterator>(Owner), HashIndex(-1) { S = OwnerPointer(); operator ++(0); - }; + } virtual void operator ++(int); - virtual void operator ++() {operator ++(0);}; + virtual void operator ++() {operator ++(0);} - inline const char *Name() const {return S->Name == 0?0:Owner->StrP + S->Name;}; + inline const char *Name() const {return S->Name == 0?0:Owner->StrP + S->Name;} inline PkgIterator PackageList() const; PkgIterator FindPkg(std::string Arch = "any") const; /** \brief find the package with the "best" architecture @@ -127,8 +132,8 @@ class pkgCache::GrpIterator: public Iterator<Group, GrpIterator> { inline GrpIterator(pkgCache &Owner, Group *Trg) : Iterator<Group, GrpIterator>(Owner, Trg), HashIndex(0) { if (S == 0) S = OwnerPointer(); - }; - inline GrpIterator() : Iterator<Group, GrpIterator>(), HashIndex(0) {}; + } + inline GrpIterator() : Iterator<Group, GrpIterator>(), HashIndex(0) {} }; /*}}}*/ @@ -139,35 +144,35 @@ class pkgCache::PkgIterator: public Iterator<Package, PkgIterator> { protected: inline Package* OwnerPointer() const { return (Owner != 0) ? Owner->PkgP : 0; - }; + } public: // This constructor is the 'begin' constructor, never use it. inline PkgIterator(pkgCache &Owner) : Iterator<Package, PkgIterator>(Owner), HashIndex(-1) { S = OwnerPointer(); operator ++(0); - }; + } virtual void operator ++(int); - virtual void operator ++() {operator ++(0);}; + virtual void operator ++() {operator ++(0);} enum OkState {NeedsNothing,NeedsUnpack,NeedsConfigure}; // 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;}; + 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;} 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;}; - inline GrpIterator Group() const { return GrpIterator(*Owner, Owner->GrpP + S->Group);}; - - inline VerIterator VersionList() const; - inline VerIterator CurrentVer() const; - inline DepIterator RevDependsList() const; - inline PrvIterator ProvidesList() const; - OkState State() const; - const char *CandVersion() const; - const char *CurVersion() const; + (S->CurrentVer == 0 && S->CurrentState == pkgCache::State::NotInstalled);} + inline const char *Arch() const {return S->Arch == 0?0:Owner->StrP + S->Arch;} + inline APT_PURE GrpIterator Group() const { return GrpIterator(*Owner, Owner->GrpP + S->Group);} + + inline VerIterator VersionList() const APT_PURE; + inline VerIterator CurrentVer() const APT_PURE; + inline DepIterator RevDependsList() const APT_PURE; + inline PrvIterator ProvidesList() const APT_PURE; + OkState State() const APT_PURE; + const char *CandVersion() const APT_PURE; + const char *CurVersion() const APT_PURE; //Nice printable representation friend std::ostream& operator <<(std::ostream& out, PkgIterator i); @@ -177,8 +182,8 @@ class pkgCache::PkgIterator: public Iterator<Package, PkgIterator> { inline PkgIterator(pkgCache &Owner,Package *Trg) : Iterator<Package, PkgIterator>(Owner, Trg), HashIndex(0) { if (S == 0) S = OwnerPointer(); - }; - inline PkgIterator() : Iterator<Package, PkgIterator>(), HashIndex(0) {}; + } + inline PkgIterator() : Iterator<Package, PkgIterator>(), HashIndex(0) {} }; /*}}}*/ // Version Iterator /*{{{*/ @@ -186,12 +191,12 @@ class pkgCache::VerIterator : public Iterator<Version, VerIterator> { protected: inline Version* OwnerPointer() const { return (Owner != 0) ? Owner->VerP : 0; - }; + } public: // Iteration - void operator ++(int) {if (S != Owner->VerP) S = Owner->VerP + S->NextVer;}; - inline void operator ++() {operator ++(0);}; + void operator ++(int) {if (S != Owner->VerP) S = Owner->VerP + S->NextVer;} + inline void operator ++() {operator ++(0);} // Comparison int CompareVer(const VerIterator &B) const; @@ -201,17 +206,17 @@ class pkgCache::VerIterator : public Iterator<Version, VerIterator> { referring to the same "real" version */ inline bool SimilarVer(const VerIterator &B) const { return (B.end() == false && S->Hash == B->Hash && strcmp(VerStr(), B.VerStr()) == 0); - }; + } // Accessors - inline const char *VerStr() const {return S->VerStr == 0?0:Owner->StrP + S->VerStr;}; - inline const char *Section() const {return S->Section == 0?0:Owner->StrP + S->Section;}; + inline const char *VerStr() const {return S->VerStr == 0?0:Owner->StrP + S->VerStr;} + inline const char *Section() const {return S->Section == 0?0:Owner->StrP + S->Section;} inline const char *Arch() const { if ((S->MultiArch & pkgCache::Version::All) == pkgCache::Version::All) return "all"; return S->ParentPkg == 0?0:Owner->StrP + ParentPkg()->Arch; - }; - inline PkgIterator ParentPkg() const {return PkgIterator(*Owner,Owner->PkgP + S->ParentPkg);}; + } + inline PkgIterator ParentPkg() const {return PkgIterator(*Owner,Owner->PkgP + S->ParentPkg);} inline DescIterator DescriptionList() const; DescIterator TranslatedDescription() const; @@ -219,8 +224,8 @@ class pkgCache::VerIterator : public Iterator<Version, VerIterator> { inline PrvIterator ProvidesList() const; inline VerFileIterator FileList() const; bool Downloadable() const; - inline const char *PriorityType() const {return Owner->Priority(S->Priority);}; - const char *MultiArchType() const; + inline const char *PriorityType() const {return Owner->Priority(S->Priority);} + const char *MultiArchType() const APT_PURE; std::string RelStr() const; bool Automatic() const; @@ -229,8 +234,8 @@ class pkgCache::VerIterator : public Iterator<Version, VerIterator> { inline VerIterator(pkgCache &Owner,Version *Trg = 0) : Iterator<Version, VerIterator>(Owner, Trg) { if (S == 0) S = OwnerPointer(); - }; - inline VerIterator() : Iterator<Version, VerIterator>() {}; + } + inline VerIterator() : Iterator<Version, VerIterator>() {} }; /*}}}*/ // Description Iterator /*{{{*/ @@ -238,26 +243,26 @@ class pkgCache::DescIterator : public Iterator<Description, DescIterator> { protected: inline Description* OwnerPointer() const { return (Owner != 0) ? Owner->DescP : 0; - }; + } public: // Iteration - void operator ++(int) {if (S != Owner->DescP) S = Owner->DescP + S->NextDesc;}; - inline void operator ++() {operator ++(0);}; + void operator ++(int) {if (S != Owner->DescP) S = Owner->DescP + S->NextDesc;} + inline void operator ++() {operator ++(0);} // Comparison int CompareDesc(const DescIterator &B) const; // Accessors - inline const char *LanguageCode() const {return Owner->StrP + S->language_code;}; - inline const char *md5() const {return Owner->StrP + S->md5sum;}; + inline const char *LanguageCode() const {return Owner->StrP + S->language_code;} + inline const char *md5() const {return Owner->StrP + S->md5sum;} inline DescFileIterator FileList() const; - inline DescIterator() : Iterator<Description, DescIterator>() {}; + inline DescIterator() : Iterator<Description, DescIterator>() {} inline DescIterator(pkgCache &Owner,Description *Trg = 0) : Iterator<Description, DescIterator>(Owner, Trg) { if (S == 0) S = Owner.DescP; - }; + } }; /*}}}*/ // Dependency iterator /*{{{*/ @@ -267,33 +272,33 @@ class pkgCache::DepIterator : public Iterator<Dependency, DepIterator> { protected: inline Dependency* OwnerPointer() const { return (Owner != 0) ? Owner->DepP : 0; - }; + } public: // Iteration void operator ++(int) {if (S != Owner->DepP) S = Owner->DepP + - (Type == DepVer ? S->NextDepends : S->NextRevDepends);}; - inline void operator ++() {operator ++(0);}; + (Type == DepVer ? S->NextDepends : S->NextRevDepends);} + inline void operator ++() {operator ++(0);} // Accessors - inline const char *TargetVer() const {return S->Version == 0?0:Owner->StrP + S->Version;}; - inline PkgIterator TargetPkg() const {return PkgIterator(*Owner,Owner->PkgP + S->Package);}; - inline PkgIterator SmartTargetPkg() const {PkgIterator R(*Owner,0);SmartTargetPkg(R);return R;}; - inline VerIterator ParentVer() const {return VerIterator(*Owner,Owner->VerP + S->ParentVer);}; - inline PkgIterator ParentPkg() const {return PkgIterator(*Owner,Owner->PkgP + Owner->VerP[S->ParentVer].ParentPkg);}; - inline bool Reverse() const {return Type == DepRev;}; - bool IsCritical() const; - bool IsNegative() const; - bool IsIgnorable(PrvIterator const &Prv) const; - bool IsIgnorable(PkgIterator const &Pkg) const; - bool IsMultiArchImplicit() const; - bool IsSatisfied(VerIterator const &Ver) const; - bool IsSatisfied(PrvIterator const &Prv) const; + inline const char *TargetVer() const {return S->Version == 0?0:Owner->StrP + S->Version;} + inline PkgIterator TargetPkg() const {return PkgIterator(*Owner,Owner->PkgP + S->Package);} + inline PkgIterator SmartTargetPkg() const {PkgIterator R(*Owner,0);SmartTargetPkg(R);return R;} + inline VerIterator ParentVer() const {return VerIterator(*Owner,Owner->VerP + S->ParentVer);} + inline PkgIterator ParentPkg() const {return PkgIterator(*Owner,Owner->PkgP + Owner->VerP[S->ParentVer].ParentPkg);} + inline bool Reverse() const {return Type == DepRev;} + bool IsCritical() const APT_PURE; + bool IsNegative() const APT_PURE; + bool IsIgnorable(PrvIterator const &Prv) const APT_PURE; + bool IsIgnorable(PkgIterator const &Pkg) const APT_PURE; + bool IsMultiArchImplicit() const APT_PURE; + bool IsSatisfied(VerIterator const &Ver) const APT_PURE; + bool IsSatisfied(PrvIterator const &Prv) const APT_PURE; void GlobOr(DepIterator &Start,DepIterator &End); Version **AllTargets() const; bool SmartTargetPkg(PkgIterator &Result) const; - inline const char *CompType() const {return Owner->CompType(S->CompareOp);}; - inline const char *DepType() const {return Owner->DepType(S->Type);}; + inline const char *CompType() const {return Owner->CompType(S->CompareOp);} + inline const char *DepType() const {return Owner->DepType(S->Type);} //Nice printable representation friend std::ostream& operator <<(std::ostream& out, DepIterator D); @@ -302,13 +307,13 @@ class pkgCache::DepIterator : public Iterator<Dependency, DepIterator> { Iterator<Dependency, DepIterator>(Owner, Trg), Type(DepVer) { if (S == 0) S = Owner.DepP; - }; + } inline DepIterator(pkgCache &Owner, Dependency *Trg, Package*) : Iterator<Dependency, DepIterator>(Owner, Trg), Type(DepRev) { if (S == 0) S = Owner.DepP; - }; - inline DepIterator() : Iterator<Dependency, DepIterator>(), Type(DepVer) {}; + } + inline DepIterator() : Iterator<Dependency, DepIterator>(), Type(DepVer) {} }; /*}}}*/ // Provides iterator /*{{{*/ @@ -318,34 +323,34 @@ class pkgCache::PrvIterator : public Iterator<Provides, PrvIterator> { protected: inline Provides* OwnerPointer() const { return (Owner != 0) ? Owner->ProvideP : 0; - }; + } public: // Iteration void operator ++(int) {if (S != Owner->ProvideP) S = Owner->ProvideP + - (Type == PrvVer?S->NextPkgProv:S->NextProvides);}; - inline void operator ++() {operator ++(0);}; + (Type == PrvVer?S->NextPkgProv:S->NextProvides);} + inline void operator ++() {operator ++(0);} // Accessors - inline const char *Name() const {return Owner->StrP + Owner->PkgP[S->ParentPkg].Name;}; - inline const char *ProvideVersion() const {return S->ProvideVersion == 0?0:Owner->StrP + S->ProvideVersion;}; - inline PkgIterator ParentPkg() const {return PkgIterator(*Owner,Owner->PkgP + S->ParentPkg);}; - inline VerIterator OwnerVer() const {return VerIterator(*Owner,Owner->VerP + S->Version);}; - inline PkgIterator OwnerPkg() const {return PkgIterator(*Owner,Owner->PkgP + Owner->VerP[S->Version].ParentPkg);}; + inline const char *Name() const {return Owner->StrP + Owner->PkgP[S->ParentPkg].Name;} + inline const char *ProvideVersion() const {return S->ProvideVersion == 0?0:Owner->StrP + S->ProvideVersion;} + inline PkgIterator ParentPkg() const {return PkgIterator(*Owner,Owner->PkgP + S->ParentPkg);} + inline VerIterator OwnerVer() const {return VerIterator(*Owner,Owner->VerP + S->Version);} + inline PkgIterator OwnerPkg() const {return PkgIterator(*Owner,Owner->PkgP + Owner->VerP[S->Version].ParentPkg);} - bool IsMultiArchImplicit() const; + bool IsMultiArchImplicit() const APT_PURE; - inline PrvIterator() : Iterator<Provides, PrvIterator>(), Type(PrvVer) {}; + inline PrvIterator() : Iterator<Provides, PrvIterator>(), Type(PrvVer) {} inline PrvIterator(pkgCache &Owner, Provides *Trg, Version*) : Iterator<Provides, PrvIterator>(Owner, Trg), Type(PrvVer) { if (S == 0) S = Owner.ProvideP; - }; + } inline PrvIterator(pkgCache &Owner, Provides *Trg, Package*) : Iterator<Provides, PrvIterator>(Owner, Trg), Type(PrvPkg) { if (S == 0) S = Owner.ProvideP; - }; + } }; /*}}}*/ // Package file /*{{{*/ @@ -353,32 +358,32 @@ class pkgCache::PkgFileIterator : public Iterator<PackageFile, PkgFileIterator> protected: inline PackageFile* OwnerPointer() const { return (Owner != 0) ? Owner->PkgFileP : 0; - }; + } public: // Iteration - void operator ++(int) {if (S != Owner->PkgFileP) S = Owner->PkgFileP + S->NextFile;}; - inline void operator ++() {operator ++(0);}; + void operator ++(int) {if (S != Owner->PkgFileP) S = Owner->PkgFileP + S->NextFile;} + inline void operator ++() {operator ++(0);} // Accessors - inline const char *FileName() const {return S->FileName == 0?0:Owner->StrP + S->FileName;}; - inline const char *Archive() const {return S->Archive == 0?0:Owner->StrP + S->Archive;}; - inline const char *Component() const {return S->Component == 0?0:Owner->StrP + S->Component;}; - inline const char *Version() const {return S->Version == 0?0:Owner->StrP + S->Version;}; - inline const char *Origin() const {return S->Origin == 0?0:Owner->StrP + S->Origin;}; - inline const char *Codename() const {return S->Codename ==0?0:Owner->StrP + S->Codename;}; - inline const char *Label() const {return S->Label == 0?0:Owner->StrP + S->Label;}; - inline const char *Site() const {return S->Site == 0?0:Owner->StrP + S->Site;}; - inline const char *Architecture() const {return S->Architecture == 0?0:Owner->StrP + S->Architecture;}; - inline const char *IndexType() const {return S->IndexType == 0?0:Owner->StrP + S->IndexType;}; + inline const char *FileName() const {return S->FileName == 0?0:Owner->StrP + S->FileName;} + inline const char *Archive() const {return S->Archive == 0?0:Owner->StrP + S->Archive;} + inline const char *Component() const {return S->Component == 0?0:Owner->StrP + S->Component;} + inline const char *Version() const {return S->Version == 0?0:Owner->StrP + S->Version;} + inline const char *Origin() const {return S->Origin == 0?0:Owner->StrP + S->Origin;} + inline const char *Codename() const {return S->Codename ==0?0:Owner->StrP + S->Codename;} + inline const char *Label() const {return S->Label == 0?0:Owner->StrP + S->Label;} + inline const char *Site() const {return S->Site == 0?0:Owner->StrP + S->Site;} + inline const char *Architecture() const {return S->Architecture == 0?0:Owner->StrP + S->Architecture;} + inline const char *IndexType() const {return S->IndexType == 0?0:Owner->StrP + S->IndexType;} bool IsOk(); std::string RelStr(); // Constructors - inline PkgFileIterator() : Iterator<PackageFile, PkgFileIterator>() {}; - inline PkgFileIterator(pkgCache &Owner) : Iterator<PackageFile, PkgFileIterator>(Owner, Owner.PkgFileP) {}; - inline PkgFileIterator(pkgCache &Owner,PackageFile *Trg) : Iterator<PackageFile, PkgFileIterator>(Owner, Trg) {}; + inline PkgFileIterator() : Iterator<PackageFile, PkgFileIterator>() {} + inline PkgFileIterator(pkgCache &Owner) : Iterator<PackageFile, PkgFileIterator>(Owner, Owner.PkgFileP) {} + inline PkgFileIterator(pkgCache &Owner,PackageFile *Trg) : Iterator<PackageFile, PkgFileIterator>(Owner, Trg) {} }; /*}}}*/ // Version File /*{{{*/ @@ -386,18 +391,18 @@ class pkgCache::VerFileIterator : public pkgCache::Iterator<VerFile, VerFileIter protected: inline VerFile* OwnerPointer() const { return (Owner != 0) ? Owner->VerFileP : 0; - }; + } public: // Iteration - void operator ++(int) {if (S != Owner->VerFileP) S = Owner->VerFileP + S->NextFile;}; - inline void operator ++() {operator ++(0);}; + void operator ++(int) {if (S != Owner->VerFileP) S = Owner->VerFileP + S->NextFile;} + inline void operator ++() {operator ++(0);} // Accessors - inline PkgFileIterator File() const {return PkgFileIterator(*Owner,S->File + Owner->PkgFileP);}; + inline PkgFileIterator File() const {return PkgFileIterator(*Owner,S->File + Owner->PkgFileP);} - inline VerFileIterator() : Iterator<VerFile, VerFileIterator>() {}; - inline VerFileIterator(pkgCache &Owner,VerFile *Trg) : Iterator<VerFile, VerFileIterator>(Owner, Trg) {}; + inline VerFileIterator() : Iterator<VerFile, VerFileIterator>() {} + inline VerFileIterator(pkgCache &Owner,VerFile *Trg) : Iterator<VerFile, VerFileIterator>(Owner, Trg) {} }; /*}}}*/ // Description File /*{{{*/ @@ -405,40 +410,40 @@ class pkgCache::DescFileIterator : public Iterator<DescFile, DescFileIterator> { protected: inline DescFile* OwnerPointer() const { return (Owner != 0) ? Owner->DescFileP : 0; - }; + } public: // Iteration - void operator ++(int) {if (S != Owner->DescFileP) S = Owner->DescFileP + S->NextFile;}; - inline void operator ++() {operator ++(0);}; + void operator ++(int) {if (S != Owner->DescFileP) S = Owner->DescFileP + S->NextFile;} + inline void operator ++() {operator ++(0);} // Accessors - inline PkgFileIterator File() const {return PkgFileIterator(*Owner,S->File + Owner->PkgFileP);}; + inline PkgFileIterator File() const {return PkgFileIterator(*Owner,S->File + Owner->PkgFileP);} - inline DescFileIterator() : Iterator<DescFile, DescFileIterator>() {}; - inline DescFileIterator(pkgCache &Owner,DescFile *Trg) : Iterator<DescFile, DescFileIterator>(Owner, Trg) {}; + inline DescFileIterator() : Iterator<DescFile, DescFileIterator>() {} + inline DescFileIterator(pkgCache &Owner,DescFile *Trg) : Iterator<DescFile, DescFileIterator>(Owner, Trg) {} }; /*}}}*/ // Inlined Begin functions can't be in the class because of order problems /*{{{*/ inline pkgCache::PkgIterator pkgCache::GrpIterator::PackageList() const - {return PkgIterator(*Owner,Owner->PkgP + S->FirstPackage);}; + {return PkgIterator(*Owner,Owner->PkgP + S->FirstPackage);} inline pkgCache::VerIterator pkgCache::PkgIterator::VersionList() const - {return VerIterator(*Owner,Owner->VerP + S->VersionList);}; + {return VerIterator(*Owner,Owner->VerP + S->VersionList);} inline pkgCache::VerIterator pkgCache::PkgIterator::CurrentVer() const - {return VerIterator(*Owner,Owner->VerP + S->CurrentVer);}; + {return VerIterator(*Owner,Owner->VerP + S->CurrentVer);} inline pkgCache::DepIterator pkgCache::PkgIterator::RevDependsList() const - {return DepIterator(*Owner,Owner->DepP + S->RevDepends,S);}; + {return DepIterator(*Owner,Owner->DepP + S->RevDepends,S);} inline pkgCache::PrvIterator pkgCache::PkgIterator::ProvidesList() const - {return PrvIterator(*Owner,Owner->ProvideP + S->ProvidesList,S);}; + {return PrvIterator(*Owner,Owner->ProvideP + S->ProvidesList,S);} inline pkgCache::DescIterator pkgCache::VerIterator::DescriptionList() const - {return DescIterator(*Owner,Owner->DescP + S->DescriptionList);}; + {return DescIterator(*Owner,Owner->DescP + S->DescriptionList);} inline pkgCache::PrvIterator pkgCache::VerIterator::ProvidesList() const - {return PrvIterator(*Owner,Owner->ProvideP + S->ProvidesList,S);}; + {return PrvIterator(*Owner,Owner->ProvideP + S->ProvidesList,S);} inline pkgCache::DepIterator pkgCache::VerIterator::DependsList() const - {return DepIterator(*Owner,Owner->DepP + S->DependsList,S);}; + {return DepIterator(*Owner,Owner->DepP + S->DependsList,S);} inline pkgCache::VerFileIterator pkgCache::VerIterator::FileList() const - {return VerFileIterator(*Owner,Owner->VerFileP + S->FileList);}; + {return VerFileIterator(*Owner,Owner->VerFileP + S->FileList);} inline pkgCache::DescFileIterator pkgCache::DescIterator::FileList() const - {return DescFileIterator(*Owner,Owner->DescFileP + S->FileList);}; + {return DescFileIterator(*Owner,Owner->DescFileP + S->FileList);} /*}}}*/ #endif diff --git a/apt-pkg/cacheset.cc b/apt-pkg/cacheset.cc index 6b6fdb5ad..d453a2bfb 100644 --- a/apt-pkg/cacheset.cc +++ b/apt-pkg/cacheset.cc @@ -16,14 +16,22 @@ #include <apt-pkg/cachefilter.h> #include <apt-pkg/cacheset.h> #include <apt-pkg/error.h> -#include <apt-pkg/strutl.h> #include <apt-pkg/versionmatch.h> #include <apt-pkg/pkgrecords.h> #include <apt-pkg/policy.h> - -#include <vector> - +#include <apt-pkg/cacheiterators.h> +#include <apt-pkg/configuration.h> +#include <apt-pkg/depcache.h> +#include <apt-pkg/macros.h> +#include <apt-pkg/pkgcache.h> + +#include <stddef.h> +#include <stdio.h> +#include <string.h> #include <regex.h> +#include <list> +#include <string> +#include <vector> #include <apti18n.h> /*}}}*/ @@ -588,13 +596,13 @@ pkgCache::PkgIterator CacheSetHelper::canNotFindPkgName(pkgCacheFile &Cache, } /*}}}*/ // canNotFindTask - handle the case no package is found for a task /*{{{*/ -void CacheSetHelper::canNotFindTask(PackageContainerInterface * const pci, pkgCacheFile &Cache, std::string pattern) { +void CacheSetHelper::canNotFindTask(PackageContainerInterface * const /*pci*/, pkgCacheFile &/*Cache*/, std::string pattern) { if (ShowError == true) _error->Insert(ErrorType, _("Couldn't find task '%s'"), pattern.c_str()); } /*}}}*/ // canNotFindRegEx - handle the case no package is found by a regex /*{{{*/ -void CacheSetHelper::canNotFindRegEx(PackageContainerInterface * const pci, pkgCacheFile &Cache, std::string pattern) { +void CacheSetHelper::canNotFindRegEx(PackageContainerInterface * const /*pci*/, pkgCacheFile &/*Cache*/, std::string pattern) { if (ShowError == true) _error->Insert(ErrorType, _("Couldn't find any package by regex '%s'"), pattern.c_str()); } @@ -606,25 +614,25 @@ void CacheSetHelper::canNotFindFnmatch(PackageContainerInterface * const pci, pk } #endif /*}}}*/ // canNotFindPackage - handle the case no package is found from a string/*{{{*/ -void CacheSetHelper::canNotFindPackage(PackageContainerInterface * const pci, pkgCacheFile &Cache, std::string const &str) { +APT_CONST void CacheSetHelper::canNotFindPackage(PackageContainerInterface * const /*pci*/, pkgCacheFile &/*Cache*/, std::string const &/*str*/) { } /*}}}*/ // canNotFindAllVer /*{{{*/ -void CacheSetHelper::canNotFindAllVer(VersionContainerInterface * const vci, pkgCacheFile &Cache, +void CacheSetHelper::canNotFindAllVer(VersionContainerInterface * const /*vci*/, pkgCacheFile &/*Cache*/, pkgCache::PkgIterator const &Pkg) { if (ShowError == true) _error->Insert(ErrorType, _("Can't select versions from package '%s' as it is purely virtual"), Pkg.FullName(true).c_str()); } /*}}}*/ // canNotFindInstCandVer /*{{{*/ -void CacheSetHelper::canNotFindInstCandVer(VersionContainerInterface * const vci, pkgCacheFile &Cache, +void CacheSetHelper::canNotFindInstCandVer(VersionContainerInterface * const /*vci*/, pkgCacheFile &/*Cache*/, pkgCache::PkgIterator const &Pkg) { if (ShowError == true) _error->Insert(ErrorType, _("Can't select installed nor candidate version from package '%s' as it has neither of them"), Pkg.FullName(true).c_str()); } /*}}}*/ // canNotFindInstCandVer /*{{{*/ -void CacheSetHelper::canNotFindCandInstVer(VersionContainerInterface * const vci, pkgCacheFile &Cache, +void CacheSetHelper::canNotFindCandInstVer(VersionContainerInterface * const /*vci*/, pkgCacheFile &/*Cache*/, pkgCache::PkgIterator const &Pkg) { if (ShowError == true) _error->Insert(ErrorType, _("Can't select installed nor candidate version from package '%s' as it has neither of them"), Pkg.FullName(true).c_str()); @@ -655,27 +663,27 @@ pkgCache::VerIterator CacheSetHelper::canNotFindInstalledVer(pkgCacheFile &Cache } /*}}}*/ // showTaskSelection /*{{{*/ -void CacheSetHelper::showTaskSelection(pkgCache::PkgIterator const &pkg, - std::string const &pattern) { +APT_CONST void CacheSetHelper::showTaskSelection(pkgCache::PkgIterator const &/*pkg*/, + std::string const &/*pattern*/) { } /*}}}*/ // showRegExSelection /*{{{*/ -void CacheSetHelper::showRegExSelection(pkgCache::PkgIterator const &pkg, - std::string const &pattern) { +APT_CONST void CacheSetHelper::showRegExSelection(pkgCache::PkgIterator const &/*pkg*/, + std::string const &/*pattern*/) { } /*}}}*/ #if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR >= 13) // showFnmatchSelection /*{{{*/ -void CacheSetHelper::showFnmatchSelection(pkgCache::PkgIterator const &pkg, +APT_CONST void CacheSetHelper::showFnmatchSelection(pkgCache::PkgIterator const &pkg, std::string const &pattern) { } /*}}}*/ #endif // showSelectedVersion /*{{{*/ -void CacheSetHelper::showSelectedVersion(pkgCache::PkgIterator const &Pkg, - pkgCache::VerIterator const Ver, - std::string const &ver, - bool const verIsRel) { +APT_CONST void CacheSetHelper::showSelectedVersion(pkgCache::PkgIterator const &/*Pkg*/, + pkgCache::VerIterator const /*Ver*/, + std::string const &/*ver*/, + bool const /*verIsRel*/) { } /*}}}*/ } diff --git a/apt-pkg/cacheset.h b/apt-pkg/cacheset.h index b69d74b8e..16a3daa42 100644 --- a/apt-pkg/cacheset.h +++ b/apt-pkg/cacheset.h @@ -9,7 +9,6 @@ #ifndef APT_CACHESET_H #define APT_CACHESET_H // Include Files /*{{{*/ -#include <iostream> #include <fstream> #include <map> #include <set> @@ -17,12 +16,18 @@ #include <string> #include <iterator> +#include <stddef.h> + #include <apt-pkg/error.h> #include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> #ifndef APT_8_CLEANER_HEADERS #include <apt-pkg/cachefile.h> #endif +#ifndef APT_10_CLEANER_HEADERS +#include <iostream> +#endif /*}}}*/ class pkgCacheFile; @@ -43,8 +48,8 @@ class CacheSetHelper { /*{{{*/ public: /*{{{*/ CacheSetHelper(bool const ShowError = true, GlobalError::MsgType ErrorType = GlobalError::ERROR) : - ShowError(ShowError), ErrorType(ErrorType) {}; - virtual ~CacheSetHelper() {}; + ShowError(ShowError), ErrorType(ErrorType) {} + virtual ~CacheSetHelper() {} virtual void showTaskSelection(pkgCache::PkgIterator const &pkg, std::string const &pattern); virtual void showRegExSelection(pkgCache::PkgIterator const &pkg, std::string const &pattern); @@ -76,9 +81,9 @@ public: /*{{{*/ virtual pkgCache::VerIterator canNotFindInstalledVer(pkgCacheFile &Cache, pkgCache::PkgIterator const &Pkg); - bool showErrors() const { return ShowError; }; - bool showErrors(bool const newValue) { if (ShowError == newValue) return ShowError; else return ((ShowError = newValue) == false); }; - GlobalError::MsgType errorType() const { return ErrorType; }; + bool showErrors() const { return ShowError; } + bool showErrors(bool const newValue) { if (ShowError == newValue) return ShowError; else return ((ShowError = newValue) == false); } + GlobalError::MsgType errorType() const { return ErrorType; } GlobalError::MsgType errorType(GlobalError::MsgType const &newValue) { if (ErrorType == newValue) return ErrorType; @@ -87,7 +92,7 @@ public: /*{{{*/ ErrorType = newValue; return oldValue; } - }; + } /*}}}*/ protected: @@ -124,12 +129,12 @@ public: inline pkgCache::PkgIterator::OkState State() const { return getPkg().State(); } inline const char *CandVersion() const { return getPkg().CandVersion(); } inline const char *CurVersion() const { return getPkg().CurVersion(); } - inline pkgCache *Cache() const { return getPkg().Cache(); }; - inline unsigned long Index() const {return getPkg().Index();}; + inline pkgCache *Cache() const { return getPkg().Cache(); } + inline unsigned long Index() const {return getPkg().Index();} // we have only valid iterators here - inline bool end() const { return false; }; + inline bool end() const { return false; } - inline pkgCache::Package const * operator->() const {return &*getPkg();}; + inline pkgCache::Package const * operator->() const {return &*getPkg();} }; /*}}}*/ @@ -154,7 +159,7 @@ public: unsigned short ID; const char * const Alias; Position Pos; - Modifier (unsigned short const &id, const char * const alias, Position const &pos) : ID(id), Alias(alias), Pos(pos) {}; + Modifier (unsigned short const &id, const char * const alias, Position const &pos) : ID(id), Alias(alias), Pos(pos) {} }; static bool FromModifierCommandLine(unsigned short &modID, PackageContainerInterface * const pci, @@ -177,12 +182,12 @@ public: /*{{{*/ public: const_iterator(typename Container::const_iterator i) : _iter(i) {} pkgCache::PkgIterator getPkg(void) const { return *_iter; } - inline pkgCache::PkgIterator operator*(void) const { return *_iter; }; + inline pkgCache::PkgIterator operator*(void) const { return *_iter; } operator typename Container::const_iterator(void) const { return _iter; } inline const_iterator& operator++() { ++_iter; return *this; } inline const_iterator operator++(int) { const_iterator tmp(*this); operator++(); return tmp; } - inline bool operator!=(const_iterator const &i) const { return _iter != i._iter; }; - inline bool operator==(const_iterator const &i) const { return _iter == i._iter; }; + inline bool operator!=(const_iterator const &i) const { return _iter != i._iter; } + inline bool operator==(const_iterator const &i) const { return _iter == i._iter; } friend std::ostream& operator<<(std::ostream& out, const_iterator i) { return operator<<(out, *i); } }; class iterator : public PackageContainerInterface::const_iterator, @@ -191,43 +196,43 @@ public: /*{{{*/ public: iterator(typename Container::iterator i) : _iter(i) {} pkgCache::PkgIterator getPkg(void) const { return *_iter; } - inline pkgCache::PkgIterator operator*(void) const { return *_iter; }; + inline pkgCache::PkgIterator operator*(void) const { return *_iter; } operator typename Container::iterator(void) const { return _iter; } operator typename PackageContainer<Container>::const_iterator() { return typename PackageContainer<Container>::const_iterator(_iter); } inline iterator& operator++() { ++_iter; return *this; } inline iterator operator++(int) { iterator tmp(*this); operator++(); return tmp; } - inline bool operator!=(iterator const &i) const { return _iter != i._iter; }; - inline bool operator==(iterator const &i) const { return _iter == i._iter; }; - inline iterator& operator=(iterator const &i) { _iter = i._iter; return *this; }; - inline iterator& operator=(typename Container::iterator const &i) { _iter = i; return *this; }; + inline bool operator!=(iterator const &i) const { return _iter != i._iter; } + inline bool operator==(iterator const &i) const { return _iter == i._iter; } + inline iterator& operator=(iterator const &i) { _iter = i._iter; return *this; } + inline iterator& operator=(typename Container::iterator const &i) { _iter = i; return *this; } friend std::ostream& operator<<(std::ostream& out, iterator i) { return operator<<(out, *i); } }; /*}}}*/ - bool insert(pkgCache::PkgIterator const &P) { if (P.end() == true) return false; _cont.insert(P); return true; }; - template<class Cont> void insert(PackageContainer<Cont> const &pkgcont) { _cont.insert((typename Cont::const_iterator)pkgcont.begin(), (typename Cont::const_iterator)pkgcont.end()); }; - void insert(const_iterator begin, const_iterator end) { _cont.insert(begin, end); }; + bool insert(pkgCache::PkgIterator const &P) { if (P.end() == true) return false; _cont.insert(P); return true; } + template<class Cont> void insert(PackageContainer<Cont> const &pkgcont) { _cont.insert((typename Cont::const_iterator)pkgcont.begin(), (typename Cont::const_iterator)pkgcont.end()); } + void insert(const_iterator begin, const_iterator end) { _cont.insert(begin, end); } - bool empty() const { return _cont.empty(); }; - void clear() { return _cont.clear(); }; + bool empty() const { return _cont.empty(); } + void clear() { return _cont.clear(); } //FIXME: on ABI break, replace the first with the second without bool - void erase(iterator position) { _cont.erase((typename Container::iterator)position); }; - iterator& erase(iterator &position, bool) { return position = _cont.erase((typename Container::iterator)position); }; - size_t erase(const pkgCache::PkgIterator x) { return _cont.erase(x); }; - void erase(iterator first, iterator last) { _cont.erase(first, last); }; - size_t size() const { return _cont.size(); }; + void erase(iterator position) { _cont.erase((typename Container::iterator)position); } + iterator& erase(iterator &position, bool) { return position = _cont.erase((typename Container::iterator)position); } + size_t erase(const pkgCache::PkgIterator x) { return _cont.erase(x); } + void erase(iterator first, iterator last) { _cont.erase(first, last); } + size_t size() const { return _cont.size(); } - const_iterator begin() const { return const_iterator(_cont.begin()); }; - const_iterator end() const { return const_iterator(_cont.end()); }; - iterator begin() { return iterator(_cont.begin()); }; - iterator end() { return iterator(_cont.end()); }; - const_iterator find(pkgCache::PkgIterator const &P) const { return const_iterator(_cont.find(P)); }; + const_iterator begin() const { return const_iterator(_cont.begin()); } + const_iterator end() const { return const_iterator(_cont.end()); } + iterator begin() { return iterator(_cont.begin()); } + iterator end() { return iterator(_cont.end()); } + const_iterator find(pkgCache::PkgIterator const &P) const { return const_iterator(_cont.find(P)); } - void setConstructor(Constructor const &by) { ConstructedBy = by; }; - Constructor getConstructor() const { return ConstructedBy; }; + void setConstructor(Constructor const &by) { ConstructedBy = by; } + Constructor getConstructor() const { return ConstructedBy; } - PackageContainer() : ConstructedBy(UNKNOWN) {}; - PackageContainer(Constructor const &by) : ConstructedBy(by) {}; + PackageContainer() : ConstructedBy(UNKNOWN) {} + PackageContainer(Constructor const &by) : ConstructedBy(by) {} /** \brief returns all packages in the cache who belong to the given task @@ -365,7 +370,7 @@ private: /*{{{*/ template<> template<class Cont> void PackageContainer<std::list<pkgCache::PkgIterator> >::insert(PackageContainer<Cont> const &pkgcont) { for (typename PackageContainer<Cont>::const_iterator p = pkgcont.begin(); p != pkgcont.end(); ++p) _cont.push_back(*p); -}; +} // these two are 'inline' as otherwise the linker has problems with seeing these untemplated // specializations again and again - but we need to see them, so that library users can use them template<> inline bool PackageContainer<std::list<pkgCache::PkgIterator> >::insert(pkgCache::PkgIterator const &P) { @@ -373,11 +378,11 @@ template<> inline bool PackageContainer<std::list<pkgCache::PkgIterator> >::inse return false; _cont.push_back(P); return true; -}; +} template<> inline void PackageContainer<std::list<pkgCache::PkgIterator> >::insert(const_iterator begin, const_iterator end) { for (const_iterator p = begin; p != end; ++p) _cont.push_back(*p); -}; +} typedef PackageContainer<std::set<pkgCache::PkgIterator> > PackageSet; typedef PackageContainer<std::list<pkgCache::PkgIterator> > PackageList; @@ -392,27 +397,27 @@ public: virtual pkgCache::VerIterator getVer() const = 0; operator pkgCache::VerIterator(void) { return getVer(); } - inline pkgCache *Cache() const { return getVer().Cache(); }; - inline unsigned long Index() const {return getVer().Index();}; - inline int CompareVer(const pkgCache::VerIterator &B) const { return getVer().CompareVer(B); }; - inline const char *VerStr() const { return getVer().VerStr(); }; - inline const char *Section() const { return getVer().Section(); }; - inline const char *Arch() const { return getVer().Arch(); }; - inline pkgCache::PkgIterator ParentPkg() const { return getVer().ParentPkg(); }; - inline pkgCache::DescIterator DescriptionList() const { return getVer().DescriptionList(); }; - inline pkgCache::DescIterator TranslatedDescription() const { return getVer().TranslatedDescription(); }; - inline pkgCache::DepIterator DependsList() const { return getVer().DependsList(); }; - inline pkgCache::PrvIterator ProvidesList() const { return getVer().ProvidesList(); }; - inline pkgCache::VerFileIterator FileList() const { return getVer().FileList(); }; - inline bool Downloadable() const { return getVer().Downloadable(); }; - inline const char *PriorityType() const { return getVer().PriorityType(); }; - inline std::string RelStr() const { return getVer().RelStr(); }; - inline bool Automatic() const { return getVer().Automatic(); }; - inline pkgCache::VerFileIterator NewestFile() const { return getVer().NewestFile(); }; + inline pkgCache *Cache() const { return getVer().Cache(); } + inline unsigned long Index() const {return getVer().Index();} + inline int CompareVer(const pkgCache::VerIterator &B) const { return getVer().CompareVer(B); } + inline const char *VerStr() const { return getVer().VerStr(); } + inline const char *Section() const { return getVer().Section(); } + inline const char *Arch() const { return getVer().Arch(); } + inline pkgCache::PkgIterator ParentPkg() const { return getVer().ParentPkg(); } + inline pkgCache::DescIterator DescriptionList() const { return getVer().DescriptionList(); } + inline pkgCache::DescIterator TranslatedDescription() const { return getVer().TranslatedDescription(); } + inline pkgCache::DepIterator DependsList() const { return getVer().DependsList(); } + inline pkgCache::PrvIterator ProvidesList() const { return getVer().ProvidesList(); } + inline pkgCache::VerFileIterator FileList() const { return getVer().FileList(); } + inline bool Downloadable() const { return getVer().Downloadable(); } + inline const char *PriorityType() const { return getVer().PriorityType(); } + inline std::string RelStr() const { return getVer().RelStr(); } + inline bool Automatic() const { return getVer().Automatic(); } + inline pkgCache::VerFileIterator NewestFile() const { return getVer().NewestFile(); } // we have only valid iterators here - inline bool end() const { return false; }; + inline bool end() const { return false; } - inline pkgCache::Version const * operator->() const { return &*getVer(); }; + inline pkgCache::Version const * operator->() const { return &*getVer(); } }; /*}}}*/ @@ -446,7 +451,7 @@ public: Version SelectVersion; Modifier (unsigned short const &id, const char * const alias, Position const &pos, Version const &select) : ID(id), Alias(alias), Pos(pos), - SelectVersion(select) {}; + SelectVersion(select) {} }; static bool FromCommandLine(VersionContainerInterface * const vci, pkgCacheFile &Cache, @@ -479,14 +484,16 @@ protected: /*{{{*/ /** \brief returns the candidate version of the package \param Cache to be used to query for information - \param Pkg we want the candidate version from this package */ + \param Pkg we want the candidate version from this package + \param helper used in this container instance */ static pkgCache::VerIterator getCandidateVer(pkgCacheFile &Cache, pkgCache::PkgIterator const &Pkg, CacheSetHelper &helper); /** \brief returns the installed version of the package \param Cache to be used to query for information - \param Pkg we want the installed version from this package */ + \param Pkg we want the installed version from this package + \param helper used in this container instance */ static pkgCache::VerIterator getInstalledVer(pkgCacheFile &Cache, pkgCache::PkgIterator const &Pkg, CacheSetHelper &helper); /*}}}*/ @@ -507,12 +514,12 @@ public: /*{{{*/ public: const_iterator(typename Container::const_iterator i) : _iter(i) {} pkgCache::VerIterator getVer(void) const { return *_iter; } - inline pkgCache::VerIterator operator*(void) const { return *_iter; }; + inline pkgCache::VerIterator operator*(void) const { return *_iter; } operator typename Container::const_iterator(void) const { return _iter; } inline const_iterator& operator++() { ++_iter; return *this; } inline const_iterator operator++(int) { const_iterator tmp(*this); operator++(); return tmp; } - inline bool operator!=(const_iterator const &i) const { return _iter != i._iter; }; - inline bool operator==(const_iterator const &i) const { return _iter == i._iter; }; + inline bool operator!=(const_iterator const &i) const { return _iter != i._iter; } + inline bool operator==(const_iterator const &i) const { return _iter == i._iter; } friend std::ostream& operator<<(std::ostream& out, const_iterator i) { return operator<<(out, *i); } }; class iterator : public VersionContainerInterface::const_iterator, @@ -521,36 +528,36 @@ public: /*{{{*/ public: iterator(typename Container::iterator i) : _iter(i) {} pkgCache::VerIterator getVer(void) const { return *_iter; } - inline pkgCache::VerIterator operator*(void) const { return *_iter; }; + inline pkgCache::VerIterator operator*(void) const { return *_iter; } operator typename Container::iterator(void) const { return _iter; } operator typename VersionContainer<Container>::const_iterator() { return typename VersionContainer<Container>::const_iterator(_iter); } inline iterator& operator++() { ++_iter; return *this; } inline iterator operator++(int) { iterator tmp(*this); operator++(); return tmp; } - inline bool operator!=(iterator const &i) const { return _iter != i._iter; }; - inline bool operator==(iterator const &i) const { return _iter == i._iter; }; - inline iterator& operator=(iterator const &i) { _iter = i._iter; return *this; }; - inline iterator& operator=(typename Container::iterator const &i) { _iter = i; return *this; }; + inline bool operator!=(iterator const &i) const { return _iter != i._iter; } + inline bool operator==(iterator const &i) const { return _iter == i._iter; } + inline iterator& operator=(iterator const &i) { _iter = i._iter; return *this; } + inline iterator& operator=(typename Container::iterator const &i) { _iter = i; return *this; } friend std::ostream& operator<<(std::ostream& out, iterator i) { return operator<<(out, *i); } }; /*}}}*/ - bool insert(pkgCache::VerIterator const &V) { if (V.end() == true) return false; _cont.insert(V); return true; }; - template<class Cont> void insert(VersionContainer<Cont> const &vercont) { _cont.insert((typename Cont::const_iterator)vercont.begin(), (typename Cont::const_iterator)vercont.end()); }; - void insert(const_iterator begin, const_iterator end) { _cont.insert(begin, end); }; - bool empty() const { return _cont.empty(); }; - void clear() { return _cont.clear(); }; + bool insert(pkgCache::VerIterator const &V) { if (V.end() == true) return false; _cont.insert(V); return true; } + template<class Cont> void insert(VersionContainer<Cont> const &vercont) { _cont.insert((typename Cont::const_iterator)vercont.begin(), (typename Cont::const_iterator)vercont.end()); } + void insert(const_iterator begin, const_iterator end) { _cont.insert(begin, end); } + bool empty() const { return _cont.empty(); } + void clear() { return _cont.clear(); } //FIXME: on ABI break, replace the first with the second without bool - void erase(iterator position) { _cont.erase((typename Container::iterator)position); }; - iterator& erase(iterator &position, bool) { return position = _cont.erase((typename Container::iterator)position); }; - size_t erase(const pkgCache::VerIterator x) { return _cont.erase(x); }; - void erase(iterator first, iterator last) { _cont.erase(first, last); }; - size_t size() const { return _cont.size(); }; - - const_iterator begin() const { return const_iterator(_cont.begin()); }; - const_iterator end() const { return const_iterator(_cont.end()); }; - iterator begin() { return iterator(_cont.begin()); }; - iterator end() { return iterator(_cont.end()); }; - const_iterator find(pkgCache::VerIterator const &V) const { return const_iterator(_cont.find(V)); }; + void erase(iterator position) { _cont.erase((typename Container::iterator)position); } + iterator& erase(iterator &position, bool) { return position = _cont.erase((typename Container::iterator)position); } + size_t erase(const pkgCache::VerIterator x) { return _cont.erase(x); } + void erase(iterator first, iterator last) { _cont.erase(first, last); } + size_t size() const { return _cont.size(); } + + const_iterator begin() const { return const_iterator(_cont.begin()); } + const_iterator end() const { return const_iterator(_cont.end()); } + iterator begin() { return iterator(_cont.begin()); } + iterator end() { return iterator(_cont.end()); } + const_iterator find(pkgCache::VerIterator const &V) const { return const_iterator(_cont.find(V)); } /** \brief returns all versions specified on the commandline @@ -558,6 +565,7 @@ public: /*{{{*/ non specifically requested and executes regex's if needed on names. \param Cache the packages and versions are in \param cmdline Command line the versions should be extracted from + \param fallback version specification \param helper responsible for error and message handling */ static VersionContainer FromCommandLine(pkgCacheFile &Cache, const char **cmdline, Version const &fallback, CacheSetHelper &helper) { @@ -656,7 +664,7 @@ public: /*{{{*/ template<> template<class Cont> void VersionContainer<std::list<pkgCache::VerIterator> >::insert(VersionContainer<Cont> const &vercont) { for (typename VersionContainer<Cont>::const_iterator v = vercont.begin(); v != vercont.end(); ++v) _cont.push_back(*v); -}; +} // these two are 'inline' as otherwise the linker has problems with seeing these untemplated // specializations again and again - but we need to see them, so that library users can use them template<> inline bool VersionContainer<std::list<pkgCache::VerIterator> >::insert(pkgCache::VerIterator const &V) { @@ -664,11 +672,11 @@ template<> inline bool VersionContainer<std::list<pkgCache::VerIterator> >::inse return false; _cont.push_back(V); return true; -}; +} template<> inline void VersionContainer<std::list<pkgCache::VerIterator> >::insert(const_iterator begin, const_iterator end) { for (const_iterator v = begin; v != end; ++v) _cont.push_back(*v); -}; +} typedef VersionContainer<std::set<pkgCache::VerIterator> > VersionSet; typedef VersionContainer<std::list<pkgCache::VerIterator> > VersionList; } diff --git a/apt-pkg/cdrom.cc b/apt-pkg/cdrom.cc index 3ae1e8b1d..2635ede76 100644 --- a/apt-pkg/cdrom.cc +++ b/apt-pkg/cdrom.cc @@ -1,28 +1,30 @@ /* */ -#include<config.h> - -#include<apt-pkg/init.h> -#include<apt-pkg/error.h> -#include<apt-pkg/cdromutl.h> -#include<apt-pkg/strutl.h> -#include<apt-pkg/cdrom.h> -#include<apt-pkg/aptconfiguration.h> -#include<apt-pkg/configuration.h> -#include<apt-pkg/fileutl.h> - -#include<sstream> -#include<fstream> +#include <config.h> + +#include <apt-pkg/error.h> +#include <apt-pkg/cdromutl.h> +#include <apt-pkg/strutl.h> +#include <apt-pkg/cdrom.h> +#include <apt-pkg/aptconfiguration.h> +#include <apt-pkg/configuration.h> +#include <apt-pkg/fileutl.h> +#include <apt-pkg/indexcopy.h> + + +#include <string.h> +#include <iostream> +#include <string> +#include <vector> +#include <sstream> +#include <fstream> #include <sys/stat.h> -#include <fcntl.h> #include <dirent.h> #include <unistd.h> #include <stdio.h> #include <algorithm> #include <dlfcn.h> -#include "indexcopy.h" - #include<apti18n.h> using namespace std; @@ -369,7 +371,7 @@ bool pkgCdrom::DropRepeats(vector<string> &List,const char *Name) // --------------------------------------------------------------------- /* This takes the list of source list expressed entires and collects similar ones to form a single entry for each dist */ -void pkgCdrom::ReduceSourcelist(string CD,vector<string> &List) +void pkgCdrom::ReduceSourcelist(string /*CD*/,vector<string> &List) { sort(List.begin(),List.end()); @@ -440,7 +442,7 @@ bool pkgCdrom::WriteDatabase(Configuration &Cnf) Out.close(); if (FileExists(DFile) == true) - rename(DFile.c_str(), string(DFile + '~').c_str()); + rename(DFile.c_str(), (DFile + '~').c_str()); if (rename(NewFile.c_str(),DFile.c_str()) != 0) return _error->Errno("rename","Failed to rename %s.new to %s", DFile.c_str(),DFile.c_str()); @@ -553,7 +555,7 @@ bool pkgCdrom::WriteSourceList(string Name,vector<string> &List,bool Source) Out.close(); - rename(File.c_str(),string(File + '~').c_str()); + rename(File.c_str(), (File + '~').c_str()); if (rename(NewFile.c_str(),File.c_str()) != 0) return _error->Errno("rename","Failed to rename %s.new to %s", File.c_str(),File.c_str()); @@ -561,7 +563,7 @@ bool pkgCdrom::WriteSourceList(string Name,vector<string> &List,bool Source) return true; } /*}}}*/ -bool pkgCdrom::MountAndIdentCDROM(Configuration &Database, std::string &CDROM, std::string &ident, pkgCdromStatus * const log)/*{{{*/ +bool pkgCdrom::MountAndIdentCDROM(Configuration &Database, std::string &CDROM, std::string &ident, pkgCdromStatus * const log, bool const interactive)/*{{{*/ { // Startup CDROM = _config->FindDir("Acquire::cdrom::mount"); @@ -579,16 +581,19 @@ bool pkgCdrom::MountAndIdentCDROM(Configuration &Database, std::string &CDROM, s // Unmount the CD and get the user to put in the one they want if (_config->FindB("APT::CDROM::NoMount", false) == false) { - if(log != NULL) - log->Update(_("Unmounting CD-ROM\n"), STEP_UNMOUNT); - UnmountCdrom(CDROM); - - if(log != NULL) + if (interactive == true) { - log->Update(_("Waiting for disc...\n"), STEP_WAIT); - if(!log->ChangeCdrom()) { - // user aborted - return false; + if(log != NULL) + log->Update(_("Unmounting CD-ROM...\n"), STEP_LAST); + UnmountCdrom(CDROM); + + if(log != NULL) + { + log->Update(_("Waiting for disc...\n"), STEP_WAIT); + if(!log->ChangeCdrom()) { + // user aborted + return false; + } } } @@ -602,7 +607,7 @@ bool pkgCdrom::MountAndIdentCDROM(Configuration &Database, std::string &CDROM, s // Hash the CD to get an ID if (log != NULL) - log->Update(_("Identifying.. "), STEP_IDENT); + log->Update(_("Identifying... "), STEP_IDENT); if (IdentCdrom(CDROM,ident) == false) { @@ -634,7 +639,7 @@ bool pkgCdrom::Ident(string &ident, pkgCdromStatus *log) /*{{{*/ { Configuration Database; std::string CDROM; - if (MountAndIdentCDROM(Database, CDROM, ident, log) == false) + if (MountAndIdentCDROM(Database, CDROM, ident, log, false) == false) return false; if (log != NULL) @@ -660,11 +665,11 @@ bool pkgCdrom::Add(pkgCdromStatus *log) /*{{{*/ { Configuration Database; std::string ID, CDROM; - if (MountAndIdentCDROM(Database, CDROM, ID, log) == false) + if (MountAndIdentCDROM(Database, CDROM, ID, log, true) == false) return false; if(log != NULL) - log->Update(_("Scanning disc for index files..\n"),STEP_SCAN); + log->Update(_("Scanning disc for index files...\n"),STEP_SCAN); // Get the CD structure vector<string> List; @@ -737,7 +742,7 @@ bool pkgCdrom::Add(pkgCdromStatus *log) /*{{{*/ if (InfoDir.empty() == false && FileExists(InfoDir + "/info") == true) { - ifstream F(string(InfoDir + "/info").c_str()); + ifstream F((InfoDir + "/info").c_str()); if (!F == 0) getline(F,Name); @@ -933,10 +938,10 @@ pkgUdevCdromDevices::Dlopen() /*{{{*/ // convenience interface, this will just call ScanForRemovable vector<CdromDevice> pkgUdevCdromDevices::Scan() -{ +{ bool CdromOnly = _config->FindB("APT::cdrom::CdromOnly", true); - return ScanForRemovable(CdromOnly); -}; + return ScanForRemovable(CdromOnly); +} /*}}}*/ /*{{{*/ vector<CdromDevice> @@ -981,7 +986,7 @@ pkgUdevCdromDevices::ScanForRemovable(bool CdromOnly) cdrom.DeviceName = string(devnode); if (mountpath != "") { cdrom.MountPath = mountpath; - string s = string(mountpath); + string s = mountpath; cdrom.Mounted = IsMounted(s); } else { cdrom.Mounted = false; diff --git a/apt-pkg/cdrom.h b/apt-pkg/cdrom.h index c58593550..0f2c2cd02 100644 --- a/apt-pkg/cdrom.h +++ b/apt-pkg/cdrom.h @@ -1,9 +1,13 @@ #ifndef PKGLIB_CDROM_H #define PKGLIB_CDROM_H +#include <apt-pkg/macros.h> + #include<string> #include<vector> +#include <stddef.h> + #ifndef APT_8_CLEANER_HEADERS #include <apt-pkg/init.h> using namespace std; @@ -71,8 +75,8 @@ class pkgCdrom /*{{{*/ bool Add(pkgCdromStatus *log); private: - bool MountAndIdentCDROM(Configuration &Database, std::string &CDROM, - std::string &ident, pkgCdromStatus * const log); + APT_HIDDEN bool MountAndIdentCDROM(Configuration &Database, std::string &CDROM, + std::string &ident, pkgCdromStatus * const log, bool const interactive); }; /*}}}*/ diff --git a/apt-pkg/clean.cc b/apt-pkg/clean.cc index 2dea8ffdd..0ee3b765d 100644 --- a/apt-pkg/clean.cc +++ b/apt-pkg/clean.cc @@ -16,7 +16,11 @@ #include <apt-pkg/configuration.h> #include <apt-pkg/aptconfiguration.h> #include <apt-pkg/fileutl.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> +#include <string> +#include <string.h> #include <dirent.h> #include <sys/stat.h> #include <unistd.h> diff --git a/apt-pkg/clean.h b/apt-pkg/clean.h index ad4049e83..930d54a7f 100644 --- a/apt-pkg/clean.h +++ b/apt-pkg/clean.h @@ -10,8 +10,13 @@ #ifndef APTPKG_CLEAN_H #define APTPKG_CLEAN_H - +#ifndef APT_10_CLEANER_HEADERS #include <apt-pkg/pkgcache.h> +#endif + +#include <string> + +class pkgCache; class pkgArchiveCleaner { diff --git a/apt-pkg/contrib/cdromutl.cc b/apt-pkg/contrib/cdromutl.cc index 20210ec0a..936e377fb 100644 --- a/apt-pkg/contrib/cdromutl.cc +++ b/apt-pkg/contrib/cdromutl.cc @@ -19,7 +19,11 @@ #include <apt-pkg/configuration.h> #include <apt-pkg/strutl.h> -#include <sys/wait.h> +#include <stdlib.h> +#include <string.h> +#include <iostream> +#include <string> +#include <vector> #include <sys/statvfs.h> #include <dirent.h> #include <fcntl.h> @@ -42,11 +46,16 @@ bool IsMounted(string &Path) { if (Path.empty() == true) return false; - + // Need that trailing slash for directories if (Path[Path.length() - 1] != '/') Path += '/'; - + + // if the path has a ".disk" directory we treat it as mounted + // this way even extracted copies of disks are recognized + if (DirectoryExists(Path + ".disk/") == true) + return true; + /* First we check if the path is actually mounted, we do this by stating the path and the previous directory (careful of links!) and comparing their device fields. */ @@ -66,7 +75,13 @@ bool IsMounted(string &Path) leave /etc/mtab inconsitant. We drop all messages this produces. */ bool UnmountCdrom(string Path) { - if (IsMounted(Path) == false) + // do not generate errors, even if the mountpoint does not exist + // the mountpoint might be auto-created by the mount command + // and a non-existing mountpoint is surely not mounted + _error->PushToStack(); + bool const mounted = IsMounted(Path); + _error->RevertToStack(); + if (mounted == false) return true; for (int i=0;i<3;i++) @@ -78,8 +93,9 @@ bool UnmountCdrom(string Path) if (Child == 0) { // Make all the fds /dev/null - for (int I = 0; I != 3; I++) - dup2(open("/dev/null",O_RDWR),I); + int const null_fd = open("/dev/null",O_RDWR); + for (int I = 0; I != 3; ++I) + dup2(null_fd, I); if (_config->Exists("Acquire::cdrom::"+Path+"::UMount") == true) { @@ -113,19 +129,24 @@ bool UnmountCdrom(string Path) /* We fork mount and drop all messages */ bool MountCdrom(string Path, string DeviceName) { - if (IsMounted(Path) == true) + // do not generate errors, even if the mountpoint does not exist + // the mountpoint might be auto-created by the mount command + _error->PushToStack(); + bool const mounted = IsMounted(Path); + _error->RevertToStack(); + if (mounted == true) return true; - + int Child = ExecFork(); // The child if (Child == 0) { // Make all the fds /dev/null - int null_fd = open("/dev/null",O_RDWR); - for (int I = 0; I != 3; I++) + int const null_fd = open("/dev/null",O_RDWR); + for (int I = 0; I != 3; ++I) dup2(null_fd, I); - + if (_config->Exists("Acquire::cdrom::"+Path+"::Mount") == true) { if (system(_config->Find("Acquire::cdrom::"+Path+"::Mount").c_str()) != 0) @@ -242,37 +263,34 @@ bool IdentCdrom(string CD,string &Res,unsigned int Version) return true; } /*}}}*/ - // FindMountPointForDevice - Find mountpoint for the given device /*{{{*/ string FindMountPointForDevice(const char *devnode) { - char buf[255]; - char *out[10]; - int i=0; - // this is the order that mount uses as well - const char *mount[] = { "/etc/mtab", - "/proc/mount", - NULL }; + std::vector<std::string> const mounts = _config->FindVector("Dir::state::MountPoints", "/etc/mtab,/proc/mount"); - for (i=0; mount[i] != NULL; i++) { - if (FileExists(mount[i])) { - FILE *f=fopen(mount[i], "r"); - while ( fgets(buf, sizeof(buf), f) != NULL) { - if (strncmp(buf, devnode, strlen(devnode)) == 0) { - if(TokSplitString(' ', buf, out, 10)) - { - fclose(f); - // unescape the \0XXX chars in the path - string mount_point = out[1]; - return DeEscapeString(mount_point); - } - } - } - fclose(f); + for (std::vector<std::string>::const_iterator m = mounts.begin(); m != mounts.end(); ++m) + if (FileExists(*m) == true) + { + char * line = NULL; + size_t line_len = 0; + FILE * f = fopen(m->c_str(), "r"); + while(getline(&line, &line_len, f) != -1) + { + char * out[] = { NULL, NULL, NULL }; + TokSplitString(' ', line, out, 3); + if (out[2] != NULL || out[1] == NULL || out[0] == NULL) + continue; + if (strcmp(out[0], devnode) != 0) + continue; + fclose(f); + // unescape the \0XXX chars in the path + string mount_point = out[1]; + return DeEscapeString(mount_point); + } + fclose(f); } - } - + return string(); } /*}}}*/ diff --git a/apt-pkg/contrib/cmndline.cc b/apt-pkg/contrib/cmndline.cc index ed5800007..3799c822d 100644 --- a/apt-pkg/contrib/cmndline.cc +++ b/apt-pkg/contrib/cmndline.cc @@ -18,6 +18,11 @@ #include <apt-pkg/error.h> #include <apt-pkg/strutl.h> +#include <stddef.h> +#include <stdlib.h> +#include <string.h> +#include <string> + #include <apti18n.h> /*}}}*/ using namespace std; diff --git a/apt-pkg/contrib/cmndline.h b/apt-pkg/contrib/cmndline.h index 180276633..143df58b2 100644 --- a/apt-pkg/contrib/cmndline.h +++ b/apt-pkg/contrib/cmndline.h @@ -44,6 +44,8 @@ #ifndef PKGLIB_CMNDLINE_H #define PKGLIB_CMNDLINE_H +#include <apt-pkg/macros.h> + #ifndef APT_8_CLEANER_HEADERS #include <apt-pkg/configuration.h> #endif @@ -80,14 +82,14 @@ class CommandLine bool Parse(int argc,const char **argv); void ShowHelp(); - unsigned int FileSize() const; + unsigned int FileSize() const APT_PURE; bool DispatchArg(Dispatch *List,bool NoMatch = true); static char const * GetCommand(Dispatch const * const Map, - unsigned int const argc, char const * const * const argv); + unsigned int const argc, char const * const * const argv) APT_PURE; static CommandLine::Args MakeArgs(char ShortOpt, char const *LongOpt, - char const *ConfName, unsigned long Flags); + char const *ConfName, unsigned long Flags) APT_CONST; CommandLine(Args *AList,Configuration *Conf); ~CommandLine(); diff --git a/apt-pkg/contrib/configuration.cc b/apt-pkg/contrib/configuration.cc index 4ef4663c0..00f6ad0f9 100644 --- a/apt-pkg/contrib/configuration.cc +++ b/apt-pkg/contrib/configuration.cc @@ -21,10 +21,18 @@ #include <apt-pkg/error.h> #include <apt-pkg/strutl.h> #include <apt-pkg/fileutl.h> - +#include <apt-pkg/macros.h> + +#include <ctype.h> +#include <regex.h> +#include <stddef.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <algorithm> +#include <string> #include <vector> #include <fstream> -#include <iostream> #include <apti18n.h> @@ -42,8 +50,7 @@ Configuration::Configuration() : ToFree(true) } Configuration::Configuration(const Item *Root) : Root((Item *)Root), ToFree(false) { -}; - +} /*}}}*/ // Configuration::~Configuration - Destructor /*{{{*/ // --------------------------------------------------------------------- @@ -246,12 +253,18 @@ string Configuration::FindDir(const char *Name,const char *Default) const // Configuration::FindVector - Find a vector of values /*{{{*/ // --------------------------------------------------------------------- /* Returns a vector of config values under the given item */ -vector<string> Configuration::FindVector(const char *Name) const +#if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR < 13) +vector<string> Configuration::FindVector(const char *Name) const { return FindVector(Name, ""); } +#endif +vector<string> Configuration::FindVector(const char *Name, std::string const &Default) const { vector<string> Vec; const Item *Top = Lookup(Name); if (Top == NULL) - return Vec; + return VectorizeString(Default, ','); + + if (Top->Value.empty() == false) + return VectorizeString(Top->Value, ','); Item *I = Top->Child; while(I != NULL) @@ -259,6 +272,9 @@ vector<string> Configuration::FindVector(const char *Name) const Vec.push_back(I->Value); I = I->Next; } + if (Vec.empty() == true) + return VectorizeString(Default, ','); + return Vec; } /*}}}*/ diff --git a/apt-pkg/contrib/configuration.h b/apt-pkg/contrib/configuration.h index 8e09ea0a6..c256139f4 100644 --- a/apt-pkg/contrib/configuration.h +++ b/apt-pkg/contrib/configuration.h @@ -74,8 +74,22 @@ class Configuration std::string Find(std::string const &Name, std::string const &Default) const {return Find(Name.c_str(),Default.c_str());}; std::string FindFile(const char *Name,const char *Default = 0) const; std::string FindDir(const char *Name,const char *Default = 0) const; + /** return a list of child options + * + * Options like Acquire::Languages are handled as lists which + * can be overridden and have a default. For the later two a comma + * separated list of values is supported. + * + * \param Name of the parent node + * \param Default list of values separated by commas */ + std::vector<std::string> FindVector(const char *Name, std::string const &Default) const; + std::vector<std::string> 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<std::string> FindVector(const char *Name) const { return FindVector(Name, ""); }; +#else std::vector<std::string> FindVector(const char *Name) const; - std::vector<std::string> FindVector(std::string const &Name) const { return FindVector(Name.c_str()); }; +#endif + std::vector<std::string> 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/crc-16.h b/apt-pkg/contrib/crc-16.h index 702de40b2..08acdafb7 100644 --- a/apt-pkg/contrib/crc-16.h +++ b/apt-pkg/contrib/crc-16.h @@ -10,8 +10,10 @@ #ifndef APTPKG_CRC16_H #define APTPKG_CRC16_H +#include <apt-pkg/macros.h> + #define INIT_FCS 0xffff unsigned short AddCRC16(unsigned short fcs, void const *buf, - unsigned long long len); + unsigned long long len) APT_PURE; #endif diff --git a/apt-pkg/contrib/error.cc b/apt-pkg/contrib/error.cc index d457781c3..892cd4874 100644 --- a/apt-pkg/contrib/error.cc +++ b/apt-pkg/contrib/error.cc @@ -17,12 +17,14 @@ #include <apt-pkg/error.h> +#include <stdarg.h> +#include <stddef.h> +#include <list> #include <iostream> #include <errno.h> #include <stdio.h> #include <stdlib.h> #include <unistd.h> - #include <string> #include <cstring> @@ -223,7 +225,7 @@ void GlobalError::DumpErrors(std::ostream &out, MsgType const &threshold, void GlobalError::Discard() { Messages.clear(); PendingFlag = false; -}; +} /*}}}*/ // GlobalError::empty - does our error list include anything? /*{{{*/ bool GlobalError::empty(MsgType const &trashhold) const { diff --git a/apt-pkg/contrib/error.h b/apt-pkg/contrib/error.h index bcee70b1a..ed8c19153 100644 --- a/apt-pkg/contrib/error.h +++ b/apt-pkg/contrib/error.h @@ -46,6 +46,7 @@ #include <list> #include <string> +#include <stddef.h> #include <stdarg.h> class GlobalError /*{{{*/ @@ -73,7 +74,7 @@ public: /*{{{*/ * * \return \b false */ - bool FatalE(const char *Function,const char *Description,...) __like_printf(3) __cold; + bool FatalE(const char *Function,const char *Description,...) APT_PRINTF(3) APT_COLD; /** \brief add an Error message with errno to the list * @@ -82,7 +83,7 @@ public: /*{{{*/ * * \return \b false */ - bool Errno(const char *Function,const char *Description,...) __like_printf(3) __cold; + bool Errno(const char *Function,const char *Description,...) APT_PRINTF(3) APT_COLD; /** \brief add a warning message with errno to the list * @@ -94,7 +95,7 @@ public: /*{{{*/ * * \return \b false */ - bool WarningE(const char *Function,const char *Description,...) __like_printf(3) __cold; + bool WarningE(const char *Function,const char *Description,...) APT_PRINTF(3) APT_COLD; /** \brief add a notice message with errno to the list * @@ -103,7 +104,7 @@ public: /*{{{*/ * * \return \b false */ - bool NoticeE(const char *Function,const char *Description,...) __like_printf(3) __cold; + bool NoticeE(const char *Function,const char *Description,...) APT_PRINTF(3) APT_COLD; /** \brief add a debug message with errno to the list * @@ -112,7 +113,7 @@ public: /*{{{*/ * * \return \b false */ - bool DebugE(const char *Function,const char *Description,...) __like_printf(3) __cold; + bool DebugE(const char *Function,const char *Description,...) APT_PRINTF(3) APT_COLD; /** \brief adds an errno message with the given type * @@ -121,7 +122,7 @@ public: /*{{{*/ * \param Description of the error */ bool InsertErrno(MsgType const &type, const char* Function, - const char* Description,...) __like_printf(4) __cold; + const char* Description,...) APT_PRINTF(4) APT_COLD; /** \brief adds an errno message with the given type * @@ -140,7 +141,7 @@ public: /*{{{*/ */ bool InsertErrno(MsgType type, const char* Function, const char* Description, va_list &args, - int const errsv, size_t &msgSize); + int const errsv, size_t &msgSize) APT_COLD; /** \brief add an fatal error message to the list * @@ -155,7 +156,7 @@ public: /*{{{*/ * * \return \b false */ - bool Fatal(const char *Description,...) __like_printf(2) __cold; + bool Fatal(const char *Description,...) APT_PRINTF(2) APT_COLD; /** \brief add an Error message to the list * @@ -163,7 +164,7 @@ public: /*{{{*/ * * \return \b false */ - bool Error(const char *Description,...) __like_printf(2) __cold; + bool Error(const char *Description,...) APT_PRINTF(2) APT_COLD; /** \brief add a warning message to the list * @@ -174,7 +175,7 @@ public: /*{{{*/ * * \return \b false */ - bool Warning(const char *Description,...) __like_printf(2) __cold; + bool Warning(const char *Description,...) APT_PRINTF(2) APT_COLD; /** \brief add a notice message to the list * @@ -187,7 +188,7 @@ public: /*{{{*/ * * \return \b false */ - bool Notice(const char *Description,...) __like_printf(2) __cold; + bool Notice(const char *Description,...) APT_PRINTF(2) APT_COLD; /** \brief add a debug message to the list * @@ -195,14 +196,14 @@ public: /*{{{*/ * * \return \b false */ - bool Debug(const char *Description,...) __like_printf(2) __cold; + bool Debug(const char *Description,...) APT_PRINTF(2) APT_COLD; /** \brief adds an error message with the given type * * \param type of the error message * \param Description of the error */ - bool Insert(MsgType const &type, const char* Description,...) __like_printf(3) __cold; + bool Insert(MsgType const &type, const char* Description,...) APT_PRINTF(3) APT_COLD; /** \brief adds an error message with the given type * @@ -218,13 +219,13 @@ public: /*{{{*/ * should call this method again in that case */ bool Insert(MsgType type, const char* Description, - va_list &args, size_t &msgSize) __cold; + va_list &args, size_t &msgSize) APT_COLD; /** \brief is an error in the list? * * \return \b true if an error is included in the list, \b false otherwise */ - inline bool PendingError() const {return PendingFlag;}; + inline bool PendingError() const APT_PURE {return PendingFlag;}; /** \brief is the list empty? * @@ -232,11 +233,11 @@ public: /*{{{*/ * if you want to check if also no notices happened set the parameter * flag to \b false. * - * \param WithoutNotice does notices count, default is \b true, so no + * \param threshold minimim level considered * * \return \b true if an the list is empty, \b false otherwise */ - bool empty(MsgType const &trashhold = WARNING) const; + bool empty(MsgType const &threshold = WARNING) const APT_PURE; /** \brief returns and removes the first (or last) message in the list * @@ -302,7 +303,7 @@ public: /*{{{*/ void MergeWithStack(); /** \brief return the deep of the stack */ - size_t StackCount() const { + size_t StackCount() const APT_PURE { return Stacks.size(); } diff --git a/apt-pkg/contrib/fileutl.cc b/apt-pkg/contrib/fileutl.cc index 52411a762..69a675648 100644 --- a/apt-pkg/contrib/fileutl.cc +++ b/apt-pkg/contrib/fileutl.cc @@ -1,6 +1,5 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: fileutl.cc,v 1.42 2002/09/14 05:29:22 jgg Exp $ /* ###################################################################### File Utilities @@ -26,16 +25,22 @@ #include <apt-pkg/sptr.h> #include <apt-pkg/aptconfiguration.h> #include <apt-pkg/configuration.h> - +#include <apt-pkg/macros.h> + +#include <ctype.h> +#include <stdarg.h> +#include <stddef.h> +#include <sys/select.h> +#include <time.h> +#include <string> +#include <vector> #include <cstdlib> #include <cstring> #include <cstdio> - #include <iostream> #include <unistd.h> #include <fcntl.h> #include <sys/stat.h> -#include <sys/types.h> #include <sys/time.h> #include <sys/wait.h> #include <dirent.h> @@ -52,6 +57,10 @@ #ifdef HAVE_BZ2 #include <bzlib.h> #endif +#ifdef HAVE_LZMA + #include <stdint.h> + #include <lzma.h> +#endif #ifdef WORDS_BIGENDIAN #include <inttypes.h> @@ -62,54 +71,6 @@ using namespace std; -class FileFdPrivate { - public: -#ifdef HAVE_ZLIB - gzFile gz; -#else - void* gz; -#endif -#ifdef HAVE_BZ2 - BZFILE* bz2; -#else - void* bz2; -#endif - int compressed_fd; - pid_t compressor_pid; - bool pipe; - APT::Configuration::Compressor compressor; - unsigned int openmode; - unsigned long long seekpos; - FileFdPrivate() : gz(NULL), bz2(NULL), - compressed_fd(-1), compressor_pid(-1), pipe(false), - openmode(0), seekpos(0) {}; - bool CloseDown(std::string const &FileName) - { - bool Res = true; -#ifdef HAVE_ZLIB - if (gz != NULL) { - int const e = gzclose(gz); - gz = NULL; - // gzdclose() on empty files always fails with "buffer error" here, ignore that - if (e != 0 && e != Z_BUF_ERROR) - Res &= _error->Errno("close",_("Problem closing the gzip file %s"), FileName.c_str()); - } -#endif -#ifdef HAVE_BZ2 - if (bz2 != NULL) { - BZ2_bzclose(bz2); - bz2 = NULL; - } -#endif - if (compressor_pid > 0) - ExecWait(compressor_pid, "FileFdCompressor", true); - compressor_pid = -1; - - return Res; - } - ~FileFdPrivate() { CloseDown(""); } -}; - // RunScripts - Run a set of scripts from a configuration subtree /*{{{*/ // --------------------------------------------------------------------- /* */ @@ -143,7 +104,11 @@ bool RunScripts(const char *Cnf) { if (Opts->Value.empty() == true) continue; - + + if(_config->FindB("Debug::RunScripts", false) == true) + std::clog << "Running external script: '" + << Opts->Value << "'" << std::endl; + if (system(Opts->Value.c_str()) != 0) _exit(100+Count); } @@ -874,13 +839,129 @@ bool ExecWait(pid_t Pid,const char *Name,bool Reap) } /*}}}*/ +class FileFdPrivate { /*{{{*/ + public: +#ifdef HAVE_ZLIB + gzFile gz; +#endif +#ifdef HAVE_BZ2 + BZFILE* bz2; +#endif +#ifdef HAVE_LZMA + struct LZMAFILE { + FILE* file; + uint8_t buffer[4096]; + lzma_stream stream; + lzma_ret err; + bool eof; + bool compressing; + + LZMAFILE() : file(NULL), eof(false), compressing(false) {} + ~LZMAFILE() { + if (compressing == true) + { + for (;;) { + stream.avail_out = sizeof(buffer)/sizeof(buffer[0]); + stream.next_out = buffer; + err = lzma_code(&stream, LZMA_FINISH); + if (err != LZMA_OK && err != LZMA_STREAM_END) + { + _error->Error("~LZMAFILE: Compress finalisation failed"); + break; + } + size_t const n = sizeof(buffer)/sizeof(buffer[0]) - stream.avail_out; + if (n && fwrite(buffer, 1, n, file) != n) + { + _error->Errno("~LZMAFILE",_("Write error")); + break; + } + if (err == LZMA_STREAM_END) + break; + } + } + lzma_end(&stream); + fclose(file); + } + }; + LZMAFILE* lzma; +#endif + int compressed_fd; + pid_t compressor_pid; + bool pipe; + APT::Configuration::Compressor compressor; + unsigned int openmode; + unsigned long long seekpos; + FileFdPrivate() : +#ifdef HAVE_ZLIB + gz(NULL), +#endif +#ifdef HAVE_BZ2 + bz2(NULL), +#endif +#ifdef HAVE_LZMA + lzma(NULL), +#endif + compressed_fd(-1), compressor_pid(-1), pipe(false), + openmode(0), seekpos(0) {}; + bool InternalClose(std::string const &FileName) + { + if (false) + /* dummy so that the rest can be 'else if's */; +#ifdef HAVE_ZLIB + else if (gz != NULL) { + int const e = gzclose(gz); + gz = NULL; + // gzdclose() on empty files always fails with "buffer error" here, ignore that + if (e != 0 && e != Z_BUF_ERROR) + return _error->Errno("close",_("Problem closing the gzip file %s"), FileName.c_str()); + } +#endif +#ifdef HAVE_BZ2 + else if (bz2 != NULL) { + BZ2_bzclose(bz2); + bz2 = NULL; + } +#endif +#ifdef HAVE_LZMA + else if (lzma != NULL) { + delete lzma; + lzma = NULL; + } +#endif + return true; + } + bool CloseDown(std::string const &FileName) + { + bool const Res = InternalClose(FileName); + + if (compressor_pid > 0) + ExecWait(compressor_pid, "FileFdCompressor", true); + compressor_pid = -1; + + return Res; + } + bool InternalStream() const { + return false +#ifdef HAVE_BZ2 + || bz2 != NULL +#endif +#ifdef HAVE_LZMA + || lzma != NULL +#endif + ; + } + + + ~FileFdPrivate() { CloseDown(""); } +}; + /*}}}*/ // FileFd::Open - Open a file /*{{{*/ // --------------------------------------------------------------------- /* The most commonly used open mode combinations are given with Mode */ -bool FileFd::Open(string FileName,unsigned int const Mode,CompressMode Compress, unsigned long const Perms) +bool FileFd::Open(string FileName,unsigned int const Mode,CompressMode Compress, unsigned long const AccessMode) { if (Mode == ReadOnlyGzip) - return Open(FileName, ReadOnly, Gzip, Perms); + return Open(FileName, ReadOnly, Gzip, AccessMode); if (Compress == Auto && (Mode & WriteOnly) == WriteOnly) return FileFdError("Autodetection on %s only works in ReadOnly openmode!", FileName.c_str()); @@ -891,7 +972,7 @@ bool FileFd::Open(string FileName,unsigned int const Mode,CompressMode Compress, { for (; compressor != compressors.end(); ++compressor) { - std::string file = std::string(FileName).append(compressor->Extension); + std::string file = FileName + compressor->Extension; if (FileExists(file) == false) continue; FileName = file; @@ -947,9 +1028,9 @@ bool FileFd::Open(string FileName,unsigned int const Mode,CompressMode Compress, if (compressor == compressors.end()) return FileFdError("Can't find a match for specified compressor mode for file %s", FileName.c_str()); - return Open(FileName, Mode, *compressor, Perms); + return Open(FileName, Mode, *compressor, AccessMode); } -bool FileFd::Open(string FileName,unsigned int const Mode,APT::Configuration::Compressor const &compressor, unsigned long const Perms) +bool FileFd::Open(string FileName,unsigned int const Mode,APT::Configuration::Compressor const &compressor, unsigned long const AccessMode) { Close(); Flags = AutoClose; @@ -986,6 +1067,13 @@ bool FileFd::Open(string FileName,unsigned int const Mode,APT::Configuration::Co if_FLAGGED_SET(Exclusive, O_EXCL); #undef if_FLAGGED_SET + // umask() will always set the umask and return the previous value, so + // we first set the umask and then reset it to the old value + mode_t CurrentUmask = umask(0); + umask(CurrentUmask); + // calculate the actual file permissions (just like open/creat) + mode_t FilePermissions = (AccessMode & ~CurrentUmask); + if ((Mode & Atomic) == Atomic) { char *name = strdup((FileName + ".XXXXXX").c_str()); @@ -999,11 +1087,11 @@ bool FileFd::Open(string FileName,unsigned int const Mode,APT::Configuration::Co TemporaryFileName = string(name); free(name); - if(Perms != 600 && fchmod(iFd, Perms) == -1) + if(FilePermissions != 600 && fchmod(iFd, FilePermissions) == -1) return FileFdErrno("fchmod", "Could not change permissions for temporary file %s", TemporaryFileName.c_str()); } else - iFd = open(FileName.c_str(), fileflags, Perms); + iFd = open(FileName.c_str(), fileflags, FilePermissions); this->FileName = FileName; if (iFd == -1 || OpenInternDescriptor(Mode, compressor) == false) @@ -1061,30 +1149,12 @@ bool FileFd::OpenDescriptor(int Fd, unsigned int const Mode, APT::Configuration: { Close(); Flags = (AutoClose) ? FileFd::AutoClose : 0; - if (AutoClose == false && ( -#ifdef HAVE_ZLIB - compressor.Name == "gzip" || -#endif -#ifdef HAVE_BZ2 - compressor.Name == "bzip2" || -#endif - false)) - { - // Need to duplicate fd here or gzclose for cleanup will close the fd as well - iFd = dup(Fd); - } - else - iFd = Fd; + iFd = Fd; this->FileName = ""; - if (Fd == -1 || OpenInternDescriptor(Mode, compressor) == false) + if (OpenInternDescriptor(Mode, compressor) == false) { if (iFd != -1 && ( -#ifdef HAVE_ZLIB - compressor.Name == "gzip" || -#endif -#ifdef HAVE_BZ2 - compressor.Name == "bzip2" || -#endif + (Flags & Compressed) == Compressed || AutoClose == true)) { close (iFd); @@ -1096,52 +1166,121 @@ bool FileFd::OpenDescriptor(int Fd, unsigned int const Mode, APT::Configuration: } bool FileFd::OpenInternDescriptor(unsigned int const Mode, APT::Configuration::Compressor const &compressor) { + if (iFd == -1) + return false; if (compressor.Name == "." || compressor.Binary.empty() == true) return true; +#if defined HAVE_ZLIB || defined HAVE_BZ2 || defined HAVE_LZMA + // the API to open files is similar, so setup to avoid code duplicates later + // and while at it ensure that we close before opening (if its a reopen) + void* (*compress_open)(int, const char *) = NULL; + if (false) + /* dummy so that the rest can be 'else if's */; +#define APT_COMPRESS_INIT(NAME,OPEN) \ + else if (compressor.Name == NAME) \ + { \ + compress_open = (void*(*)(int, const char *)) OPEN; \ + if (d != NULL) d->InternalClose(FileName); \ + } +#ifdef HAVE_ZLIB + APT_COMPRESS_INIT("gzip", gzdopen) +#endif +#ifdef HAVE_BZ2 + APT_COMPRESS_INIT("bzip2", BZ2_bzdopen) +#endif +#ifdef HAVE_LZMA + APT_COMPRESS_INIT("xz", fdopen) + APT_COMPRESS_INIT("lzma", fdopen) +#endif +#undef APT_COMPRESS_INIT +#endif + if (d == NULL) { d = new FileFdPrivate(); d->openmode = Mode; d->compressor = compressor; +#if defined HAVE_ZLIB || defined HAVE_BZ2 || defined HAVE_LZMA + if ((Flags & AutoClose) != AutoClose && compress_open != NULL) + { + // Need to duplicate fd here or gz/bz2 close for cleanup will close the fd as well + int const internFd = dup(iFd); + if (internFd == -1) + return FileFdErrno("OpenInternDescriptor", _("Could not open file descriptor %d"), iFd); + iFd = internFd; + } +#endif } -#ifdef HAVE_ZLIB - if (compressor.Name == "gzip") +#if defined HAVE_ZLIB || defined HAVE_BZ2 || defined HAVE_LZMA + if (compress_open != NULL) { - if (d->gz != NULL) - { - gzclose(d->gz); - d->gz = NULL; - } + void* compress_struct = NULL; if ((Mode & ReadWrite) == ReadWrite) - d->gz = gzdopen(iFd, "r+"); + compress_struct = compress_open(iFd, "r+"); else if ((Mode & WriteOnly) == WriteOnly) - d->gz = gzdopen(iFd, "w"); + compress_struct = compress_open(iFd, "w"); else - d->gz = gzdopen(iFd, "r"); - if (d->gz == NULL) + compress_struct = compress_open(iFd, "r"); + if (compress_struct == NULL) return false; - Flags |= Compressed; - return true; - } + + if (false) + /* dummy so that the rest can be 'else if's */; +#ifdef HAVE_ZLIB + else if (compressor.Name == "gzip") + d->gz = (gzFile) compress_struct; #endif #ifdef HAVE_BZ2 - if (compressor.Name == "bzip2") - { - if (d->bz2 != NULL) + else if (compressor.Name == "bzip2") + d->bz2 = (BZFILE*) compress_struct; +#endif +#ifdef HAVE_LZMA + else if (compressor.Name == "xz" || compressor.Name == "lzma") { - BZ2_bzclose(d->bz2); - d->bz2 = NULL; + uint32_t const xzlevel = 6; + uint64_t const memlimit = UINT64_MAX; + if (d->lzma == NULL) + d->lzma = new FileFdPrivate::LZMAFILE; + d->lzma->file = (FILE*) compress_struct; + d->lzma->stream = LZMA_STREAM_INIT; + + if ((Mode & ReadWrite) == ReadWrite) + return FileFdError("ReadWrite mode is not supported for file %s", FileName.c_str()); + + if ((Mode & WriteOnly) == WriteOnly) + { + if (compressor.Name == "xz") + { + if (lzma_easy_encoder(&d->lzma->stream, xzlevel, LZMA_CHECK_CRC32) != LZMA_OK) + return false; + } + else + { + lzma_options_lzma options; + lzma_lzma_preset(&options, xzlevel); + if (lzma_alone_encoder(&d->lzma->stream, &options) != LZMA_OK) + return false; + } + d->lzma->compressing = true; + } + else + { + if (compressor.Name == "xz") + { + if (lzma_auto_decoder(&d->lzma->stream, memlimit, 0) != LZMA_OK) + return false; + } + else + { + if (lzma_alone_decoder(&d->lzma->stream, memlimit) != LZMA_OK) + return false; + } + d->lzma->compressing = false; + } } - if ((Mode & ReadWrite) == ReadWrite) - d->bz2 = BZ2_bzdopen(iFd, "r+"); - else if ((Mode & WriteOnly) == WriteOnly) - d->bz2 = BZ2_bzdopen(iFd, "w"); - else - d->bz2 = BZ2_bzdopen(iFd, "r"); - if (d->bz2 == NULL) - return false; +#endif Flags |= Compressed; return true; } @@ -1198,7 +1337,7 @@ bool FileFd::OpenInternDescriptor(unsigned int const Mode, APT::Configuration::C } else { - if (FileName.empty() == true) + if (d->compressed_fd != -1) dup2(d->compressed_fd,STDIN_FILENO); dup2(Pipe[1],STDOUT_FILENO); } @@ -1267,24 +1406,68 @@ bool FileFd::Read(void *To,unsigned long long Size,unsigned long long *Actual) *((char *)To) = '\0'; do { + if (false) + /* dummy so that the rest can be 'else if's */; #ifdef HAVE_ZLIB - if (d != NULL && d->gz != NULL) + else if (d != NULL && d->gz != NULL) Res = gzread(d->gz,To,Size); - else #endif #ifdef HAVE_BZ2 - if (d != NULL && d->bz2 != NULL) + else if (d != NULL && d->bz2 != NULL) Res = BZ2_bzread(d->bz2,To,Size); - else #endif +#ifdef HAVE_LZMA + else if (d != NULL && d->lzma != NULL) + { + if (d->lzma->eof == true) + break; + + d->lzma->stream.next_out = (uint8_t *) To; + d->lzma->stream.avail_out = Size; + if (d->lzma->stream.avail_in == 0) + { + d->lzma->stream.next_in = d->lzma->buffer; + d->lzma->stream.avail_in = fread(d->lzma->buffer, 1, sizeof(d->lzma->buffer)/sizeof(d->lzma->buffer[0]), d->lzma->file); + } + d->lzma->err = lzma_code(&d->lzma->stream, LZMA_RUN); + if (d->lzma->err == LZMA_STREAM_END) + { + d->lzma->eof = true; + Res = Size - d->lzma->stream.avail_out; + } + else if (d->lzma->err != LZMA_OK) + { + Res = -1; + errno = 0; + } + else + { + Res = Size - d->lzma->stream.avail_out; + if (Res == 0) + { + // lzma run was okay, but produced no output… + Res = -1; + errno = EINTR; + } + } + } +#endif + else Res = read(iFd,To,Size); if (Res < 0) { if (errno == EINTR) + { + // trick the while-loop into running again + Res = 1; + errno = 0; continue; + } + if (false) + /* dummy so that the rest can be 'else if's */; #ifdef HAVE_ZLIB - if (d != NULL && d->gz != NULL) + else if (d != NULL && d->gz != NULL) { int err; char const * const errmsg = gzerror(d->gz, &err); @@ -1293,7 +1476,7 @@ bool FileFd::Read(void *To,unsigned long long Size,unsigned long long *Actual) } #endif #ifdef HAVE_BZ2 - if (d != NULL && d->bz2 != NULL) + else if (d != NULL && d->bz2 != NULL) { int err; char const * const errmsg = BZ2_bzerror(d->bz2, &err); @@ -1301,6 +1484,10 @@ bool FileFd::Read(void *To,unsigned long long Size,unsigned long long *Actual) return FileFdError("BZ2_bzread: %s (%d: %s)", _("Read error"), err, errmsg); } #endif +#ifdef HAVE_LZMA + else if (d != NULL && d->lzma != NULL) + return FileFdError("lzma_read: %s (%d)", _("Read error"), d->lzma->err); +#endif return FileFdErrno("read",_("Read error")); } @@ -1364,23 +1551,45 @@ bool FileFd::Write(const void *From,unsigned long long Size) errno = 0; do { + if (false) + /* dummy so that the rest can be 'else if's */; #ifdef HAVE_ZLIB - if (d != NULL && d->gz != NULL) - Res = gzwrite(d->gz,From,Size); - else + else if (d != NULL && d->gz != NULL) + Res = gzwrite(d->gz,From,Size); #endif #ifdef HAVE_BZ2 - if (d != NULL && d->bz2 != NULL) - Res = BZ2_bzwrite(d->bz2,(void*)From,Size); - else + else if (d != NULL && d->bz2 != NULL) + Res = BZ2_bzwrite(d->bz2,(void*)From,Size); +#endif +#ifdef HAVE_LZMA + else if (d != NULL && d->lzma != NULL) + { + d->lzma->stream.next_in = (uint8_t *)From; + d->lzma->stream.avail_in = Size; + d->lzma->stream.next_out = d->lzma->buffer; + d->lzma->stream.avail_out = sizeof(d->lzma->buffer)/sizeof(d->lzma->buffer[0]); + d->lzma->err = lzma_code(&d->lzma->stream, LZMA_RUN); + if (d->lzma->err != LZMA_OK) + return false; + size_t const n = sizeof(d->lzma->buffer)/sizeof(d->lzma->buffer[0]) - d->lzma->stream.avail_out; + size_t const m = (n == 0) ? 0 : fwrite(d->lzma->buffer, 1, n, d->lzma->file); + if (m != n) + Res = -1; + else + Res = Size - d->lzma->stream.avail_in; + } #endif - Res = write(iFd,From,Size); + else + Res = write(iFd,From,Size); + if (Res < 0 && errno == EINTR) continue; if (Res < 0) { + if (false) + /* dummy so that the rest can be 'else if's */; #ifdef HAVE_ZLIB - if (d != NULL && d->gz != NULL) + else if (d != NULL && d->gz != NULL) { int err; char const * const errmsg = gzerror(d->gz, &err); @@ -1389,7 +1598,7 @@ bool FileFd::Write(const void *From,unsigned long long Size) } #endif #ifdef HAVE_BZ2 - if (d != NULL && d->bz2 != NULL) + else if (d != NULL && d->bz2 != NULL) { int err; char const * const errmsg = BZ2_bzerror(d->bz2, &err); @@ -1397,10 +1606,14 @@ bool FileFd::Write(const void *From,unsigned long long Size) return FileFdError("BZ2_bzwrite: %s (%d: %s)", _("Write error"), err, errmsg); } #endif +#ifdef HAVE_LZMA + else if (d != NULL && d->lzma != NULL) + return FileFdErrno("lzma_fwrite", _("Write error")); +#endif return FileFdErrno("write",_("Write error")); } - From = (char *)From + Res; + From = (char const *)From + Res; Size -= Res; if (d != NULL) d->seekpos += Res; @@ -1424,7 +1637,7 @@ bool FileFd::Write(int Fd, const void *From, unsigned long long Size) if (Res < 0) return _error->Errno("write",_("Write error")); - From = (char *)From + Res; + From = (char const *)From + Res; Size -= Res; } while (Res > 0 && Size > 0); @@ -1440,11 +1653,7 @@ bool FileFd::Write(int Fd, const void *From, unsigned long long Size) /* */ bool FileFd::Seek(unsigned long long To) { - if (d != NULL && (d->pipe == true -#ifdef HAVE_BZ2 - || d->bz2 != NULL -#endif - )) + if (d != NULL && (d->pipe == true || d->InternalStream() == true)) { // Our poor man seeking in pipes is costly, so try to avoid it unsigned long long seekpos = Tell(); @@ -1455,13 +1664,7 @@ bool FileFd::Seek(unsigned long long To) if ((d->openmode & ReadOnly) != ReadOnly) return FileFdError("Reopen is only implemented for read-only files!"); -#ifdef HAVE_BZ2 - if (d->bz2 != NULL) - { - BZ2_bzclose(d->bz2); - d->bz2 = NULL; - } -#endif + d->InternalClose(FileName); if (iFd != -1) close(iFd); iFd = -1; @@ -1507,11 +1710,7 @@ bool FileFd::Seek(unsigned long long To) /* */ bool FileFd::Skip(unsigned long long Over) { - if (d != NULL && (d->pipe == true -#ifdef HAVE_BZ2 - || d->bz2 != NULL -#endif - )) + if (d != NULL && (d->pipe == true || d->InternalStream() == true)) { d->seekpos += Over; char buffer[1024]; @@ -1548,8 +1747,12 @@ bool FileFd::Truncate(unsigned long long To) // truncating /dev/null is always successful - as we get an error otherwise if (To == 0 && FileName == "/dev/null") return true; -#if defined HAVE_ZLIB || defined HAVE_BZ2 - if (d != NULL && (d->gz != NULL || d->bz2 != NULL)) +#if defined HAVE_ZLIB || defined HAVE_BZ2 || defined HAVE_LZMA + if (d != NULL && (d->InternalStream() == true +#ifdef HAVE_ZLIB + || d->gz != NULL +#endif + )) return FileFdError("Truncating compressed files is not implemented (%s)", FileName.c_str()); #endif if (ftruncate(iFd,To) != 0) @@ -1567,11 +1770,7 @@ unsigned long long FileFd::Tell() // seeking around, but not all users of FileFd use always Seek() and co // so d->seekpos isn't always true and we can just use it as a hint if // we have nothing else, but not always as an authority… - if (d != NULL && (d->pipe == true -#ifdef HAVE_BZ2 - || d->bz2 != NULL -#endif - )) + if (d != NULL && (d->pipe == true || d->InternalStream() == true)) return d->seekpos; off_t Res; @@ -1646,11 +1845,7 @@ unsigned long long FileFd::Size() // for compressor pipes st_size is undefined and at 'best' zero, // so we 'read' the content and 'seek' back - see there - if (d != NULL && (d->pipe == true -#ifdef HAVE_BZ2 - || (d->bz2 && size > 0) -#endif - )) + if (d != NULL && (d->pipe == true || (d->InternalStream() == true && size > 0))) { unsigned long long const oldSeek = Tell(); char ignore[1000]; @@ -1793,7 +1988,13 @@ bool FileFd::FileFdError(const char *Description,...) { } /*}}}*/ -gzFile FileFd::gzFd() { return (gzFile) d->gz; } +APT_DEPRECATED gzFile FileFd::gzFd() { +#ifdef HAVE_ZLIB + return d->gz; +#else + return NULL; +#endif +} // Glob - wrapper around "glob()" /*{{{*/ @@ -1841,3 +2042,14 @@ std::string GetTempDir() return string(tmpdir); } + +bool Rename(std::string From, std::string To) +{ + if (rename(From.c_str(),To.c_str()) != 0) + { + _error->Error(_("rename failed, %s (%s -> %s)."),strerror(errno), + From.c_str(),To.c_str()); + return false; + } + return true; +} diff --git a/apt-pkg/contrib/fileutl.h b/apt-pkg/contrib/fileutl.h index e752e9621..cc1a98eae 100644 --- a/apt-pkg/contrib/fileutl.h +++ b/apt-pkg/contrib/fileutl.h @@ -27,6 +27,7 @@ #include <string> #include <vector> #include <set> +#include <time.h> #include <zlib.h> @@ -94,7 +95,7 @@ class FileFd And as the auto-conversation converts a 'unsigned long *' to a 'bool' instead of 'unsigned long long *' we need to provide this explicitely - otherwise applications magically start to fail… */ - __deprecated bool Read(void *To,unsigned long long Size,unsigned long *Actual) + bool Read(void *To,unsigned long long Size,unsigned long *Actual) APT_DEPRECATED { unsigned long long R; bool const T = Read(To, Size, &R); @@ -102,10 +103,10 @@ class FileFd return T; } - bool Open(std::string FileName,unsigned int const Mode,CompressMode Compress,unsigned long const Perms = 0666); - bool Open(std::string FileName,unsigned int const Mode,APT::Configuration::Compressor const &compressor,unsigned long const Perms = 0666); - inline bool Open(std::string const &FileName,unsigned int const Mode, unsigned long const Perms = 0666) { - return Open(FileName, Mode, None, Perms); + bool Open(std::string FileName,unsigned int const Mode,CompressMode Compress,unsigned long const AccessMode = 0666); + bool Open(std::string FileName,unsigned int const Mode,APT::Configuration::Compressor const &compressor,unsigned long const AccessMode = 0666); + inline bool Open(std::string const &FileName,unsigned int const Mode, unsigned long const AccessMode = 0666) { + return Open(FileName, Mode, None, AccessMode); }; bool OpenDescriptor(int Fd, unsigned int const Mode, CompressMode Compress, bool AutoClose=false); bool OpenDescriptor(int Fd, unsigned int const Mode, APT::Configuration::Compressor const &compressor, bool AutoClose=false); @@ -118,7 +119,7 @@ class FileFd // Simple manipulators inline int Fd() {return iFd;}; inline void Fd(int fd) { OpenDescriptor(fd, ReadWrite);}; - __deprecated gzFile gzFd(); + gzFile gzFd() APT_DEPRECATED APT_PURE; inline bool IsOpen() {return iFd >= 0;}; inline bool Failed() {return (Flags & Fail) == Fail;}; @@ -128,13 +129,13 @@ class FileFd inline bool IsCompressed() {return (Flags & Compressed) == Compressed;}; inline std::string &Name() {return FileName;}; - FileFd(std::string FileName,unsigned int const Mode,unsigned long Perms = 0666) : iFd(-1), Flags(0), d(NULL) + FileFd(std::string FileName,unsigned int const Mode,unsigned long AccessMode = 0666) : iFd(-1), Flags(0), d(NULL) { - Open(FileName,Mode, None, Perms); + Open(FileName,Mode, None, AccessMode); }; - FileFd(std::string FileName,unsigned int const Mode, CompressMode Compress, unsigned long Perms = 0666) : iFd(-1), Flags(0), d(NULL) + FileFd(std::string FileName,unsigned int const Mode, CompressMode Compress, unsigned long AccessMode = 0666) : iFd(-1), Flags(0), d(NULL) { - Open(FileName,Mode, Compress, Perms); + Open(FileName,Mode, Compress, AccessMode); }; FileFd() : iFd(-1), Flags(AutoClose), d(NULL) {}; FileFd(int const Fd, unsigned int const Mode = ReadWrite, CompressMode Compress = None) : iFd(-1), Flags(0), d(NULL) @@ -149,11 +150,11 @@ class FileFd private: FileFdPrivate* d; - bool OpenInternDescriptor(unsigned int const Mode, APT::Configuration::Compressor const &compressor); + APT_HIDDEN bool OpenInternDescriptor(unsigned int const Mode, APT::Configuration::Compressor const &compressor); // private helpers to set Fail flag and call _error->Error - bool FileFdErrno(const char* Function, const char* Description,...) __like_printf(3) __cold; - bool FileFdError(const char* Description,...) __like_printf(2) __cold; + APT_HIDDEN bool FileFdErrno(const char* Function, const char* Description,...) APT_PRINTF(3) APT_COLD; + APT_HIDDEN bool FileFdError(const char* Description,...) APT_PRINTF(2) APT_COLD; }; bool RunScripts(const char *Cnf); @@ -161,9 +162,10 @@ bool CopyFile(FileFd &From,FileFd &To); int GetLock(std::string File,bool Errors = true); bool FileExists(std::string File); bool RealFileExists(std::string File); -bool DirectoryExists(std::string const &Path) __attrib_const; +bool DirectoryExists(std::string const &Path) APT_CONST; bool CreateDirectory(std::string const &Parent, std::string const &Path); time_t GetModificationTime(std::string const &Path); +bool Rename(std::string From, std::string To); std::string GetTempDir(); diff --git a/apt-pkg/contrib/gpgv.cc b/apt-pkg/contrib/gpgv.cc index 9de227062..f24dd9640 100644 --- a/apt-pkg/contrib/gpgv.cc +++ b/apt-pkg/contrib/gpgv.cc @@ -2,21 +2,23 @@ // Include Files /*{{{*/ #include<config.h> +#include<apt-pkg/configuration.h> +#include<apt-pkg/error.h> +#include<apt-pkg/strutl.h> +#include<apt-pkg/fileutl.h> +#include<apt-pkg/gpgv.h> + #include <errno.h> #include <stdio.h> #include <string.h> #include <stdlib.h> #include <fcntl.h> -#include <sys/stat.h> -#include <sys/types.h> #include <sys/wait.h> #include <unistd.h> - -#include<apt-pkg/configuration.h> -#include<apt-pkg/error.h> -#include<apt-pkg/strutl.h> -#include<apt-pkg/fileutl.h> -#include<apt-pkg/gpgv.h> +#include <stddef.h> +#include <iostream> +#include <string> +#include <vector> #include <apti18n.h> /*}}}*/ diff --git a/apt-pkg/contrib/gpgv.h b/apt-pkg/contrib/gpgv.h index 1d79a52ac..f018893fd 100644 --- a/apt-pkg/contrib/gpgv.h +++ b/apt-pkg/contrib/gpgv.h @@ -9,17 +9,17 @@ #ifndef CONTRIB_GPGV_H #define CONTRIB_GPGV_H +#include <apt-pkg/macros.h> + #include <string> #include <vector> +#ifndef APT_10_CLEANER_HEADERS #include <apt-pkg/fileutl.h> - -#if __GNUC__ >= 4 - #define APT_noreturn __attribute__ ((noreturn)) -#else - #define APT_noreturn /* no support */ #endif +class FileFd; + /** \brief generates and run the command to verify a file with gpgv * * If File and FileSig specify the same file it is assumed that we @@ -40,14 +40,12 @@ * @param FileSig is the signature (detached or clear-signed) */ void ExecGPGV(std::string const &File, std::string const &FileSig, - int const &statusfd, int fd[2]) APT_noreturn; -inline void ExecGPGV(std::string const &File, std::string const &FileSig, + int const &statusfd, int fd[2]) APT_NORETURN; +inline APT_NORETURN void ExecGPGV(std::string const &File, std::string const &FileSig, int const &statusfd = -1) { int fd[2]; ExecGPGV(File, FileSig, statusfd, fd); -}; - -#undef APT_noreturn +} /** \brief Split an inline signature into message and signature * diff --git a/apt-pkg/contrib/hashes.cc b/apt-pkg/contrib/hashes.cc index 890573d9c..1fce0d75f 100644 --- a/apt-pkg/contrib/hashes.cc +++ b/apt-pkg/contrib/hashes.cc @@ -16,8 +16,12 @@ #include <apt-pkg/hashes.h> #include <apt-pkg/fileutl.h> #include <apt-pkg/configuration.h> -#include <apt-pkg/macros.h> +#include <apt-pkg/md5.h> +#include <apt-pkg/sha1.h> +#include <apt-pkg/sha2.h> +#include <stddef.h> +#include <algorithm> #include <unistd.h> #include <string> #include <iostream> @@ -112,7 +116,7 @@ const char** HashString::SupportedHashes() return _SupportedHashes; } -bool HashString::empty() const +APT_PURE bool HashString::empty() const { return (Type.empty() || Hash.empty()); } diff --git a/apt-pkg/contrib/hashes.h b/apt-pkg/contrib/hashes.h index 0a8bcd259..5cd1af03b 100644 --- a/apt-pkg/contrib/hashes.h +++ b/apt-pkg/contrib/hashes.h @@ -17,17 +17,22 @@ #include <apt-pkg/md5.h> #include <apt-pkg/sha1.h> #include <apt-pkg/sha2.h> -#include <apt-pkg/fileutl.h> -#include <algorithm> -#include <vector> #include <cstring> - +#include <string> #ifndef APT_8_CLEANER_HEADERS using std::min; using std::vector; #endif +#ifndef APT_10_CLEANER_HEADERS +#include <apt-pkg/fileutl.h> +#include <algorithm> +#include <vector> +#endif + + +class FileFd; // helper class that contains hash function name // and hash @@ -61,7 +66,7 @@ class HashString bool empty() const; // return the list of hashes we support - static const char** SupportedHashes(); + static APT_CONST const char** SupportedHashes(); }; class Hashes @@ -77,7 +82,7 @@ class Hashes { return MD5.Add(Data,Size) && SHA1.Add(Data,Size) && SHA256.Add(Data,Size) && SHA512.Add(Data,Size); }; - inline bool Add(const char *Data) {return Add((unsigned char *)Data,strlen(Data));}; + 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, diff --git a/apt-pkg/contrib/hashsum.cc b/apt-pkg/contrib/hashsum.cc index d02177724..25ccc187d 100644 --- a/apt-pkg/contrib/hashsum.cc +++ b/apt-pkg/contrib/hashsum.cc @@ -1,6 +1,9 @@ // Cryptographic API Base #include <config.h> +#include <apt-pkg/fileutl.h> + +#include <algorithm> #include <unistd.h> #include "hashsum_template.h" diff --git a/apt-pkg/contrib/hashsum_template.h b/apt-pkg/contrib/hashsum_template.h index 9bf160b2b..869dc5cb7 100644 --- a/apt-pkg/contrib/hashsum_template.h +++ b/apt-pkg/contrib/hashsum_template.h @@ -10,36 +10,40 @@ #ifndef APTPKG_HASHSUM_TEMPLATE_H #define APTPKG_HASHSUM_TEMPLATE_H -#include <apt-pkg/fileutl.h> #include <string> #include <cstring> -#include <algorithm> -#include <stdint.h> #include <apt-pkg/strutl.h> +#ifndef APT_10_CLEANER_HEADERS +#include <apt-pkg/fileutl.h> +#include <algorithm> +#include <stdint.h> +#endif #ifndef APT_8_CLEANER_HEADERS using std::string; using std::min; #endif +class FileFd; + template<int N> class HashSumValue { unsigned char Sum[N/8]; - + public: // Accessors bool operator ==(const HashSumValue &rhs) const { return memcmp(Sum,rhs.Sum,sizeof(Sum)) == 0; - }; + } bool operator !=(const HashSumValue &rhs) const { return memcmp(Sum,rhs.Sum,sizeof(Sum)) != 0; - }; + } std::string Value() const { @@ -49,7 +53,7 @@ class HashSumValue }; char Result[((N/8)*2)+1]; Result[(N/8)*2] = 0; - + // Convert each char into two letters int J = 0; int I = 0; @@ -59,31 +63,31 @@ class HashSumValue Result[I + 1] = Conv[Sum[J] & 0xF]; } return std::string(Result); - }; - + } + inline void Value(unsigned char S[N/8]) { - for (int I = 0; I != sizeof(Sum); I++) + for (int I = 0; I != sizeof(Sum); ++I) S[I] = Sum[I]; - }; + } - inline operator std::string() const + inline operator std::string() const { return Value(); - }; + } - bool Set(std::string Str) + bool Set(std::string Str) { return Hex2Num(Str,Sum,sizeof(Sum)); - }; + } - inline void Set(unsigned char S[N/8]) + inline void Set(unsigned char S[N/8]) { - for (int I = 0; I != sizeof(Sum); I++) + for (int I = 0; I != sizeof(Sum); ++I) Sum[I] = S[I]; - }; + } - HashSumValue(std::string Str) + HashSumValue(std::string Str) { memset(Sum,0,sizeof(Sum)); Set(Str); @@ -99,17 +103,17 @@ class SummationImplementation public: virtual bool Add(const unsigned char *inbuf, unsigned long long inlen) = 0; inline bool Add(const char *inbuf, unsigned long long const inlen) - { return Add((unsigned char *)inbuf, inlen); }; + { return Add((const unsigned char *)inbuf, inlen); } inline bool Add(const unsigned char *Data) - { return Add(Data, strlen((const char *)Data)); }; + { return Add(Data, strlen((const char *)Data)); } inline bool Add(const char *Data) - { return Add((const unsigned char *)Data, strlen((const char *)Data)); }; + { return Add((const unsigned char *)Data, strlen(Data)); } inline bool Add(const unsigned char *Beg, const unsigned char *End) - { return Add(Beg, End - Beg); }; + { return Add(Beg, End - Beg); } inline bool Add(const char *Beg, const char *End) - { return Add((const unsigned char *)Beg, End - Beg); }; + { return Add((const unsigned char *)Beg, End - Beg); } bool AddFD(int Fd, unsigned long long Size = 0); bool AddFD(FileFd &Fd, unsigned long long Size = 0); diff --git a/apt-pkg/contrib/macros.h b/apt-pkg/contrib/macros.h index e53d01b8f..2d6448e5e 100644 --- a/apt-pkg/contrib/macros.h +++ b/apt-pkg/contrib/macros.h @@ -54,37 +54,91 @@ #define CLRFLAG(v,f) ((v) &=~FLAG(f)) #define CHKFLAG(v,f) ((v) & FLAG(f) ? true : false) -// some nice optional GNUC features -#if __GNUC__ >= 3 - #define __must_check __attribute__ ((warn_unused_result)) - #define __deprecated __attribute__ ((deprecated)) - #define __attrib_const __attribute__ ((__const__)) - /* likely() and unlikely() can be used to mark boolean expressions - as (not) likely true which will help the compiler to optimise */ +#ifdef __GNUC__ +#define APT_GCC_VERSION (__GNUC__ << 8 | __GNUC_MINOR__) +#else +#define APT_GCC_VERSION 0 +#endif + +/* likely() and unlikely() can be used to mark boolean expressions + as (not) likely true which will help the compiler to optimise */ +#if APT_GCC_VERSION >= 0x0300 #define likely(x) __builtin_expect (!!(x), 1) #define unlikely(x) __builtin_expect (!!(x), 0) #else - #define __must_check /* no warn_unused_result */ - #define __deprecated /* no deprecated */ - #define __attrib_const /* no const attribute */ #define likely(x) (x) #define unlikely(x) (x) #endif +#if APT_GCC_VERSION >= 0x0300 + #define APT_DEPRECATED __attribute__ ((deprecated)) + #define APT_CONST __attribute__((const)) + #define APT_PURE __attribute__((pure)) + #define APT_NORETURN __attribute__((noreturn)) + #define APT_PRINTF(n) __attribute__((format(printf, n, n + 1))) +#else + #define APT_DEPRECATED + #define APT_CONST + #define APT_PURE + #define APT_NORETURN + #define APT_PRINTF(n) +#endif + +#if APT_GCC_VERSION > 0x0302 + #define APT_NONNULL(...) __attribute__((nonnull(__VA_ARGS__))) + #define APT_MUSTCHECK __attribute__((warn_unused_result)) +#else + #define APT_NONNULL(...) + #define APT_REQRET +#endif + +#if APT_GCC_VERSION >= 0x0400 + #define APT_SENTINEL __attribute__((sentinel)) + #define APT_PUBLIC __attribute__ ((visibility ("default"))) + #define APT_HIDDEN __attribute__ ((visibility ("hidden"))) +#else + #define APT_SENTINEL + #define APT_PUBLIC + #define APT_HIDDEN +#endif + // cold functions are unlikely() to be called -#if (__GNUC__ == 4 && __GNUC_MINOR__ >= 3) || __GNUC__ > 4 - #define __cold __attribute__ ((__cold__)) - #define __hot __attribute__ ((__hot__)) +#if APT_GCC_VERSION >= 0x0403 + #define APT_COLD __attribute__ ((__cold__)) + #define APT_HOT __attribute__ ((__hot__)) #else - #define __cold /* no cold marker */ - #define __hot /* no hot marker */ + #define APT_COLD + #define APT_HOT #endif -#ifdef __GNUG__ -// Methods have a hidden this parameter that is visible to this attribute +#ifndef APT_10_CLEANER_HEADERS +#if APT_GCC_VERSION >= 0x0300 + #define __must_check __attribute__ ((warn_unused_result)) + #define __deprecated __attribute__ ((deprecated)) + #define __attrib_const __attribute__ ((__const__)) #define __like_printf(n) __attribute__((format(printf, n, n + 1))) #else + #define __must_check /* no warn_unused_result */ + #define __deprecated /* no deprecated */ + #define __attrib_const /* no const attribute */ #define __like_printf(n) /* no like-printf */ #endif +#if APT_GCC_VERSION >= 0x0403 + #define __cold __attribute__ ((__cold__)) + #define __hot __attribute__ ((__hot__)) +#else + #define __cold /* no cold marker */ + #define __hot /* no hot marker */ +#endif +#endif + +// These lines are extracted by the makefiles and the buildsystem +// Increasing MAJOR or MINOR results in the need of recompiling all +// reverse-dependencies of libapt-pkg against the new SONAME. +// 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_RELEASE 0 #endif diff --git a/apt-pkg/contrib/md5.cc b/apt-pkg/contrib/md5.cc index 4351aeb22..b487a96f9 100644 --- a/apt-pkg/contrib/md5.cc +++ b/apt-pkg/contrib/md5.cc @@ -38,13 +38,9 @@ #include <config.h> #include <apt-pkg/md5.h> -#include <apt-pkg/strutl.h> -#include <apt-pkg/macros.h> +#include <stdint.h> #include <string.h> -#include <unistd.h> -#include <netinet/in.h> // For htonl -#include <inttypes.h> /*}}}*/ // byteSwap - Swap bytes in a buffer /*{{{*/ diff --git a/apt-pkg/contrib/md5.h b/apt-pkg/contrib/md5.h index 195455645..f4992c223 100644 --- a/apt-pkg/contrib/md5.h +++ b/apt-pkg/contrib/md5.h @@ -23,14 +23,15 @@ #ifndef APTPKG_MD5_H #define APTPKG_MD5_H - -#include <string> -#include <cstring> -#include <algorithm> #include <stdint.h> #include "hashsum_template.h" +#ifndef APT_10_CLEANER_HEADERS +#include <string> +#include <cstring> +#include <algorithm> +#endif #ifndef APT_8_CLEANER_HEADERS using std::string; using std::min; diff --git a/apt-pkg/contrib/mmap.cc b/apt-pkg/contrib/mmap.cc index 51e8eb30f..b2a53a6cb 100644 --- a/apt-pkg/contrib/mmap.cc +++ b/apt-pkg/contrib/mmap.cc @@ -22,11 +22,11 @@ #include <apt-pkg/mmap.h> #include <apt-pkg/error.h> #include <apt-pkg/fileutl.h> +#include <apt-pkg/macros.h> +#include <string> #include <sys/mman.h> -#include <sys/stat.h> #include <unistd.h> -#include <fcntl.h> #include <stdlib.h> #include <errno.h> #include <cstring> @@ -198,7 +198,7 @@ bool MMap::Sync(unsigned long Start,unsigned long Stop) { #ifdef _POSIX_SYNCHRONIZED_IO unsigned long long const PSize = sysconf(_SC_PAGESIZE); - if (msync((char *)Base+(unsigned long long)(Start/PSize)*PSize,Stop - Start,MS_SYNC) < 0) + if (msync((char *)Base+(Start/PSize)*PSize, Stop - Start, MS_SYNC) < 0) return _error->Errno("msync", _("Unable to synchronize mmap")); #endif } diff --git a/apt-pkg/contrib/netrc.cc b/apt-pkg/contrib/netrc.cc index de95aa4ab..feaed67c8 100644 --- a/apt-pkg/contrib/netrc.cc +++ b/apt-pkg/contrib/netrc.cc @@ -15,14 +15,13 @@ #include <apt-pkg/configuration.h> #include <apt-pkg/strutl.h> -#include <apt-pkg/error.h> -#include <apt-pkg/fileutl.h> #include <iostream> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> +#include <stddef.h> #include <pwd.h> #include "netrc.h" @@ -198,7 +197,7 @@ void maybe_add_auth (URI &Uri, string NetRCFile) // if host did not work, try Host+Path next, this will trigger // a lookup uri.startswith(host) in the netrc file parser (because // of the "/" - char *hostpath = strdup(string(Uri.Host+Uri.Path).c_str()); + char *hostpath = strdup((Uri.Host + Uri.Path).c_str()); if (hostpath && parsenetrc_string(hostpath, login, password, netrcfile) == 0) { if (_config->FindB("Debug::Acquire::netrc", false) == true) diff --git a/apt-pkg/contrib/netrc.h b/apt-pkg/contrib/netrc.h index 6feb5b726..dbeb45386 100644 --- a/apt-pkg/contrib/netrc.h +++ b/apt-pkg/contrib/netrc.h @@ -16,6 +16,8 @@ #include <string> +#include <apt-pkg/macros.h> + #ifndef APT_8_CLEANER_HEADERS #include <apt-pkg/strutl.h> #endif @@ -25,9 +27,9 @@ class URI; -// kill this export on the next ABI break - strongly doubt its in use anyway +// 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 -__deprecated int parsenetrc (char *host, char *login, char *password, char *filename); +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/progress.cc b/apt-pkg/contrib/progress.cc index 916e1d730..4ff4f181d 100644 --- a/apt-pkg/contrib/progress.cc +++ b/apt-pkg/contrib/progress.cc @@ -14,6 +14,8 @@ #include <apt-pkg/error.h> #include <apt-pkg/configuration.h> +#include <sys/time.h> +#include <string> #include <iostream> #include <stdio.h> #include <cstring> @@ -125,14 +127,14 @@ bool OpProgress::CheckChange(float Interval) // OpTextProgress::OpTextProgress - Constructor /*{{{*/ // --------------------------------------------------------------------- /* */ -OpTextProgress::OpTextProgress(Configuration &Config) : - NoUpdate(false), NoDisplay(false), LastLen(0) +OpTextProgress::OpTextProgress(Configuration &Config) : + NoUpdate(false), NoDisplay(false), LastLen(0) { if (Config.FindI("quiet",0) >= 1 || Config.FindB("quiet::NoUpdate", false) == true) NoUpdate = true; if (Config.FindI("quiet",0) >= 2) NoDisplay = true; -}; +} /*}}}*/ // OpTextProgress::Done - Clean up the display /*{{{*/ // --------------------------------------------------------------------- @@ -150,12 +152,12 @@ void OpTextProgress::Done() cout << endl; OldOp = string(); } - + if (NoUpdate == true && NoDisplay == false && OldOp.empty() == false) { OldOp = string(); - cout << endl; - } + cout << endl; + } } /*}}}*/ // OpTextProgress::Update - Simple text spinner /*{{{*/ diff --git a/apt-pkg/contrib/sha1.cc b/apt-pkg/contrib/sha1.cc index b5a6a2440..bf6bc6cb6 100644 --- a/apt-pkg/contrib/sha1.cc +++ b/apt-pkg/contrib/sha1.cc @@ -32,12 +32,9 @@ #include <config.h> #include <apt-pkg/sha1.h> -#include <apt-pkg/strutl.h> -#include <apt-pkg/macros.h> +#include <stdint.h> #include <string.h> -#include <unistd.h> -#include <inttypes.h> /*}}}*/ // SHA1Transform - Alters an existing SHA-1 hash /*{{{*/ diff --git a/apt-pkg/contrib/sha1.h b/apt-pkg/contrib/sha1.h index a8d55eb13..5770c315a 100644 --- a/apt-pkg/contrib/sha1.h +++ b/apt-pkg/contrib/sha1.h @@ -14,12 +14,13 @@ #ifndef APTPKG_SHA1_H #define APTPKG_SHA1_H +#include "hashsum_template.h" + +#ifndef APT_10_CLEANER_HEADERS #include <string> #include <cstring> #include <algorithm> - -#include "hashsum_template.h" - +#endif #ifndef APT_8_CLEANER_HEADERS using std::string; using std::min; diff --git a/apt-pkg/contrib/sha2.h b/apt-pkg/contrib/sha2.h index 8e0c99a1b..a25ad4d32 100644 --- a/apt-pkg/contrib/sha2.h +++ b/apt-pkg/contrib/sha2.h @@ -14,14 +14,18 @@ #ifndef APTPKG_SHA2_H #define APTPKG_SHA2_H -#include <string> #include <cstring> -#include <algorithm> -#include <stdint.h> #include "sha2_internal.h" #include "hashsum_template.h" +#ifndef APT_10_CLEANER_HEADERS +#include <string> +#include <algorithm> +#include <stdint.h> +#endif + + typedef HashSumValue<512> SHA512SumValue; typedef HashSumValue<256> SHA256SumValue; diff --git a/apt-pkg/contrib/sha2_internal.cc b/apt-pkg/contrib/sha2_internal.cc index bb2560252..131ff5beb 100644 --- a/apt-pkg/contrib/sha2_internal.cc +++ b/apt-pkg/contrib/sha2_internal.cc @@ -33,6 +33,7 @@ */ #include <config.h> +#include <endian.h> #include <string.h> /* memcpy()/memset() or bcopy()/bzero() */ #include <assert.h> /* assert() */ #include "sha2_internal.h" diff --git a/apt-pkg/contrib/sha2_internal.h b/apt-pkg/contrib/sha2_internal.h index d9d429c92..1b82d965d 100644 --- a/apt-pkg/contrib/sha2_internal.h +++ b/apt-pkg/contrib/sha2_internal.h @@ -44,6 +44,7 @@ #ifdef SHA2_USE_INTTYPES_H +#include <stddef.h> #include <inttypes.h> #endif /* SHA2_USE_INTTYPES_H */ diff --git a/apt-pkg/contrib/strutl.cc b/apt-pkg/contrib/strutl.cc index d4f53ea3a..2100ee47b 100644 --- a/apt-pkg/contrib/strutl.cc +++ b/apt-pkg/contrib/strutl.cc @@ -21,6 +21,11 @@ #include <apt-pkg/fileutl.h> #include <apt-pkg/error.h> +#include <stddef.h> +#include <stdlib.h> +#include <time.h> +#include <string> +#include <vector> #include <ctype.h> #include <string.h> #include <sstream> @@ -33,9 +38,9 @@ #include <iconv.h> #include <apti18n.h> - -using namespace std; /*}}}*/ +using namespace std; + // Strip - Remove white space from the front and back of a string /*{{{*/ // --------------------------------------------------------------------- namespace APT { @@ -153,7 +158,7 @@ char *_strrstrip(char *String) End++; *End = 0; return String; -}; +} /*}}}*/ // strtabexpand - Converts tabs into 8 spaces /*{{{*/ // --------------------------------------------------------------------- @@ -1130,9 +1135,11 @@ bool TokSplitString(char Tok,char *Input,char **List, also, but the advantage is that we have an iteratable vector */ vector<string> VectorizeString(string const &haystack, char const &split) { + vector<string> exploded; + if (haystack.empty() == true) + return exploded; string::const_iterator start = haystack.begin(); string::const_iterator end = start; - vector<string> exploded; do { for (; end != haystack.end() && *end != split; ++end); exploded.push_back(string(start, end)); @@ -1182,7 +1189,7 @@ unsigned long RegexChoice(RxChoiceList *Rxs,const char **ListBegin, R->Hit = false; unsigned long Hits = 0; - for (; ListBegin != ListEnd; ListBegin++) + for (; ListBegin < ListEnd; ++ListBegin) { // Check if the name is a regex const char *I; diff --git a/apt-pkg/contrib/strutl.h b/apt-pkg/contrib/strutl.h index 8d746f10e..185cdc3fc 100644 --- a/apt-pkg/contrib/strutl.h +++ b/apt-pkg/contrib/strutl.h @@ -18,15 +18,18 @@ #include <limits> -#include <stdlib.h> #include <string> #include <cstring> #include <vector> #include <iostream> #include <time.h> +#include <stddef.h> #include "macros.h" +#ifndef APT_10_CLEANER_HEADERS +#include <stdlib.h> +#endif #ifndef APT_8_CLEANER_HEADERS using std::string; using std::vector; @@ -37,8 +40,8 @@ namespace APT { namespace String { std::string Strip(const std::string &s); bool Endswith(const std::string &s, const std::string &ending); - }; -}; + } +} bool UTF8ToCodeset(const char *codeset, const std::string &orig, std::string *dest); @@ -60,9 +63,9 @@ std::string Base64Encode(const std::string &Str); std::string OutputInDepth(const unsigned long Depth, const char* Separator=" "); std::string URItoFileName(const std::string &URI); std::string TimeRFC1123(time_t Date); -bool RFC1123StrToTime(const char* const str,time_t &time) __must_check; -bool FTPMDTMStrToTime(const char* const str,time_t &time) __must_check; -__deprecated bool StrToTime(const std::string &Val,time_t &Result); +bool RFC1123StrToTime(const char* const str,time_t &time) APT_MUSTCHECK; +bool FTPMDTMStrToTime(const char* const str,time_t &time) APT_MUSTCHECK; +APT_DEPRECATED bool StrToTime(const std::string &Val,time_t &Result); std::string LookupTag(const std::string &Message,const char *Tag,const char *Default = 0); int StringToBool(const std::string &Text,int Default = -1); bool ReadMessages(int Fd, std::vector<std::string> &List); @@ -76,7 +79,7 @@ bool TokSplitString(char Tok,char *Input,char **List, unsigned long ListMax); // split a given string by a char -std::vector<std::string> VectorizeString(std::string const &haystack, char const &split) __attrib_const; +std::vector<std::string> VectorizeString(std::string const &haystack, char const &split) APT_CONST; /* \brief Return a vector of strings from string "input" where "sep" * is used as the delimiter string. @@ -94,56 +97,56 @@ std::vector<std::string> VectorizeString(std::string const &haystack, char const */ std::vector<std::string> StringSplit(std::string const &input, std::string const &sep, - unsigned int maxsplit=std::numeric_limits<unsigned int>::max()) __attrib_const; + unsigned int maxsplit=std::numeric_limits<unsigned int>::max()) APT_CONST; -void ioprintf(std::ostream &out,const char *format,...) __like_printf(2); -void strprintf(std::string &out,const char *format,...) __like_printf(2); -char *safe_snprintf(char *Buffer,char *End,const char *Format,...) __like_printf(3); +void ioprintf(std::ostream &out,const char *format,...) APT_PRINTF(2); +void strprintf(std::string &out,const char *format,...) APT_PRINTF(2); +char *safe_snprintf(char *Buffer,char *End,const char *Format,...) APT_PRINTF(3); bool CheckDomainList(const std::string &Host, const std::string &List); -int tolower_ascii(int const c) __attrib_const __hot; +int tolower_ascii(int const c) APT_CONST APT_HOT; std::string StripEpoch(const std::string &VerStr); #define APT_MKSTRCMP(name,func) \ -inline int name(const char *A,const char *B) {return func(A,A+strlen(A),B,B+strlen(B));}; \ -inline int name(const char *A,const char *AEnd,const char *B) {return func(A,AEnd,B,B+strlen(B));}; \ -inline int name(const std::string& A,const char *B) {return func(A.c_str(),A.c_str()+A.length(),B,B+strlen(B));}; \ -inline int name(const std::string& A,const std::string& B) {return func(A.c_str(),A.c_str()+A.length(),B.c_str(),B.c_str()+B.length());}; \ -inline int name(const std::string& A,const char *B,const char *BEnd) {return func(A.c_str(),A.c_str()+A.length(),B,BEnd);}; +inline APT_PURE int name(const char *A,const char *B) {return func(A,A+strlen(A),B,B+strlen(B));} \ +inline APT_PURE int name(const char *A,const char *AEnd,const char *B) {return func(A,AEnd,B,B+strlen(B));} \ +inline APT_PURE int name(const std::string& A,const char *B) {return func(A.c_str(),A.c_str()+A.length(),B,B+strlen(B));} \ +inline APT_PURE int name(const std::string& A,const std::string& B) {return func(A.c_str(),A.c_str()+A.length(),B.c_str(),B.c_str()+B.length());} \ +inline APT_PURE int name(const std::string& A,const char *B,const char *BEnd) {return func(A.c_str(),A.c_str()+A.length(),B,BEnd);} #define APT_MKSTRCMP2(name,func) \ -inline int name(const char *A,const char *AEnd,const char *B) {return func(A,AEnd,B,B+strlen(B));}; \ -inline int name(const std::string& A,const char *B) {return func(A.begin(),A.end(),B,B+strlen(B));}; \ -inline int name(const std::string& A,const std::string& B) {return func(A.begin(),A.end(),B.begin(),B.end());}; \ -inline int name(const std::string& A,const char *B,const char *BEnd) {return func(A.begin(),A.end(),B,BEnd);}; +inline APT_PURE int name(const char *A,const char *AEnd,const char *B) {return func(A,AEnd,B,B+strlen(B));} \ +inline APT_PURE int name(const std::string& A,const char *B) {return func(A.begin(),A.end(),B,B+strlen(B));} \ +inline APT_PURE int name(const std::string& A,const std::string& B) {return func(A.begin(),A.end(),B.begin(),B.end());} \ +inline APT_PURE int name(const std::string& A,const char *B,const char *BEnd) {return func(A.begin(),A.end(),B,BEnd);} -int stringcmp(const char *A,const char *AEnd,const char *B,const char *BEnd); -int stringcasecmp(const char *A,const char *AEnd,const char *B,const char *BEnd); +int APT_PURE stringcmp(const char *A,const char *AEnd,const char *B,const char *BEnd); +int APT_PURE stringcasecmp(const char *A,const char *AEnd,const char *B,const char *BEnd); /* We assume that GCC 3 indicates that libstdc++3 is in use too. In that case the definition of string::const_iterator is not the same as const char * and we need these extra functions */ #if __GNUC__ >= 3 -int stringcmp(std::string::const_iterator A,std::string::const_iterator AEnd, +int APT_PURE stringcmp(std::string::const_iterator A,std::string::const_iterator AEnd, const char *B,const char *BEnd); -int stringcmp(std::string::const_iterator A,std::string::const_iterator AEnd, +int APT_PURE stringcmp(std::string::const_iterator A,std::string::const_iterator AEnd, std::string::const_iterator B,std::string::const_iterator BEnd); -int stringcasecmp(std::string::const_iterator A,std::string::const_iterator AEnd, +int APT_PURE stringcasecmp(std::string::const_iterator A,std::string::const_iterator AEnd, const char *B,const char *BEnd); -int stringcasecmp(std::string::const_iterator A,std::string::const_iterator AEnd, +int APT_PURE stringcasecmp(std::string::const_iterator A,std::string::const_iterator AEnd, std::string::const_iterator B,std::string::const_iterator BEnd); -inline int stringcmp(std::string::const_iterator A,std::string::const_iterator Aend,const char *B) {return stringcmp(A,Aend,B,B+strlen(B));}; -inline int stringcasecmp(std::string::const_iterator A,std::string::const_iterator Aend,const char *B) {return stringcasecmp(A,Aend,B,B+strlen(B));}; +inline APT_PURE int stringcmp(std::string::const_iterator A,std::string::const_iterator Aend,const char *B) {return stringcmp(A,Aend,B,B+strlen(B));} +inline APT_PURE int stringcasecmp(std::string::const_iterator A,std::string::const_iterator Aend,const char *B) {return stringcasecmp(A,Aend,B,B+strlen(B));} #endif -APT_MKSTRCMP2(stringcmp,stringcmp); -APT_MKSTRCMP2(stringcasecmp,stringcasecmp); +APT_MKSTRCMP2(stringcmp,stringcmp) +APT_MKSTRCMP2(stringcasecmp,stringcasecmp) // Return the length of a NULL-terminated string array -size_t strv_length(const char **str_array); +size_t APT_PURE strv_length(const char **str_array); -inline const char *DeNull(const char *s) {return (s == 0?"(null)":s);}; +inline const char *DeNull(const char *s) {return (s == 0?"(null)":s);} class URI { @@ -159,13 +162,13 @@ class URI unsigned int Port; operator std::string(); - inline void operator =(const std::string &From) {CopyFrom(From);}; + inline void operator =(const std::string &From) {CopyFrom(From);} inline bool empty() {return Access.empty();}; static std::string SiteOnly(const std::string &URI); static std::string NoUserPassword(const std::string &URI); - URI(std::string Path) {CopyFrom(Path);}; - URI() : Port(0) {}; + URI(std::string Path) {CopyFrom(Path);} + URI() : Port(0) {} }; struct SubstVar diff --git a/apt-pkg/deb/debindexfile.cc b/apt-pkg/deb/debindexfile.cc index 909dfcf47..eee758b7a 100644 --- a/apt-pkg/deb/debindexfile.cc +++ b/apt-pkg/deb/debindexfile.cc @@ -15,7 +15,6 @@ #include <apt-pkg/debsrcrecords.h> #include <apt-pkg/deblistparser.h> #include <apt-pkg/debrecords.h> -#include <apt-pkg/sourcelist.h> #include <apt-pkg/configuration.h> #include <apt-pkg/progress.h> #include <apt-pkg/error.h> @@ -23,7 +22,18 @@ #include <apt-pkg/acquire-item.h> #include <apt-pkg/debmetaindex.h> #include <apt-pkg/gpgv.h> - +#include <apt-pkg/fileutl.h> +#include <apt-pkg/indexfile.h> +#include <apt-pkg/mmap.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> +#include <apt-pkg/pkgcachegen.h> +#include <apt-pkg/pkgrecords.h> +#include <apt-pkg/srcrecords.h> + +#include <stdio.h> +#include <iostream> +#include <string> #include <sys/stat.h> /*}}}*/ @@ -650,7 +660,7 @@ pkgCache::PkgFileIterator debStatusIndex::FindInCache(pkgCache &Cache) const // StatusIndex::Exists - Check if the index is available /*{{{*/ // --------------------------------------------------------------------- /* */ -bool debStatusIndex::Exists() const +APT_CONST bool debStatusIndex::Exists() const { // Abort if the file does not exist. return true; diff --git a/apt-pkg/deb/debindexfile.h b/apt-pkg/deb/debindexfile.h index 9e64d4476..017c69a0a 100644 --- a/apt-pkg/deb/debindexfile.h +++ b/apt-pkg/deb/debindexfile.h @@ -16,9 +16,17 @@ #ifndef PKGLIB_DEBINDEXFILE_H #define PKGLIB_DEBINDEXFILE_H +#include <apt-pkg/indexfile.h> +#include <apt-pkg/cacheiterators.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/srcrecords.h> +#include <string> + +class OpProgress; +class pkgAcquire; +class pkgCacheGenerator; -#include <apt-pkg/indexfile.h> class debStatusIndex : public pkgIndexFile { @@ -30,10 +38,10 @@ class debStatusIndex : public pkgIndexFile public: - virtual const Type *GetType() const; + virtual const Type *GetType() const APT_CONST; // Interface for acquire - virtual std::string Describe(bool Short) const {return File;}; + virtual std::string Describe(bool /*Short*/) const {return File;}; // Interface for the Cache Generator virtual bool Exists() const; @@ -63,7 +71,7 @@ class debPackagesIndex : public pkgIndexFile public: - virtual const Type *GetType() const; + virtual const Type *GetType() const APT_CONST; // Stuff for accessing files on remote items virtual std::string ArchiveInfo(pkgCache::VerIterator Ver) const; @@ -102,7 +110,7 @@ class debTranslationsIndex : public pkgIndexFile public: - virtual const Type *GetType() const; + virtual const Type *GetType() const APT_CONST; // Interface for acquire virtual std::string Describe(bool Short) const; @@ -134,7 +142,7 @@ class debSourcesIndex : public pkgIndexFile public: - virtual const Type *GetType() const; + virtual const Type *GetType() const APT_CONST; // Stuff for accessing files on remote items virtual std::string SourceInfo(pkgSrcRecords::Parser const &Record, diff --git a/apt-pkg/deb/deblistparser.cc b/apt-pkg/deb/deblistparser.cc index acdcc4554..a1bcfb710 100644 --- a/apt-pkg/deb/deblistparser.cc +++ b/apt-pkg/deb/deblistparser.cc @@ -21,8 +21,17 @@ #include <apt-pkg/fileutl.h> #include <apt-pkg/crc-16.h> #include <apt-pkg/md5.h> +#include <apt-pkg/mmap.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> +#include <apt-pkg/tagfile.h> #include <apt-pkg/macros.h> +#include <stddef.h> +#include <string.h> +#include <algorithm> +#include <string> +#include <vector> #include <ctype.h> /*}}}*/ @@ -34,7 +43,7 @@ static debListParser::WordList PrioList[] = { {"standard",pkgCache::State::Standard}, {"optional",pkgCache::State::Optional}, {"extra",pkgCache::State::Extra}, - {}}; + {NULL, 0}}; // ListParser::debListParser - Constructor /*{{{*/ // --------------------------------------------------------------------- @@ -95,44 +104,49 @@ string debListParser::Version() return Section.FindS("Version"); } /*}}}*/ -// ListParser::NewVersion - Fill in the version structure /*{{{*/ -// --------------------------------------------------------------------- -/* */ -bool debListParser::NewVersion(pkgCache::VerIterator &Ver) +unsigned char debListParser::ParseMultiArch(bool const showErrors) /*{{{*/ { - // Parse the section - Ver->Section = UniqFindTagWrite("Section"); - - // Parse multi-arch + unsigned char MA; string const MultiArch = Section.FindS("Multi-Arch"); if (MultiArch.empty() == true) - Ver->MultiArch = pkgCache::Version::None; + MA = pkgCache::Version::None; else if (MultiArch == "same") { - // Parse multi-arch if (ArchitectureAll() == true) { - /* Arch all packages can't be Multi-Arch: same */ - _error->Warning("Architecture: all package '%s' can't be Multi-Arch: same", - Section.FindS("Package").c_str()); - Ver->MultiArch = pkgCache::Version::None; + if (showErrors == true) + _error->Warning("Architecture: all package '%s' can't be Multi-Arch: same", + Section.FindS("Package").c_str()); + MA = pkgCache::Version::None; } else - Ver->MultiArch = pkgCache::Version::Same; + MA = pkgCache::Version::Same; } else if (MultiArch == "foreign") - Ver->MultiArch = pkgCache::Version::Foreign; + MA = pkgCache::Version::Foreign; else if (MultiArch == "allowed") - Ver->MultiArch = pkgCache::Version::Allowed; + MA = pkgCache::Version::Allowed; else { - _error->Warning("Unknown Multi-Arch type '%s' for package '%s'", - MultiArch.c_str(), Section.FindS("Package").c_str()); - Ver->MultiArch = pkgCache::Version::None; + if (showErrors == true) + _error->Warning("Unknown Multi-Arch type '%s' for package '%s'", + MultiArch.c_str(), Section.FindS("Package").c_str()); + MA = pkgCache::Version::None; } if (ArchitectureAll() == true) - Ver->MultiArch |= pkgCache::Version::All; + MA |= pkgCache::Version::All; + return MA; +} + /*}}}*/ +// ListParser::NewVersion - Fill in the version structure /*{{{*/ +// --------------------------------------------------------------------- +/* */ +bool debListParser::NewVersion(pkgCache::VerIterator &Ver) +{ + // Parse the section + Ver->Section = UniqFindTagWrite("Section"); + Ver->MultiArch = ParseMultiArch(true); // Archive Size Ver->Size = Section.FindULL("Size"); // Unpacked Size (in K) @@ -354,7 +368,7 @@ bool debListParser::ParseStatus(pkgCache::PkgIterator &Pkg, {"hold",pkgCache::State::Hold}, {"deinstall",pkgCache::State::DeInstall}, {"purge",pkgCache::State::Purge}, - {}}; + {NULL, 0}}; if (GrabWord(string(Start,I-Start),WantList,Pkg->SelectedState) == false) return _error->Error("Malformed 1st word in the Status line"); @@ -370,7 +384,7 @@ bool debListParser::ParseStatus(pkgCache::PkgIterator &Pkg, {"reinstreq",pkgCache::State::ReInstReq}, {"hold",pkgCache::State::HoldInst}, {"hold-reinstreq",pkgCache::State::HoldReInstReq}, - {}}; + {NULL, 0}}; if (GrabWord(string(Start,I-Start),FlagList,Pkg->InstState) == false) return _error->Error("Malformed 2nd word in the Status line"); @@ -392,7 +406,7 @@ bool debListParser::ParseStatus(pkgCache::PkgIterator &Pkg, {"triggers-pending",pkgCache::State::TriggersPending}, {"post-inst-failed",pkgCache::State::HalfConfigured}, {"removal-failed",pkgCache::State::HalfInstalled}, - {}}; + {NULL, 0}}; if (GrabWord(string(Start,I-Start),StatusList,Pkg->CurrentState) == false) return _error->Error("Malformed 3rd word in the Status line"); @@ -475,17 +489,30 @@ const char *debListParser::ConvertRelation(const char *I,unsigned int &Op) /* This parses the dependency elements out of a standard string in place, bit by bit. */ const char *debListParser::ParseDepends(const char *Start,const char *Stop, + std::string &Package,std::string &Ver,unsigned int &Op) + { return ParseDepends(Start, Stop, Package, Ver, Op, false, true, false); } +const char *debListParser::ParseDepends(const char *Start,const char *Stop, + std::string &Package,std::string &Ver,unsigned int &Op, + bool const &ParseArchFlags) + { return ParseDepends(Start, Stop, Package, Ver, Op, ParseArchFlags, true, false); } +const char *debListParser::ParseDepends(const char *Start,const char *Stop, + std::string &Package,std::string &Ver,unsigned int &Op, + bool const &ParseArchFlags, bool const &StripMultiArch) + { return ParseDepends(Start, Stop, Package, Ver, Op, ParseArchFlags, StripMultiArch, false); } +const char *debListParser::ParseDepends(const char *Start,const char *Stop, string &Package,string &Ver, unsigned int &Op, bool const &ParseArchFlags, - bool const &StripMultiArch) + bool const &StripMultiArch, + bool const &ParseRestrictionsList) { // Strip off leading space - for (;Start != Stop && isspace(*Start) != 0; Start++); + for (;Start != Stop && isspace(*Start) != 0; ++Start); // Parse off the package name const char *I = Start; for (;I != Stop && isspace(*I) == 0 && *I != '(' && *I != ')' && - *I != ',' && *I != '|' && *I != '[' && *I != ']'; I++); + *I != ',' && *I != '|' && *I != '[' && *I != ']' && + *I != '<' && *I != '>'; ++I); // Malformed, no '(' if (I != Stop && *I == ')') @@ -602,6 +629,76 @@ const char *debListParser::ParseDepends(const char *Start,const char *Stop, for (;I != Stop && isspace(*I) != 0; I++); } + if (ParseRestrictionsList == true) + { + // Parse a restrictions list + if (I != Stop && *I == '<') + { + ++I; + // malformed + if (unlikely(I == Stop)) + return 0; + + std::vector<string> const profiles = APT::Configuration::getBuildProfiles(); + + const char *End = I; + bool Found = false; + bool NegRestriction = false; + while (I != Stop) + { + // look for whitespace or ending '>' + for (;End != Stop && !isspace(*End) && *End != '>'; ++End); + + if (unlikely(End == Stop)) + return 0; + + if (*I == '!') + { + NegRestriction = true; + ++I; + } + + std::string restriction(I, End); + + std::string prefix = "profile."; + // only support for "profile" prefix, ignore others + if (restriction.size() > prefix.size() && + restriction.substr(0, prefix.size()) == prefix) + { + // get the name of the profile + restriction = restriction.substr(prefix.size()); + + if (restriction.empty() == false && profiles.empty() == false && + std::find(profiles.begin(), profiles.end(), restriction) != profiles.end()) + { + Found = true; + if (I[-1] != '!') + NegRestriction = false; + // we found a match, so fast-forward to the end of the wildcards + for (; End != Stop && *End != '>'; ++End); + } + } + + if (*End++ == '>') { + I = End; + break; + } + + I = End; + for (;I != Stop && isspace(*I) != 0; I++); + } + + if (NegRestriction == true) + Found = !Found; + + if (Found == false) + Package = ""; /* not for this restriction */ + } + + // Skip whitespace + for (;I != Stop && isspace(*I) != 0; I++); + } + if (I != Stop && *I == '|') Op |= pkgCache::Dep::Or; @@ -635,7 +732,7 @@ bool debListParser::ParseDepends(pkgCache::VerIterator &Ver, string Version; unsigned int Op; - Start = ParseDepends(Start, Stop, Package, Version, Op, false, false); + Start = ParseDepends(Start, Stop, Package, Version, Op, false, false, false); if (Start == 0) return _error->Error("Problem parsing dependency %s",Tag); size_t const found = Package.rfind(':'); @@ -841,3 +938,24 @@ unsigned char debListParser::GetPrio(string Str) return Out; } /*}}}*/ +#if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR >= 13) +bool debListParser::SameVersion(unsigned short const Hash, /*{{{*/ + pkgCache::VerIterator const &Ver) +{ + if (pkgCacheGenerator::ListParser::SameVersion(Hash, Ver) == false) + return false; + // status file has no (Download)Size, but all others are fair game + // status file is parsed last, so the first version we encounter is + // probably also the version we have downloaded + unsigned long long const Size = Section.FindULL("Size"); + if (Size != 0 && Size != Ver->Size) + return false; + // available everywhere, but easier to check here than to include in VersionHash + unsigned char MultiArch = ParseMultiArch(false); + if (MultiArch != Ver->MultiArch) + return false; + // for all practical proposes (we can check): same version + return true; +} + /*}}}*/ +#endif diff --git a/apt-pkg/deb/deblistparser.h b/apt-pkg/deb/deblistparser.h index 386d291a2..baace79fe 100644 --- a/apt-pkg/deb/deblistparser.h +++ b/apt-pkg/deb/deblistparser.h @@ -13,11 +13,19 @@ #include <apt-pkg/pkgcachegen.h> #include <apt-pkg/tagfile.h> +#include <apt-pkg/md5.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/macros.h> + +#include <string> +#include <vector> #ifndef APT_8_CLEANER_HEADERS #include <apt-pkg/indexfile.h> #endif +class FileFd; + class debListParser : public pkgCacheGenerator::ListParser { public: @@ -63,6 +71,9 @@ class debListParser : public pkgCacheGenerator::ListParser virtual std::string DescriptionLanguage(); virtual MD5SumValue Description_md5(); virtual unsigned short VersionHash(); +#if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR >= 13) + virtual bool SameVersion(unsigned short const Hash, pkgCache::VerIterator const &Ver); +#endif virtual bool UsePackage(pkgCache::PkgIterator &Pkg, pkgCache::VerIterator &Ver); virtual unsigned long Offset() {return iOffset;}; @@ -72,15 +83,27 @@ class debListParser : public pkgCacheGenerator::ListParser bool LoadReleaseInfo(pkgCache::PkgFileIterator &FileI,FileFd &File, std::string section); - + + static const char *ParseDepends(const char *Start,const char *Stop, + std::string &Package,std::string &Ver,unsigned int &Op); static const char *ParseDepends(const char *Start,const char *Stop, - std::string &Package,std::string &Ver,unsigned int &Op, - bool const &ParseArchFlags = false, - bool const &StripMultiArch = true); + std::string &Package,std::string &Ver,unsigned int &Op, + bool const &ParseArchFlags); + static const char *ParseDepends(const char *Start,const char *Stop, + std::string &Package,std::string &Ver,unsigned int &Op, + bool const &ParseArchFlags, bool const &StripMultiArch); + static const char *ParseDepends(const char *Start,const char *Stop, + std::string &Package,std::string &Ver,unsigned int &Op, + bool const &ParseArchFlags, bool const &StripMultiArch, + bool const &ParseRestrictionsList); + static const char *ConvertRelation(const char *I,unsigned int &Op); debListParser(FileFd *File, std::string const &Arch = ""); virtual ~debListParser() {}; + + private: + APT_HIDDEN unsigned char ParseMultiArch(bool const showErrors); }; #endif diff --git a/apt-pkg/deb/debmetaindex.cc b/apt-pkg/deb/debmetaindex.cc index 504877558..6fd12add8 100644 --- a/apt-pkg/deb/debmetaindex.cc +++ b/apt-pkg/deb/debmetaindex.cc @@ -9,8 +9,15 @@ #include <apt-pkg/aptconfiguration.h> #include <apt-pkg/indexrecords.h> #include <apt-pkg/sourcelist.h> -#include <apt-pkg/error.h> - +#include <apt-pkg/hashes.h> +#include <apt-pkg/macros.h> +#include <apt-pkg/metaindex.h> + +#include <string.h> +#include <map> +#include <string> +#include <utility> +#include <vector> #include <set> #include <algorithm> diff --git a/apt-pkg/deb/debmetaindex.h b/apt-pkg/deb/debmetaindex.h index cef8d68f7..2286fa8b2 100644 --- a/apt-pkg/deb/debmetaindex.h +++ b/apt-pkg/deb/debmetaindex.h @@ -3,7 +3,7 @@ #define PKGLIB_DEBMETAINDEX_H #include <apt-pkg/metaindex.h> -#include <apt-pkg/init.h> +#include <apt-pkg/macros.h> #include <map> #include <string> @@ -12,6 +12,12 @@ #ifndef APT_8_CLEANER_HEADERS #include <apt-pkg/sourcelist.h> #endif +#ifndef APT_10_CLEANER_HEADERS +#include <apt-pkg/init.h> +#endif + +class pkgAcquire; +class pkgIndexFile; class debReleaseIndex : public metaIndex { public: diff --git a/apt-pkg/deb/debrecords.cc b/apt-pkg/deb/debrecords.cc index 184c07c33..6063db5a8 100644 --- a/apt-pkg/deb/debrecords.cc +++ b/apt-pkg/deb/debrecords.cc @@ -12,10 +12,16 @@ #include <apt-pkg/debrecords.h> #include <apt-pkg/strutl.h> -#include <apt-pkg/error.h> #include <apt-pkg/aptconfiguration.h> #include <apt-pkg/fileutl.h> +#include <apt-pkg/cacheiterators.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/tagfile.h> +#include <string.h> +#include <algorithm> +#include <string> +#include <vector> #include <langinfo.h> /*}}}*/ diff --git a/apt-pkg/deb/debrecords.h b/apt-pkg/deb/debrecords.h index b5e3bbdba..bdac6c90b 100644 --- a/apt-pkg/deb/debrecords.h +++ b/apt-pkg/deb/debrecords.h @@ -17,6 +17,9 @@ #include <apt-pkg/pkgrecords.h> #include <apt-pkg/tagfile.h> #include <apt-pkg/fileutl.h> +#include <apt-pkg/pkgcache.h> + +#include <string> #ifndef APT_8_CLEANER_HEADERS #include <apt-pkg/indexfile.h> diff --git a/apt-pkg/deb/debsrcrecords.cc b/apt-pkg/deb/debsrcrecords.cc index ce55ccd1f..b09588dd3 100644 --- a/apt-pkg/deb/debsrcrecords.cc +++ b/apt-pkg/deb/debsrcrecords.cc @@ -15,12 +15,19 @@ #include <apt-pkg/debsrcrecords.h> #include <apt-pkg/error.h> #include <apt-pkg/strutl.h> -#include <apt-pkg/configuration.h> #include <apt-pkg/aptconfiguration.h> +#include <apt-pkg/srcrecords.h> +#include <apt-pkg/tagfile.h> -using std::max; +#include <ctype.h> +#include <stdlib.h> +#include <string.h> +#include <algorithm> +#include <string> +#include <vector> /*}}}*/ +using std::max; using std::string; // SrcRecordParser::Binaries - Return the binaries field /*{{{*/ @@ -57,7 +64,7 @@ const char **debSrcRecordParser::Binaries() } while (*bin != '\0'); StaticBinList.push_back(NULL); - return (const char **) &StaticBinList[0]; + return &StaticBinList[0]; } /*}}}*/ // SrcRecordParser::BuildDepends - Return the Build-Depends information /*{{{*/ @@ -90,7 +97,7 @@ bool debSrcRecordParser::BuildDepends(std::vector<pkgSrcRecords::Parser::BuildDe while (1) { Start = debListParser::ParseDepends(Start, Stop, - rec.Package,rec.Version,rec.Op,true, StripMultiArch); + rec.Package,rec.Version,rec.Op,true,StripMultiArch,true); if (Start == 0) return _error->Error("Problem parsing dependency: %s", fields[I]); diff --git a/apt-pkg/deb/debsrcrecords.h b/apt-pkg/deb/debsrcrecords.h index a8fb465bb..b65d1480b 100644 --- a/apt-pkg/deb/debsrcrecords.h +++ b/apt-pkg/deb/debsrcrecords.h @@ -11,11 +11,16 @@ #ifndef PKGLIB_DEBSRCRECORDS_H #define PKGLIB_DEBSRCRECORDS_H - #include <apt-pkg/srcrecords.h> #include <apt-pkg/tagfile.h> #include <apt-pkg/fileutl.h> +#include <stddef.h> +#include <string> +#include <vector> + +class pkgIndexFile; + class debSrcRecordParser : public pkgSrcRecords::Parser { /** \brief dpointer placeholder (for later in case we need it) */ diff --git a/apt-pkg/deb/debsystem.cc b/apt-pkg/deb/debsystem.cc index b95ff15df..142f3a6e6 100644 --- a/apt-pkg/deb/debsystem.cc +++ b/apt-pkg/deb/debsystem.cc @@ -19,7 +19,14 @@ #include <apt-pkg/configuration.h> #include <apt-pkg/error.h> #include <apt-pkg/fileutl.h> -#include <sys/types.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> + +#include <ctype.h> +#include <stdlib.h> +#include <string.h> +#include <string> +#include <vector> #include <unistd.h> #include <dirent.h> #include <errno.h> @@ -195,7 +202,7 @@ bool debSystem::Initialize(Configuration &Cnf) // --------------------------------------------------------------------- /* The standard name for a deb is 'deb'.. There are no separate versions of .deb to worry about.. */ -bool debSystem::ArchiveSupported(const char *Type) +APT_PURE bool debSystem::ArchiveSupported(const char *Type) { if (strcmp(Type,"deb") == 0) return true; diff --git a/apt-pkg/deb/debsystem.h b/apt-pkg/deb/debsystem.h index 855123516..a945f68fb 100644 --- a/apt-pkg/deb/debsystem.h +++ b/apt-pkg/deb/debsystem.h @@ -12,11 +12,19 @@ #include <apt-pkg/pkgsystem.h> #include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> +#include <vector> +class Configuration; +class pkgIndexFile; +class pkgPackageManager; class debSystemPrivate; -class debStatusIndex; class pkgDepCache; +#ifndef APT_10_CLEANER_HEADERS +class debStatusIndex; +#endif + class debSystem : public pkgSystem { // private d-pointer diff --git a/apt-pkg/deb/debversion.cc b/apt-pkg/deb/debversion.cc index 74e2552ff..a5eacb7f5 100644 --- a/apt-pkg/deb/debversion.cc +++ b/apt-pkg/deb/debversion.cc @@ -15,6 +15,8 @@ #include <apt-pkg/debversion.h> #include <apt-pkg/pkgcache.h> +#include <string.h> +#include <string> #include <stdlib.h> #include <ctype.h> /*}}}*/ diff --git a/apt-pkg/deb/debversion.h b/apt-pkg/deb/debversion.h index f1d6f3cc5..434ff4a2e 100644 --- a/apt-pkg/deb/debversion.h +++ b/apt-pkg/deb/debversion.h @@ -12,26 +12,26 @@ #ifndef PKGLIB_DEBVERSION_H #define PKGLIB_DEBVERSION_H +#include <apt-pkg/version.h> +#include <string> -#include <apt-pkg/version.h> - class debVersioningSystem : public pkgVersioningSystem -{ +{ public: - + static int CmpFragment(const char *A, const char *AEnd, const char *B, - const char *BEnd); - + const char *BEnd) APT_PURE; + // Compare versions.. virtual int DoCmpVersion(const char *A,const char *Aend, - const char *B,const char *Bend); - virtual bool CheckDep(const char *PkgVer,int Op,const char *DepVer); - virtual int DoCmpReleaseVer(const char *A,const char *Aend, + const char *B,const char *Bend) APT_PURE; + virtual bool CheckDep(const char *PkgVer,int Op,const char *DepVer) APT_PURE; + virtual APT_PURE int DoCmpReleaseVer(const char *A,const char *Aend, const char *B,const char *Bend) { return DoCmpVersion(A,Aend,B,Bend); - } + } virtual std::string UpstreamVersion(const char *A); debVersioningSystem(); diff --git a/apt-pkg/deb/dpkgpm.cc b/apt-pkg/deb/dpkgpm.cc index 78b777140..c52b83c6e 100644 --- a/apt-pkg/deb/dpkgpm.cc +++ b/apt-pkg/deb/dpkgpm.cc @@ -10,40 +10,45 @@ // Includes /*{{{*/ #include <config.h> -#include <apt-pkg/dpkgpm.h> -#include <apt-pkg/error.h> +#include <apt-pkg/cachefile.h> #include <apt-pkg/configuration.h> #include <apt-pkg/depcache.h> -#include <apt-pkg/pkgrecords.h> -#include <apt-pkg/strutl.h> +#include <apt-pkg/dpkgpm.h> +#include <apt-pkg/error.h> #include <apt-pkg/fileutl.h> -#include <apt-pkg/cachefile.h> -#include <apt-pkg/packagemanager.h> #include <apt-pkg/install-progress.h> +#include <apt-pkg/packagemanager.h> +#include <apt-pkg/pkgrecords.h> +#include <apt-pkg/strutl.h> +#include <apt-pkg/cacheiterators.h> +#include <apt-pkg/macros.h> +#include <apt-pkg/pkgcache.h> -#include <unistd.h> -#include <stdlib.h> +#include <errno.h> #include <fcntl.h> +#include <grp.h> +#include <pty.h> +#include <pwd.h> +#include <signal.h> +#include <stddef.h> +#include <stdio.h> +#include <stdlib.h> +#include <sys/ioctl.h> #include <sys/select.h> #include <sys/stat.h> -#include <sys/types.h> +#include <sys/time.h> #include <sys/wait.h> -#include <signal.h> -#include <errno.h> -#include <stdio.h> -#include <string.h> -#include <algorithm> -#include <sstream> -#include <map> -#include <pwd.h> -#include <grp.h> -#include <iomanip> - #include <termios.h> +#include <time.h> #include <unistd.h> -#include <sys/ioctl.h> -#include <pty.h> -#include <stdio.h> +#include <algorithm> +#include <cstring> +#include <iostream> +#include <map> +#include <set> +#include <string> +#include <utility> +#include <vector> #include <apti18n.h> /*}}}*/ @@ -394,10 +399,14 @@ bool pkgDPkgPM::SendPkgsInfo(FILE * const F, unsigned int const &Version) that are due to be installed. */ bool pkgDPkgPM::RunScriptsWithPkgs(const char *Cnf) { + bool result = true; + Configuration::Item const *Opts = _config->Tree(Cnf); if (Opts == 0 || Opts->Child == 0) return true; Opts = Opts->Child; + + sighandler_t old_sigpipe = signal(SIGPIPE, SIG_IGN); unsigned int Count = 1; for (; Opts != 0; Opts = Opts->Next, Count++) @@ -405,6 +414,10 @@ bool pkgDPkgPM::RunScriptsWithPkgs(const char *Cnf) if (Opts->Value.empty() == true) continue; + if(_config->FindB("Debug::RunScripts", false) == true) + std::clog << "Running external script with list of all .deb file: '" + << Opts->Value << "'" << std::endl; + // Determine the protocol version string OptSec = Opts->Value; string::size_type Pos; @@ -419,8 +432,10 @@ bool pkgDPkgPM::RunScriptsWithPkgs(const char *Cnf) std::set<int> KeepFDs; MergeKeepFdsFromConfiguration(KeepFDs); int Pipes[2]; - if (pipe(Pipes) != 0) - return _error->Errno("pipe","Failed to create IPC pipe to subprocess"); + if (pipe(Pipes) != 0) { + result = _error->Errno("pipe","Failed to create IPC pipe to subprocess"); + break; + } if (InfoFD != (unsigned)Pipes[0]) SetCloseExec(Pipes[0],true); else @@ -454,8 +469,10 @@ bool pkgDPkgPM::RunScriptsWithPkgs(const char *Cnf) } close(Pipes[0]); FILE *F = fdopen(Pipes[1],"w"); - if (F == 0) - return _error->Errno("fdopen","Faild to open new FD"); + if (F == 0) { + result = _error->Errno("fdopen","Faild to open new FD"); + break; + } // Feed it the filenames. if (Version <= 1) @@ -483,11 +500,14 @@ bool pkgDPkgPM::RunScriptsWithPkgs(const char *Cnf) fclose(F); // Clean up the sub process - if (ExecWait(Process,Opts->Value.c_str()) == false) - return _error->Error("Failure running script %s",Opts->Value.c_str()); + if (ExecWait(Process,Opts->Value.c_str()) == false) { + result = _error->Error("Failure running script %s",Opts->Value.c_str()); + break; + } } + signal(SIGPIPE, old_sigpipe); - return true; + return result; } /*}}}*/ // DPkgPM::DoStdin - Read stdin and pass to slave pty /*{{{*/ @@ -1570,7 +1590,7 @@ bool pkgDPkgPM::GoNoABIBreak(APT::Progress::PackageManager *progress) return d->dpkg_error.empty(); } -void SigINT(int sig) { +void SigINT(int /*sig*/) { pkgPackageManager::SigINTStop = true; } /*}}}*/ diff --git a/apt-pkg/deb/dpkgpm.h b/apt-pkg/deb/dpkgpm.h index 02e12a6d9..859c74b46 100644 --- a/apt-pkg/deb/dpkgpm.h +++ b/apt-pkg/deb/dpkgpm.h @@ -11,11 +11,20 @@ #define PKGLIB_DPKGPM_H #include <apt-pkg/packagemanager.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/macros.h> + #include <vector> #include <map> #include <stdio.h> -#include <apt-pkg/macros.h> +#include <string> + +#ifndef APT_10_CLEANER_HEADERS #include <apt-pkg/init.h> +#endif + +class pkgDepCache; +namespace APT { namespace Progress { class PackageManager; } } #ifndef APT_8_CLEANER_HEADERS using std::vector; @@ -82,7 +91,7 @@ class pkgDPkgPM : public pkgPackageManager // Helpers bool RunScriptsWithPkgs(const char *Cnf); - __deprecated bool SendV2Pkgs(FILE *F); + APT_DEPRECATED bool SendV2Pkgs(FILE *F); bool SendPkgsInfo(FILE * const F, unsigned int const &Version); void WriteHistoryTag(std::string const &tag, std::string value); std::string ExpandShortPackageName(pkgDepCache &Cache, @@ -109,10 +118,10 @@ class pkgDPkgPM : public pkgPackageManager void DoDpkgStatusFd(int statusfd); void ProcessDpkgStatusLine(char *line); #if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR < 13) - void DoDpkgStatusFd(int statusfd, int unused) { + void DoDpkgStatusFd(int statusfd, int /*unused*/) { DoDpkgStatusFd(statusfd); } - void ProcessDpkgStatusLine(int unused, char *line) { + void ProcessDpkgStatusLine(int /*unused*/, char *line) { ProcessDpkgStatusLine(line); } #endif diff --git a/apt-pkg/depcache.cc b/apt-pkg/depcache.cc index a12e6963d..19a6e0d7e 100644 --- a/apt-pkg/depcache.cc +++ b/apt-pkg/depcache.cc @@ -11,20 +11,26 @@ #include<config.h> #include <apt-pkg/depcache.h> -#include <apt-pkg/version.h> #include <apt-pkg/versionmatch.h> #include <apt-pkg/error.h> #include <apt-pkg/sptr.h> -#include <apt-pkg/algorithms.h> #include <apt-pkg/fileutl.h> #include <apt-pkg/strutl.h> #include <apt-pkg/configuration.h> #include <apt-pkg/aptconfiguration.h> -#include <apt-pkg/pkgsystem.h> #include <apt-pkg/tagfile.h> #include <apt-pkg/progress.h> #include <apt-pkg/cacheset.h> - +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> +#include <apt-pkg/macros.h> + +#include <stdio.h> +#include <string.h> +#include <list> +#include <string> +#include <utility> +#include <vector> #include <algorithm> #include <iostream> #include <sstream> @@ -222,7 +228,7 @@ bool pkgDepCache::readStateFile(OpProgress *Prog) /*{{{*/ return true; } /*}}}*/ -bool pkgDepCache::writeStateFile(OpProgress *prog, bool InstalledOnly) /*{{{*/ +bool pkgDepCache::writeStateFile(OpProgress * /*prog*/, bool InstalledOnly) /*{{{*/ { bool const debug_autoremove = _config->FindB("Debug::pkgAutoRemove",false); @@ -868,7 +874,7 @@ bool pkgDepCache::IsDeleteOk(PkgIterator const &Pkg,bool rPurge, return IsDeleteOkProtectInstallRequests(Pkg, rPurge, Depth, FromUser); } bool pkgDepCache::IsDeleteOkProtectInstallRequests(PkgIterator const &Pkg, - bool const rPurge, unsigned long const Depth, bool const FromUser) + bool const /*rPurge*/, unsigned long const Depth, bool const FromUser) { if (FromUser == false && Pkg->CurrentVer == 0) { @@ -889,7 +895,7 @@ bool pkgDepCache::IsDeleteOkProtectInstallRequests(PkgIterator const &Pkg, and prevents mode changes for packages on hold for example. If you want to check Mode specific stuff you can use the virtual public Is<Mode>Ok methods instead */ -char const* PrintMode(char const mode) +static char const* PrintMode(char const mode) { switch (mode) { @@ -1053,10 +1059,9 @@ bool pkgDepCache::MarkInstall(PkgIterator const &Pkg,bool AutoInst, return true; } - // check if we are allowed to install the package (if we haven't already) - if (P.Mode != ModeInstall || P.InstallVer != P.CandidateVer) - if (IsInstallOk(Pkg,AutoInst,Depth,FromUser) == false) - return false; + // check if we are allowed to install the package + if (IsInstallOk(Pkg,AutoInst,Depth,FromUser) == false) + return false; ActionGroup group(*this); P.iFlags &= ~AutoKept; @@ -1117,32 +1122,22 @@ bool pkgDepCache::MarkInstall(PkgIterator const &Pkg,bool AutoInst, continue; /* Check if this dep should be consider for install. If it is a user - defined important dep and we are installed a new package then + defined important dep and we are installed a new package then it will be installed. Otherwise we only check for important - deps that have changed from the installed version - */ + deps that have changed from the installed version */ if (IsImportantDep(Start) == false) continue; - /* If we are in an or group locate the first or that can - succeed. We have already cached this.. */ + /* If we are in an or group locate the first or that can + succeed. We have already cached this… */ for (; Ors > 1 && (DepState[Start->ID] & DepCVer) != DepCVer; --Ors) ++Start; + + /* unsatisfiable dependency: IsInstallOkDependenciesSatisfiableByCandidates + would have prevented us to get here if not overridden, so just skip + over the problem here as the frontend will know what it is doing */ if (Ors == 1 && (DepState[Start->ID] &DepCVer) != DepCVer && Start.IsNegative() == false) - { - if(DebugAutoInstall == true) - std::clog << OutputInDepth(Depth) << Start << " can't be satisfied!" << std::endl; - if (Start.IsCritical() == false) - continue; - // if the dependency was critical, we have absolutely no chance to install it, - // so if it wasn't installed remove it again. If it was, discard the candidate - // as the problemresolver will trip over it otherwise trying to install it (#735967) - if (Pkg->CurrentVer == 0) - MarkDelete(Pkg,false,Depth + 1, false); - else - SetCandidateVersion(Pkg.CurrentVer()); - return false; - } + continue; /* Check if any ImportantDep() (but not Critical) were added * since we installed the package. Also check for deps that @@ -1294,14 +1289,20 @@ bool pkgDepCache::MarkInstall(PkgIterator const &Pkg,bool AutoInst, bool pkgDepCache::IsInstallOk(PkgIterator const &Pkg,bool AutoInst, unsigned long Depth, bool FromUser) { - return IsInstallOkMultiArchSameVersionSynced(Pkg,AutoInst, Depth, FromUser); + return IsInstallOkMultiArchSameVersionSynced(Pkg,AutoInst, Depth, FromUser) && + IsInstallOkDependenciesSatisfiableByCandidates(Pkg,AutoInst, Depth, FromUser); } bool pkgDepCache::IsInstallOkMultiArchSameVersionSynced(PkgIterator const &Pkg, - bool const AutoInst, unsigned long const Depth, bool const FromUser) + bool const /*AutoInst*/, unsigned long const Depth, bool const FromUser) { if (FromUser == true) // as always: user is always right return true; + // if we have checked before and it was okay, it will still be okay + if (PkgState[Pkg->ID].Mode == ModeInstall && + PkgState[Pkg->ID].InstallVer == PkgState[Pkg->ID].CandidateVer) + return true; + // ignore packages with none-M-A:same candidates VerIterator const CandVer = PkgState[Pkg->ID].CandidateVerIter(*this); if (unlikely(CandVer.end() == true) || CandVer == Pkg.CurrentVer() || @@ -1334,6 +1335,53 @@ bool pkgDepCache::IsInstallOkMultiArchSameVersionSynced(PkgIterator const &Pkg, return true; } +bool pkgDepCache::IsInstallOkDependenciesSatisfiableByCandidates(PkgIterator const &Pkg, + bool const AutoInst, unsigned long const Depth, bool const /*FromUser*/) +{ + if (AutoInst == false) + return true; + + VerIterator const CandVer = PkgState[Pkg->ID].CandidateVerIter(*this); + if (unlikely(CandVer.end() == true) || CandVer == Pkg.CurrentVer()) + return true; + + for (DepIterator Dep = CandVer.DependsList(); Dep.end() != true;) + { + // Grok or groups + DepIterator Start = Dep; + bool Result = true; + unsigned Ors = 0; + for (bool LastOR = true; Dep.end() == false && LastOR == true; ++Dep, ++Ors) + { + LastOR = (Dep->CompareOp & Dep::Or) == Dep::Or; + + if ((DepState[Dep->ID] & DepInstall) == DepInstall) + Result = false; + } + + if (Start.IsCritical() == false || Start.IsNegative() == true || Result == false) + continue; + + /* If we are in an or group locate the first or that can succeed. + We have already cached this… */ + for (; Ors > 1 && (DepState[Start->ID] & DepCVer) != DepCVer; --Ors) + ++Start; + + if (Ors == 1 && (DepState[Start->ID] &DepCVer) != DepCVer) + { + if (DebugAutoInstall == true) + std::clog << OutputInDepth(Depth) << Start << " can't be satisfied!" << std::endl; + + // the dependency is critical, but can't be installed, so discard the candidate + // as the problemresolver will trip over it otherwise trying to install it (#735967) + if (Pkg->CurrentVer != 0) + SetCandidateVersion(Pkg.CurrentVer()); + return false; + } + } + + return true; +} /*}}}*/ // DepCache::SetReInstall - Set the reinstallation flag /*{{{*/ // --------------------------------------------------------------------- @@ -1685,10 +1733,10 @@ bool pkgDepCache::Policy::IsImportantDep(DepIterator const &Dep) } /*}}}*/ // Policy::GetPriority - Get the priority of the package pin /*{{{*/ -signed short pkgDepCache::Policy::GetPriority(pkgCache::PkgIterator const &Pkg) -{ return 0; }; -signed short pkgDepCache::Policy::GetPriority(pkgCache::PkgFileIterator const &File) -{ return 0; }; +APT_CONST signed short pkgDepCache::Policy::GetPriority(pkgCache::PkgIterator const &/*Pkg*/) +{ return 0; } +APT_CONST signed short pkgDepCache::Policy::GetPriority(pkgCache::PkgFileIterator const &/*File*/) +{ return 0; } /*}}}*/ pkgDepCache::InRootSetFunc *pkgDepCache::GetRootSetFunc() /*{{{*/ { diff --git a/apt-pkg/depcache.h b/apt-pkg/depcache.h index f6848f383..bec651279 100644 --- a/apt-pkg/depcache.h +++ b/apt-pkg/depcache.h @@ -40,18 +40,27 @@ #include <apt-pkg/configuration.h> #include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> +#include <apt-pkg/macros.h> + +#include <stddef.h> -#include <vector> #include <memory> -#include <set> #include <list> +#include <string> +#include <utility> #ifndef APT_8_CLEANER_HEADERS #include <apt-pkg/progress.h> #include <apt-pkg/error.h> #endif +#ifndef APT_10_CLEANER_HEADERS +#include <set> +#include <vector> +#endif class OpProgress; +class pkgVersioningSystem; class pkgDepCache : protected pkgCache::Namespace { @@ -61,7 +70,7 @@ class pkgDepCache : protected pkgCache::Namespace class InRootSetFunc { public: - virtual bool InRootSet(const pkgCache::PkgIterator &pkg) {return false;}; + virtual bool InRootSet(const pkgCache::PkgIterator &/*pkg*/) {return false;}; virtual ~InRootSetFunc() {}; }; @@ -231,7 +240,7 @@ class pkgDepCache : protected pkgCache::Namespace unsigned char DepState; // DepState Flags // Update of candidate version - const char *StripEpoch(const char *Ver); + const char *StripEpoch(const char *Ver) APT_PURE; void Update(PkgIterator Pkg,pkgCache &Cache); // Various test members for the current status of the package @@ -381,8 +390,8 @@ class pkgDepCache : protected pkgCache::Namespace /** \brief Update the Marked and Garbage fields of all packages. * * This routine is implicitly invoked after all state manipulators - * and when an ActionGroup is destroyed. It invokes #MarkRequired - * and #Sweep to do its dirty work. + * and when an ActionGroup is destroyed. It invokes the private + * MarkRequired() and Sweep() to do its dirty work. * * \param rootFunc A predicate that returns \b true for packages * that should be added to the root set. @@ -465,7 +474,7 @@ class pkgDepCache : protected pkgCache::Namespace * * The parameters are the same as in the calling MarkDelete: * \param Pkg the package that MarkDelete wants to remove. - * \param Purge should we purge instead of "only" remove? + * \param MarkPurge should we purge instead of "only" remove? * \param Depth recursive deep of this Marker call * \param FromUser was the remove requested by the user? */ @@ -497,6 +506,8 @@ class pkgDepCache : protected pkgCache::Namespace // methods call by IsInstallOk bool IsInstallOkMultiArchSameVersionSynced(PkgIterator const &Pkg, bool const AutoInst, unsigned long const Depth, bool const FromUser); + bool IsInstallOkDependenciesSatisfiableByCandidates(PkgIterator const &Pkg, + bool const AutoInst, unsigned long const Depth, bool const FromUser); // methods call by IsDeleteOk bool IsDeleteOkProtectInstallRequests(PkgIterator const &Pkg, diff --git a/apt-pkg/edsp.cc b/apt-pkg/edsp.cc index e90598392..ee42267bc 100644 --- a/apt-pkg/edsp.cc +++ b/apt-pkg/edsp.cc @@ -11,16 +11,25 @@ #include <apt-pkg/error.h> #include <apt-pkg/cacheset.h> #include <apt-pkg/configuration.h> -#include <apt-pkg/version.h> -#include <apt-pkg/policy.h> #include <apt-pkg/tagfile.h> #include <apt-pkg/fileutl.h> #include <apt-pkg/progress.h> +#include <apt-pkg/depcache.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> +#include <apt-pkg/strutl.h> -#include <limits> +#include <ctype.h> +#include <stddef.h> +#include <string.h> +#include <time.h> +#include <unistd.h> #include <stdio.h> - +#include <iostream> +#include <vector> +#include <limits> #include <string> +#include <list> #include <apti18n.h> /*}}}*/ @@ -44,7 +53,7 @@ bool EDSP::WriteScenario(pkgDepCache &Cache, FILE* output, OpProgress *Progress) for (pkgCache::VerIterator Ver = Pkg.VersionList(); Ver.end() == false; ++Ver, ++p) { WriteScenarioVersion(Cache, output, Pkg, Ver); - WriteScenarioDependency(Cache, output, Pkg, Ver); + WriteScenarioDependency(output, Ver); fprintf(output, "\n"); if (Progress != NULL && p % 100 == 0) Progress->Progress(p); @@ -64,7 +73,7 @@ bool EDSP::WriteLimitedScenario(pkgDepCache &Cache, FILE* output, for (pkgCache::VerIterator Ver = Pkg.VersionList(); Ver.end() == false; ++Ver) { WriteScenarioVersion(Cache, output, Pkg, Ver); - WriteScenarioLimitedDependency(Cache, output, Pkg, Ver, pkgset); + WriteScenarioLimitedDependency(output, Ver, pkgset); fprintf(output, "\n"); if (Progress != NULL && p % 100 == 0) Progress->Progress(p); @@ -111,8 +120,7 @@ void EDSP::WriteScenarioVersion(pkgDepCache &Cache, FILE* output, pkgCache::PkgI } /*}}}*/ // EDSP::WriteScenarioDependency /*{{{*/ -void EDSP::WriteScenarioDependency(pkgDepCache &Cache, FILE* output, pkgCache::PkgIterator const &Pkg, - pkgCache::VerIterator const &Ver) +void EDSP::WriteScenarioDependency( FILE* output, pkgCache::VerIterator const &Ver) { std::string dependencies[pkgCache::Dep::Enhances + 1]; bool orGroup = false; @@ -148,8 +156,7 @@ void EDSP::WriteScenarioDependency(pkgDepCache &Cache, FILE* output, pkgCache::P } /*}}}*/ // EDSP::WriteScenarioLimitedDependency /*{{{*/ -void EDSP::WriteScenarioLimitedDependency(pkgDepCache &Cache, FILE* output, - pkgCache::PkgIterator const &Pkg, +void EDSP::WriteScenarioLimitedDependency(FILE* output, pkgCache::VerIterator const &Ver, APT::PackageSet const &pkgset) { diff --git a/apt-pkg/edsp.h b/apt-pkg/edsp.h index fd4436f60..f3092d3c6 100644 --- a/apt-pkg/edsp.h +++ b/apt-pkg/edsp.h @@ -9,8 +9,12 @@ #ifndef PKGLIB_EDSP_H #define PKGLIB_EDSP_H -#include <apt-pkg/pkgcache.h> #include <apt-pkg/cacheset.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> +#include <apt-pkg/macros.h> + +#include <stdio.h> #include <list> #include <string> @@ -29,17 +33,15 @@ class EDSP /*{{{*/ static const char * const PrioMap[]; static const char * const DepMap[]; - bool static ReadLine(int const input, std::string &line); - bool static StringToBool(char const *answer, bool const defValue); + APT_HIDDEN bool static ReadLine(int const input, std::string &line); + APT_HIDDEN bool static StringToBool(char const *answer, bool const defValue); - void static WriteScenarioVersion(pkgDepCache &Cache, FILE* output, + APT_HIDDEN void static WriteScenarioVersion(pkgDepCache &Cache, FILE* output, pkgCache::PkgIterator const &Pkg, pkgCache::VerIterator const &Ver); - void static WriteScenarioDependency(pkgDepCache &Cache, FILE* output, - pkgCache::PkgIterator const &Pkg, + APT_HIDDEN void static WriteScenarioDependency(FILE* output, pkgCache::VerIterator const &Ver); - void static WriteScenarioLimitedDependency(pkgDepCache &Cache, FILE* output, - pkgCache::PkgIterator const &Pkg, + APT_HIDDEN void static WriteScenarioLimitedDependency(FILE* output, pkgCache::VerIterator const &Ver, APT::PackageSet const &pkgset); public: diff --git a/apt-pkg/edsp/edspindexfile.cc b/apt-pkg/edsp/edspindexfile.cc index 98ce4497a..10313fd61 100644 --- a/apt-pkg/edsp/edspindexfile.cc +++ b/apt-pkg/edsp/edspindexfile.cc @@ -10,15 +10,20 @@ #include <apt-pkg/edspindexfile.h> #include <apt-pkg/edsplistparser.h> -#include <apt-pkg/sourcelist.h> -#include <apt-pkg/configuration.h> -#include <apt-pkg/progress.h> #include <apt-pkg/error.h> -#include <apt-pkg/strutl.h> #include <apt-pkg/fileutl.h> -#include <apt-pkg/acquire-item.h> +#include <apt-pkg/progress.h> +#include <apt-pkg/debindexfile.h> +#include <apt-pkg/indexfile.h> +#include <apt-pkg/mmap.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> +#include <apt-pkg/pkgcachegen.h> +#include <apt-pkg/pkgrecords.h> -#include <sys/stat.h> +#include <stddef.h> +#include <unistd.h> +#include <string> /*}}}*/ // edspIndex::edspIndex - Constructor /*{{{*/ @@ -63,7 +68,7 @@ bool edspIndex::Merge(pkgCacheGenerator &Gen,OpProgress *Prog) const class edspIFType: public pkgIndexFile::Type { public: - virtual pkgRecords::Parser *CreatePkgParser(pkgCache::PkgFileIterator File) const + virtual pkgRecords::Parser *CreatePkgParser(pkgCache::PkgFileIterator) const { // we don't have a record parser for this type as the file is not presistent return NULL; diff --git a/apt-pkg/edsp/edspindexfile.h b/apt-pkg/edsp/edspindexfile.h index de10f2d2f..609a2cde4 100644 --- a/apt-pkg/edsp/edspindexfile.h +++ b/apt-pkg/edsp/edspindexfile.h @@ -9,11 +9,15 @@ #define PKGLIB_EDSPINDEXFILE_H #include <apt-pkg/debindexfile.h> +#include <string> #ifndef APT_8_CLEANER_HEADERS #include <apt-pkg/indexfile.h> #endif +class OpProgress; +class pkgCacheGenerator; + class edspIndex : public debStatusIndex { /** \brief dpointer placeholder (for later in case we need it) */ @@ -21,7 +25,7 @@ class edspIndex : public debStatusIndex public: - virtual const Type *GetType() const; + virtual const Type *GetType() const APT_CONST; virtual bool Merge(pkgCacheGenerator &Gen,OpProgress *Prog) const; diff --git a/apt-pkg/edsp/edsplistparser.cc b/apt-pkg/edsp/edsplistparser.cc index bcfdb1017..212dc7840 100644 --- a/apt-pkg/edsp/edsplistparser.cc +++ b/apt-pkg/edsp/edsplistparser.cc @@ -12,11 +12,13 @@ #include <config.h> #include <apt-pkg/edsplistparser.h> -#include <apt-pkg/error.h> -#include <apt-pkg/configuration.h> -#include <apt-pkg/strutl.h> #include <apt-pkg/md5.h> -#include <apt-pkg/macros.h> +#include <apt-pkg/deblistparser.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> +#include <apt-pkg/tagfile.h> + +#include <string> /*}}}*/ // ListParser::edspListParser - Constructor /*{{{*/ @@ -84,8 +86,8 @@ bool edspListParser::ParseStatus(pkgCache::PkgIterator &Pkg, } /*}}}*/ // ListParser::LoadReleaseInfo - Load the release information /*{{{*/ -bool edspListParser::LoadReleaseInfo(pkgCache::PkgFileIterator &FileI, - FileFd &File, std::string component) +APT_CONST bool edspListParser::LoadReleaseInfo(pkgCache::PkgFileIterator & /*FileI*/, + FileFd & /*File*/, std::string /*component*/) { return true; } diff --git a/apt-pkg/edsp/edsplistparser.h b/apt-pkg/edsp/edsplistparser.h index a7bf9de95..959fb587f 100644 --- a/apt-pkg/edsp/edsplistparser.h +++ b/apt-pkg/edsp/edsplistparser.h @@ -12,6 +12,10 @@ #define PKGLIB_EDSPLISTPARSER_H #include <apt-pkg/deblistparser.h> +#include <apt-pkg/md5.h> +#include <apt-pkg/pkgcache.h> + +#include <string> #ifndef APT_8_CLEANER_HEADERS #include <apt-pkg/pkgcachegen.h> diff --git a/apt-pkg/edsp/edspsystem.cc b/apt-pkg/edsp/edspsystem.cc index aae969d9d..92edb8d77 100644 --- a/apt-pkg/edsp/edspsystem.cc +++ b/apt-pkg/edsp/edspsystem.cc @@ -11,16 +11,17 @@ // Include Files /*{{{*/ #include <config.h> -#include <apt-pkg/edspsystem.h> +#include <apt-pkg/configuration.h> #include <apt-pkg/debversion.h> #include <apt-pkg/edspindexfile.h> -#include <apt-pkg/configuration.h> -#include <apt-pkg/error.h> +#include <apt-pkg/edspsystem.h> #include <apt-pkg/fileutl.h> -#include <sys/types.h> -#include <unistd.h> -#include <dirent.h> -#include <errno.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> + +#include <stddef.h> +#include <string> +#include <vector> #include <apti18n.h> /*}}}*/ @@ -49,7 +50,7 @@ bool edspSystem::Lock() } /*}}}*/ // System::UnLock - Drop a lock /*{{{*/ -bool edspSystem::UnLock(bool NoErrors) +bool edspSystem::UnLock(bool /*NoErrors*/) { return true; } @@ -58,7 +59,7 @@ bool edspSystem::UnLock(bool NoErrors) // --------------------------------------------------------------------- /* we can't use edsp input as input for real installations - just a simulation can work, but everything else will fail bigtime */ -pkgPackageManager *edspSystem::CreatePM(pkgDepCache *Cache) const +pkgPackageManager *edspSystem::CreatePM(pkgDepCache * /*Cache*/) const { return NULL; } @@ -81,7 +82,7 @@ bool edspSystem::Initialize(Configuration &Cnf) } /*}}}*/ // System::ArchiveSupported - Is a file format supported /*{{{*/ -bool edspSystem::ArchiveSupported(const char *Type) +bool edspSystem::ArchiveSupported(const char * /*Type*/) { return false; } diff --git a/apt-pkg/edsp/edspsystem.h b/apt-pkg/edsp/edspsystem.h index ca703fa84..65e36d714 100644 --- a/apt-pkg/edsp/edspsystem.h +++ b/apt-pkg/edsp/edspsystem.h @@ -11,8 +11,17 @@ #define PKGLIB_EDSPSYSTEM_H #include <apt-pkg/pkgsystem.h> +#include <apt-pkg/cacheiterators.h> +#include <apt-pkg/pkgcache.h> +#include <vector> + +class Configuration; +class pkgDepCache; +class pkgIndexFile; +class pkgPackageManager; class edspIndex; + class edspSystem : public pkgSystem { /** \brief dpointer placeholder (for later in case we need it) */ @@ -22,11 +31,11 @@ class edspSystem : public pkgSystem public: - virtual bool Lock(); - virtual bool UnLock(bool NoErrors = false); - virtual pkgPackageManager *CreatePM(pkgDepCache *Cache) const; + virtual bool Lock() APT_CONST; + virtual bool UnLock(bool NoErrors = false) APT_CONST; + virtual pkgPackageManager *CreatePM(pkgDepCache *Cache) const APT_CONST; virtual bool Initialize(Configuration &Cnf); - virtual bool ArchiveSupported(const char *Type); + virtual bool ArchiveSupported(const char *Type) APT_CONST; virtual signed Score(Configuration const &Cnf); virtual bool AddStatusFiles(std::vector<pkgIndexFile *> &List); virtual bool FindIndex(pkgCache::PkgFileIterator File, diff --git a/apt-pkg/indexcopy.cc b/apt-pkg/indexcopy.cc index 7694cb1dd..854ba1bd7 100644 --- a/apt-pkg/indexcopy.cc +++ b/apt-pkg/indexcopy.cc @@ -20,17 +20,17 @@ #include <apt-pkg/configuration.h> #include <apt-pkg/tagfile.h> #include <apt-pkg/indexrecords.h> -#include <apt-pkg/md5.h> #include <apt-pkg/cdrom.h> +#include <apt-pkg/gpgv.h> +#include <apt-pkg/hashes.h> #include <iostream> #include <sstream> #include <unistd.h> #include <sys/stat.h> -#include <sys/types.h> -#include <fcntl.h> #include <stdio.h> #include <stdlib.h> +#include <string.h> #include "indexcopy.h" #include <apti18n.h> @@ -65,7 +65,7 @@ bool IndexCopy::CopyPackages(string CDROM,string Name,vector<string> &List, for (std::vector<APT::Configuration::Compressor>::const_iterator c = compressor.begin(); c != compressor.end(); ++c) { - if (stat(std::string(file + c->Extension).c_str(), &Buf) != 0) + if (stat((file + c->Extension).c_str(), &Buf) != 0) continue; found = true; break; @@ -160,7 +160,7 @@ bool IndexCopy::CopyPackages(string CDROM,string Name,vector<string> &List, // Get the size struct stat Buf; - if (stat(string(CDROM + Prefix + File).c_str(),&Buf) != 0 || + if (stat((CDROM + Prefix + File).c_str(),&Buf) != 0 || Buf.st_size == 0) { bool Mangled = false; @@ -175,7 +175,7 @@ bool IndexCopy::CopyPackages(string CDROM,string Name,vector<string> &List, } if (Mangled == false || - stat(string(CDROM + Prefix + File).c_str(),&Buf) != 0) + stat((CDROM + Prefix + File).c_str(),&Buf) != 0) { if (Debug == true) clog << "Missed(2): " << OrigFile << endl; @@ -286,7 +286,7 @@ bool IndexCopy::ReconstructPrefix(string &Prefix,string OrigPath,string CD, while (1) { struct stat Buf; - if (stat(string(CD + MyPrefix + File).c_str(),&Buf) != 0) + if (stat((CD + MyPrefix + File).c_str(),&Buf) != 0) { if (Debug == true) cout << "Failed, " << CD + MyPrefix + File << endl; @@ -315,7 +315,7 @@ bool IndexCopy::ReconstructChop(unsigned long &Chop,string Dir,string File) while (1) { struct stat Buf; - if (stat(string(Dir + File).c_str(),&Buf) != 0) + if (stat((Dir + File).c_str(),&Buf) != 0) { File = ChopDirs(File,1); Depth++; @@ -436,8 +436,8 @@ bool PackageCopy::GetFile(string &File,unsigned long long &Size) /* */ bool PackageCopy::RewriteEntry(FILE *Target,string File) { - TFRewriteData Changes[] = {{"Filename",File.c_str()}, - {}}; + TFRewriteData Changes[] = {{ "Filename", File.c_str(), NULL }, + { NULL, NULL, NULL }}; if (TFRewrite(Target,*Section,TFRewritePackageOrder,Changes) == false) return false; @@ -482,8 +482,8 @@ bool SourceCopy::GetFile(string &File,unsigned long long &Size) bool SourceCopy::RewriteEntry(FILE *Target,string File) { string Dir(File,0,File.rfind('/')); - TFRewriteData Changes[] = {{"Directory",Dir.c_str()}, - {}}; + TFRewriteData Changes[] = {{ "Directory", Dir.c_str(), NULL }, + { NULL, NULL, NULL }}; if (TFRewrite(Target,*Section,TFRewriteSourceOrder,Changes) == false) return false; @@ -551,7 +551,7 @@ bool SigVerify::CopyMetaIndex(string CDROM, string CDName, /*{{{*/ } /*}}}*/ bool SigVerify::CopyAndVerify(string CDROM,string Name,vector<string> &SigList, /*{{{*/ - vector<string> PkgList,vector<string> SrcList) + vector<string> /*PkgList*/,vector<string> /*SrcList*/) { if (SigList.empty() == true) return true; @@ -642,16 +642,14 @@ bool SigVerify::CopyAndVerify(string CDROM,string Name,vector<string> &SigList, } /*}}}*/ // SigVerify::RunGPGV - deprecated wrapper calling ExecGPGV /*{{{*/ -bool SigVerify::RunGPGV(std::string const &File, std::string const &FileOut, +APT_NORETURN bool SigVerify::RunGPGV(std::string const &File, std::string const &FileOut, int const &statusfd, int fd[2]) { ExecGPGV(File, FileOut, statusfd, fd); - return false; -}; -bool SigVerify::RunGPGV(std::string const &File, std::string const &FileOut, +} +APT_NORETURN bool SigVerify::RunGPGV(std::string const &File, std::string const &FileOut, int const &statusfd) { ExecGPGV(File, FileOut, statusfd); - return false; -}; +} /*}}}*/ bool TranslationsCopy::CopyTranslations(string CDROM,string Name, /*{{{*/ vector<string> &List, pkgCdromStatus *log) @@ -676,7 +674,7 @@ bool TranslationsCopy::CopyTranslations(string CDROM,string Name, /*{{{*/ for (std::vector<APT::Configuration::Compressor>::const_iterator c = compressor.begin(); c != compressor.end(); ++c) { - if (stat(std::string(file + c->Extension).c_str(), &Buf) != 0) + if (stat((file + c->Extension).c_str(), &Buf) != 0) continue; found = true; break; diff --git a/apt-pkg/indexcopy.h b/apt-pkg/indexcopy.h index e6a07a887..43cdb3f0a 100644 --- a/apt-pkg/indexcopy.h +++ b/apt-pkg/indexcopy.h @@ -14,16 +14,18 @@ #include <string> #include <stdio.h> -#include <apt-pkg/gpgv.h> #include <apt-pkg/macros.h> +#ifndef APT_10_CLEANER_HEADERS +#include <apt-pkg/gpgv.h> +class FileFd; +#endif #ifndef APT_8_CLEANER_HEADERS using std::string; using std::vector; #endif class pkgTagSection; -class FileFd; class indexRecords; class pkgCdromStatus; @@ -99,9 +101,9 @@ class SigVerify /*{{{*/ bool CopyAndVerify(std::string CDROM,std::string Name,std::vector<std::string> &SigList, std::vector<std::string> PkgList,std::vector<std::string> SrcList); - __deprecated static bool RunGPGV(std::string const &File, std::string const &FileOut, + APT_DEPRECATED static bool RunGPGV(std::string const &File, std::string const &FileOut, int const &statusfd, int fd[2]); - __deprecated static bool RunGPGV(std::string const &File, std::string const &FileOut, + APT_DEPRECATED static bool RunGPGV(std::string const &File, std::string const &FileOut, int const &statusfd = -1); }; /*}}}*/ diff --git a/apt-pkg/indexfile.cc b/apt-pkg/indexfile.cc index 642a750d4..89615cb41 100644 --- a/apt-pkg/indexfile.cc +++ b/apt-pkg/indexfile.cc @@ -13,7 +13,13 @@ #include <apt-pkg/indexfile.h> #include <apt-pkg/error.h> #include <apt-pkg/aptconfiguration.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> +#include <apt-pkg/srcrecords.h> +#include <apt-pkg/macros.h> +#include <string> +#include <vector> #include <clocale> #include <cstring> /*}}}*/ @@ -47,7 +53,7 @@ pkgIndexFile::Type *pkgIndexFile::Type::GetType(const char *Type) // IndexFile::ArchiveInfo - Stub /*{{{*/ // --------------------------------------------------------------------- /* */ -std::string pkgIndexFile::ArchiveInfo(pkgCache::VerIterator Ver) const +std::string pkgIndexFile::ArchiveInfo(pkgCache::VerIterator /*Ver*/) const { return std::string(); } @@ -63,8 +69,8 @@ pkgCache::PkgFileIterator pkgIndexFile::FindInCache(pkgCache &Cache) const // IndexFile::SourceIndex - Stub /*{{{*/ // --------------------------------------------------------------------- /* */ -std::string pkgIndexFile::SourceInfo(pkgSrcRecords::Parser const &Record, - pkgSrcRecords::File const &File) const +std::string pkgIndexFile::SourceInfo(pkgSrcRecords::Parser const &/*Record*/, + pkgSrcRecords::File const &/*File*/) const { return std::string(); } @@ -82,7 +88,7 @@ bool pkgIndexFile::TranslationsAvailable() { is already done in getLanguages(). Note also that this check is rather bad (doesn't take three character like ast into account). TODO: Remove method with next API break */ -__attribute__ ((deprecated)) bool pkgIndexFile::CheckLanguageCode(const char *Lang) +APT_DEPRECATED bool pkgIndexFile::CheckLanguageCode(const char *Lang) { if (strlen(Lang) == 2 || (strlen(Lang) == 5 && Lang[2] == '_')) return true; @@ -98,7 +104,7 @@ __attribute__ ((deprecated)) bool pkgIndexFile::CheckLanguageCode(const char *La /* As we have now possibly more than one LanguageCode this method is supersided by a) private classmembers or b) getLanguages(). TODO: Remove method with next API break */ -__attribute__ ((deprecated)) std::string pkgIndexFile::LanguageCode() { +APT_DEPRECATED std::string pkgIndexFile::LanguageCode() { if (TranslationsAvailable() == false) return ""; return APT::Configuration::getLanguages()[0]; diff --git a/apt-pkg/indexfile.h b/apt-pkg/indexfile.h index a0096fa34..b5c9ac77e 100644 --- a/apt-pkg/indexfile.h +++ b/apt-pkg/indexfile.h @@ -22,18 +22,21 @@ #ifndef PKGLIB_INDEXFILE_H #define PKGLIB_INDEXFILE_H - -#include <string> -#include <apt-pkg/pkgcache.h> #include <apt-pkg/srcrecords.h> #include <apt-pkg/pkgrecords.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> #include <apt-pkg/macros.h> +#include <string> + #ifndef APT_8_CLEANER_HEADERS using std::string; #endif - +#ifndef APT_10_CLEANER_HEADERS class pkgAcquire; +#endif + class pkgCacheGenerator; class OpProgress; @@ -51,7 +54,7 @@ class pkgIndexFile // Global list of Items supported static Type **GlobalList; static unsigned long GlobalListLen; - static Type *GetType(const char *Type); + static Type *GetType(const char *Type) APT_PURE; const char *Label; @@ -78,11 +81,11 @@ class pkgIndexFile virtual bool Exists() const = 0; virtual bool HasPackages() const = 0; virtual unsigned long Size() const = 0; - virtual bool Merge(pkgCacheGenerator &Gen, OpProgress* Prog) const { return false; }; - __deprecated virtual bool Merge(pkgCacheGenerator &Gen, OpProgress &Prog) const + virtual bool Merge(pkgCacheGenerator &/*Gen*/, OpProgress* /*Prog*/) const { return false; }; + APT_DEPRECATED virtual bool Merge(pkgCacheGenerator &Gen, OpProgress &Prog) const { return Merge(Gen, &Prog); }; - virtual bool MergeFileProvides(pkgCacheGenerator &Gen,OpProgress* Prog) const {return true;}; - __deprecated virtual bool MergeFileProvides(pkgCacheGenerator &Gen, OpProgress &Prog) const + virtual bool MergeFileProvides(pkgCacheGenerator &/*Gen*/,OpProgress* /*Prog*/) const {return true;}; + APT_DEPRECATED virtual bool MergeFileProvides(pkgCacheGenerator &Gen, OpProgress &Prog) const {return MergeFileProvides(Gen, &Prog);}; virtual pkgCache::PkgFileIterator FindInCache(pkgCache &Cache) const; diff --git a/apt-pkg/indexrecords.cc b/apt-pkg/indexrecords.cc index f8097c3c6..5353d1098 100644 --- a/apt-pkg/indexrecords.cc +++ b/apt-pkg/indexrecords.cc @@ -14,41 +14,46 @@ #include <apt-pkg/hashes.h> #include <apt-pkg/gpgv.h> -#include <sys/stat.h> +#include <stdlib.h> +#include <time.h> #include <clocale> +#include <map> +#include <string> +#include <utility> +#include <vector> #include <apti18n.h> /*}}}*/ using std::string; -string indexRecords::GetDist() const +APT_PURE string indexRecords::GetDist() const { return this->Dist; } -string indexRecords::GetSuite() const +APT_PURE string indexRecords::GetSuite() const { return this->Suite; } -bool indexRecords::CheckDist(const string MaybeDist) const +APT_PURE bool indexRecords::CheckDist(const string MaybeDist) const { return (this->Dist == MaybeDist || this->Suite == MaybeDist); } -string indexRecords::GetExpectedDist() const +APT_PURE string indexRecords::GetExpectedDist() const { return this->ExpectedDist; } -time_t indexRecords::GetValidUntil() const +APT_PURE time_t indexRecords::GetValidUntil() const { return this->ValidUntil; } -const indexRecords::checkSum *indexRecords::Lookup(const string MetaKey) +APT_PURE const indexRecords::checkSum *indexRecords::Lookup(const string MetaKey) { std::map<std::string, indexRecords::checkSum* >::const_iterator sum = Entries.find(MetaKey); if (sum == Entries.end()) @@ -56,7 +61,7 @@ const indexRecords::checkSum *indexRecords::Lookup(const string MetaKey) return sum->second; } -bool indexRecords::Exists(string const &MetaKey) const +APT_PURE bool indexRecords::Exists(string const &MetaKey) const { return Entries.count(MetaKey) == 1; } @@ -129,10 +134,10 @@ bool indexRecords::Load(const string Filename) /*{{{*/ // get the user settings for this archive and use what expires earlier int MaxAge = _config->FindI("Acquire::Max-ValidTime", 0); if (Label.empty() == false) - MaxAge = _config->FindI(string("Acquire::Max-ValidTime::" + Label).c_str(), MaxAge); + MaxAge = _config->FindI(("Acquire::Max-ValidTime::" + Label).c_str(), MaxAge); int MinAge = _config->FindI("Acquire::Min-ValidTime", 0); if (Label.empty() == false) - MinAge = _config->FindI(string("Acquire::Min-ValidTime::" + Label).c_str(), MinAge); + MinAge = _config->FindI(("Acquire::Min-ValidTime::" + Label).c_str(), MinAge); if(MaxAge == 0 && (MinAge == 0 || ValidUntil == 0)) // No user settings, use the one from the Release file diff --git a/apt-pkg/indexrecords.h b/apt-pkg/indexrecords.h index d003ec0fa..e31f889ad 100644 --- a/apt-pkg/indexrecords.h +++ b/apt-pkg/indexrecords.h @@ -5,17 +5,19 @@ #ifndef PKGLIB_INDEXRECORDS_H #define PKGLIB_INDEXRECORDS_H - -#include <apt-pkg/pkgcache.h> #include <apt-pkg/hashes.h> #include <map> #include <vector> #include <ctime> +#include <string> #ifndef APT_8_CLEANER_HEADERS #include <apt-pkg/fileutl.h> #endif +#ifndef APT_10_CLEANER_HEADERS +#include <apt-pkg/pkgcache.h> +#endif class indexRecords { diff --git a/apt-pkg/init.cc b/apt-pkg/init.cc index 5d21b3847..241628632 100644 --- a/apt-pkg/init.cc +++ b/apt-pkg/init.cc @@ -15,9 +15,11 @@ #include <apt-pkg/error.h> #include <apt-pkg/pkgsystem.h> #include <apt-pkg/configuration.h> +#include <apt-pkg/macros.h> +#include <string.h> +#include <string> #include <cstdlib> -#include <sys/stat.h> #include <apti18n.h> /*}}}*/ diff --git a/apt-pkg/init.h b/apt-pkg/init.h index b6f3df753..d062392e3 100644 --- a/apt-pkg/init.h +++ b/apt-pkg/init.h @@ -1,6 +1,5 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: init.h,v 1.9.2.2 2004/01/02 18:51:00 mdz Exp $ /* ###################################################################### Init - Initialize the package library @@ -17,19 +16,13 @@ #include <apt-pkg/configuration.h> #include <apt-pkg/pkgsystem.h> #endif +#ifndef APT_10_CLEANER_HEADERS +#include <apt-pkg/macros.h> +#endif class pkgSystem; class Configuration; -// These lines are extracted by the makefiles and the buildsystem -// Increasing MAJOR or MINOR results in the need of recompiling all -// reverse-dependencies of libapt-pkg against the new SONAME. -// 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_RELEASE 0 - extern const char *pkgVersion; extern const char *pkgLibVersion; diff --git a/apt-pkg/install-progress.cc b/apt-pkg/install-progress.cc index a3a4cc0e1..8bb587f67 100644 --- a/apt-pkg/install-progress.cc +++ b/apt-pkg/install-progress.cc @@ -1,17 +1,23 @@ +#include <config.h> + #include <apt-pkg/configuration.h> #include <apt-pkg/fileutl.h> #include <apt-pkg/strutl.h> #include <apt-pkg/install-progress.h> -#include <apti18n.h> - -#include <termios.h> +#include <signal.h> +#include <unistd.h> +#include <iostream> +#include <string> +#include <vector> #include <sys/ioctl.h> #include <sstream> #include <fcntl.h> #include <algorithm> #include <stdio.h> +#include <apti18n.h> + namespace APT { namespace Progress { @@ -41,10 +47,10 @@ PackageManager* PackageManagerProgressFactory() return progress; } -bool PackageManager::StatusChanged(std::string PackageName, +bool PackageManager::StatusChanged(std::string /*PackageName*/, unsigned int StepsDone, unsigned int TotalSteps, - std::string HumanReadableAction) + std::string /*HumanReadableAction*/) { int reporting_steps = _config->FindI("DpkgPM::Reporting-Steps", 1); percentage = StepsDone/(float)TotalSteps * 100.0; @@ -87,7 +93,7 @@ void PackageManagerProgressFd::StartDpkg() WriteToStatusFd(status.str()); } -void PackageManagerProgressFd::Stop() +APT_CONST void PackageManagerProgressFd::Stop() { } @@ -170,7 +176,7 @@ void PackageManagerProgressDeb822Fd::StartDpkg() WriteToStatusFd(status.str()); } -void PackageManagerProgressDeb822Fd::Stop() +APT_CONST void PackageManagerProgressDeb822Fd::Stop() { } @@ -246,17 +252,22 @@ void PackageManagerFancy::staticSIGWINCH(int signum) (*I)->HandleSIGWINCH(signum); } -int PackageManagerFancy::GetNumberTerminalRows() +PackageManagerFancy::TermSize +PackageManagerFancy::GetTerminalSize() { struct winsize win; + PackageManagerFancy::TermSize s; + // FIXME: get from "child_pty" instead? if(ioctl(STDOUT_FILENO, TIOCGWINSZ, (char *)&win) != 0) - return -1; + return s; if(_config->FindB("Debug::InstallProgress::Fancy", false) == true) - std::cerr << "GetNumberTerminalRows: " << win.ws_row << std::endl; - - return win.ws_row; + std::cerr << "GetTerminalSize: " << win.ws_row << std::endl; + + s.rows = win.ws_row; + s.columns = win.ws_col; + return s; } void PackageManagerFancy::SetupTerminalScrollArea(int nr_rows) @@ -292,21 +303,21 @@ void PackageManagerFancy::SetupTerminalScrollArea(int nr_rows) void PackageManagerFancy::HandleSIGWINCH(int) { - int nr_terminal_rows = GetNumberTerminalRows(); + int nr_terminal_rows = GetTerminalSize().rows; SetupTerminalScrollArea(nr_terminal_rows); } void PackageManagerFancy::Start(int a_child_pty) { child_pty = a_child_pty; - int nr_terminal_rows = GetNumberTerminalRows(); + int nr_terminal_rows = GetTerminalSize().rows; if (nr_terminal_rows > 0) SetupTerminalScrollArea(nr_terminal_rows); } void PackageManagerFancy::Stop() { - int nr_terminal_rows = GetNumberTerminalRows(); + int nr_terminal_rows = GetTerminalSize().rows; if (nr_terminal_rows > 0) { SetupTerminalScrollArea(nr_terminal_rows + 1); @@ -318,6 +329,26 @@ void PackageManagerFancy::Stop() child_pty = -1; } +std::string +PackageManagerFancy::GetTextProgressStr(float Percent, int OutputSize) +{ + std::string output; + int i; + + // should we raise a exception here instead? + if (Percent < 0.0 || Percent > 1.0 || OutputSize < 3) + return output; + + int BarSize = OutputSize - 2; // bar without the leading "[" and trailing "]" + output += "["; + for(i=0; i < BarSize*Percent; i++) + output += "#"; + for (/*nothing*/; i < BarSize; i++) + output += "."; + output += "]"; + return output; +} + bool PackageManagerFancy::StatusChanged(std::string PackageName, unsigned int StepsDone, unsigned int TotalSteps, @@ -327,27 +358,47 @@ bool PackageManagerFancy::StatusChanged(std::string PackageName, HumanReadableAction)) return false; - int row = GetNumberTerminalRows(); + PackageManagerFancy::TermSize size = GetTerminalSize(); + + static std::string save_cursor = "\033[s"; + static std::string restore_cursor = "\033[u"; + + // green + static std::string set_bg_color = DeQuoteString( + _config->Find("Dpkg::Progress-Fancy::Progress-fg", "%1b[42m")); + // black + static std::string set_fg_color = DeQuoteString( + _config->Find("Dpkg::Progress-Fancy::Progress-bg", "%1b[30m")); + + static std::string restore_bg = "\033[49m"; + static std::string restore_fg = "\033[39m"; - static string save_cursor = "\033[s"; - static string restore_cursor = "\033[u"; - - static string set_bg_color = "\033[42m"; // green - static string set_fg_color = "\033[30m"; // black - - static string restore_bg = "\033[49m"; - static string restore_fg = "\033[39m"; - std::cout << save_cursor // move cursor position to last row - << "\033[" << row << ";0f" + << "\033[" << size.rows << ";0f" << set_bg_color << set_fg_color << progress_str - << restore_cursor << restore_bg << restore_fg; std::flush(std::cout); + + // draw text progress bar + if (_config->FindB("Dpkg::Progress-Fancy::Progress-Bar", true)) + { + int padding = 4; + float progressbar_size = size.columns - padding - progress_str.size(); + float current_percent = (float)StepsDone/(float)TotalSteps; + std::cout << " " + << GetTextProgressStr(current_percent, progressbar_size) + << " "; + std::flush(std::cout); + } + + // restore + std::cout << restore_cursor; + std::flush(std::cout); + last_reported_progress = percentage; return true; @@ -371,5 +422,5 @@ bool PackageManagerText::StatusChanged(std::string PackageName, -}; // namespace progress -}; // namespace apt +} // namespace progress +} // namespace apt diff --git a/apt-pkg/install-progress.h b/apt-pkg/install-progress.h index 8a5b68a8f..112b034fb 100644 --- a/apt-pkg/install-progress.h +++ b/apt-pkg/install-progress.h @@ -24,16 +24,16 @@ namespace Progress { int last_reported_progress; public: - PackageManager() + PackageManager() : percentage(0.0), last_reported_progress(-1) {}; virtual ~PackageManager() {}; /* Global Start/Stop */ - virtual void Start(int child_pty=-1) {}; + virtual void Start(int /*child_pty*/=-1) {}; virtual void Stop() {}; - /* When dpkg is invoked (may happen multiple times for each - * install/remove block + /* When dpkg is invoked (may happen multiple times for each + * install/remove block */ virtual void StartDpkg() {}; @@ -44,18 +44,18 @@ namespace Progress { return 500000; }; - virtual bool StatusChanged(std::string PackageName, + virtual bool StatusChanged(std::string PackageName, unsigned int StepsDone, unsigned int TotalSteps, - std::string HumanReadableAction) ; - virtual void Error(std::string PackageName, - unsigned int StepsDone, - unsigned int TotalSteps, - std::string ErrorMessage) {}; - virtual void ConffilePrompt(std::string PackageName, - unsigned int StepsDone, - unsigned int TotalSteps, - std::string ConfMessage) {}; + std::string HumanReadableAction); + virtual void Error(std::string /*PackageName*/, + unsigned int /*StepsDone*/, + unsigned int /*TotalSteps*/, + std::string /*ErrorMessage*/) {} + virtual void ConffilePrompt(std::string /*PackageName*/, + unsigned int /*StepsDone*/, + unsigned int /*TotalSteps*/, + std::string /*ConfMessage*/) {} }; class PackageManagerProgressFd : public PackageManager @@ -72,11 +72,11 @@ namespace Progress { virtual void StartDpkg(); virtual void Stop(); - virtual bool StatusChanged(std::string PackageName, + virtual bool StatusChanged(std::string PackageName, unsigned int StepsDone, unsigned int TotalSteps, std::string HumanReadableAction); - virtual void Error(std::string PackageName, + virtual void Error(std::string PackageName, unsigned int StepsDone, unsigned int TotalSteps, std::string ErrorMessage); @@ -101,11 +101,11 @@ namespace Progress { virtual void StartDpkg(); virtual void Stop(); - virtual bool StatusChanged(std::string PackageName, + virtual bool StatusChanged(std::string PackageName, unsigned int StepsDone, unsigned int TotalSteps, std::string HumanReadableAction); - virtual void Error(std::string PackageName, + virtual void Error(std::string PackageName, unsigned int StepsDone, unsigned int TotalSteps, std::string ErrorMessage); @@ -125,7 +125,12 @@ namespace Progress { void SetupTerminalScrollArea(int nr_rows); void HandleSIGWINCH(int); - int GetNumberTerminalRows(); + typedef struct { + int rows; + int columns; + } TermSize; + TermSize GetTerminalSize(); + sighandler_t old_SIGWINCH; int child_pty; @@ -134,23 +139,27 @@ namespace Progress { ~PackageManagerFancy(); virtual void Start(int child_pty=-1); virtual void Stop(); - virtual bool StatusChanged(std::string PackageName, + virtual bool StatusChanged(std::string PackageName, unsigned int StepsDone, unsigned int TotalSteps, std::string HumanReadableAction); + + // return a progress bar of the given size for the given progress + // percent between 0.0 and 1.0 in the form "[####...]" + static std::string GetTextProgressStr(float percent, int OutputSize); }; class PackageManagerText : public PackageManager { public: - virtual bool StatusChanged(std::string PackageName, + virtual bool StatusChanged(std::string PackageName, unsigned int StepsDone, unsigned int TotalSteps, std::string HumanReadableAction); }; -}; // namespace Progress -}; // namespace APT +} // namespace Progress +} // namespace APT #endif diff --git a/apt-pkg/makefile b/apt-pkg/makefile index a90131f80..1d456873b 100644 --- a/apt-pkg/makefile +++ b/apt-pkg/makefile @@ -21,6 +21,9 @@ endif ifeq ($(HAVE_BZ2),yes) SLIBS+= -lbz2 endif +ifeq ($(HAVE_LZMA),yes) +SLIBS+= -llzma +endif APT_DOMAIN:=libapt-pkg$(LIBAPTPKG_MAJOR) # Source code for the contributed non-core things diff --git a/apt-pkg/metaindex.h b/apt-pkg/metaindex.h index 18a90a29d..ffabaadbf 100644 --- a/apt-pkg/metaindex.h +++ b/apt-pkg/metaindex.h @@ -1,12 +1,19 @@ #ifndef PKGLIB_METAINDEX_H #define PKGLIB_METAINDEX_H - -#include <string> -#include <apt-pkg/pkgcache.h> #include <apt-pkg/indexfile.h> #include <apt-pkg/init.h> +#include <stddef.h> + +#include <string> +#include <vector> + +#ifndef APT_10_CLEANER_HEADERS +#include <apt-pkg/pkgcache.h> +class pkgCacheGenerator; +class OpProgress; +#endif #ifndef APT_8_CLEANER_HEADERS #include <apt-pkg/srcrecords.h> #include <apt-pkg/pkgrecords.h> @@ -15,8 +22,6 @@ using std::string; #endif class pkgAcquire; -class pkgCacheGenerator; -class OpProgress; class metaIndex { diff --git a/apt-pkg/orderlist.cc b/apt-pkg/orderlist.cc index 21b5fc4e7..a1fcbcc98 100644 --- a/apt-pkg/orderlist.cc +++ b/apt-pkg/orderlist.cc @@ -68,10 +68,14 @@ #include <apt-pkg/orderlist.h> #include <apt-pkg/depcache.h> #include <apt-pkg/error.h> -#include <apt-pkg/version.h> #include <apt-pkg/sptr.h> #include <apt-pkg/configuration.h> +#include <apt-pkg/cacheiterators.h> +#include <apt-pkg/pkgcache.h> +#include <stdlib.h> +#include <string.h> +#include <string> #include <iostream> /*}}}*/ diff --git a/apt-pkg/orderlist.h b/apt-pkg/orderlist.h index a2d7b321b..b8bad81b3 100644 --- a/apt-pkg/orderlist.h +++ b/apt-pkg/orderlist.h @@ -16,10 +16,12 @@ #ifndef PKGLIB_ORDERLIST_H #define PKGLIB_ORDERLIST_H - #include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> #include <apt-pkg/macros.h> +#include <string> + class pkgDepCache; class pkgOrderList : protected pkgCache::Namespace { @@ -46,7 +48,7 @@ class pkgOrderList : protected pkgCache::Namespace bool Debug; // Main visit function - __deprecated bool VisitNode(PkgIterator Pkg) { return VisitNode(Pkg, "UNKNOWN"); }; + APT_DEPRECATED bool VisitNode(PkgIterator Pkg) { return VisitNode(Pkg, "UNKNOWN"); }; bool VisitNode(PkgIterator Pkg, char const* from); bool VisitDeps(DepFunc F,PkgIterator Pkg); bool VisitRDeps(DepFunc F,PkgIterator Pkg); @@ -68,9 +70,9 @@ class pkgOrderList : protected pkgCache::Namespace // For pre sorting static pkgOrderList *Me; - static int OrderCompareA(const void *a, const void *b); - static int OrderCompareB(const void *a, const void *b); - int FileCmp(PkgIterator A,PkgIterator B); + static int OrderCompareA(const void *a, const void *b) APT_PURE; + static int OrderCompareB(const void *a, const void *b) APT_PURE; + int FileCmp(PkgIterator A,PkgIterator B) APT_PURE; public: @@ -100,7 +102,7 @@ class pkgOrderList : protected pkgCache::Namespace inline void RmFlag(Package *Pkg,unsigned long F) {Flags[Pkg->ID] &= ~F;}; // IsNow will return true if the Pkg has been not been either configured or unpacked inline bool IsNow(PkgIterator Pkg) {return (Flags[Pkg->ID] & (States & (~Removed))) == 0;}; - bool IsMissing(PkgIterator Pkg); + bool IsMissing(PkgIterator Pkg) APT_PURE; void WipeFlags(unsigned long F); void SetFileList(std::string *FileList) {this->FileList = FileList;}; diff --git a/apt-pkg/packagemanager.cc b/apt-pkg/packagemanager.cc index def35cd5f..5d6bc6bd2 100644 --- a/apt-pkg/packagemanager.cc +++ b/apt-pkg/packagemanager.cc @@ -13,7 +13,7 @@ ##################################################################### */ /*}}}*/ // Include Files /*{{{*/ -#include<config.h> +#include <config.h> #include <apt-pkg/packagemanager.h> #include <apt-pkg/orderlist.h> @@ -24,7 +24,14 @@ #include <apt-pkg/algorithms.h> #include <apt-pkg/configuration.h> #include <apt-pkg/sptr.h> - +#include <apt-pkg/macros.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> +#include <apt-pkg/strutl.h> + +#include <stddef.h> +#include <list> +#include <string> #include <iostream> #include <apti18n.h> diff --git a/apt-pkg/packagemanager.h b/apt-pkg/packagemanager.h index 853b9bac8..344ed9192 100644 --- a/apt-pkg/packagemanager.h +++ b/apt-pkg/packagemanager.h @@ -23,15 +23,17 @@ #ifndef PKGLIB_PACKAGEMANAGER_H #define PKGLIB_PACKAGEMANAGER_H -#include <apt-pkg/macros.h> #include <apt-pkg/pkgcache.h> -#include <apt-pkg/install-progress.h> #include <apt-pkg/init.h> +#include <apt-pkg/macros.h> #include <string> -#include <iostream> #include <set> +#ifndef APT_10_CLEANER_HEADERS +#include <apt-pkg/install-progress.h> +#include <iostream> +#endif #ifndef APT_8_CLEANER_HEADERS #include <apt-pkg/depcache.h> using std::string; @@ -73,7 +75,7 @@ class pkgPackageManager : protected pkgCache::Namespace bool CreateOrderList(); // Analysis helpers - bool DepAlwaysTrue(DepIterator D); + bool DepAlwaysTrue(DepIterator D) APT_PURE; // Install helpers bool ConfigureAll(); @@ -89,9 +91,9 @@ class pkgPackageManager : protected pkgCache::Namespace virtual bool Configure(PkgIterator /*Pkg*/) {return false;}; 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(APT::Progress::PackageManager * /*progress*/) {return true;}; #else - virtual bool Go(int statusFd=-1) {return true;}; + virtual bool Go(int /*statusFd*/=-1) {return true;}; #endif virtual void Reset() {}; @@ -109,7 +111,7 @@ class pkgPackageManager : protected pkgCache::Namespace #if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR >= 13) OrderResult DoInstall(APT::Progress::PackageManager *progress); // compat - __deprecated OrderResult DoInstall(int statusFd=-1); + APT_DEPRECATED OrderResult DoInstall(int statusFd=-1); #else OrderResult DoInstall(int statusFd=-1); #endif @@ -124,7 +126,7 @@ class pkgPackageManager : protected pkgCache::Namespace // stuff that needs to be done after the fork OrderResult DoInstallPostFork(APT::Progress::PackageManager *progress); // compat - __deprecated OrderResult DoInstallPostFork(int statusFd=-1); + APT_DEPRECATED OrderResult DoInstallPostFork(int statusFd=-1); #else OrderResult DoInstallPostFork(int statusFd=-1); #endif diff --git a/apt-pkg/pkgcache.cc b/apt-pkg/pkgcache.cc index 67a2a709d..91b75f52e 100644 --- a/apt-pkg/pkgcache.cc +++ b/apt-pkg/pkgcache.cc @@ -29,12 +29,15 @@ #include <apt-pkg/strutl.h> #include <apt-pkg/configuration.h> #include <apt-pkg/aptconfiguration.h> +#include <apt-pkg/mmap.h> #include <apt-pkg/macros.h> +#include <stddef.h> +#include <string.h> +#include <ostream> +#include <vector> #include <string> #include <sys/stat.h> -#include <unistd.h> -#include <ctype.h> #include <apti18n.h> /*}}}*/ @@ -52,7 +55,11 @@ 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 Dirty = false; HeaderSz = sizeof(pkgCache::Header); @@ -414,7 +421,7 @@ pkgCache::PkgIterator pkgCache::GrpIterator::NextPkg(pkgCache::PkgIterator const // GrpIterator::operator ++ - Postfix incr /*{{{*/ // --------------------------------------------------------------------- /* This will advance to the next logical group in the hash table. */ -void pkgCache::GrpIterator::operator ++(int) +void pkgCache::GrpIterator::operator ++(int) { // Follow the current links if (S != Owner->GrpP) @@ -426,12 +433,12 @@ void pkgCache::GrpIterator::operator ++(int) HashIndex++; S = Owner->GrpP + Owner->HeaderP->GrpHashTable[HashIndex]; } -}; +} /*}}}*/ // PkgIterator::operator ++ - Postfix incr /*{{{*/ // --------------------------------------------------------------------- /* This will advance to the next logical package in the hash table. */ -void pkgCache::PkgIterator::operator ++(int) +void pkgCache::PkgIterator::operator ++(int) { // Follow the current links if (S != Owner->PkgP) @@ -443,7 +450,7 @@ void pkgCache::PkgIterator::operator ++(int) HashIndex++; S = Owner->PkgP + Owner->HeaderP->PkgHashTable[HashIndex]; } -}; +} /*}}}*/ // PkgIterator::State - Check the State of the package /*{{{*/ // --------------------------------------------------------------------- @@ -475,26 +482,26 @@ pkgCache::PkgIterator::OkState pkgCache::PkgIterator::State() const // --------------------------------------------------------------------- /* Return string representing of the candidate version. */ const char * -pkgCache::PkgIterator::CandVersion() const +pkgCache::PkgIterator::CandVersion() const { //TargetVer is empty, so don't use it. VerIterator version = pkgPolicy(Owner).GetCandidateVer(*this); if (version.IsGood()) return version.VerStr(); return 0; -}; +} /*}}}*/ // PkgIterator::CurVersion - Returns the current version string /*{{{*/ // --------------------------------------------------------------------- /* Return string representing of the current version. */ const char * -pkgCache::PkgIterator::CurVersion() const +pkgCache::PkgIterator::CurVersion() const { VerIterator version = CurrentVer(); if (version.IsGood()) return CurrentVer().VerStr(); return 0; -}; +} /*}}}*/ // ostream operator to handle string representation of a package /*{{{*/ // --------------------------------------------------------------------- @@ -695,7 +702,7 @@ void pkgCache::DepIterator::GlobOr(DepIterator &Start,DepIterator &End) // --------------------------------------------------------------------- /* Deps like self-conflicts should be ignored as well as implicit conflicts on virtual packages. */ -bool pkgCache::DepIterator::IsIgnorable(PkgIterator const &Pkg) const +bool pkgCache::DepIterator::IsIgnorable(PkgIterator const &/*Pkg*/) const { if (IsNegative() == false) return false; @@ -978,7 +985,7 @@ string pkgCache::PkgFileIterator::RelStr() /*}}}*/ // VerIterator::TranslatedDescription - Return the a DescIter for locale/*{{{*/ // --------------------------------------------------------------------- -/* return a DescIter for the current locale or the default if none is +/* return a DescIter for the current locale or the default if none is * found */ pkgCache::DescIterator pkgCache::VerIterator::TranslatedDescription() const @@ -1012,7 +1019,7 @@ pkgCache::DescIterator pkgCache::VerIterator::TranslatedDescription() const if (strcmp(Desc.LanguageCode(), "") == 0) return Desc; return DescriptionList(); -}; +} /*}}}*/ // PrvIterator::IsMultiArchImplicit - added by the cache generation /*{{{*/ diff --git a/apt-pkg/pkgcache.h b/apt-pkg/pkgcache.h index c31c5f30b..5e8a9630a 100644 --- a/apt-pkg/pkgcache.h +++ b/apt-pkg/pkgcache.h @@ -74,9 +74,11 @@ #ifndef PKGLIB_PKGCACHE_H #define PKGLIB_PKGCACHE_H +#include <apt-pkg/mmap.h> +#include <apt-pkg/macros.h> + #include <string> #include <time.h> -#include <apt-pkg/mmap.h> #ifndef APT_8_CLEANER_HEADERS using std::string; @@ -156,8 +158,8 @@ class pkgCache /*{{{*/ std::string CacheFile; MMap ⤅ - unsigned long sHash(const std::string &S) const; - unsigned long sHash(const char *S) const; + unsigned long sHash(const std::string &S) const APT_PURE; + unsigned long sHash(const char *S) const APT_PURE; public: @@ -176,13 +178,13 @@ class pkgCache /*{{{*/ char *StrP; virtual bool ReMap(bool const &Errorchecks = true); - inline bool Sync() {return Map.Sync();}; - inline MMap &GetMap() {return Map;}; - inline void *DataEnd() {return ((unsigned char *)Map.Data()) + Map.Size();}; + inline bool Sync() {return Map.Sync();} + inline MMap &GetMap() {return Map;} + 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 unsigned long Hash(const std::string &S) const {return sHash(S);} + inline unsigned long Hash(const char *S) const {return sHash(S);} // Useful transformation things const char *Priority(unsigned char Priority); @@ -192,7 +194,7 @@ class pkgCache /*{{{*/ PkgIterator FindPkg(const std::string &Name); PkgIterator FindPkg(const std::string &Name, const std::string &Arch); - Header &Head() {return *HeaderP;}; + Header &Head() {return *HeaderP;} inline GrpIterator GrpBegin(); inline GrpIterator GrpEnd(); inline PkgIterator PkgBegin(); @@ -200,19 +202,19 @@ class pkgCache /*{{{*/ inline PkgFileIterator FileBegin(); inline PkgFileIterator FileEnd(); - inline bool MultiArchCache() const { return MultiArchEnabled; }; - inline char const * const NativeArch() const; + inline bool MultiArchCache() const { return MultiArchEnabled; } + inline char const * NativeArch(); // Make me a function pkgVersioningSystem *VS; // Converters - static const char *CompTypeDeb(unsigned char Comp); - static const char *CompType(unsigned char Comp); + static const char *CompTypeDeb(unsigned char Comp) APT_CONST; + static const char *CompType(unsigned char Comp) APT_CONST; static const char *DepType(unsigned char Dep); pkgCache(MMap *Map,bool DoMap = true); - virtual ~pkgCache() {}; + virtual ~pkgCache() {} private: bool MultiArchEnabled; @@ -318,7 +320,7 @@ struct pkgCache::Header /** \brief Size of the complete cache file */ unsigned long CacheFileSize; - bool CheckSizes(Header &Against) const; + bool CheckSizes(Header &Against) const APT_PURE; Header(); }; /*}}}*/ @@ -451,7 +453,7 @@ struct pkgCache::PackageFile /** \brief Modification time for the file */ time_t mtime; - /* @TODO document PackageFile::Flags */ + /** @TODO document PackageFile::Flags */ unsigned long Flags; // Linked list @@ -474,7 +476,7 @@ struct pkgCache::VerFile map_ptrloc NextFile; // PkgVerFile /** \brief position in the package file */ map_ptrloc Offset; // File offset - /* @TODO document pkgCache::VerFile::Size */ + /** @TODO document pkgCache::VerFile::Size */ unsigned long Size; }; /*}}}*/ @@ -488,7 +490,7 @@ struct pkgCache::DescFile map_ptrloc NextFile; // PkgVerFile /** \brief position in the file */ map_ptrloc Offset; // File offset - /* @TODO document pkgCache::DescFile::Size */ + /** @TODO document pkgCache::DescFile::Size */ unsigned long Size; }; /*}}}*/ @@ -571,7 +573,7 @@ struct pkgCache::Description and to check that the Translation is up-to-date. */ map_ptrloc md5sum; // StringItem - /* @TODO document pkgCache::Description::FileList */ + /** @TODO document pkgCache::Description::FileList */ map_ptrloc FileList; // DescFile /** \brief next translation for this description */ map_ptrloc NextDesc; // Description @@ -661,27 +663,27 @@ struct pkgCache::StringItem /*}}}*/ -inline char const * const pkgCache::NativeArch() const - { return StrP + HeaderP->Architecture; }; +inline char const * pkgCache::NativeArch() + { return StrP + HeaderP->Architecture; } #include <apt-pkg/cacheiterators.h> -inline pkgCache::GrpIterator pkgCache::GrpBegin() - {return GrpIterator(*this);}; -inline pkgCache::GrpIterator pkgCache::GrpEnd() - {return GrpIterator(*this,GrpP);}; -inline pkgCache::PkgIterator pkgCache::PkgBegin() - {return PkgIterator(*this);}; -inline pkgCache::PkgIterator pkgCache::PkgEnd() - {return PkgIterator(*this,PkgP);}; +inline pkgCache::GrpIterator pkgCache::GrpBegin() + {return GrpIterator(*this);} +inline pkgCache::GrpIterator pkgCache::GrpEnd() + {return GrpIterator(*this,GrpP);} +inline pkgCache::PkgIterator pkgCache::PkgBegin() + {return PkgIterator(*this);} +inline pkgCache::PkgIterator pkgCache::PkgEnd() + {return PkgIterator(*this,PkgP);} inline pkgCache::PkgFileIterator pkgCache::FileBegin() - {return PkgFileIterator(*this,PkgFileP + HeaderP->FileList);}; + {return PkgFileIterator(*this,PkgFileP + HeaderP->FileList);} inline pkgCache::PkgFileIterator pkgCache::FileEnd() - {return PkgFileIterator(*this,PkgFileP);}; + {return PkgFileIterator(*this,PkgFileP);} // Oh I wish for Real Name Space Support class pkgCache::Namespace /*{{{*/ -{ +{ public: typedef pkgCache::GrpIterator GrpIterator; typedef pkgCache::PkgIterator PkgIterator; @@ -690,7 +692,7 @@ class pkgCache::Namespace /*{{{*/ typedef pkgCache::DepIterator DepIterator; typedef pkgCache::PrvIterator PrvIterator; typedef pkgCache::PkgFileIterator PkgFileIterator; - typedef pkgCache::VerFileIterator VerFileIterator; + typedef pkgCache::VerFileIterator VerFileIterator; typedef pkgCache::Version Version; typedef pkgCache::Description Description; typedef pkgCache::Package Package; diff --git a/apt-pkg/pkgcachegen.cc b/apt-pkg/pkgcachegen.cc index 7ce7aba7b..810f0b022 100644 --- a/apt-pkg/pkgcachegen.cc +++ b/apt-pkg/pkgcachegen.cc @@ -18,20 +18,26 @@ #include <apt-pkg/progress.h> #include <apt-pkg/sourcelist.h> #include <apt-pkg/configuration.h> -#include <apt-pkg/aptconfiguration.h> #include <apt-pkg/strutl.h> #include <apt-pkg/sptr.h> #include <apt-pkg/pkgsystem.h> #include <apt-pkg/macros.h> -#include <apt-pkg/tagfile.h> #include <apt-pkg/metaindex.h> #include <apt-pkg/fileutl.h> - +#include <apt-pkg/hashsum_template.h> +#include <apt-pkg/indexfile.h> +#include <apt-pkg/md5.h> +#include <apt-pkg/mmap.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> + +#include <stddef.h> +#include <string.h> +#include <iostream> +#include <string> #include <vector> #include <sys/stat.h> #include <unistd.h> -#include <errno.h> -#include <stdio.h> #include <apti18n.h> /*}}}*/ @@ -118,11 +124,11 @@ void pkgCacheGenerator::ReMap(void const * const oldMap, void const * const newM Cache.ReMap(false); - CurrentFile += (pkgCache::PackageFile*) newMap - (pkgCache::PackageFile*) oldMap; + CurrentFile += (pkgCache::PackageFile const * const) newMap - (pkgCache::PackageFile const * const) oldMap; for (size_t i = 0; i < _count(UniqHash); ++i) if (UniqHash[i] != 0) - UniqHash[i] += (pkgCache::StringItem*) newMap - (pkgCache::StringItem*) oldMap; + UniqHash[i] += (pkgCache::StringItem const * const) newMap - (pkgCache::StringItem const * const) oldMap; for (std::vector<pkgCache::GrpIterator*>::const_iterator i = Dynamic<pkgCache::GrpIterator>::toReMap.begin(); i != Dynamic<pkgCache::GrpIterator>::toReMap.end(); ++i) @@ -350,7 +356,7 @@ bool pkgCacheGenerator::MergeListVersion(ListParser &List, pkgCache::PkgIterator map_ptrloc *LastVer = &Pkg->VersionList; void const * oldMap = Map.Data(); - unsigned long const Hash = List.VersionHash(); + unsigned short const Hash = List.VersionHash(); if (Ver.end() == false) { /* We know the list is sorted so we use that fact in the search. @@ -363,7 +369,7 @@ bool pkgCacheGenerator::MergeListVersion(ListParser &List, pkgCache::PkgIterator if (Res > 0) break; // Versionstrings are equal - is hash also equal? - if (Res == 0 && Ver->Hash == Hash) + if (Res == 0 && List.SameVersion(Hash, Ver) == true) break; // proceed with the next till we have either the right // or we found another version (which will be lower) @@ -398,7 +404,7 @@ bool pkgCacheGenerator::MergeListVersion(ListParser &List, pkgCache::PkgIterator Pkg.Name(), "NewVersion", 1); if (oldMap != Map.Data()) - LastVer += (map_ptrloc*) Map.Data() - (map_ptrloc*) oldMap; + LastVer += (map_ptrloc const * const) Map.Data() - (map_ptrloc const * const) oldMap; *LastVer = verindex; if (unlikely(List.NewVersion(Ver) == false)) @@ -552,12 +558,12 @@ bool pkgCacheGenerator::MergeFileProvides(ListParser &List) if (Counter % 100 == 0 && Progress != 0) Progress->Progress(List.Offset()); - unsigned long Hash = List.VersionHash(); + unsigned short Hash = List.VersionHash(); pkgCache::VerIterator Ver = Pkg.VersionList(); Dynamic<pkgCache::VerIterator> DynVer(Ver); for (; Ver.end() == false; ++Ver) { - if (Ver->Hash == Hash && Version == Ver.VerStr()) + if (List.SameVersion(Hash, Ver) == true && Version == Ver.VerStr()) { if (List.CollectFileProvides(Cache,Ver) == false) return _error->Error(_("Error occurred while processing %s (%s%d)"), @@ -909,7 +915,7 @@ bool pkgCacheGenerator::NewDepends(pkgCache::PkgIterator &Pkg, if (unlikely(index == 0)) return false; if (OldDepLast != 0 && oldMap != Map.Data()) - OldDepLast += (map_ptrloc*) Map.Data() - (map_ptrloc*) oldMap; + OldDepLast += (map_ptrloc const * const) Map.Data() - (map_ptrloc const * const) oldMap; } } return NewDepends(Pkg, Ver, index, Op, Type, OldDepLast); @@ -948,7 +954,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*) Map.Data() - (map_ptrloc*) oldMap; + OldDepLast += (map_ptrloc const * const) Map.Data() - (map_ptrloc const * const) oldMap; Dep->NextDepends = *OldDepLast; *OldDepLast = Dep.Index(); @@ -1045,6 +1051,12 @@ bool pkgCacheGenerator::ListParser::NewProvides(pkgCache::VerIterator &Ver, return true; } /*}}}*/ +bool pkgCacheGenerator::ListParser::SameVersion(unsigned short const Hash,/*{{{*/ + pkgCache::VerIterator const &Ver) +{ + return Hash == Ver->Hash; +} + /*}}}*/ // CacheGenerator::SelectFile - Select the current file being parsed /*{{{*/ // --------------------------------------------------------------------- /* This is used to select which file is to be associated with all newly @@ -1125,8 +1137,8 @@ unsigned long pkgCacheGenerator::WriteUniqString(const char *S, if (unlikely(idxString == 0)) return 0; if (oldMap != Map.Data()) { - Last += (map_ptrloc*) Map.Data() - (map_ptrloc*) oldMap; - I += (pkgCache::StringItem*) Map.Data() - (pkgCache::StringItem*) oldMap; + Last += (map_ptrloc const * const) Map.Data() - (map_ptrloc const * const) oldMap; + I += (pkgCache::StringItem const * const) Map.Data() - (pkgCache::StringItem const * const) oldMap; } *Last = Item; @@ -1249,10 +1261,10 @@ static bool CheckValidity(const string &CacheFile, static unsigned long ComputeSize(FileIterator Start,FileIterator End) { unsigned long TotalSize = 0; - for (; Start != End; ++Start) + for (; Start < End; ++Start) { if ((*Start)->HasPackages() == false) - continue; + continue; TotalSize += (*Start)->Size(); } return TotalSize; @@ -1333,7 +1345,7 @@ DynamicMMap* pkgCacheGenerator::CreateDynamicMMap(FileFd *CacheF, unsigned long the cache will be stored there. This is pretty much mandetory if you are using AllowMem. AllowMem lets the function be run as non-root where it builds the cache 'fast' into a memory buffer. */ -__deprecated bool pkgMakeStatusCache(pkgSourceList &List,OpProgress &Progress, +APT_DEPRECATED bool pkgMakeStatusCache(pkgSourceList &List,OpProgress &Progress, MMap **OutMap, bool AllowMem) { return pkgCacheGenerator::MakeStatusCache(List, &Progress, OutMap, AllowMem); } bool pkgCacheGenerator::MakeStatusCache(pkgSourceList &List,OpProgress *Progress, @@ -1534,7 +1546,7 @@ bool pkgCacheGenerator::MakeStatusCache(pkgSourceList &List,OpProgress *Progress // CacheGenerator::MakeOnlyStatusCache - Build only a status files cache/*{{{*/ // --------------------------------------------------------------------- /* */ -__deprecated bool pkgMakeOnlyStatusCache(OpProgress &Progress,DynamicMMap **OutMap) +APT_DEPRECATED bool pkgMakeOnlyStatusCache(OpProgress &Progress,DynamicMMap **OutMap) { return pkgCacheGenerator::MakeOnlyStatusCache(&Progress, OutMap); } bool pkgCacheGenerator::MakeOnlyStatusCache(OpProgress *Progress,DynamicMMap **OutMap) { @@ -1580,7 +1592,7 @@ static bool IsDuplicateDescription(pkgCache::DescIterator Desc, } /*}}}*/ // CacheGenerator::FinishCache /*{{{*/ -bool pkgCacheGenerator::FinishCache(OpProgress *Progress) +bool pkgCacheGenerator::FinishCache(OpProgress * /*Progress*/) { return true; } diff --git a/apt-pkg/pkgcachegen.h b/apt-pkg/pkgcachegen.h index 428e8459b..1e1a71026 100644 --- a/apt-pkg/pkgcachegen.h +++ b/apt-pkg/pkgcachegen.h @@ -19,16 +19,18 @@ #ifndef PKGLIB_PKGCACHEGEN_H #define PKGLIB_PKGCACHEGEN_H - -#include <apt-pkg/pkgcache.h> #include <apt-pkg/md5.h> +#include <apt-pkg/mmap.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> #include <apt-pkg/macros.h> #include <vector> +#include <string> +class FileFd; class pkgSourceList; class OpProgress; -class MMap; class pkgIndexFile; class pkgCacheGenerator /*{{{*/ @@ -36,10 +38,10 @@ class pkgCacheGenerator /*{{{*/ private: pkgCache::StringItem *UniqHash[26]; - map_ptrloc WriteStringInMap(std::string const &String) { return WriteStringInMap(String.c_str()); }; - map_ptrloc WriteStringInMap(const char *String); - map_ptrloc WriteStringInMap(const char *String, const unsigned long &Len); - map_ptrloc AllocateInMap(const unsigned long &size); + 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); public: @@ -80,7 +82,7 @@ class pkgCacheGenerator /*{{{*/ bool NewDepends(pkgCache::PkgIterator &Pkg, pkgCache::VerIterator &Ver, map_ptrloc const Version, unsigned int const &Op, unsigned int const &Type, map_ptrloc* &OldDepLast); - __deprecated unsigned long NewVersion(pkgCache::VerIterator &Ver,const std::string &VerStr,unsigned long Next) + unsigned long NewVersion(pkgCache::VerIterator &Ver,const std::string &VerStr,unsigned long 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, @@ -102,7 +104,7 @@ class pkgCacheGenerator /*{{{*/ bool HasFileDeps() {return FoundFileDeps;}; bool MergeFileProvides(ListParser &List); - __deprecated bool FinishCache(OpProgress *Progress); + bool FinishCache(OpProgress *Progress) APT_DEPRECATED APT_CONST; static bool MakeStatusCache(pkgSourceList &List,OpProgress *Progress, MMap **OutMap = 0,bool AllowMem = false); @@ -115,14 +117,14 @@ class pkgCacheGenerator /*{{{*/ ~pkgCacheGenerator(); private: - bool MergeListGroup(ListParser &List, std::string const &GrpName); - bool MergeListPackage(ListParser &List, pkgCache::PkgIterator &Pkg); - bool MergeListVersion(ListParser &List, pkgCache::PkgIterator &Pkg, + APT_HIDDEN bool MergeListGroup(ListParser &List, std::string const &GrpName); + APT_HIDDEN bool MergeListPackage(ListParser &List, pkgCache::PkgIterator &Pkg); + APT_HIDDEN bool MergeListVersion(ListParser &List, pkgCache::PkgIterator &Pkg, std::string const &Version, pkgCache::VerIterator* &OutVer); - bool AddImplicitDepends(pkgCache::GrpIterator &G, pkgCache::PkgIterator &P, + APT_HIDDEN bool AddImplicitDepends(pkgCache::GrpIterator &G, pkgCache::PkgIterator &P, pkgCache::VerIterator &V); - bool AddImplicitDepends(pkgCache::VerIterator &V, pkgCache::PkgIterator &D); + APT_HIDDEN bool AddImplicitDepends(pkgCache::VerIterator &V, pkgCache::PkgIterator &D); }; /*}}}*/ // This is the abstract package list parser class. /*{{{*/ @@ -162,6 +164,15 @@ class pkgCacheGenerator::ListParser virtual std::string DescriptionLanguage() = 0; virtual MD5SumValue Description_md5() = 0; virtual unsigned short VersionHash() = 0; + /** compare currently parsed version with given version + * + * \param Hash of the currently parsed version + * \param Ver to compare with + */ +#if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR >= 13) + virtual +#endif + 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; @@ -170,8 +181,8 @@ class pkgCacheGenerator::ListParser virtual bool Step() = 0; inline bool HasFileDeps() {return FoundFileDeps;}; - virtual bool CollectFileProvides(pkgCache &Cache, - pkgCache::VerIterator &Ver) {return true;}; + virtual bool CollectFileProvides(pkgCache &/*Cache*/, + pkgCache::VerIterator &/*Ver*/) {return true;}; ListParser() : FoundFileDeps(false) {}; virtual ~ListParser() {}; diff --git a/apt-pkg/pkgrecords.cc b/apt-pkg/pkgrecords.cc index 36dab3480..c403e4dc3 100644 --- a/apt-pkg/pkgrecords.cc +++ b/apt-pkg/pkgrecords.cc @@ -14,7 +14,11 @@ #include <apt-pkg/pkgrecords.h> #include <apt-pkg/indexfile.h> #include <apt-pkg/error.h> -#include <apt-pkg/configuration.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> + +#include <stddef.h> +#include <vector> #include <apti18n.h> /*}}}*/ diff --git a/apt-pkg/pkgrecords.h b/apt-pkg/pkgrecords.h index 3658435e8..b5237b3a0 100644 --- a/apt-pkg/pkgrecords.h +++ b/apt-pkg/pkgrecords.h @@ -17,8 +17,9 @@ #ifndef PKGLIB_PKGRECORDS_H #define PKGLIB_PKGRECORDS_H - #include <apt-pkg/pkgcache.h> + +#include <string> #include <vector> class pkgRecords /*{{{*/ @@ -70,7 +71,7 @@ class pkgRecords::Parser /*{{{*/ virtual std::string Homepage() {return std::string();} // An arbitrary custom field - virtual std::string RecordField(const char *fieldName) { return std::string();}; + virtual std::string RecordField(const char * /*fieldName*/) { return std::string();}; // The record in binary form virtual void GetRec(const char *&Start,const char *&Stop) {Start = Stop = 0;}; diff --git a/apt-pkg/pkgsystem.cc b/apt-pkg/pkgsystem.cc index 05ba6e0e6..14d090c7a 100644 --- a/apt-pkg/pkgsystem.cc +++ b/apt-pkg/pkgsystem.cc @@ -13,7 +13,8 @@ #include<config.h> #include <apt-pkg/pkgsystem.h> -#include <apt-pkg/policy.h> +#include <apt-pkg/macros.h> + #include <cassert> #include <cstring> /*}}}*/ @@ -36,7 +37,7 @@ pkgSystem::pkgSystem() : Label(NULL), VS(NULL) // System::GetSystem - Get the named system /*{{{*/ // --------------------------------------------------------------------- /* */ -pkgSystem *pkgSystem::GetSystem(const char *Label) +APT_PURE pkgSystem *pkgSystem::GetSystem(const char *Label) { for (unsigned I = 0; I != GlobalListLen; I++) if (strcmp(SysList[I]->Label,Label) == 0) diff --git a/apt-pkg/pkgsystem.h b/apt-pkg/pkgsystem.h index eb75df412..6e33c67ed 100644 --- a/apt-pkg/pkgsystem.h +++ b/apt-pkg/pkgsystem.h @@ -38,6 +38,7 @@ #define PKGLIB_PKGSYSTEM_H #include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> #include <vector> @@ -50,7 +51,6 @@ class pkgPackageManager; class pkgVersioningSystem; class Configuration; class pkgIndexFile; -class PkgFileIterator; class pkgSystem { diff --git a/apt-pkg/policy.cc b/apt-pkg/policy.cc index d0f97441d..3cfc32829 100644 --- a/apt-pkg/policy.cc +++ b/apt-pkg/policy.cc @@ -33,7 +33,15 @@ #include <apt-pkg/fileutl.h> #include <apt-pkg/error.h> #include <apt-pkg/sptr.h> - +#include <apt-pkg/cacheiterators.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/versionmatch.h> + +#include <ctype.h> +#include <stddef.h> +#include <string.h> +#include <string> +#include <vector> #include <iostream> #include <sstream> @@ -325,7 +333,7 @@ pkgCache::VerIterator pkgPolicy::GetMatch(pkgCache::PkgIterator const &Pkg) // Policy::GetPriority - Get the priority of the package pin /*{{{*/ // --------------------------------------------------------------------- /* */ -signed short pkgPolicy::GetPriority(pkgCache::PkgIterator const &Pkg) +APT_PURE signed short pkgPolicy::GetPriority(pkgCache::PkgIterator const &Pkg) { if (Pins[Pkg->ID].Type != pkgVersionMatch::None) { @@ -337,7 +345,7 @@ signed short pkgPolicy::GetPriority(pkgCache::PkgIterator const &Pkg) return 0; } -signed short pkgPolicy::GetPriority(pkgCache::PkgFileIterator const &File) +APT_PURE signed short pkgPolicy::GetPriority(pkgCache::PkgFileIterator const &File) { return PFPriority[File->ID]; } @@ -349,7 +357,7 @@ signed short pkgPolicy::GetPriority(pkgCache::PkgFileIterator const &File) all over the place rather than forcing a special format */ class PreferenceSection : public pkgTagSection { - void TrimRecord(bool BeforeRecord, const char* &End) + void TrimRecord(bool /*BeforeRecord*/, const char* &End) { for (; Stop < End && (Stop[0] == '\n' || Stop[0] == '\r' || Stop[0] == '#'); Stop++) if (Stop[0] == '#') diff --git a/apt-pkg/policy.h b/apt-pkg/policy.h index 5172a3c3b..f15d8c0a0 100644 --- a/apt-pkg/policy.h +++ b/apt-pkg/policy.h @@ -33,10 +33,13 @@ #ifndef PKGLIB_POLICY_H #define PKGLIB_POLICY_H - #include <apt-pkg/depcache.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> #include <apt-pkg/versionmatch.h> + #include <vector> +#include <string> #ifndef APT_8_CLEANER_HEADERS using std::vector; diff --git a/apt-pkg/sourcelist.cc b/apt-pkg/sourcelist.cc index 1f5179885..e37899ec6 100644 --- a/apt-pkg/sourcelist.cc +++ b/apt-pkg/sourcelist.cc @@ -18,7 +18,16 @@ #include <apt-pkg/metaindex.h> #include <apt-pkg/indexfile.h> #include <apt-pkg/tagfile.h> - +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> + +#include <ctype.h> +#include <stddef.h> +#include <time.h> +#include <cstring> +#include <map> +#include <string> +#include <vector> #include <fstream> #include <algorithm> diff --git a/apt-pkg/sourcelist.h b/apt-pkg/sourcelist.h index 0ccb4aa00..9df0c1d74 100644 --- a/apt-pkg/sourcelist.h +++ b/apt-pkg/sourcelist.h @@ -27,18 +27,27 @@ #ifndef PKGLIB_SOURCELIST_H #define PKGLIB_SOURCELIST_H +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> +#include <apt-pkg/macros.h> + +#include <time.h> + #include <string> #include <vector> #include <map> -#include <apt-pkg/pkgcache.h> -#include <apt-pkg/tagfile.h> #ifndef APT_8_CLEANER_HEADERS +#include <apt-pkg/tagfile.h> +#endif +#ifndef APT_8_CLEANER_HEADERS #include <apt-pkg/metaindex.h> using std::string; using std::vector; #endif +class FileFd; +class pkgTagSection; class pkgAcquire; class pkgIndexFile; class metaIndex; @@ -55,7 +64,7 @@ class pkgSourceList // Global list of Items supported static Type **GlobalList; static unsigned long GlobalListLen; - static Type *GetType(const char *Type); + static Type *GetType(const char *Type) APT_PURE; const char *Name; const char *Label; diff --git a/apt-pkg/srcrecords.cc b/apt-pkg/srcrecords.cc index 60b62850a..775cf2e5f 100644 --- a/apt-pkg/srcrecords.cc +++ b/apt-pkg/srcrecords.cc @@ -16,8 +16,13 @@ #include <apt-pkg/srcrecords.h> #include <apt-pkg/error.h> #include <apt-pkg/sourcelist.h> -#include <apt-pkg/strutl.h> #include <apt-pkg/metaindex.h> +#include <apt-pkg/indexfile.h> +#include <apt-pkg/macros.h> + +#include <string.h> +#include <string> +#include <vector> #include <apti18n.h> /*}}}*/ diff --git a/apt-pkg/srcrecords.h b/apt-pkg/srcrecords.h index ed69d0d72..9915debfe 100644 --- a/apt-pkg/srcrecords.h +++ b/apt-pkg/srcrecords.h @@ -13,6 +13,7 @@ #ifndef PKGLIB_SRCRECORDS_H #define PKGLIB_SRCRECORDS_H +#include <apt-pkg/macros.h> #include <string> #include <vector> @@ -73,7 +74,7 @@ class pkgSrcRecords //FIXME: Add a parameter to specify which architecture to use for [wildcard] matching virtual bool BuildDepends(std::vector<BuildDepRec> &BuildDeps, bool const &ArchOnly, bool const &StripMultiArch = true) = 0; - static const char *BuildDepType(unsigned char const &Type); + static const char *BuildDepType(unsigned char const &Type) APT_PURE; virtual bool Files(std::vector<pkgSrcRecords::File> &F) = 0; diff --git a/apt-pkg/tagfile.cc b/apt-pkg/tagfile.cc index 832a40d1e..91d176e3c 100644 --- a/apt-pkg/tagfile.cc +++ b/apt-pkg/tagfile.cc @@ -21,6 +21,8 @@ #include <string> #include <stdio.h> #include <ctype.h> +#include <stdlib.h> +#include <string.h> #include <apti18n.h> /*}}}*/ @@ -83,7 +85,7 @@ pkgTagFile::~pkgTagFile() } /*}}}*/ // TagFile::Offset - Return the current offset in the buffer /*{{{*/ -unsigned long pkgTagFile::Offset() +APT_PURE unsigned long pkgTagFile::Offset() { return d->iOffset; } @@ -471,7 +473,7 @@ bool pkgTagSection::FindFlag(const char *Tag,unsigned long &Flags, return true; return FindFlag(Flags, Flag, Start, Stop); } -bool const pkgTagSection::FindFlag(unsigned long &Flags, unsigned long Flag, +bool pkgTagSection::FindFlag(unsigned long &Flags, unsigned long Flag, char const* Start, char const* Stop) { switch (StringToBool(string(Start, Stop))) diff --git a/apt-pkg/tagfile.h b/apt-pkg/tagfile.h index 518d3dbcd..d5b62e76d 100644 --- a/apt-pkg/tagfile.h +++ b/apt-pkg/tagfile.h @@ -20,6 +20,8 @@ #ifndef PKGLIB_TAGFILE_H #define PKGLIB_TAGFILE_H +#include <apt-pkg/macros.h> + #include <stdio.h> #include <string> @@ -65,7 +67,7 @@ class pkgTagSection 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 const FindFlag(unsigned long &Flags, unsigned long Flag, + bool static FindFlag(unsigned long &Flags, unsigned long Flag, const char* Start, const char* Stop); bool Scan(const char *Start,unsigned long MaxLength); inline unsigned long size() const {return Stop - Section;}; @@ -93,9 +95,9 @@ class pkgTagFile { pkgTagFilePrivate *d; - bool Fill(); - bool Resize(); - bool Resize(unsigned long long const newSize); + APT_HIDDEN bool Fill(); + APT_HIDDEN bool Resize(); + APT_HIDDEN bool Resize(unsigned long long const newSize); public: diff --git a/apt-pkg/update.cc b/apt-pkg/update.cc index 97be5490b..5d5b19626 100644 --- a/apt-pkg/update.cc +++ b/apt-pkg/update.cc @@ -1,24 +1,17 @@ - // Include Files /*{{{*/ #include <config.h> -#include <apt-pkg/algorithms.h> -#include <apt-pkg/update.h> -#include <apt-pkg/error.h> -#include <apt-pkg/configuration.h> -#include <apt-pkg/version.h> -#include <apt-pkg/sptr.h> #include <apt-pkg/acquire-item.h> -#include <apt-pkg/edsp.h> -#include <apt-pkg/sourcelist.h> +#include <apt-pkg/configuration.h> +#include <apt-pkg/error.h> #include <apt-pkg/fileutl.h> -#include <apt-pkg/progress.h> +#include <apt-pkg/sourcelist.h> +#include <apt-pkg/acquire.h> +#include <apt-pkg/strutl.h> +#include <apt-pkg/update.h> -#include <sys/types.h> -#include <cstdlib> -#include <algorithm> -#include <iostream> -#include <stdio.h> +#include <string> +#include <vector> #include <apti18n.h> /*}}}*/ diff --git a/apt-pkg/upgrade.cc b/apt-pkg/upgrade.cc index d6f6933dd..7926845c2 100644 --- a/apt-pkg/upgrade.cc +++ b/apt-pkg/upgrade.cc @@ -1,24 +1,17 @@ - // Include Files /*{{{*/ #include <config.h> #include <apt-pkg/algorithms.h> -#include <apt-pkg/upgrade.h> -#include <apt-pkg/error.h> #include <apt-pkg/configuration.h> -#include <apt-pkg/version.h> -#include <apt-pkg/sptr.h> -#include <apt-pkg/acquire-item.h> #include <apt-pkg/edsp.h> -#include <apt-pkg/sourcelist.h> -#include <apt-pkg/fileutl.h> +#include <apt-pkg/error.h> #include <apt-pkg/progress.h> +#include <apt-pkg/upgrade.h> +#include <apt-pkg/depcache.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> -#include <sys/types.h> -#include <cstdlib> -#include <algorithm> -#include <iostream> -#include <stdio.h> +#include <string> #include <apti18n.h> /*}}}*/ diff --git a/apt-pkg/upgrade.h b/apt-pkg/upgrade.h index c4973472f..aa883df10 100644 --- a/apt-pkg/upgrade.h +++ b/apt-pkg/upgrade.h @@ -10,12 +10,14 @@ #ifndef PKGLIB_UPGRADE_H #define PKGLIB_UPGRADE_H +class pkgDepCache; + namespace APT { namespace Upgrade { // FIXME: make this "enum class UpgradeMode {" once we enable c++11 enum UpgradeMode { FORBID_REMOVE_PACKAGES = 1, - FORBID_INSTALL_NEW_PACKAGES = 2, + FORBID_INSTALL_NEW_PACKAGES = 2 }; bool Upgrade(pkgDepCache &Cache, int UpgradeMode); } diff --git a/apt-pkg/vendor.cc b/apt-pkg/vendor.cc index fc03ec845..d4add560e 100644 --- a/apt-pkg/vendor.cc +++ b/apt-pkg/vendor.cc @@ -1,10 +1,14 @@ #include<config.h> -#include <iostream> -#include <apt-pkg/error.h> #include <apt-pkg/vendor.h> #include <apt-pkg/configuration.h> +#include <iostream> +#include <map> +#include <string> +#include <utility> +#include <vector> + Vendor::Vendor(std::string VendorID, std::string Origin, std::vector<struct Vendor::Fingerprint *> *FingerprintList) @@ -31,7 +35,7 @@ const std::string Vendor::LookupFingerprint(std::string Print) const return (*Elt).second; } -bool Vendor::CheckDist(std::string Dist) +APT_CONST bool Vendor::CheckDist(std::string /*Dist*/) { return true; } diff --git a/apt-pkg/vendor.h b/apt-pkg/vendor.h index 6484adf9b..2d2e2b0ae 100644 --- a/apt-pkg/vendor.h +++ b/apt-pkg/vendor.h @@ -11,7 +11,7 @@ using std::string; #endif // A class representing a particular software provider. -class __deprecated Vendor +class APT_DEPRECATED Vendor { public: struct Fingerprint diff --git a/apt-pkg/vendorlist.cc b/apt-pkg/vendorlist.cc index 602425624..fb33ff17d 100644 --- a/apt-pkg/vendorlist.cc +++ b/apt-pkg/vendorlist.cc @@ -3,9 +3,16 @@ #include <apt-pkg/fileutl.h> #include <apt-pkg/error.h> #include <apt-pkg/configuration.h> + +#include <stddef.h> +#include <iostream> +#include <string> +#include <vector> + #include <apti18n.h> #if __GNUC__ >= 4 + #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wdeprecated-declarations" #endif @@ -157,5 +164,5 @@ const Vendor* pkgVendorList::FindVendor(const std::vector<string> GPGVOutput) /* /*}}}*/ #if __GNUC__ >= 4 - #pragma GCC diagnostic warning "-Wdeprecated-declarations" + #pragma GCC diagnostic pop #endif diff --git a/apt-pkg/vendorlist.h b/apt-pkg/vendorlist.h index a86ccde7c..bc3702a93 100644 --- a/apt-pkg/vendorlist.h +++ b/apt-pkg/vendorlist.h @@ -27,7 +27,7 @@ using std::vector; class Vendor; class Configuration; -class __deprecated pkgVendorList +class APT_DEPRECATED pkgVendorList { protected: std::vector<Vendor const *> VendorList; diff --git a/apt-pkg/version.cc b/apt-pkg/version.cc index cb2c34c0f..29bee46da 100644 --- a/apt-pkg/version.cc +++ b/apt-pkg/version.cc @@ -11,8 +11,8 @@ #include<config.h> #include <apt-pkg/version.h> -#include <apt-pkg/pkgcache.h> +#include <string.h> #include <stdlib.h> /*}}}*/ diff --git a/apt-pkg/version.h b/apt-pkg/version.h index e0e0e6c14..d98809f7e 100644 --- a/apt-pkg/version.h +++ b/apt-pkg/version.h @@ -33,7 +33,7 @@ class pkgVersioningSystem // Global list of VS's static pkgVersioningSystem **GlobalList; static unsigned long GlobalListLen; - static pkgVersioningSystem *GetVS(const char *Label); + static pkgVersioningSystem *GetVS(const char *Label) APT_PURE; const char *Label; diff --git a/apt-pkg/versionmatch.cc b/apt-pkg/versionmatch.cc index 26262a010..284098bdf 100644 --- a/apt-pkg/versionmatch.cc +++ b/apt-pkg/versionmatch.cc @@ -16,11 +16,16 @@ #include <apt-pkg/versionmatch.h> #include <apt-pkg/strutl.h> #include <apt-pkg/error.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> +#include <stddef.h> +#include <stdlib.h> +#include <string.h> +#include <string> #include <stdio.h> #include <ctype.h> #include <fnmatch.h> -#include <sys/types.h> #include <regex.h> /*}}}*/ diff --git a/apt-pkg/versionmatch.h b/apt-pkg/versionmatch.h index 433396fc9..4c8f704c8 100644 --- a/apt-pkg/versionmatch.h +++ b/apt-pkg/versionmatch.h @@ -35,16 +35,17 @@ #ifndef PKGLIB_VERSIONMATCH_H #define PKGLIB_VERSIONMATCH_H +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> #include <string> -#include <apt-pkg/pkgcache.h> #ifndef APT_8_CLEANER_HEADERS using std::string; #endif class pkgVersionMatch -{ +{ // Version Matching std::string VerStr; bool VerPrefixMatch; @@ -60,20 +61,20 @@ class pkgVersionMatch std::string RelComponent; std::string RelArchitecture; bool MatchAll; - + // Origin Matching std::string OrSite; - + public: - + enum MatchType {None = 0,Version,Release,Origin} Type; - - bool MatchVer(const char *A,std::string B,bool Prefix); + + bool MatchVer(const char *A,std::string B,bool Prefix) APT_PURE; bool ExpressionMatches(const char *pattern, const char *string); bool ExpressionMatches(const std::string& pattern, const char *string); bool FileMatch(pkgCache::PkgFileIterator File); pkgCache::VerIterator Find(pkgCache::PkgIterator Pkg); - + pkgVersionMatch(std::string Data,MatchType Type); }; diff --git a/apt-private/acqprogress.cc b/apt-private/acqprogress.cc index d25ffef75..fe7a45e12 100644 --- a/apt-private/acqprogress.cc +++ b/apt-private/acqprogress.cc @@ -10,18 +10,21 @@ // Include files /*{{{*/ #include<config.h> +#include <apt-pkg/acquire.h> #include <apt-pkg/acquire-item.h> #include <apt-pkg/acquire-worker.h> #include <apt-pkg/configuration.h> #include <apt-pkg/strutl.h> #include <apt-pkg/error.h> +#include <apt-private/acqprogress.h> + +#include <string.h> #include <stdio.h> #include <signal.h> #include <iostream> #include <unistd.h> -#include "acqprogress.h" #include <apti18n.h> /*}}}*/ @@ -42,12 +45,12 @@ AcqTextStatus::AcqTextStatus(unsigned int &ScreenWidth,unsigned int const Quiet) // AcqTextStatus::Start - Downloading has started /*{{{*/ // --------------------------------------------------------------------- /* */ -void AcqTextStatus::Start() +void AcqTextStatus::Start() { - pkgAcquireStatus::Start(); + pkgAcquireStatus::Start(); BlankLine[0] = 0; ID = 1; -}; +} /*}}}*/ // AcqTextStatus::IMSHit - Called when an item got a HIT response /*{{{*/ // --------------------------------------------------------------------- @@ -58,14 +61,14 @@ void AcqTextStatus::IMSHit(pkgAcquire::ItemDesc &Itm) return; if (Quiet <= 0) - cout << '\r' << BlankLine << '\r'; - + cout << '\r' << BlankLine << '\r'; + cout << _("Hit ") << Itm.Description; if (Itm.Owner->FileSize != 0) cout << " [" << SizeToStr(Itm.Owner->FileSize) << "B]"; cout << endl; Update = true; -}; +} /*}}}*/ // AcqTextStatus::Fetch - An item has started to download /*{{{*/ // --------------------------------------------------------------------- @@ -75,28 +78,28 @@ void AcqTextStatus::Fetch(pkgAcquire::ItemDesc &Itm) Update = true; if (Itm.Owner->Complete == true) return; - + Itm.Owner->ID = ID++; - + if (Quiet > 1) return; if (Quiet <= 0) cout << '\r' << BlankLine << '\r'; - + cout << _("Get:") << Itm.Owner->ID << ' ' << Itm.Description; if (Itm.Owner->FileSize != 0) cout << " [" << SizeToStr(Itm.Owner->FileSize) << "B]"; cout << endl; -}; +} /*}}}*/ // AcqTextStatus::Done - Completed a download /*{{{*/ // --------------------------------------------------------------------- /* We don't display anything... */ -void AcqTextStatus::Done(pkgAcquire::ItemDesc &Itm) +void AcqTextStatus::Done(pkgAcquire::ItemDesc &/*Itm*/) { Update = true; -}; +} /*}}}*/ // AcqTextStatus::Fail - Called when an item fails to download /*{{{*/ // --------------------------------------------------------------------- @@ -109,10 +112,10 @@ void AcqTextStatus::Fail(pkgAcquire::ItemDesc &Itm) // Ignore certain kinds of transient failures (bad code) if (Itm.Owner->Status == pkgAcquire::Item::StatIdle) return; - + if (Quiet <= 0) cout << '\r' << BlankLine << '\r'; - + if (Itm.Owner->Status == pkgAcquire::Item::StatDone) { cout << _("Ign ") << Itm.Description << endl; @@ -122,9 +125,9 @@ void AcqTextStatus::Fail(pkgAcquire::ItemDesc &Itm) cout << _("Err ") << Itm.Description << endl; cout << " " << Itm.Owner->ErrorText << endl; } - + Update = true; -}; +} /*}}}*/ // AcqTextStatus::Stop - Finished downloading /*{{{*/ // --------------------------------------------------------------------- @@ -154,12 +157,12 @@ void AcqTextStatus::Stop() bool AcqTextStatus::Pulse(pkgAcquire *Owner) { pkgAcquireStatus::Pulse(Owner); - + if (Quiet > 0) return true; - + enum {Long = 0,Medium,Short} Mode = Medium; - + char Buffer[sizeof(BlankLine)]; char *End = Buffer + sizeof(Buffer); char *S = Buffer; @@ -174,8 +177,8 @@ bool AcqTextStatus::Pulse(pkgAcquire *Owner) I = Owner->WorkerStep(I)) { S += strlen(S); - - // There is no item running + + // There is no item running if (I->CurrentItem == 0) { if (I->Status.empty() == false) @@ -183,12 +186,12 @@ bool AcqTextStatus::Pulse(pkgAcquire *Owner) snprintf(S,End-S," [%s]",I->Status.c_str()); Shown = true; } - + continue; } Shown = true; - + // Add in the short description if (I->CurrentItem->Owner->ID != 0) snprintf(S,End-S," [%lu %s",I->CurrentItem->Owner->ID, @@ -203,7 +206,7 @@ bool AcqTextStatus::Pulse(pkgAcquire *Owner) snprintf(S,End-S," %s",I->CurrentItem->Owner->Mode); S += strlen(S); } - + // Add the current progress if (Mode == Long) snprintf(S,End-S," %llu",I->CurrentSize); @@ -213,7 +216,7 @@ bool AcqTextStatus::Pulse(pkgAcquire *Owner) snprintf(S,End-S," %sB",SizeToStr(I->CurrentSize).c_str()); } S += strlen(S); - + // Add the total size and percent if (I->TotalSize > 0 && I->CurrentItem->Owner->Complete == false) { @@ -223,7 +226,7 @@ bool AcqTextStatus::Pulse(pkgAcquire *Owner) else snprintf(S,End-S,"/%sB %.0f%%",SizeToStr(I->TotalSize).c_str(), (I->CurrentSize*100.0)/I->TotalSize); - } + } S += strlen(S); snprintf(S,End-S,"]"); } @@ -231,26 +234,26 @@ bool AcqTextStatus::Pulse(pkgAcquire *Owner) // Show something.. if (Shown == false) snprintf(S,End-S,_(" [Working]")); - + /* Put in the ETA and cps meter, block off signals to prevent strangeness during resizing */ sigset_t Sigs,OldSigs; sigemptyset(&Sigs); sigaddset(&Sigs,SIGWINCH); sigprocmask(SIG_BLOCK,&Sigs,&OldSigs); - + if (CurrentCPS != 0) - { + { char Tmp[300]; unsigned long long ETA = (TotalBytes - CurrentBytes)/CurrentCPS; sprintf(Tmp," %sB/s %s",SizeToStr(CurrentCPS).c_str(),TimeToStr(ETA).c_str()); unsigned int Len = strlen(Buffer); unsigned int LenT = strlen(Tmp); if (Len + LenT < ScreenWidth) - { + { memset(Buffer + Len,' ',ScreenWidth - Len); strcpy(Buffer + ScreenWidth - LenT,Tmp); - } + } } Buffer[ScreenWidth] = 0; BlankLine[ScreenWidth] = 0; @@ -268,7 +271,7 @@ bool AcqTextStatus::Pulse(pkgAcquire *Owner) memset(BlankLine,' ',strlen(Buffer)); BlankLine[strlen(Buffer)] = 0; - + Update = false; return true; diff --git a/apt-private/acqprogress.h b/apt-private/acqprogress.h index e12dafe50..71a10d78a 100644 --- a/apt-private/acqprogress.h +++ b/apt-private/acqprogress.h @@ -10,18 +10,19 @@ #define ACQPROGRESS_H #include <apt-pkg/acquire.h> +#include <apt-pkg/macros.h> #include <string> -class AcqTextStatus : public pkgAcquireStatus +class APT_PUBLIC AcqTextStatus : public pkgAcquireStatus { unsigned int &ScreenWidth; char BlankLine[1024]; unsigned long ID; unsigned long Quiet; - + public: - + virtual bool MediaChange(std::string Media,std::string Drive); virtual void IMSHit(pkgAcquire::ItemDesc &Itm); virtual void Fetch(pkgAcquire::ItemDesc &Itm); @@ -29,7 +30,7 @@ class AcqTextStatus : public pkgAcquireStatus virtual void Fail(pkgAcquire::ItemDesc &Itm); virtual void Start(); virtual void Stop(); - + bool Pulse(pkgAcquire *Owner); AcqTextStatus(unsigned int &ScreenWidth,unsigned int const Quiet); diff --git a/apt-private/makefile b/apt-private/makefile index 728890b9b..09736c6d3 100644 --- a/apt-private/makefile +++ b/apt-private/makefile @@ -16,6 +16,7 @@ LIBRARY=apt-private MAJOR=0.0 MINOR=0 SLIBS=$(PTHREADLIB) -lapt-pkg +CXXFLAGS += -fvisibility=hidden -fvisibility-inlines-hidden PRIVATES=list install download output cachefile cacheset update upgrade cmndline moo search show main utils sources SOURCE += $(foreach private, $(PRIVATES), private-$(private).cc) diff --git a/apt-private/private-cachefile.cc b/apt-private/private-cachefile.cc index c822b9bad..5e955ac39 100644 --- a/apt-private/private-cachefile.cc +++ b/apt-private/private-cachefile.cc @@ -4,11 +4,17 @@ #include <apt-pkg/algorithms.h> #include <apt-pkg/upgrade.h> #include <apt-pkg/error.h> +#include <apt-pkg/configuration.h> +#include <apt-pkg/depcache.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> -#include <cstdlib> +#include <apt-private/private-output.h> +#include <apt-private/private-cachefile.h> -#include "private-output.h" -#include "private-cachefile.h" +#include <string.h> +#include <ostream> +#include <cstdlib> #include <apti18n.h> /*}}}*/ diff --git a/apt-private/private-cachefile.h b/apt-private/private-cachefile.h index f24d93020..dce7e0a3a 100644 --- a/apt-private/private-cachefile.h +++ b/apt-private/private-cachefile.h @@ -3,16 +3,19 @@ #include <apt-pkg/cachefile.h> #include <apt-pkg/progress.h> +#include <apt-pkg/configuration.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/macros.h> // class CacheFile - Cover class for some dependency cache functions /*{{{*/ // --------------------------------------------------------------------- /* */ -class CacheFile : public pkgCacheFile +class APT_PUBLIC CacheFile : public pkgCacheFile { static pkgCache *SortCache; - static int NameComp(const void *a,const void *b); - + APT_HIDDEN static int NameComp(const void *a,const void *b) APT_PURE; + public: pkgCache::Package **List; diff --git a/apt-private/private-cacheset.cc b/apt-private/private-cacheset.cc index a7dc0e800..4a63c7e81 100644 --- a/apt-private/private-cacheset.cc +++ b/apt-private/private-cacheset.cc @@ -1,9 +1,18 @@ +#include <config.h> + #include <apt-pkg/cachefile.h> #include <apt-pkg/pkgcache.h> #include <apt-pkg/depcache.h> -#include <apt-pkg/strutl.h> +#include <apt-pkg/cacheiterators.h> +#include <apt-pkg/configuration.h> +#include <apt-pkg/progress.h> +#include <apt-pkg/policy.h> + +#include <apt-private/private-cacheset.h> + +#include <stddef.h> -#include "private-cacheset.h" +#include <apti18n.h> bool GetLocalitySortedVersionSet(pkgCacheFile &CacheFile, LocalitySortedVersionSet &output_set, diff --git a/apt-private/private-cacheset.h b/apt-private/private-cacheset.h index 322b3be6b..854d16922 100644 --- a/apt-private/private-cacheset.h +++ b/apt-private/private-cacheset.h @@ -1,17 +1,32 @@ #ifndef APT_PRIVATE_CACHESET_H #define APT_PRIVATE_CACHESET_H +#include <apt-pkg/aptconfiguration.h> #include <apt-pkg/cachefile.h> #include <apt-pkg/cacheset.h> #include <apt-pkg/sptr.h> +#include <apt-pkg/strutl.h> +#include <apt-pkg/depcache.h> +#include <apt-pkg/error.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> +#include <apt-pkg/macros.h> #include <algorithm> #include <vector> +#include <string.h> +#include <list> +#include <ostream> +#include <set> +#include <string> +#include <utility> #include "private-output.h" #include <apti18n.h> +class OpProgress; + struct VersionSortDescriptionLocality { bool operator () (const pkgCache::VerIterator &v_lhs, @@ -42,8 +57,8 @@ typedef APT::VersionContainer< class Matcher { public: - virtual bool operator () (const pkgCache::PkgIterator &P) { - return true;}; + virtual bool operator () (const pkgCache::PkgIterator &/*P*/) { + return true;} }; // FIXME: add default argument for OpProgress (or overloaded function) @@ -111,8 +126,8 @@ public: Pkg.FullName(true).c_str(), pattern.c_str()); explicitlyNamed = false; } - virtual void showSelectedVersion(pkgCache::PkgIterator const &Pkg, pkgCache::VerIterator const Ver, - std::string const &ver, bool const verIsRel) { + virtual void showSelectedVersion(pkgCache::PkgIterator const &/*Pkg*/, pkgCache::VerIterator const Ver, + std::string const &ver, bool const /*verIsRel*/) { if (ver == Ver.VerStr()) return; selectedByRelease.push_back(make_pair(Ver, ver)); diff --git a/apt-private/private-cmndline.cc b/apt-private/private-cmndline.cc index ef7d65f3c..682be0a19 100644 --- a/apt-private/private-cmndline.cc +++ b/apt-private/private-cmndline.cc @@ -2,19 +2,17 @@ #include <config.h> #include <apt-pkg/cmndline.h> -#include <apt-pkg/configuration.h> -#include <vector> +#include <apt-private/private-cmndline.h> +#include <vector> #include <stdarg.h> #include <string.h> -#include "private-cmndline.h" - #include <apti18n.h> /*}}}*/ -bool strcmp_match_in_list(char const * const Cmd, ...) /*{{{*/ +APT_SENTINEL static bool strcmp_match_in_list(char const * const Cmd, ...) /*{{{*/ { va_list args; bool found = false; @@ -33,7 +31,7 @@ bool strcmp_match_in_list(char const * const Cmd, ...) /*{{{*/ /*}}}*/ #define addArg(w,x,y,z) Args.push_back(CommandLine::MakeArgs(w,x,y,z)) #define CmdMatches(...) strcmp_match_in_list(Cmd, __VA_ARGS__, NULL) -bool addArgumentsAPTCache(std::vector<CommandLine::Args> &Args, char const * const Cmd)/*{{{*/ +static bool addArgumentsAPTCache(std::vector<CommandLine::Args> &Args, char const * const Cmd)/*{{{*/ { if (CmdMatches("depends", "rdepends", "xvcg", "dotty")) { @@ -82,7 +80,7 @@ bool addArgumentsAPTCache(std::vector<CommandLine::Args> &Args, char const * con return true; } /*}}}*/ -bool addArgumentsAPTCDROM(std::vector<CommandLine::Args> &Args, char const * const Cmd)/*{{{*/ +static bool addArgumentsAPTCDROM(std::vector<CommandLine::Args> &Args, char const * const Cmd)/*{{{*/ { if (CmdMatches("add", "ident") == false) return false; @@ -100,7 +98,7 @@ bool addArgumentsAPTCDROM(std::vector<CommandLine::Args> &Args, char const * con return true; } /*}}}*/ -bool addArgumentsAPTConfig(std::vector<CommandLine::Args> &Args, char const * const Cmd)/*{{{*/ +static bool addArgumentsAPTConfig(std::vector<CommandLine::Args> &Args, char const * const Cmd)/*{{{*/ { if (CmdMatches("dump")) { @@ -115,7 +113,7 @@ bool addArgumentsAPTConfig(std::vector<CommandLine::Args> &Args, char const * co return true; } /*}}}*/ -bool addArgumentsAPTGet(std::vector<CommandLine::Args> &Args, char const * const Cmd)/*{{{*/ +static bool addArgumentsAPTGet(std::vector<CommandLine::Args> &Args, char const * const Cmd)/*{{{*/ { if (CmdMatches("install", "remove", "purge", "upgrade", "dist-upgrade", "dselect-upgrade", "autoremove")) @@ -141,6 +139,7 @@ bool addArgumentsAPTGet(std::vector<CommandLine::Args> &Args, char const * const { addArg('b', "compile", "APT::Get::Compile", 0); addArg('b', "build", "APT::Get::Compile", 0); + addArg('P', "build-profiles", "APT::Build-Profiles", CommandLine::HasArg); addArg(0, "diff-only", "APT::Get::Diff-Only", 0); addArg(0, "debian-only", "APT::Get::Diff-Only", 0); addArg(0, "tar-only", "APT::Get::Tar-Only", 0); @@ -149,6 +148,7 @@ bool addArgumentsAPTGet(std::vector<CommandLine::Args> &Args, char const * const else if (CmdMatches("build-dep")) { addArg('a', "host-architecture", "APT::Get::Host-Architecture", CommandLine::HasArg); + addArg('P', "build-profiles", "APT::Build-Profiles", CommandLine::HasArg); addArg(0, "purge", "APT::Get::Purge", 0); addArg(0, "solver", "APT::Solver", CommandLine::HasArg); // this has no effect *but* sbuild is using it (see LP: #1255806) @@ -200,7 +200,7 @@ bool addArgumentsAPTGet(std::vector<CommandLine::Args> &Args, char const * const return true; } /*}}}*/ -bool addArgumentsAPTMark(std::vector<CommandLine::Args> &Args, char const * const Cmd)/*{{{*/ +static bool addArgumentsAPTMark(std::vector<CommandLine::Args> &Args, char const * const Cmd)/*{{{*/ { if (CmdMatches("auto", "manual", "hold", "unhold", "showauto", "showmanual", "showhold", "showholds", "install", @@ -220,7 +220,7 @@ bool addArgumentsAPTMark(std::vector<CommandLine::Args> &Args, char const * cons return true; } /*}}}*/ -bool addArgumentsAPT(std::vector<CommandLine::Args> &Args, char const * const Cmd)/*{{{*/ +static bool addArgumentsAPT(std::vector<CommandLine::Args> &Args, char const * const Cmd)/*{{{*/ { if (CmdMatches("list")) { diff --git a/apt-private/private-cmndline.h b/apt-private/private-cmndline.h index 76045ffe7..d0af16782 100644 --- a/apt-private/private-cmndline.h +++ b/apt-private/private-cmndline.h @@ -2,9 +2,10 @@ #define APT_PRIVATE_CMNDLINE_H #include <apt-pkg/cmndline.h> +#include <apt-pkg/macros.h> #include <vector> -std::vector<CommandLine::Args> getCommandArgs(char const * const Program, char const * const Cmd); +APT_PUBLIC std::vector<CommandLine::Args> getCommandArgs(char const * const Program, char const * const Cmd); #endif diff --git a/apt-private/private-download.cc b/apt-private/private-download.cc index f02991cde..a095f0c67 100644 --- a/apt-private/private-download.cc +++ b/apt-private/private-download.cc @@ -7,9 +7,8 @@ #include <apt-pkg/error.h> #include <apt-pkg/strutl.h> -#include "private-output.h" - -#include <locale.h> +#include <apt-private/private-output.h> +#include <apt-private/private-download.h> #include <fstream> #include <string> diff --git a/apt-private/private-download.h b/apt-private/private-download.h index b8cc8da1e..a108aa531 100644 --- a/apt-private/private-download.h +++ b/apt-private/private-download.h @@ -1,9 +1,11 @@ #ifndef APT_PRIVATE_DOWNLOAD_H #define APT_PRIVATE_DOWNLOAD_H -#include <apt-pkg/acquire.h> +#include <apt-pkg/macros.h> -bool CheckAuth(pkgAcquire& Fetcher, bool const PromptUser); -bool AcquireRun(pkgAcquire &Fetcher, int const PulseInterval, bool * const Failure, bool * const TransientNetworkFailure); +class pkgAcquire; + +APT_PUBLIC bool CheckAuth(pkgAcquire& Fetcher, bool const PromptUser); +APT_PUBLIC bool AcquireRun(pkgAcquire &Fetcher, int const PulseInterval, bool * const Failure, bool * const TransientNetworkFailure); #endif diff --git a/apt-private/private-install.cc b/apt-private/private-install.cc index 3adb00b23..107ed398e 100644 --- a/apt-private/private-install.cc +++ b/apt-private/private-install.cc @@ -1,57 +1,45 @@ // Include Files /*{{{*/ #include <config.h> -#include <apt-pkg/aptconfiguration.h> -#include <apt-pkg/error.h> -#include <apt-pkg/cmndline.h> -#include <apt-pkg/init.h> -#include <apt-pkg/depcache.h> -#include <apt-pkg/sourcelist.h> -#include <apt-pkg/algorithms.h> +#include <apt-pkg/acquire.h> #include <apt-pkg/acquire-item.h> -#include <apt-pkg/strutl.h> -#include <apt-pkg/fileutl.h> -#include <apt-pkg/clean.h> -#include <apt-pkg/srcrecords.h> -#include <apt-pkg/version.h> +#include <apt-pkg/algorithms.h> #include <apt-pkg/cachefile.h> #include <apt-pkg/cacheset.h> -#include <apt-pkg/sptr.h> -#include <apt-pkg/md5.h> -#include <apt-pkg/versionmatch.h> -#include <apt-pkg/progress.h> -#include <apt-pkg/pkgsystem.h> +#include <apt-pkg/cmndline.h> +#include <apt-pkg/depcache.h> +#include <apt-pkg/error.h> +#include <apt-pkg/fileutl.h> #include <apt-pkg/pkgrecords.h> -#include <apt-pkg/indexfile.h> -#include <apt-pkg/install-progress.h> -#include <apt-pkg/init.h> +#include <apt-pkg/pkgsystem.h> +#include <apt-pkg/sptr.h> +#include <apt-pkg/strutl.h> +#include <apt-pkg/cacheiterators.h> +#include <apt-pkg/configuration.h> +#include <apt-pkg/macros.h> +#include <apt-pkg/packagemanager.h> +#include <apt-pkg/pkgcache.h> -#include <set> -#include <locale.h> -#include <langinfo.h> -#include <fstream> -#include <termios.h> -#include <sys/ioctl.h> -#include <sys/stat.h> +#include <errno.h> +#include <stdlib.h> +#include <string.h> #include <sys/statfs.h> #include <sys/statvfs.h> -#include <signal.h> -#include <unistd.h> -#include <stdio.h> -#include <errno.h> -#include <regex.h> -#include <sys/wait.h> -#include <sstream> +#include <algorithm> +#include <iostream> +#include <set> +#include <vector> -#include "private-install.h" -#include "private-download.h" -#include "private-cachefile.h" -#include "private-output.h" -#include "private-cacheset.h" -#include "acqprogress.h" +#include <apt-private/acqprogress.h> +#include <apt-private/private-install.h> +#include <apt-private/private-cachefile.h> +#include <apt-private/private-cacheset.h> +#include <apt-private/private-download.h> +#include <apt-private/private-output.h> #include <apti18n.h> /*}}}*/ +class pkgSourceList; // InstallPackages - Actually download and install the packages /*{{{*/ // --------------------------------------------------------------------- @@ -156,7 +144,7 @@ bool InstallPackages(CacheFile &Cache,bool ShwKept,bool Ask, bool Safety) if (DebBytes != Cache->DebSize()) { c0out << DebBytes << ',' << Cache->DebSize() << std::endl; - c0out << _("How odd.. The sizes didn't match, email apt@packages.debian.org") << std::endl; + c0out << _("How odd... The sizes didn't match, email apt@packages.debian.org") << std::endl; } // Number of bytes @@ -386,7 +374,7 @@ bool InstallPackages(CacheFile &Cache,bool ShwKept,bool Ask, bool Safety) // DoAutomaticRemove - Remove all automatic unused packages /*{{{*/ // --------------------------------------------------------------------- /* Remove unused automatic packages */ -bool DoAutomaticRemove(CacheFile &Cache) +static bool DoAutomaticRemove(CacheFile &Cache) { bool Debug = _config->FindI("Debug::pkgAutoRemove",false); bool doAutoRemove = _config->FindB("APT::Get::AutomaticRemove", false); diff --git a/apt-private/private-install.h b/apt-private/private-install.h index 2187146d3..5e18560c5 100644 --- a/apt-private/private-install.h +++ b/apt-private/private-install.h @@ -1,24 +1,40 @@ #ifndef APT_PRIVATE_INSTALL_H #define APT_PRIVATE_INSTALL_H +#include <apt-pkg/cachefile.h> +#include <apt-pkg/configuration.h> +#include <apt-pkg/depcache.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> #include <apt-pkg/cacheset.h> -#include <apt-pkg/cmndline.h> #include <apt-pkg/strutl.h> +#include <apt-pkg/algorithms.h> +#include <apt-pkg/macros.h> + +#include <apt-private/private-output.h> + +#include <stddef.h> +#include <iosfwd> +#include <list> +#include <map> +#include <string> +#include <utility> -#include "private-cachefile.h" -#include "private-output.h" #include <apti18n.h> +class CacheFile; +class CommandLine; + #define RAMFS_MAGIC 0x858458f6 -bool DoInstall(CommandLine &Cmd); +APT_PUBLIC bool DoInstall(CommandLine &Cmd); bool DoCacheManipulationFromCommandLine(CommandLine &CmdL, CacheFile &Cache, std::map<unsigned short, APT::VersionSet> &verset); bool DoCacheManipulationFromCommandLine(CommandLine &CmdL, CacheFile &Cache); -bool InstallPackages(CacheFile &Cache,bool ShwKept,bool Ask = true, +APT_PUBLIC bool InstallPackages(CacheFile &Cache,bool ShwKept,bool Ask = true, bool Safety = true); diff --git a/apt-private/private-list.cc b/apt-private/private-list.cc index 44a766c84..b053cbcbe 100644 --- a/apt-private/private-list.cc +++ b/apt-private/private-list.cc @@ -1,43 +1,28 @@ // Include Files /*{{{*/ #include <config.h> -#include <apt-pkg/error.h> #include <apt-pkg/cachefile.h> #include <apt-pkg/cachefilter.h> #include <apt-pkg/cacheset.h> -#include <apt-pkg/init.h> -#include <apt-pkg/progress.h> -#include <apt-pkg/sourcelist.h> #include <apt-pkg/cmndline.h> -#include <apt-pkg/strutl.h> -#include <apt-pkg/fileutl.h> #include <apt-pkg/pkgrecords.h> -#include <apt-pkg/srcrecords.h> -#include <apt-pkg/version.h> -#include <apt-pkg/policy.h> -#include <apt-pkg/tagfile.h> -#include <apt-pkg/algorithms.h> -#include <apt-pkg/sptr.h> -#include <apt-pkg/pkgsystem.h> -#include <apt-pkg/indexfile.h> -#include <apt-pkg/metaindex.h> +#include <apt-pkg/progress.h> +#include <apt-pkg/strutl.h> +#include <apt-pkg/configuration.h> +#include <apt-pkg/macros.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> +#include <apt-private/private-cacheset.h> +#include <apt-private/private-list.h> +#include <apt-private/private-output.h> + +#include <iostream> #include <sstream> -#include <vector> +#include <map> +#include <string> #include <utility> -#include <cassert> -#include <locale.h> -#include <iostream> -#include <unistd.h> -#include <errno.h> -#include <regex.h> -#include <stdio.h> -#include <algorithm> - -#include "private-cmndline.h" -#include "private-list.h" -#include "private-output.h" -#include "private-cacheset.h" +#include <vector> #include <apti18n.h> /*}}}*/ @@ -99,7 +84,7 @@ private: #undef PackageMatcher }; /*}}}*/ -void ListAllVersions(pkgCacheFile &CacheFile, pkgRecords &records, /*{{{*/ +static void ListAllVersions(pkgCacheFile &CacheFile, pkgRecords &records,/*{{{*/ pkgCache::PkgIterator P, std::ostream &outs, bool include_summary=true) @@ -114,14 +99,13 @@ void ListAllVersions(pkgCacheFile &CacheFile, pkgRecords &records, /*{{{*/ /*}}}*/ // list - list package based on criteria /*{{{*/ // --------------------------------------------------------------------- -bool List(CommandLine &Cmd) +bool DoList(CommandLine &Cmd) { pkgCacheFile CacheFile; pkgCache *Cache = CacheFile.GetPkgCache(); - pkgRecords records(CacheFile); - if (unlikely(Cache == NULL)) return false; + pkgRecords records(CacheFile); const char **patterns; const char *all_pattern[] = { "*", NULL}; diff --git a/apt-private/private-list.h b/apt-private/private-list.h index 6f5aad27a..aa2677764 100644 --- a/apt-private/private-list.h +++ b/apt-private/private-list.h @@ -1,9 +1,11 @@ #ifndef APT_PRIVATE_LIST_H #define APT_PRIVATE_LIST_H -#include <apt-pkg/cmndline.h> +#include <apt-pkg/macros.h> -bool List(CommandLine &Cmd); +class CommandLine; + +APT_PUBLIC bool DoList(CommandLine &Cmd); #endif diff --git a/apt-private/private-main.cc b/apt-private/private-main.cc index 1fdf3f0be..2d3965172 100644 --- a/apt-private/private-main.cc +++ b/apt-private/private-main.cc @@ -1,9 +1,13 @@ +#include <config.h> -#include<unistd.h> -#include<cstring> - +#include <apt-pkg/cmndline.h> #include <apt-pkg/configuration.h> -#include "private-main.h" + +#include <apt-private/private-main.h> + +#include <iostream> +#include <string.h> +#include <unistd.h> #include <apti18n.h> diff --git a/apt-private/private-main.h b/apt-private/private-main.h index f9a95c4ec..23d4aca68 100644 --- a/apt-private/private-main.h +++ b/apt-private/private-main.h @@ -1,9 +1,10 @@ #ifndef APT_PRIVATE_MAIN_H #define APT_PRIVATE_MAIN_H -#include <apt-pkg/cmndline.h> +#include <apt-pkg/macros.h> -void CheckSimulateMode(CommandLine &CmdL); +class CommandLine; +APT_PUBLIC void CheckSimulateMode(CommandLine &CmdL); #endif diff --git a/apt-private/private-moo.cc b/apt-private/private-moo.cc index 9b5b94654..a87999150 100644 --- a/apt-private/private-moo.cc +++ b/apt-private/private-moo.cc @@ -13,16 +13,20 @@ #include <apt-pkg/cmndline.h> #include <apt-pkg/strutl.h> -#include <strings.h> -#include <sstream> +#include <apt-private/private-moo.h> +#include <apt-private/private-output.h> -#include "private-moo.h" -#include "private-output.h" +#include <stddef.h> +#include <string.h> +#include <time.h> +#include <iostream> +#include <sstream> +#include <string> #include <apti18n.h> /*}}}*/ -std::string getMooLine() { /*{{{*/ +static std::string getMooLine() { /*{{{*/ time_t const timenow = time(NULL); struct tm special; localtime_r(&timenow, &special); @@ -60,12 +64,12 @@ std::string getMooLine() { /*{{{*/ return out.str(); } /*}}}*/ -bool printMooLine() { /*{{{*/ +static bool printMooLine() { /*{{{*/ std::cerr << getMooLine() << std::endl; return true; } /*}}}*/ -bool DoMoo1(CommandLine &CmdL) /*{{{*/ +bool DoMoo1(CommandLine &) /*{{{*/ { // our trustworthy super cow since 2001 if (_config->FindI("quiet") >= 2) @@ -83,7 +87,7 @@ bool DoMoo1(CommandLine &CmdL) /*{{{*/ return true; } /*}}}*/ -bool DoMoo2(CommandLine &CmdL) /*{{{*/ +bool DoMoo2(CommandLine &) /*{{{*/ { // by Fernando Ribeiro in lp:56125 if (_config->FindI("quiet") >= 2) @@ -102,22 +106,22 @@ bool DoMoo2(CommandLine &CmdL) /*{{{*/ else { c1out << - OutputInDepth(depth, " ") << " \e[1;97m(\e[0;33m__\e[1;97m)\e[0m\n" << - OutputInDepth(depth, " ") << " \e[31m_______\e[33m~(\e[1;34m..\e[0;33m)~\e[0m\n" << - OutputInDepth(depth, " ") << " \e[33m,----\e[31m\\\e[33m(\e[1;4;35moo\e[0;33m)\e[0m\n" << - OutputInDepth(depth, " ") << " \e[33m/|____|,'\e[0m\n" << - OutputInDepth(depth, " ") << " \e[1;5;97m*\e[0;33m /\\ /\\\e[0m\n" << - "\e[32m"; + OutputInDepth(depth, " ") << " \033[1;97m(\033[0;33m__\033[1;97m)\033[0m\n" << + OutputInDepth(depth, " ") << " \033[31m_______\033[33m~(\033[1;34m..\033[0;33m)~\033[0m\n" << + OutputInDepth(depth, " ") << " \033[33m,----\033[31m\\\033[33m(\033[1;4;35moo\033[0;33m)\033[0m\n" << + OutputInDepth(depth, " ") << " \033[33m/|____|,'\033[0m\n" << + OutputInDepth(depth, " ") << " \033[1;5;97m*\033[0;33m /\\ /\\\033[0m\n" << + "\033[32m"; for (size_t i = moo.length()/2; i > 1; --i) c1out << "wW"; - c1out << "w\e[0m\n" << moo; + c1out << "w\033[0m\n" << moo; } return true; } /*}}}*/ -bool DoMoo3(CommandLine &CmdL) /*{{{*/ +bool DoMoo3(CommandLine &) /*{{{*/ { // by Robert Millan in deb:134156 if (_config->FindI("quiet") >= 2) @@ -134,7 +138,7 @@ bool DoMoo3(CommandLine &CmdL) /*{{{*/ return true; } /*}}}*/ -bool DoMooApril(CommandLine &CmdL) /*{{{*/ +bool DoMooApril(CommandLine &) /*{{{*/ { // by Christopher Allan Webber and proposed by Paul Tagliamonte // in a "Community outreach": https://lists.debian.org/debian-devel/2013/04/msg00045.html diff --git a/apt-private/private-moo.h b/apt-private/private-moo.h index 7bfc5c1fc..b8e1cfed6 100644 --- a/apt-private/private-moo.h +++ b/apt-private/private-moo.h @@ -3,7 +3,7 @@ class CommandLine; -bool DoMoo(CommandLine &CmdL); +APT_PUBLIC bool DoMoo(CommandLine &CmdL); bool DoMoo1(CommandLine &CmdL); bool DoMoo2(CommandLine &CmdL); bool DoMoo3(CommandLine &CmdL); diff --git a/apt-private/private-output.cc b/apt-private/private-output.cc index 420ca14d5..bbd8545ad 100644 --- a/apt-private/private-output.cc +++ b/apt-private/private-output.cc @@ -7,16 +7,22 @@ #include <apt-pkg/cachefile.h> #include <apt-pkg/pkgrecords.h> #include <apt-pkg/policy.h> +#include <apt-pkg/depcache.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> +#include <apt-private/private-output.h> +#include <apt-private/private-cachefile.h> + +#include <regex.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> #include <iomanip> #include <iostream> -#include <locale.h> #include <langinfo.h> #include <unistd.h> -#include "private-output.h" -#include "private-cachefile.h" - #include <apti18n.h> /*}}}*/ @@ -63,7 +69,7 @@ bool InitOutput() /*{{{*/ return true; } /*}}}*/ -std::string GetArchiveSuite(pkgCacheFile &CacheFile, pkgCache::VerIterator ver) /*{{{*/ +static std::string GetArchiveSuite(pkgCacheFile &/*CacheFile*/, pkgCache::VerIterator ver) /*{{{*/ { std::string suite = ""; if (ver && ver.FileList() && ver.FileList()) @@ -82,7 +88,7 @@ std::string GetArchiveSuite(pkgCacheFile &CacheFile, pkgCache::VerIterator ver) return suite; } /*}}}*/ -std::string GetFlagsStr(pkgCacheFile &CacheFile, pkgCache::PkgIterator P)/*{{{*/ +static std::string GetFlagsStr(pkgCacheFile &CacheFile, pkgCache::PkgIterator P)/*{{{*/ { pkgDepCache *DepCache = CacheFile.GetDepCache(); pkgDepCache::StateCache &state = (*DepCache)[P]; @@ -99,7 +105,7 @@ std::string GetFlagsStr(pkgCacheFile &CacheFile, pkgCache::PkgIterator P)/*{{{*/ return flags_str; } /*}}}*/ -std::string GetCandidateVersion(pkgCacheFile &CacheFile, pkgCache::PkgIterator P)/*{{{*/ +static std::string GetCandidateVersion(pkgCacheFile &CacheFile, pkgCache::PkgIterator P)/*{{{*/ { pkgPolicy *policy = CacheFile.GetPolicy(); pkgCache::VerIterator cand = policy->GetCandidateVer(P); @@ -107,14 +113,14 @@ std::string GetCandidateVersion(pkgCacheFile &CacheFile, pkgCache::PkgIterator P return cand ? cand.VerStr() : "(none)"; } /*}}}*/ -std::string GetInstalledVersion(pkgCacheFile &CacheFile, pkgCache::PkgIterator P)/*{{{*/ +static std::string GetInstalledVersion(pkgCacheFile &/*CacheFile*/, pkgCache::PkgIterator P)/*{{{*/ { pkgCache::VerIterator inst = P.CurrentVer(); return inst ? inst.VerStr() : "(none)"; } /*}}}*/ -std::string GetVersion(pkgCacheFile &CacheFile, pkgCache::VerIterator V)/*{{{*/ +static std::string GetVersion(pkgCacheFile &/*CacheFile*/, pkgCache::VerIterator V)/*{{{*/ { pkgCache::PkgIterator P = V.ParentPkg(); if (V == P.CurrentVer()) @@ -134,16 +140,16 @@ std::string GetVersion(pkgCacheFile &CacheFile, pkgCache::VerIterator V)/*{{{*/ return "(none)"; } /*}}}*/ -std::string GetArchitecture(pkgCacheFile &CacheFile, pkgCache::PkgIterator P)/*{{{*/ +static std::string GetArchitecture(pkgCacheFile &CacheFile, pkgCache::PkgIterator P)/*{{{*/ { pkgPolicy *policy = CacheFile.GetPolicy(); pkgCache::VerIterator inst = P.CurrentVer(); pkgCache::VerIterator cand = policy->GetCandidateVer(P); - + return inst ? inst.Arch() : cand.Arch(); } /*}}}*/ -std::string GetShortDescription(pkgCacheFile &CacheFile, pkgRecords &records, pkgCache::PkgIterator P)/*{{{*/ +static std::string GetShortDescription(pkgCacheFile &CacheFile, pkgRecords &records, pkgCache::PkgIterator P)/*{{{*/ { pkgPolicy *policy = CacheFile.GetPolicy(); diff --git a/apt-private/private-output.h b/apt-private/private-output.h index 2a2a69458..9633d0c37 100644 --- a/apt-private/private-output.h +++ b/apt-private/private-output.h @@ -1,37 +1,37 @@ #ifndef APT_PRIVATE_OUTPUT_H #define APT_PRIVATE_OUTPUT_H +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/macros.h> -#include <iostream> #include <fstream> #include <string> -#include "private-cachefile.h" - // forward declaration class pkgCacheFile; class CacheFile; -class pkgCache; class pkgDepCache; class pkgRecords; -extern std::ostream c0out; -extern std::ostream c1out; -extern std::ostream c2out; -extern std::ofstream devnull; -extern unsigned int ScreenWidth; +APT_PUBLIC extern std::ostream c0out; +APT_PUBLIC extern std::ostream c1out; +APT_PUBLIC extern std::ostream c2out; +APT_PUBLIC extern std::ofstream devnull; +APT_PUBLIC extern unsigned int ScreenWidth; + +APT_PUBLIC bool InitOutput(); -bool InitOutput(); -void ListSingleVersion(pkgCacheFile &CacheFile, pkgRecords &records, +void ListSingleVersion(pkgCacheFile &CacheFile, pkgRecords &records, pkgCache::VerIterator V, std::ostream &out, bool include_summary=true); // helper to describe global state -bool ShowList(std::ostream &out, std::string Title, std::string List, +APT_PUBLIC void ShowBroken(std::ostream &out,CacheFile &Cache,bool Now); + +APT_PUBLIC bool ShowList(std::ostream &out, std::string Title, std::string List, std::string VersionsList); -void ShowBroken(std::ostream &out,CacheFile &Cache,bool Now); void ShowNew(std::ostream &out,CacheFile &Cache); void ShowDel(std::ostream &out,CacheFile &Cache); void ShowKept(std::ostream &out,CacheFile &Cache); diff --git a/apt-private/private-search.cc b/apt-private/private-search.cc index 0b1a929b0..ecd5d7fad 100644 --- a/apt-private/private-search.cc +++ b/apt-private/private-search.cc @@ -1,40 +1,30 @@ // Includes /*{{{*/ -#include <apt-pkg/error.h> +#include <config.h> + #include <apt-pkg/cachefile.h> -#include <apt-pkg/cachefilter.h> #include <apt-pkg/cacheset.h> -#include <apt-pkg/init.h> -#include <apt-pkg/progress.h> -#include <apt-pkg/sourcelist.h> #include <apt-pkg/cmndline.h> -#include <apt-pkg/strutl.h> -#include <apt-pkg/fileutl.h> #include <apt-pkg/pkgrecords.h> -#include <apt-pkg/srcrecords.h> -#include <apt-pkg/version.h> #include <apt-pkg/policy.h> -#include <apt-pkg/tagfile.h> -#include <apt-pkg/algorithms.h> -#include <apt-pkg/sptr.h> -#include <apt-pkg/pkgsystem.h> -#include <apt-pkg/indexfile.h> -#include <apt-pkg/metaindex.h> +#include <apt-pkg/progress.h> +#include <apt-pkg/cacheiterators.h> +#include <apt-pkg/configuration.h> +#include <apt-pkg/depcache.h> +#include <apt-pkg/macros.h> +#include <apt-pkg/pkgcache.h> -#include <sstream> -#include <utility> -#include <cassert> -#include <locale.h> +#include <apt-private/private-cacheset.h> +#include <apt-private/private-output.h> +#include <apt-private/private-search.h> + +#include <string.h> #include <iostream> -#include <unistd.h> -#include <errno.h> -#include <regex.h> -#include <stdio.h> -#include <iomanip> -#include <algorithm> +#include <sstream> #include <map> +#include <string> +#include <utility> -#include "private-search.h" -#include "private-cacheset.h" +#include <apti18n.h> /*}}}*/ bool FullTextSearch(CommandLine &CmdL) /*{{{*/ @@ -78,8 +68,12 @@ bool FullTextSearch(CommandLine &CmdL) /*{{{*/ const char *pattern = patterns[i]; all_found &= ( strstr(V.ParentPkg().Name(), pattern) != NULL || - parser.ShortDesc().find(pattern) != std::string::npos || - parser.LongDesc().find(pattern) != std::string::npos); + strcasestr(parser.ShortDesc().c_str(), pattern) != NULL || + strcasestr(parser.LongDesc().c_str(), pattern) != NULL); + // search patterns are AND by default so we can skip looking further + // on the first mismatch + if(all_found == false) + break; } if (all_found) { diff --git a/apt-private/private-search.h b/apt-private/private-search.h index 17faffebc..d4786233a 100644 --- a/apt-private/private-search.h +++ b/apt-private/private-search.h @@ -1,9 +1,11 @@ #ifndef APT_PRIVATE_SEARCH_H #define APT_PRIVATE_SEARCH_H -#include <apt-pkg/cmndline.h> +#include <apt-pkg/macros.h> -bool FullTextSearch(CommandLine &CmdL); +class CommandLine; + +APT_PUBLIC bool FullTextSearch(CommandLine &CmdL); #endif diff --git a/apt-private/private-show.cc b/apt-private/private-show.cc index 60d951316..8ae6a6dac 100644 --- a/apt-private/private-show.cc +++ b/apt-private/private-show.cc @@ -1,29 +1,32 @@ // Includes /*{{{*/ -#include <apt-pkg/error.h> +#include <config.h> + #include <apt-pkg/cachefile.h> -#include <apt-pkg/cachefilter.h> #include <apt-pkg/cacheset.h> -#include <apt-pkg/init.h> -#include <apt-pkg/progress.h> -#include <apt-pkg/sourcelist.h> #include <apt-pkg/cmndline.h> -#include <apt-pkg/strutl.h> +#include <apt-pkg/error.h> #include <apt-pkg/fileutl.h> +#include <apt-pkg/indexfile.h> #include <apt-pkg/pkgrecords.h> -#include <apt-pkg/srcrecords.h> -#include <apt-pkg/version.h> -#include <apt-pkg/policy.h> -#include <apt-pkg/tagfile.h> -#include <apt-pkg/algorithms.h> -#include <apt-pkg/sptr.h> #include <apt-pkg/pkgsystem.h> -#include <apt-pkg/indexfile.h> -#include <apt-pkg/metaindex.h> +#include <apt-pkg/sourcelist.h> +#include <apt-pkg/strutl.h> +#include <apt-pkg/tagfile.h> +#include <apt-pkg/cacheiterators.h> +#include <apt-pkg/configuration.h> +#include <apt-pkg/depcache.h> +#include <apt-pkg/macros.h> +#include <apt-pkg/pkgcache.h> -#include <apti18n.h> +#include <apt-private/private-cacheset.h> +#include <apt-private/private-output.h> +#include <apt-private/private-show.h> + +#include <stdio.h> +#include <ostream> +#include <string> -#include "private-output.h" -#include "private-cacheset.h" +#include <apti18n.h> /*}}}*/ namespace APT { @@ -31,8 +34,8 @@ namespace APT { // DisplayRecord - Displays the complete record for the package /*{{{*/ // --------------------------------------------------------------------- -bool DisplayRecord(pkgCacheFile &CacheFile, pkgCache::VerIterator V, - ostream &out) +static bool DisplayRecord(pkgCacheFile &CacheFile, pkgCache::VerIterator V, + std::ostream &out) { pkgCache *Cache = CacheFile.GetPkgCache(); if (unlikely(Cache == NULL)) @@ -96,23 +99,23 @@ bool DisplayRecord(pkgCacheFile &CacheFile, pkgCache::VerIterator V, // FIXME: add verbose that does not do the removal of the tags? TFRewriteData RW[] = { // delete, apt-cache show has this info and most users do not care - {"MD5sum", 0}, - {"SHA1", 0}, - {"SHA256", 0}, - {"Filename", 0}, - {"Multi-Arch", 0}, - {"Architecture", 0}, - {"Conffiles",0}, + {"MD5sum", NULL, NULL}, + {"SHA1", NULL, NULL}, + {"SHA256", NULL, NULL}, + {"Filename", NULL, NULL}, + {"Multi-Arch", NULL, NULL}, + {"Architecture", NULL, NULL}, + {"Conffiles", NULL, NULL}, // we use the translated description - {"Description",0}, - {"Description-md5",0}, + {"Description", NULL, NULL}, + {"Description-md5", NULL, NULL}, // improve - {"Installed-Size", installed_size.c_str(), 0}, + {"Installed-Size", installed_size.c_str(), NULL}, {"Size", package_size.c_str(), "Download-Size"}, // add - {"APT-Manual-Installed", manual_installed, 0}, - {"APT-Sources", source_index_file.c_str(), 0}, - {} + {"APT-Manual-Installed", manual_installed, NULL}, + {"APT-Sources", source_index_file.c_str(), NULL}, + {NULL, NULL, NULL} }; if(TFRewrite(stdout, Tags, NULL, RW) == false) @@ -148,8 +151,9 @@ bool ShowPackage(CommandLine &CmdL) /*{{{*/ if (select == APT::VersionList::CANDIDATE) { APT::VersionList const verset_all = APT::VersionList::FromCommandLine(CacheFile, CmdL.FileList + 1, APT::VersionList::ALL, helper); - if (verset_all.size() > verset.size()) - _error->Notice(ngettext("There is %lu additional record. Please use the '-a' switch to see it", "There are %lu additional records. Please use the '-a' switch to see them.", verset_all.size() - verset.size()), verset_all.size() - verset.size()); + int const records = verset_all.size() - verset.size(); + if (records > 0) + _error->Notice(P_("There is %i additional record. Please use the '-a' switch to see it", "There are %i additional records. Please use the '-a' switch to see them.", records), records); } for (APT::PackageSet::const_iterator Pkg = helper.virtualPkgs.begin(); diff --git a/apt-private/private-show.h b/apt-private/private-show.h index b428c7af0..359aeeb28 100644 --- a/apt-private/private-show.h +++ b/apt-private/private-show.h @@ -1,12 +1,14 @@ #ifndef APT_PRIVATE_SHOW_H #define APT_PRIVATE_SHOW_H -#include <apt-pkg/cmndline.h> +#include <apt-pkg/macros.h> + +class CommandLine; namespace APT { namespace Cmd { - bool ShowPackage(CommandLine &CmdL); + APT_PUBLIC bool ShowPackage(CommandLine &CmdL); } } #endif diff --git a/apt-private/private-sources.cc b/apt-private/private-sources.cc index 41cf6b313..301936b9d 100644 --- a/apt-private/private-sources.cc +++ b/apt-private/private-sources.cc @@ -1,10 +1,23 @@ +#include <config.h> #include <apt-pkg/hashes.h> -#include <apti18n.h> +#include <apt-pkg/strutl.h> +#include <apt-pkg/configuration.h> +#include <apt-pkg/sourcelist.h> +#include <apt-pkg/cmndline.h> +#include <apt-pkg/error.h> +#include <apt-pkg/fileutl.h> + +#include <apt-private/private-output.h> +#include <apt-private/private-sources.h> +#include <apt-private/private-utils.h> -#include "private-output.h" -#include "private-sources.h" -#include "private-utils.h" +#include <stddef.h> +#include <unistd.h> +#include <iostream> +#include <string> + +#include <apti18n.h> /* Interface discussion with donkult (for the future): apt [add-{archive,release,component}|edit|change-release|disable]-sources diff --git a/apt-private/private-sources.h b/apt-private/private-sources.h index b394622be..0c421902e 100644 --- a/apt-private/private-sources.h +++ b/apt-private/private-sources.h @@ -1,3 +1,10 @@ -#include <apt-pkg/cmndline.h> +#ifndef APT_PRIVATE_SOURCES_H +#define APT_PRIVATE_SOURCES_H -bool EditSources(CommandLine &CmdL); +#include <apt-pkg/macros.h> + +class CommandLine; + +APT_PUBLIC bool EditSources(CommandLine &CmdL); + +#endif diff --git a/apt-private/private-update.cc b/apt-private/private-update.cc index f6c12c26a..da83d7741 100644 --- a/apt-private/private-update.cc +++ b/apt-private/private-update.cc @@ -1,37 +1,23 @@ // Include files /*{{{*/ #include<config.h> -#include <apt-pkg/aptconfiguration.h> -#include <apt-pkg/error.h> -#include <apt-pkg/cmndline.h> -#include <apt-pkg/init.h> -#include <apt-pkg/depcache.h> -#include <apt-pkg/sourcelist.h> -#include <apt-pkg/algorithms.h> #include <apt-pkg/acquire-item.h> -#include <apt-pkg/strutl.h> -#include <apt-pkg/fileutl.h> -#include <apt-pkg/clean.h> -#include <apt-pkg/srcrecords.h> -#include <apt-pkg/version.h> #include <apt-pkg/cachefile.h> -#include <apt-pkg/cacheset.h> -#include <apt-pkg/sptr.h> -#include <apt-pkg/md5.h> -#include <apt-pkg/versionmatch.h> -#include <apt-pkg/progress.h> -#include <apt-pkg/pkgsystem.h> -#include <apt-pkg/pkgrecords.h> -#include <apt-pkg/indexfile.h> +#include <apt-pkg/cmndline.h> +#include <apt-pkg/error.h> +#include <apt-pkg/fileutl.h> +#include <apt-pkg/sourcelist.h> #include <apt-pkg/update.h> +#include <apt-pkg/acquire.h> +#include <apt-pkg/configuration.h> -#include <sys/types.h> -#include <sys/stat.h> -#include <unistd.h> +#include <apt-private/acqprogress.h> +#include <apt-private/private-cachefile.h> +#include <apt-private/private-output.h> +#include <apt-private/private-update.h> -#include "private-cachefile.h" -#include "private-output.h" -#include "acqprogress.h" +#include <ostream> +#include <string> #include <apti18n.h> /*}}}*/ diff --git a/apt-private/private-update.h b/apt-private/private-update.h index d3d0b7af9..e584f70cf 100644 --- a/apt-private/private-update.h +++ b/apt-private/private-update.h @@ -1,8 +1,10 @@ #ifndef APT_PRIVATE_UPDATE_H #define APT_PRIVATE_UPDATE_H +#include <apt-pkg/macros.h> + class CommandLine; -bool DoUpdate(CommandLine &CmdL); +APT_PUBLIC bool DoUpdate(CommandLine &CmdL); #endif diff --git a/apt-private/private-upgrade.cc b/apt-private/private-upgrade.cc index a97e6d25b..68b2c5e00 100644 --- a/apt-private/private-upgrade.cc +++ b/apt-private/private-upgrade.cc @@ -1,12 +1,18 @@ - // Includes /*{{{*/ -#include <apt-pkg/algorithms.h> +#include <config.h> + #include <apt-pkg/upgrade.h> +#include <apt-pkg/configuration.h> +#include <apt-pkg/error.h> + +#include <apt-private/private-install.h> +#include <apt-private/private-cachefile.h> +#include <apt-private/private-upgrade.h> +#include <apt-private/private-output.h> + #include <iostream> -#include "private-install.h" -#include "private-cachefile.h" -#include "private-upgrade.h" -#include "private-output.h" + +#include <apti18n.h> /*}}}*/ // this is actually performing the various upgrade operations diff --git a/apt-private/private-upgrade.h b/apt-private/private-upgrade.h index 5efc66bf7..16bb93c9b 100644 --- a/apt-private/private-upgrade.h +++ b/apt-private/private-upgrade.h @@ -1,13 +1,13 @@ #ifndef APTPRIVATE_PRIVATE_UPGRADE_H #define APTPRIVATE_PRIVATE_UPGRADE_H -#include <apt-pkg/cmndline.h> +#include <apt-pkg/macros.h> +class CommandLine; -bool DoDistUpgrade(CommandLine &CmdL); -bool DoUpgrade(CommandLine &CmdL); +APT_PUBLIC bool DoDistUpgrade(CommandLine &CmdL); +APT_PUBLIC bool DoUpgrade(CommandLine &CmdL); bool DoUpgradeNoNewPackages(CommandLine &CmdL); bool DoUpgradeWithAllowNewPackages(CommandLine &CmdL); - #endif diff --git a/apt-private/private-utils.cc b/apt-private/private-utils.cc index 813f19329..9547a1b75 100644 --- a/apt-private/private-utils.cc +++ b/apt-private/private-utils.cc @@ -1,9 +1,12 @@ -#include <cstdlib> +#include <config.h> #include <apt-pkg/configuration.h> #include <apt-pkg/fileutl.h> -#include "private-utils.h" +#include <apt-private/private-utils.h> + +#include <cstdlib> +#include <unistd.h> // DisplayFileInPager - Display File with pager /*{{{*/ void DisplayFileInPager(std::string filename) @@ -26,7 +29,6 @@ void DisplayFileInPager(std::string filename) ExecWait(Process, "sensible-pager", false); } /*}}}*/ - // EditFileInSensibleEditor - Edit File with editor /*{{{*/ void EditFileInSensibleEditor(std::string filename) { diff --git a/apt-private/private-utils.h b/apt-private/private-utils.h index 258dd06a8..432699787 100644 --- a/apt-private/private-utils.h +++ b/apt-private/private-utils.h @@ -1,11 +1,11 @@ #ifndef APT_PRIVATE_UTILS_H #define APT_PRIVATE_UTILS_H -#include<string> - -void DisplayFileInPager(std::string filename); -void EditFileInSensibleEditor(std::string filename); +#include <apt-pkg/macros.h> +#include <string> +APT_PUBLIC void DisplayFileInPager(std::string filename); +APT_PUBLIC void EditFileInSensibleEditor(std::string filename); #endif diff --git a/buildlib/apti18n.h.in b/buildlib/apti18n.h.in index a9d48dd97..2202c5b19 100644 --- a/buildlib/apti18n.h.in +++ b/buildlib/apti18n.h.in @@ -8,7 +8,8 @@ #ifdef USE_NLS // apt will use the gettext implementation of the C library -# include <libintl.h> +#include <libintl.h> +#include <locale.h> # ifdef APT_DOMAIN # define _(x) dgettext(APT_DOMAIN,x) # define P_(msg,plural,n) dngettext(APT_DOMAIN,msg,plural,n) diff --git a/buildlib/config.h.in b/buildlib/config.h.in index bd43a40b9..6b72fb393 100644 --- a/buildlib/config.h.in +++ b/buildlib/config.h.in @@ -11,6 +11,9 @@ /* Define if we have the bz2 library for bzip2 */ #undef HAVE_BZ2 +/* Define if we have the lzma library for lzma/xz */ +#undef HAVE_LZMA + /* These two are used by the statvfs shim for glibc2.0 and bsd */ /* Define if we have sys/vfs.h */ #undef HAVE_VFS_H @@ -42,3 +45,4 @@ #define APT_8_CLEANER_HEADERS #define APT_9_CLEANER_HEADERS +#define APT_10_CLEANER_HEADERS diff --git a/buildlib/environment.mak.in b/buildlib/environment.mak.in index fc859951e..c1bf29672 100644 --- a/buildlib/environment.mak.in +++ b/buildlib/environment.mak.in @@ -7,9 +7,13 @@ PACKAGE_MAIL = @PACKAGE_MAIL@ # C++ compiler options CC = @CC@ -CPPFLAGS+= @CPPFLAGS@ @DEFS@ -D_REENTRANT -Wall +CPPFLAGS+= @CPPFLAGS@ @DEFS@ -D_REENTRANT -D_FORTIFY_SOURCE=2 CXX = @CXX@ -CXXFLAGS+= @CXXFLAGS@ +CXXFLAGS+= @CXXFLAGS@ -Wall -Wextra +CXXFLAGS+= -Wcast-align -Wlogical-op -Wredundant-decls -Wmissing-declarations -Wunsafe-loop-optimizations +CXXFLAGS+= -Wsuggest-attribute=pure -Wsuggest-attribute=const -Wsuggest-attribute=noreturn +# a bit too pedantic to be run by default +#CXXFLAGS+= -Wpedantic -Wno-long-long -Wno-vla -Wno-variadic-macros NUM_PROCS = @NUM_PROCS@ # Linker stuff @@ -57,6 +61,7 @@ INTLLIBS = @INTLLIBS@ HAVE_STATVFS = @HAVE_STATVFS@ HAVE_ZLIB = @HAVE_ZLIB@ HAVE_BZ2 = @HAVE_BZ2@ +HAVE_LZMA = @HAVE_LZMA@ NEED_SOCKLEN_T_DEFINE = @NEED_SOCKLEN_T_DEFINE@ # Shared library things @@ -68,4 +73,3 @@ else # Do not know how to create shared libraries here. ONLYSTATICLIBS = yes endif - diff --git a/buildlib/libversion.mak b/buildlib/libversion.mak index 796c956e7..deb3da377 100644 --- a/buildlib/libversion.mak +++ b/buildlib/libversion.mak @@ -2,9 +2,9 @@ # Version number of libapt-pkg. # Please increase MAJOR with each ABI break, # with each non-ABI break to the lib, please increase RELEASE. -# The versionnumber is extracted from apt-pkg/init.h - see also there. -LIBAPTPKG_MAJOR=$(shell awk -v ORS='.' '/^\#define APT_PKG_M/ {print $$3}' $(BASE)/apt-pkg/init.h | sed 's/\.$$//') -LIBAPTPKG_RELEASE=$(shell grep -E '^\#define APT_PKG_RELEASE' $(BASE)/apt-pkg/init.h | cut -d ' ' -f 3) +# The versionnumber is extracted from apt-pkg/macros.h - see also there. +LIBAPTPKG_MAJOR=$(shell awk -v ORS='.' '/^\#define APT_PKG_M/ {print $$3}' $(BASE)/apt-pkg/contrib/macros.h | sed 's/\.$$//') +LIBAPTPKG_RELEASE=$(shell grep -E '^\#define APT_PKG_RELEASE' $(BASE)/apt-pkg/contrib/macros.h | cut -d ' ' -f 3) # Version number of libapt-inst # Please increase MAJOR with each ABI break, diff --git a/cmdline/acqprogress.cc b/cmdline/acqprogress.cc index 3ac350aca..c362c1edf 100644 --- a/cmdline/acqprogress.cc +++ b/cmdline/acqprogress.cc @@ -10,12 +10,14 @@ // Include files /*{{{*/ #include<config.h> +#include <apt-pkg/acquire.h> #include <apt-pkg/acquire-item.h> #include <apt-pkg/acquire-worker.h> #include <apt-pkg/configuration.h> #include <apt-pkg/strutl.h> #include <apt-pkg/error.h> +#include <string.h> #include <stdio.h> #include <signal.h> #include <iostream> diff --git a/cmdline/apt-cache.cc b/cmdline/apt-cache.cc index b8892d23d..84b775390 100644 --- a/cmdline/apt-cache.cc +++ b/cmdline/apt-cache.cc @@ -15,40 +15,49 @@ // Include Files /*{{{*/ #include<config.h> -#include <apt-pkg/error.h> +#include <apt-pkg/algorithms.h> #include <apt-pkg/cachefile.h> #include <apt-pkg/cacheset.h> -#include <apt-pkg/init.h> -#include <apt-pkg/progress.h> -#include <apt-pkg/sourcelist.h> #include <apt-pkg/cmndline.h> -#include <apt-pkg/strutl.h> +#include <apt-pkg/error.h> #include <apt-pkg/fileutl.h> +#include <apt-pkg/indexfile.h> +#include <apt-pkg/init.h> +#include <apt-pkg/metaindex.h> #include <apt-pkg/pkgrecords.h> -#include <apt-pkg/srcrecords.h> -#include <apt-pkg/version.h> +#include <apt-pkg/pkgsystem.h> #include <apt-pkg/policy.h> -#include <apt-pkg/tagfile.h> -#include <apt-pkg/algorithms.h> +#include <apt-pkg/progress.h> +#include <apt-pkg/sourcelist.h> #include <apt-pkg/sptr.h> -#include <apt-pkg/pkgsystem.h> -#include <apt-pkg/indexfile.h> -#include <apt-pkg/metaindex.h> +#include <apt-pkg/srcrecords.h> +#include <apt-pkg/strutl.h> +#include <apt-pkg/tagfile.h> +#include <apt-pkg/version.h> +#include <apt-pkg/cacheiterators.h> +#include <apt-pkg/configuration.h> +#include <apt-pkg/depcache.h> +#include <apt-pkg/macros.h> +#include <apt-pkg/mmap.h> +#include <apt-pkg/pkgcache.h> -#include <apt-private/private-list.h> -#include <apt-private/private-cmndline.h> -#include <apt-private/private-show.h> #include <apt-private/private-cacheset.h> +#include <apt-private/private-cmndline.h> -#include <cassert> -#include <locale.h> -#include <iostream> -#include <unistd.h> -#include <errno.h> #include <regex.h> +#include <stddef.h> #include <stdio.h> -#include <iomanip> +#include <stdlib.h> +#include <unistd.h> #include <algorithm> +#include <cstring> +#include <iomanip> +#include <iostream> +#include <list> +#include <map> +#include <set> +#include <string> +#include <vector> #include <apti18n.h> /*}}}*/ @@ -58,7 +67,7 @@ using namespace std; // LocalitySort - Sort a version list by package file locality /*{{{*/ // --------------------------------------------------------------------- /* */ -int LocalityCompare(const void *a, const void *b) +static int LocalityCompare(const void *a, const void *b) { pkgCache::VerFile *A = *(pkgCache::VerFile **)a; pkgCache::VerFile *B = *(pkgCache::VerFile **)b; @@ -75,13 +84,13 @@ int LocalityCompare(const void *a, const void *b) return A->File - B->File; } -void LocalitySort(pkgCache::VerFile **begin, +static void LocalitySort(pkgCache::VerFile **begin, unsigned long Count,size_t Size) { qsort(begin,Count,Size,LocalityCompare); } -void LocalitySort(pkgCache::DescFile **begin, +static void LocalitySort(pkgCache::DescFile **begin, unsigned long Count,size_t Size) { qsort(begin,Count,Size,LocalityCompare); @@ -90,7 +99,7 @@ void LocalitySort(pkgCache::DescFile **begin, // UnMet - Show unmet dependencies /*{{{*/ // --------------------------------------------------------------------- /* */ -bool ShowUnMet(pkgCache::VerIterator const &V, bool const Important) +static bool ShowUnMet(pkgCache::VerIterator const &V, bool const Important) { bool Header = false; for (pkgCache::DepIterator D = V.DependsList(); D.end() == false;) @@ -163,7 +172,7 @@ bool ShowUnMet(pkgCache::VerIterator const &V, bool const Important) } return true; } -bool UnMet(CommandLine &CmdL) +static bool UnMet(CommandLine &CmdL) { bool const Important = _config->FindB("APT::Cache::Important",false); @@ -193,7 +202,7 @@ bool UnMet(CommandLine &CmdL) // DumpPackage - Show a dump of a package record /*{{{*/ // --------------------------------------------------------------------- /* */ -bool DumpPackage(CommandLine &CmdL) +static bool DumpPackage(CommandLine &CmdL) { pkgCacheFile CacheFile; APT::CacheSetHelper helper(true, GlobalError::NOTICE); @@ -258,7 +267,7 @@ bool DumpPackage(CommandLine &CmdL) // Stats - Dump some nice statistics /*{{{*/ // --------------------------------------------------------------------- /* */ -bool Stats(CommandLine &Cmd) +static bool Stats(CommandLine &) { pkgCacheFile CacheFile; pkgCache *Cache = CacheFile.GetPkgCache(); @@ -371,7 +380,7 @@ bool Stats(CommandLine &Cmd) // Dump - show everything /*{{{*/ // --------------------------------------------------------------------- /* This is worthless except fer debugging things */ -bool Dump(CommandLine &Cmd) +static bool Dump(CommandLine &) { pkgCacheFile CacheFile; pkgCache *Cache = CacheFile.GetPkgCache(); @@ -423,7 +432,7 @@ bool Dump(CommandLine &Cmd) // --------------------------------------------------------------------- /* This is needed to make dpkg --merge happy.. I spent a bit of time to make this run really fast, perhaps I went a little overboard.. */ -bool DumpAvail(CommandLine &Cmd) +static bool DumpAvail(CommandLine &) { pkgCacheFile CacheFile; pkgCache *Cache = CacheFile.GetPkgCache(); @@ -532,7 +541,7 @@ bool DumpAvail(CommandLine &Cmd) if ((File->Flags & pkgCache::Flag::NotSource) == pkgCache::Flag::NotSource) { pkgTagSection Tags; - TFRewriteData RW[] = {{"Status",0},{"Config-Version",0},{}}; + TFRewriteData RW[] = {{"Status", NULL, NULL},{"Config-Version", NULL, NULL},{NULL, NULL, NULL}}; const char *Zero = 0; if (Tags.Scan(Buffer+Jitter,VF.Size+1) == false || TFRewrite(stdout,Tags,&Zero,RW) == false) @@ -562,7 +571,7 @@ bool DumpAvail(CommandLine &Cmd) } /*}}}*/ // ShowDepends - Helper for printing out a dependency tree /*{{{*/ -bool ShowDepends(CommandLine &CmdL, bool const RevDepends) +static bool ShowDepends(CommandLine &CmdL, bool const RevDepends) { pkgCacheFile CacheFile; pkgCache *Cache = CacheFile.GetPkgCache(); @@ -676,7 +685,7 @@ bool ShowDepends(CommandLine &CmdL, bool const RevDepends) // Depends - Print out a dependency tree /*{{{*/ // --------------------------------------------------------------------- /* */ -bool Depends(CommandLine &CmdL) +static bool Depends(CommandLine &CmdL) { return ShowDepends(CmdL, false); } @@ -684,7 +693,7 @@ bool Depends(CommandLine &CmdL) // RDepends - Print out a reverse dependency tree /*{{{*/ // --------------------------------------------------------------------- /* */ -bool RDepends(CommandLine &CmdL) +static bool RDepends(CommandLine &CmdL) { return ShowDepends(CmdL, true); } @@ -693,7 +702,7 @@ bool RDepends(CommandLine &CmdL) // --------------------------------------------------------------------- // Code contributed from Junichi Uekawa <dancer@debian.org> on 20 June 2002. -bool XVcg(CommandLine &CmdL) +static bool XVcg(CommandLine &CmdL) { pkgCacheFile CacheFile; pkgCache *Cache = CacheFile.GetPkgCache(); @@ -905,7 +914,7 @@ bool XVcg(CommandLine &CmdL) /* Dotty is the graphvis program for generating graphs. It is a fairly simple queuing algorithm that just writes dependencies and nodes. http://www.research.att.com/sw/tools/graphviz/ */ -bool Dotty(CommandLine &CmdL) +static bool Dotty(CommandLine &CmdL) { pkgCacheFile CacheFile; pkgCache *Cache = CacheFile.GetPkgCache(); @@ -1109,7 +1118,7 @@ bool Dotty(CommandLine &CmdL) /* This displays the package record from the proper package index file. It is not used by DumpAvail for performance reasons. */ -static unsigned char const* skipDescriptionFields(unsigned char const * DescP) +static APT_PURE unsigned char const* skipDescriptionFields(unsigned char const * DescP) { char const * const TagName = "\nDescription"; size_t const TagLen = strlen(TagName); @@ -1126,7 +1135,7 @@ static unsigned char const* skipDescriptionFields(unsigned char const * DescP) ++DescP; return DescP; } -bool DisplayRecord(pkgCacheFile &CacheFile, pkgCache::VerIterator V) +static bool DisplayRecord(pkgCacheFile &CacheFile, pkgCache::VerIterator V) { pkgCache *Cache = CacheFile.GetPkgCache(); if (unlikely(Cache == NULL)) @@ -1228,7 +1237,7 @@ struct ExDescFile // Search - Perform a search /*{{{*/ // --------------------------------------------------------------------- /* This searches the package names and package descriptions for a pattern */ -bool Search(CommandLine &CmdL) +static bool Search(CommandLine &CmdL) { bool const ShowFull = _config->FindB("APT::Cache::ShowFull",false); bool const NamesOnly = _config->FindB("APT::Cache::NamesOnly",false); @@ -1388,7 +1397,7 @@ bool Search(CommandLine &CmdL) } /*}}}*/ /* ShowAuto - show automatically installed packages (sorted) {{{*/ -bool ShowAuto(CommandLine &CmdL) +static bool ShowAuto(CommandLine &) { pkgCacheFile CacheFile; pkgCache *Cache = CacheFile.GetPkgCache(); @@ -1415,7 +1424,7 @@ bool ShowAuto(CommandLine &CmdL) // ShowPackage - Dump the package record to the screen /*{{{*/ // --------------------------------------------------------------------- /* */ -bool ShowPackage(CommandLine &CmdL) +static bool ShowPackage(CommandLine &CmdL) { pkgCacheFile CacheFile; CacheSetHelperVirtuals helper(true, GlobalError::NOTICE); @@ -1439,7 +1448,7 @@ bool ShowPackage(CommandLine &CmdL) // ShowPkgNames - Show package names /*{{{*/ // --------------------------------------------------------------------- /* This does a prefix match on the first argument */ -bool ShowPkgNames(CommandLine &CmdL) +static bool ShowPkgNames(CommandLine &CmdL) { pkgCacheFile CacheFile; if (unlikely(CacheFile.BuildCaches(NULL, false) == false)) @@ -1478,7 +1487,7 @@ bool ShowPkgNames(CommandLine &CmdL) // ShowSrcPackage - Show source package records /*{{{*/ // --------------------------------------------------------------------- /* */ -bool ShowSrcPackage(CommandLine &CmdL) +static bool ShowSrcPackage(CommandLine &CmdL) { pkgCacheFile CacheFile; pkgSourceList *List = CacheFile.GetSourceList(); @@ -1515,7 +1524,7 @@ bool ShowSrcPackage(CommandLine &CmdL) // Policy - Show the results of the preferences file /*{{{*/ // --------------------------------------------------------------------- /* */ -bool Policy(CommandLine &CmdL) +static bool Policy(CommandLine &CmdL) { pkgCacheFile CacheFile; pkgCache *Cache = CacheFile.GetPkgCache(); @@ -1644,7 +1653,7 @@ bool Policy(CommandLine &CmdL) // Madison - Look a bit like katie's madison /*{{{*/ // --------------------------------------------------------------------- /* */ -bool Madison(CommandLine &CmdL) +static bool Madison(CommandLine &CmdL) { pkgCacheFile CacheFile; pkgSourceList *SrcList = CacheFile.GetSourceList(); @@ -1717,7 +1726,7 @@ bool Madison(CommandLine &CmdL) // GenCaches - Call the main cache generator /*{{{*/ // --------------------------------------------------------------------- /* */ -bool GenCaches(CommandLine &Cmd) +static bool GenCaches(CommandLine &) { OpTextProgress Progress(*_config); @@ -1728,7 +1737,7 @@ bool GenCaches(CommandLine &Cmd) // ShowHelp - Show a help screen /*{{{*/ // --------------------------------------------------------------------- /* */ -bool ShowHelp(CommandLine &Cmd) +static bool ShowHelp(CommandLine &) { ioprintf(cout,_("%s %s for %s compiled on %s %s\n"),PACKAGE,PACKAGE_VERSION, COMMON_ARCH,__DATE__,__TIME__); diff --git a/cmdline/apt-cdrom.cc b/cmdline/apt-cdrom.cc index 20c6e8892..53efe65b8 100644 --- a/cmdline/apt-cdrom.cc +++ b/cmdline/apt-cdrom.cc @@ -20,33 +20,20 @@ #include <apt-pkg/progress.h> #include <apt-pkg/cdromutl.h> #include <apt-pkg/strutl.h> -#include <apt-pkg/acquire.h> -#include <apt-pkg/acquire-item.h> #include <apt-pkg/cdrom.h> #include <apt-pkg/configuration.h> #include <apt-pkg/pkgsystem.h> -#include <locale.h> #include <iostream> -#include <fstream> #include <vector> -#include <algorithm> +#include <string> #include <sys/stat.h> -#include <fcntl.h> -#include <dirent.h> #include <unistd.h> -#include <stdio.h> #include <apt-private/private-cmndline.h> #include <apti18n.h> /*}}}*/ -static const char *W_NO_CDROM_FOUND = \ - N_("No CD-ROM could be auto-detected or found using " - "the default mount point.\n" - "You may try the --cdrom option to set the CD-ROM mount point. " - "See 'man apt-cdrom' for more " - "information about the CD-ROM auto-detection and mount point."); using namespace std; @@ -54,7 +41,7 @@ class pkgCdromTextStatus : public pkgCdromStatus /*{{{*/ { protected: OpTextProgress Progress; - void Prompt(const char *Text); + void Prompt(const char *Text); string PromptLine(const char *Text); bool AskCdromName(string &name); @@ -64,12 +51,12 @@ public: virtual OpProgress* GetOpProgress(); }; -void pkgCdromTextStatus::Prompt(const char *Text) +void pkgCdromTextStatus::Prompt(const char *Text) { char C; cout << Text << ' ' << flush; if (read(STDIN_FILENO,&C,1) < 0) - _error->Errno("pkgCdromTextStatus::Prompt", + _error->Errno("pkgCdromTextStatus::Prompt", "Failed to read from standard input (not a terminal?)"); if (C != '\n') cout << endl; @@ -78,176 +65,144 @@ void pkgCdromTextStatus::Prompt(const char *Text) string pkgCdromTextStatus::PromptLine(const char *Text) { cout << Text << ':' << endl; - + string Res; getline(cin,Res); return Res; } -bool pkgCdromTextStatus::AskCdromName(string &name) +bool pkgCdromTextStatus::AskCdromName(string &name) { cout << _("Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'") << flush; name = PromptLine(""); - + return true; } - -void pkgCdromTextStatus::Update(string text, int current) + +void pkgCdromTextStatus::Update(string text, int /*current*/) { if(text.size() > 0) cout << text << flush; } -bool pkgCdromTextStatus::ChangeCdrom() +bool pkgCdromTextStatus::ChangeCdrom() { Prompt(_("Please insert a Disc in the drive and press enter")); return true; } -OpProgress* pkgCdromTextStatus::GetOpProgress() -{ - return &Progress; -}; - /*}}}*/ -// SetupAutoDetect /*{{{*/ -bool AutoDetectCdrom(pkgUdevCdromDevices &UdevCdroms, unsigned int &i, bool &automounted) +APT_CONST OpProgress* pkgCdromTextStatus::GetOpProgress() { - bool Debug = _config->FindB("Debug::Acquire::cdrom", false); - - automounted = false; - - vector<struct CdromDevice> v = UdevCdroms.Scan(); - if (i >= v.size()) - return false; - - if (Debug) - clog << "Looking at devce " << i - << " DeviveName: " << v[i].DeviceName - << " IsMounted: '" << v[i].Mounted << "'" - << " MountPoint: '" << v[i].MountPath << "'" - << endl; - - if (v[i].Mounted) - { - // set the right options - _config->Set("Acquire::cdrom::mount", v[i].MountPath); - _config->Set("APT::CDROM::NoMount", true); - } else { - string AptMountPoint = _config->FindDir("Dir::Media::MountPath"); - if (!FileExists(AptMountPoint)) - mkdir(AptMountPoint.c_str(), 0750); - if(MountCdrom(AptMountPoint, v[i].DeviceName) == false) - _error->Warning(_("Failed to mount '%s' to '%s'"), v[i].DeviceName.c_str(), AptMountPoint.c_str()); - else - automounted = true; - _config->Set("Acquire::cdrom::mount", AptMountPoint); - _config->Set("APT::CDROM::NoMount", true); - } - i++; - - return true; + return &Progress; } /*}}}*/ -// DoAdd - Add a new CDROM /*{{{*/ -// --------------------------------------------------------------------- -/* This does the main add bit.. We show some status and things. The - sequence is to mount/umount the CD, Ident it then scan it for package - files and reduce that list. Then we copy over the package files and - verify them. Then rewrite the database files */ -bool DoAdd(CommandLine &) +// AddOrIdent - Add or Ident a CDROM /*{{{*/ +static bool AddOrIdent(bool const Add) { pkgUdevCdromDevices UdevCdroms; pkgCdromTextStatus log; pkgCdrom cdrom; - bool res = true; + bool oneSuccessful = false; bool AutoDetect = _config->FindB("Acquire::cdrom::AutoDetect", true); - unsigned int count = 0; - string AptMountPoint = _config->FindDir("Dir::Media::MountPath"); - bool automounted = false; - if (AutoDetect && UdevCdroms.Dlopen()) - while (AutoDetectCdrom(UdevCdroms, count, automounted)) { - if (count == 1) { - // begin loop with res false to detect any success using OR - res = false; + if (AutoDetect == true && UdevCdroms.Dlopen() == true) + { + bool const Debug = _config->FindB("Debug::Acquire::cdrom", false); + std::string const CDMount = _config->Find("Acquire::cdrom::mount"); + bool const NoMount = _config->FindB("APT::CDROM::NoMount", false); + if (NoMount == false) + _config->Set("APT::CDROM::NoMount", true); + + vector<struct CdromDevice> const v = UdevCdroms.Scan(); + for (std::vector<struct CdromDevice>::const_iterator cd = v.begin(); cd != v.end(); ++cd) + { + if (Debug) + clog << "Looking at device:" + << "\tDeviveName: '" << cd->DeviceName << "'" + << "\tIsMounted: '" << cd->Mounted << "'" + << "\tMountPoint: '" << cd->MountPath << "'" + << endl; + + std::string AptMountPoint; + if (cd->Mounted) + _config->Set("Acquire::cdrom::mount", cd->MountPath); + else if (NoMount == true) + continue; + else + { + AptMountPoint = _config->FindDir("Dir::Media::MountPath"); + if (FileExists(AptMountPoint) == false) + mkdir(AptMountPoint.c_str(), 0750); + if(MountCdrom(AptMountPoint, cd->DeviceName) == false) + { + _error->Warning(_("Failed to mount '%s' to '%s'"), cd->DeviceName.c_str(), AptMountPoint.c_str()); + continue; + } + _config->Set("Acquire::cdrom::mount", AptMountPoint); } - // dump any warnings/errors from autodetect - if (_error->empty() == false) - _error->DumpErrors(); - - res |= cdrom.Add(&log); + _error->PushToStack(); + if (Add == true) + oneSuccessful = cdrom.Add(&log); + else + { + std::string id; + oneSuccessful = cdrom.Ident(id, &log); + } + _error->MergeWithStack(); - if (automounted) + if (AptMountPoint.empty() == false) UnmountCdrom(AptMountPoint); - - // dump any warnings/errors from add/unmount - if (_error->empty() == false) - _error->DumpErrors(); } + if (NoMount == false) + _config->Set("APT::CDROM::NoMount", NoMount); + _config->Set("Acquire::cdrom::mount", CDMount); + } - if (count == 0) - res = cdrom.Add(&log); + // fallback if auto-detect didn't work + if (oneSuccessful == false) + { + _error->PushToStack(); + if (Add == true) + oneSuccessful = cdrom.Add(&log); + else + { + std::string id; + oneSuccessful = cdrom.Ident(id, &log); + } + _error->MergeWithStack(); + } - if (res == false) - _error->Error("%s", _(W_NO_CDROM_FOUND)); - else + if (oneSuccessful == false) + _error->Error("%s", _("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.")); + else if (Add == true) cout << _("Repeat this process for the rest of the CDs in your set.") << endl; - return res; + return oneSuccessful; } /*}}}*/ -// DoIdent - Ident a CDROM /*{{{*/ +// DoAdd - Add a new CDROM /*{{{*/ // --------------------------------------------------------------------- -/* */ -bool DoIdent(CommandLine &) +/* This does the main add bit.. We show some status and things. The + sequence is to mount/umount the CD, Ident it then scan it for package + files and reduce that list. Then we copy over the package files and + verify them. Then rewrite the database files */ +static bool DoAdd(CommandLine &) { - pkgUdevCdromDevices UdevCdroms; - string ident; - pkgCdromTextStatus log; - pkgCdrom cdrom; - bool res = true; - - bool AutoDetect = _config->FindB("Acquire::cdrom::AutoDetect", true); - - unsigned int count = 0; - string AptMountPoint = _config->FindDir("Dir::Media::MountPath"); - bool automounted = false; - if (AutoDetect && UdevCdroms.Dlopen()) - while (AutoDetectCdrom(UdevCdroms, count, automounted)) { - if (count == 1) { - // begin loop with res false to detect any success using OR - res = false; - } - - // dump any warnings/errors from autodetect - if (_error->empty() == false) - _error->DumpErrors(); - - res |= cdrom.Ident(ident, &log); - - if (automounted) - UnmountCdrom(AptMountPoint); - - // dump any warnings/errors from add/unmount - if (_error->empty() == false) - _error->DumpErrors(); - } - - if (count == 0) - res = cdrom.Ident(ident, &log); - - if (res == false) - _error->Error("%s", _(W_NO_CDROM_FOUND)); - - return res; + return AddOrIdent(true); +} + /*}}}*/ +// DoIdent - Ident a CDROM /*{{{*/ +static bool DoIdent(CommandLine &) +{ + return AddOrIdent(false); } /*}}}*/ // ShowHelp - Show the help screen /*{{{*/ -// --------------------------------------------------------------------- -/* */ -bool ShowHelp(CommandLine &) +static bool ShowHelp(CommandLine &) { ioprintf(cout,_("%s %s for %s compiled on %s %s\n"),PACKAGE,PACKAGE_VERSION, COMMON_ARCH,__DATE__,__TIME__); @@ -313,14 +268,12 @@ int main(int argc,const char *argv[]) /*{{{*/ _config->Set("quiet","1"); // Match the operation - CmdL.DispatchArg(Cmds); + bool returned = CmdL.DispatchArg(Cmds); - // Print any errors or warnings found during parsing - bool const Errors = _error->PendingError(); if (_config->FindI("quiet",0) > 0) _error->DumpErrors(); else _error->DumpErrors(GlobalError::DEBUG); - return Errors == true ? 100 : 0; + return returned == true ? 0 : 100; } /*}}}*/ diff --git a/cmdline/apt-config.cc b/cmdline/apt-config.cc index 8b63507a7..40ba468eb 100644 --- a/cmdline/apt-config.cc +++ b/cmdline/apt-config.cc @@ -26,10 +26,10 @@ #include <apt-pkg/aptconfiguration.h> #include <apt-pkg/pkgsystem.h> -#include <locale.h> #include <iostream> #include <string> #include <vector> +#include <string.h> #include <apt-private/private-cmndline.h> @@ -40,7 +40,7 @@ using namespace std; // DoShell - Handle the shell command /*{{{*/ // --------------------------------------------------------------------- /* */ -bool DoShell(CommandLine &CmdL) +static bool DoShell(CommandLine &CmdL) { for (const char **I = CmdL.FileList + 1; *I != 0; I += 2) { @@ -63,7 +63,7 @@ bool DoShell(CommandLine &CmdL) // DoDump - Dump the configuration space /*{{{*/ // --------------------------------------------------------------------- /* */ -bool DoDump(CommandLine &CmdL) +static bool DoDump(CommandLine &CmdL) { bool const empty = _config->FindB("APT::Config::Dump::EmptyValue", true); std::string const format = _config->Find("APT::Config::Dump::Format", "%f \"%v\";\n"); @@ -78,7 +78,7 @@ bool DoDump(CommandLine &CmdL) // ShowHelp - Show the help screen /*{{{*/ // --------------------------------------------------------------------- /* */ -bool ShowHelp(CommandLine &CmdL) +static bool ShowHelp(CommandLine &) { ioprintf(cout,_("%s %s for %s compiled on %s %s\n"),PACKAGE,PACKAGE_VERSION, COMMON_ARCH,__DATE__,__TIME__); @@ -155,6 +155,11 @@ int main(int argc,const char *argv[]) /*{{{*/ _config->Set(comp + "UncompressArg::", *a); } + std::vector<std::string> const profiles = APT::Configuration::getBuildProfiles(); + _config->Clear("APT::Build-Profiles"); + for (std::vector<std::string>::const_iterator p = profiles.begin(); p != profiles.end(); ++p) + _config->Set("APT::Build-Profiles::", *p); + // Match the operation CmdL.DispatchArg(Cmds); diff --git a/cmdline/apt-dump-solver.cc b/cmdline/apt-dump-solver.cc index aa16b1271..04e13bde9 100644 --- a/cmdline/apt-dump-solver.cc +++ b/cmdline/apt-dump-solver.cc @@ -9,16 +9,18 @@ // Include Files /*{{{*/ #include <apt-pkg/edsp.h> -#include <config.h> - +#include <string.h> +#include <unistd.h> #include <cstdio> #include <iostream> + +#include <config.h> /*}}}*/ // ShowHelp - Show a help screen /*{{{*/ // --------------------------------------------------------------------- /* */ -bool ShowHelp() { +static bool ShowHelp() { std::cout << PACKAGE " " PACKAGE_VERSION " for " COMMON_ARCH " compiled on " __DATE__ " " __TIME__ << std::endl << diff --git a/cmdline/apt-extracttemplates.cc b/cmdline/apt-extracttemplates.cc index 2408a7d9d..e4428e051 100644 --- a/cmdline/apt-extracttemplates.cc +++ b/cmdline/apt-extracttemplates.cc @@ -18,8 +18,8 @@ #include <apt-pkg/init.h> #include <apt-pkg/cmndline.h> #include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> #include <apt-pkg/configuration.h> -#include <apt-pkg/progress.h> #include <apt-pkg/sourcelist.h> #include <apt-pkg/pkgcachegen.h> #include <apt-pkg/version.h> @@ -30,14 +30,14 @@ #include <apt-pkg/strutl.h> #include <apt-pkg/fileutl.h> #include <apt-pkg/pkgsystem.h> +#include <apt-pkg/dirstream.h> +#include <apt-pkg/mmap.h> +#include <iostream> #include <stdio.h> #include <string.h> -#include <stdlib.h> #include <unistd.h> -#include <locale.h> - -#include <fstream> +#include <stdlib.h> #include "apt-extracttemplates.h" @@ -137,7 +137,7 @@ bool DebFile::DoItem(Item &I, int &Fd) // DebFile::Process examine element in package and copy /*{{{*/ // --------------------------------------------------------------------- /* */ -bool DebFile::Process(Item &I, const unsigned char *data, +bool DebFile::Process(Item &/*I*/, const unsigned char *data, unsigned long size, unsigned long pos) { switch (Which) @@ -212,7 +212,7 @@ bool DebFile::ParseInfo() // ShowHelp - show a short help text /*{{{*/ // --------------------------------------------------------------------- /* */ -int ShowHelp(void) +static int ShowHelp(void) { ioprintf(cout,_("%s %s for %s compiled on %s %s\n"),PACKAGE,PACKAGE_VERSION, COMMON_ARCH,__DATE__,__TIME__); @@ -237,26 +237,28 @@ int ShowHelp(void) // WriteFile - write the contents of the passed string to a file /*{{{*/ // --------------------------------------------------------------------- /* */ -string WriteFile(const char *package, const char *prefix, const char *data) +static string WriteFile(const char *package, const char *prefix, const char *data) { char fn[512]; - static int i; std::string tempdir = GetTempDir(); - snprintf(fn, sizeof(fn), "%s/%s.%s.%u%d", + snprintf(fn, sizeof(fn), "%s/%s.%s.XXXXXX", _config->Find("APT::ExtractTemplates::TempDir", tempdir.c_str()).c_str(), - package, prefix, getpid(), i++); + package, prefix); FileFd f; if (data == NULL) data = ""; - - if (!f.Open(fn, FileFd::WriteTemp, 0600)) + int fd = mkstemp(fn); + if (fd < 0) { + _error->Errno("ofstream::ofstream",_("Unable to mkstemp %s"),fn); + return string(); + } + if (!f.OpenDescriptor(fd, FileFd::WriteOnly, FileFd::None, true)) { _error->Errno("ofstream::ofstream",_("Unable to write to %s"),fn); return string(); } - f.Write(data, strlen(data)); f.Close(); return fn; @@ -265,7 +267,7 @@ string WriteFile(const char *package, const char *prefix, const char *data) // WriteConfig - write out the config data from a debian package file /*{{{*/ // --------------------------------------------------------------------- /* */ -void WriteConfig(const DebFile &file) +static void WriteConfig(const DebFile &file) { string templatefile = WriteFile(file.Package.c_str(), "template", file.Template); string configscript = WriteFile(file.Package.c_str(), "config", file.Config); @@ -279,7 +281,7 @@ void WriteConfig(const DebFile &file) // InitCache - initialize the package cache /*{{{*/ // --------------------------------------------------------------------- /* */ -bool Go(CommandLine &CmdL) +static bool Go(CommandLine &CmdL) { // Initialize the apt cache MMap *Map = 0; diff --git a/cmdline/apt-extracttemplates.h b/cmdline/apt-extracttemplates.h index 6d07a09c2..9cc3f5f25 100644 --- a/cmdline/apt-extracttemplates.h +++ b/cmdline/apt-extracttemplates.h @@ -11,11 +11,12 @@ #define _APTEXTRACTTEMPLATE_H_ #include <apt-pkg/fileutl.h> -#include <apt-pkg/pkgcache.h> #include <apt-pkg/dirstream.h> #include <string> +class pkgCache; + class DebFile : public pkgDirStream { FileFd File; diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index 3bdc63217..e7fd4bfb8 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -27,66 +27,67 @@ // Include Files /*{{{*/ #include <config.h> +#include <apt-pkg/acquire-item.h> +#include <apt-pkg/algorithms.h> #include <apt-pkg/aptconfiguration.h> -#include <apt-pkg/error.h> +#include <apt-pkg/cachefile.h> +#include <apt-pkg/cacheset.h> +#include <apt-pkg/clean.h> #include <apt-pkg/cmndline.h> -#include <apt-pkg/init.h> +#include <apt-pkg/debmetaindex.h> #include <apt-pkg/depcache.h> -#include <apt-pkg/sourcelist.h> -#include <apt-pkg/algorithms.h> -#include <apt-pkg/acquire-item.h> -#include <apt-pkg/strutl.h> +#include <apt-pkg/error.h> #include <apt-pkg/fileutl.h> -#include <apt-pkg/clean.h> -#include <apt-pkg/srcrecords.h> -#include <apt-pkg/version.h> -#include <apt-pkg/cachefile.h> -#include <apt-pkg/cacheset.h> -#include <apt-pkg/sptr.h> +#include <apt-pkg/indexfile.h> +#include <apt-pkg/indexrecords.h> +#include <apt-pkg/init.h> #include <apt-pkg/md5.h> -#include <apt-pkg/versionmatch.h> -#include <apt-pkg/progress.h> -#include <apt-pkg/pkgsystem.h> +#include <apt-pkg/metaindex.h> #include <apt-pkg/pkgrecords.h> -#include <apt-pkg/indexfile.h> +#include <apt-pkg/pkgsystem.h> +#include <apt-pkg/progress.h> +#include <apt-pkg/sourcelist.h> +#include <apt-pkg/srcrecords.h> +#include <apt-pkg/strutl.h> +#include <apt-pkg/version.h> +#include <apt-pkg/acquire.h> +#include <apt-pkg/configuration.h> +#include <apt-pkg/macros.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> #include <apt-pkg/upgrade.h> -#include <apt-pkg/metaindex.h> -#include <apt-pkg/indexrecords.h> +#include <apt-private/acqprogress.h> +#include <apt-private/private-cacheset.h> +#include <apt-private/private-cachefile.h> +#include <apt-private/private-cmndline.h> #include <apt-private/private-download.h> #include <apt-private/private-install.h> -#include <apt-private/private-upgrade.h> +#include <apt-private/private-main.h> +#include <apt-private/private-moo.h> #include <apt-private/private-output.h> -#include <apt-private/private-cacheset.h> #include <apt-private/private-update.h> -#include <apt-private/private-cmndline.h> -#include <apt-private/private-moo.h> +#include <apt-private/private-upgrade.h> #include <apt-private/private-utils.h> -#include <apt-pkg/debmetaindex.h> - -#include <apt-private/acqprogress.h> - -#include <set> -#include <fstream> -#include <sstream> - -#include <locale.h> -#include <langinfo.h> -#include <termios.h> +#include <errno.h> +#include <signal.h> +#include <stddef.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> #include <sys/ioctl.h> #include <sys/stat.h> #include <sys/statfs.h> #include <sys/statvfs.h> -#include <signal.h> -#include <unistd.h> -#include <stdio.h> -#include <errno.h> -#include <regex.h> #include <sys/wait.h> - -#include <apt-private/private-output.h> -#include <apt-private/private-main.h> +#include <unistd.h> +#include <algorithm> +#include <fstream> +#include <iostream> +#include <set> +#include <string> +#include <vector> #include <apti18n.h> /*}}}*/ @@ -97,7 +98,7 @@ using namespace std; // --------------------------------------------------------------------- /* This used to be inlined in DoInstall, but with the advent of regex package name matching it was split out.. */ -bool TryToInstallBuildDep(pkgCache::PkgIterator Pkg,pkgCacheFile &Cache, +static bool TryToInstallBuildDep(pkgCache::PkgIterator Pkg,pkgCacheFile &Cache, pkgProblemResolver &Fix,bool Remove,bool BrokenFix, bool AllowFail = true) { @@ -138,7 +139,7 @@ bool TryToInstallBuildDep(pkgCache::PkgIterator Pkg,pkgCacheFile &Cache, // helper that can go wit hthe next ABI break #if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR < 13) -std::string MetaIndexFileNameOnDisk(metaIndex *metaindex) +static std::string MetaIndexFileNameOnDisk(metaIndex *metaindex) { // FIXME: this cast is the horror, the horror debReleaseIndex *r = (debReleaseIndex*)metaindex; @@ -159,7 +160,7 @@ std::string MetaIndexFileNameOnDisk(metaIndex *metaindex) // GetReleaseForSourceRecord - Return Suite for the given srcrecord /*{{{*/ // --------------------------------------------------------------------- /* */ -std::string GetReleaseForSourceRecord(pkgSourceList *SrcList, +static std::string GetReleaseForSourceRecord(pkgSourceList *SrcList, pkgSrcRecords::Parser *Parse) { // try to find release @@ -194,7 +195,7 @@ std::string GetReleaseForSourceRecord(pkgSourceList *SrcList, // FindSrc - Find a source record /*{{{*/ // --------------------------------------------------------------------- /* */ -pkgSrcRecords::Parser *FindSrc(const char *Name,pkgRecords &Recs, +static pkgSrcRecords::Parser *FindSrc(const char *Name,pkgRecords &Recs, pkgSrcRecords &SrcRecs,string &Src, CacheFile &CacheFile) { @@ -430,7 +431,7 @@ pkgSrcRecords::Parser *FindSrc(const char *Name,pkgRecords &Recs, } /*}}}*/ /* mark packages as automatically/manually installed. {{{*/ -bool DoMarkAuto(CommandLine &CmdL) +static bool DoMarkAuto(CommandLine &CmdL) { bool Action = true; int AutoMarkChanged = 0; @@ -475,7 +476,7 @@ bool DoMarkAuto(CommandLine &CmdL) // DoDSelectUpgrade - Do an upgrade by following dselects selections /*{{{*/ // --------------------------------------------------------------------- /* Follows dselect's selections */ -bool DoDSelectUpgrade(CommandLine &CmdL) +static bool DoDSelectUpgrade(CommandLine &) { CacheFile Cache; if (Cache.OpenForInstall() == false || Cache.CheckDeps() == false) @@ -551,7 +552,7 @@ bool DoDSelectUpgrade(CommandLine &CmdL) // DoClean - Remove download archives /*{{{*/ // --------------------------------------------------------------------- /* */ -bool DoClean(CommandLine &CmdL) +static bool DoClean(CommandLine &) { std::string const archivedir = _config->FindDir("Dir::Cache::archives"); std::string const pkgcache = _config->FindFile("Dir::cache::pkgcache"); @@ -599,7 +600,7 @@ class LogCleaner : public pkgArchiveCleaner }; }; -bool DoAutoClean(CommandLine &CmdL) +static bool DoAutoClean(CommandLine &) { // Lock the archive directory FileFd Lock; @@ -623,7 +624,7 @@ bool DoAutoClean(CommandLine &CmdL) /*}}}*/ // DoDownload - download a binary /*{{{*/ // --------------------------------------------------------------------- -bool DoDownload(CommandLine &CmdL) +static bool DoDownload(CommandLine &CmdL) { CacheFile Cache; if (Cache.ReadOnlyOpen() == false) @@ -696,7 +697,7 @@ bool DoDownload(CommandLine &CmdL) // --------------------------------------------------------------------- /* Opening automatically checks the system, this command is mostly used for debugging */ -bool DoCheck(CommandLine &CmdL) +static bool DoCheck(CommandLine &) { CacheFile Cache; Cache.Open(); @@ -715,7 +716,7 @@ struct DscFile string Dsc; }; -bool DoSource(CommandLine &CmdL) +static bool DoSource(CommandLine &CmdL) { CacheFile Cache; if (Cache.Open(false) == false) @@ -740,7 +741,7 @@ bool DoSource(CommandLine &CmdL) pkgAcquire Fetcher; Fetcher.SetLog(&Stat); - DscFile *Dsc = new DscFile[CmdL.FileSize()]; + SPtrArray<DscFile> Dsc = new DscFile[CmdL.FileSize()]; // insert all downloaded uris into this set to avoid downloading them // twice @@ -761,7 +762,6 @@ bool DoSource(CommandLine &CmdL) pkgSrcRecords::Parser *Last = FindSrc(*I,Recs,SrcRecs,Src,Cache); if (Last == 0) { - delete[] Dsc; return _error->Error(_("Unable to find a source package for %s"),Src.c_str()); } @@ -795,7 +795,6 @@ bool DoSource(CommandLine &CmdL) // Back track vector<pkgSrcRecords::File> Lst; if (Last->Files(Lst) == false) { - delete[] Dsc; return false; } @@ -858,7 +857,6 @@ bool DoSource(CommandLine &CmdL) struct statvfs Buf; string OutputDir = "."; if (statvfs(OutputDir.c_str(),&Buf) != 0) { - delete[] Dsc; if (errno == EOVERFLOW) return _error->WarningE("statvfs",_("Couldn't determine free space in %s"), OutputDir.c_str()); @@ -873,7 +871,6 @@ bool DoSource(CommandLine &CmdL) || unsigned(Stat.f_type) != RAMFS_MAGIC #endif ) { - delete[] Dsc; return _error->Error(_("You don't have enough free space in %s"), OutputDir.c_str()); } @@ -895,7 +892,6 @@ bool DoSource(CommandLine &CmdL) { for (unsigned I = 0; I != J; I++) ioprintf(cout,_("Fetch source %s\n"),Dsc[I].Package.c_str()); - delete[] Dsc; return true; } @@ -906,7 +902,6 @@ bool DoSource(CommandLine &CmdL) for (; I != Fetcher.UriEnd(); ++I) cout << '\'' << I->URI << "' " << flNotDir(I->Owner->DestFile) << ' ' << I->Owner->FileSize << ' ' << I->Owner->HashSum() << endl; - delete[] Dsc; return true; } @@ -914,14 +909,12 @@ bool DoSource(CommandLine &CmdL) bool Failed = false; if (AcquireRun(Fetcher, 0, &Failed, NULL) == false || Failed == true) { - delete[] Dsc; return _error->Error(_("Failed to fetch some archives.")); } if (_config->FindB("APT::Get::Download-only",false) == true) { c1out << _("Download complete and in download only mode") << endl; - delete[] Dsc; return true; } @@ -970,6 +963,12 @@ bool DoSource(CommandLine &CmdL) string buildopts = _config->Find("APT::Get::Host-Architecture"); if (buildopts.empty() == false) buildopts = "-a" + buildopts + " "; + + // get all active build profiles + std::string const profiles = APT::Configuration::getBuildProfilesString(); + if (profiles.empty() == false) + buildopts.append(" -P").append(profiles).append(" "); + buildopts.append(_config->Find("DPkg::Build-Options","-b -uc")); // Call dpkg-buildpackage @@ -989,7 +988,6 @@ bool DoSource(CommandLine &CmdL) _exit(0); } - delete[] Dsc; // Wait for the subprocess int Status = 0; @@ -1010,7 +1008,7 @@ bool DoSource(CommandLine &CmdL) // --------------------------------------------------------------------- /* This function will look at the build depends list of the given source package and install the necessary packages to make it true, or fail. */ -bool DoBuildDep(CommandLine &CmdL) +static bool DoBuildDep(CommandLine &CmdL) { CacheFile Cache; @@ -1404,7 +1402,7 @@ bool DoBuildDep(CommandLine &CmdL) * pool/ next to the deb itself) * Example return: "pool/main/a/apt/apt_0.8.8ubuntu3" */ -string GetChangelogPath(CacheFile &Cache, +static string GetChangelogPath(CacheFile &Cache, pkgCache::PkgIterator Pkg, pkgCache::VerIterator Ver) { @@ -1431,7 +1429,7 @@ string GetChangelogPath(CacheFile &Cache, * apt-get changelog mplayer-doc: * http://packages.medibuntu.org/pool/non-free/m/mplayer/mplayer_1.0~rc4~try1.dsfg1-1ubuntu1+medibuntu1.changelog */ -bool GuessThirdPartyChangelogUri(CacheFile &Cache, +static bool GuessThirdPartyChangelogUri(CacheFile &Cache, pkgCache::PkgIterator Pkg, pkgCache::VerIterator Ver, string &out_uri) @@ -1456,7 +1454,7 @@ bool GuessThirdPartyChangelogUri(CacheFile &Cache, /*}}}*/ // DownloadChangelog - Download the changelog /*{{{*/ // --------------------------------------------------------------------- -bool DownloadChangelog(CacheFile &CacheFile, pkgAcquire &Fetcher, +static bool DownloadChangelog(CacheFile &CacheFile, pkgAcquire &Fetcher, pkgCache::VerIterator Ver, string targetfile) /* Download a changelog file for the given package version to * targetfile. This will first try the server from Apt::Changelogs::Server @@ -1514,7 +1512,7 @@ bool DownloadChangelog(CacheFile &CacheFile, pkgAcquire &Fetcher, /*}}}*/ // DoChangelog - Get changelog from the command line /*{{{*/ // --------------------------------------------------------------------- -bool DoChangelog(CommandLine &CmdL) +static bool DoChangelog(CommandLine &CmdL) { CacheFile Cache; if (Cache.ReadOnlyOpen() == false) @@ -1578,7 +1576,7 @@ bool DoChangelog(CommandLine &CmdL) // ShowHelp - Show a help screen /*{{{*/ // --------------------------------------------------------------------- /* */ -bool ShowHelp(CommandLine &CmdL) +static bool ShowHelp(CommandLine &) { ioprintf(cout,_("%s %s for %s compiled on %s %s\n"),PACKAGE,PACKAGE_VERSION, COMMON_ARCH,__DATE__,__TIME__); @@ -1674,7 +1672,7 @@ bool ShowHelp(CommandLine &CmdL) // SigWinch - Window size change signal handler /*{{{*/ // --------------------------------------------------------------------- /* */ -void SigWinch(int) +static void SigWinch(int) { // Riped from GNU ls #ifdef TIOCGWINSZ diff --git a/cmdline/apt-helper.cc b/cmdline/apt-helper.cc new file mode 100644 index 000000000..2c1107d90 --- /dev/null +++ b/cmdline/apt-helper.cc @@ -0,0 +1,125 @@ +// -*- mode: cpp; mode: fold -*- +// Description /*{{{*/ +/* ##################################################################### + apt-helper - cmdline helpers + ##################################################################### */ + /*}}}*/ +// Include Files /*{{{*/ +#include <config.h> + +#include <apt-pkg/configuration.h> +#include <apt-pkg/cmndline.h> +#include <apt-pkg/error.h> +#include <apt-pkg/init.h> +#include <apt-pkg/strutl.h> +#include <apt-pkg/pkgsystem.h> +#include <apt-pkg/fileutl.h> +#include <apt-pkg/acquire.h> +#include <apt-pkg/acquire-item.h> + +#include <apt-private/acqprogress.h> +#include <apt-private/private-output.h> +#include <apt-private/private-download.h> +#include <apt-private/private-cmndline.h> + +#include <iostream> +#include <string> +#include <vector> + +#include <apti18n.h> + /*}}}*/ + +static bool DoDownloadFile(CommandLine &CmdL) +{ + if (CmdL.FileSize() <= 2) + return _error->Error(_("Must specify at least one pair url/filename")); + + + pkgAcquire Fetcher; + AcqTextStatus Stat(ScreenWidth, _config->FindI("quiet",0)); + Fetcher.Setup(&Stat); + std::string download_uri = CmdL.FileList[1]; + std::string targetfile = CmdL.FileList[2]; + std::string hash; + if (CmdL.FileSize() > 3) + hash = CmdL.FileList[3]; + new pkgAcqFile(&Fetcher, download_uri, hash, 0, "desc", "short-desc", + "dest-dir-ignored", targetfile); + Fetcher.Run(); + bool Failed = false; + if (AcquireRun(Fetcher, 0, &Failed, NULL) == false || Failed == true || + FileExists(targetfile) == false) + return _error->Error(_("Download Failed")); + return true; +} + +static bool ShowHelp(CommandLine &) +{ + ioprintf(std::cout,_("%s %s for %s compiled on %s %s\n"),PACKAGE,PACKAGE_VERSION, + COMMON_ARCH,__DATE__,__TIME__); + + if (_config->FindB("version") == true) + return true; + + std::cout << + _("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"); + return true; +} + + +int main(int argc,const char *argv[]) /*{{{*/ +{ + CommandLine::Dispatch Cmds[] = {{"help",&ShowHelp}, + {"download-file", &DoDownloadFile}, + {0,0}}; + + std::vector<CommandLine::Args> Args = getCommandArgs( + "apt-download", CommandLine::GetCommand(Cmds, argc, argv)); + + // Set up gettext support + setlocale(LC_ALL,""); + textdomain(PACKAGE); + + // Parse the command line and initialize the package library + CommandLine CmdL(Args.data(),_config); + if (pkgInitConfig(*_config) == false || + CmdL.Parse(argc,argv) == false || + pkgInitSystem(*_config,_system) == false) + { + if (_config->FindB("version") == true) + ShowHelp(CmdL); + _error->DumpErrors(); + return 100; + } + + // See if the help should be shown + if (_config->FindB("help") == true || + _config->FindB("version") == true || + CmdL.FileSize() == 0) + { + ShowHelp(CmdL); + return 0; + } + + InitOutput(); + + // Match the operation + CmdL.DispatchArg(Cmds); + + // Print any errors or warnings found during parsing + bool const Errors = _error->PendingError(); + if (_config->FindI("quiet",0) > 0) + _error->DumpErrors(); + else + _error->DumpErrors(GlobalError::DEBUG); + return Errors == true ? 100 : 0; +} + /*}}}*/ diff --git a/cmdline/apt-internal-solver.cc b/cmdline/apt-internal-solver.cc index bf5b8c1fe..b85c07c33 100644 --- a/cmdline/apt-internal-solver.cc +++ b/cmdline/apt-internal-solver.cc @@ -20,7 +20,15 @@ #include <apt-pkg/fileutl.h> #include <apt-pkg/pkgsystem.h> #include <apt-pkg/upgrade.h> - +#include <apt-pkg/configuration.h> +#include <apt-pkg/depcache.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/cacheiterators.h> + +#include <string.h> +#include <iostream> +#include <list> +#include <string> #include <unistd.h> #include <cstdio> @@ -30,7 +38,7 @@ // ShowHelp - Show a help screen /*{{{*/ // --------------------------------------------------------------------- /* */ -bool ShowHelp(CommandLine &CmdL) { +static bool ShowHelp(CommandLine &) { ioprintf(std::cout,_("%s %s for %s compiled on %s %s\n"),PACKAGE,PACKAGE_VERSION, COMMON_ARCH,__DATE__,__TIME__); diff --git a/cmdline/apt-mark.cc b/cmdline/apt-mark.cc index d3a3a780b..ed348358a 100644 --- a/cmdline/apt-mark.cc +++ b/cmdline/apt-mark.cc @@ -11,20 +11,31 @@ #include <apt-pkg/cacheset.h> #include <apt-pkg/cmndline.h> #include <apt-pkg/error.h> +#include <apt-pkg/fileutl.h> #include <apt-pkg/init.h> -#include <apt-pkg/strutl.h> #include <apt-pkg/pkgsystem.h> -#include <apt-pkg/fileutl.h> +#include <apt-pkg/strutl.h> +#include <apt-pkg/cacheiterators.h> +#include <apt-pkg/configuration.h> +#include <apt-pkg/depcache.h> +#include <apt-pkg/macros.h> +#include <apt-pkg/pkgcache.h> + +#include <apt-private/private-cmndline.h> -#include <algorithm> #include <errno.h> -#include <unistd.h> -#include <sys/types.h> -#include <sys/stat.h> -#include <sys/wait.h> #include <fcntl.h> - -#include <apt-private/private-cmndline.h> +#include <stddef.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <sys/wait.h> +#include <unistd.h> +#include <algorithm> +#include <fstream> +#include <iostream> +#include <string> +#include <vector> #include <apti18n.h> /*}}}*/ @@ -35,7 +46,7 @@ ostream c1out(0); ostream c2out(0); ofstream devnull("/dev/null"); /* DoAuto - mark packages as automatically/manually installed {{{*/ -bool DoAuto(CommandLine &CmdL) +static bool DoAuto(CommandLine &CmdL) { pkgCacheFile CacheFile; pkgCache *Cache = CacheFile.GetPkgCache(); @@ -82,7 +93,7 @@ bool DoAuto(CommandLine &CmdL) /* DoMarkAuto - mark packages as automatically/manually installed {{{*/ /* Does the same as DoAuto but tries to do it exactly the same why as the python implementation did it so it can be a drop-in replacement */ -bool DoMarkAuto(CommandLine &CmdL) +static bool DoMarkAuto(CommandLine &CmdL) { pkgCacheFile CacheFile; pkgCache *Cache = CacheFile.GetPkgCache(); @@ -119,7 +130,7 @@ bool DoMarkAuto(CommandLine &CmdL) } /*}}}*/ /* ShowAuto - show automatically installed packages (sorted) {{{*/ -bool ShowAuto(CommandLine &CmdL) +static bool ShowAuto(CommandLine &CmdL) { pkgCacheFile CacheFile; pkgCache *Cache = CacheFile.GetPkgCache(); @@ -159,7 +170,7 @@ bool ShowAuto(CommandLine &CmdL) } /*}}}*/ /* DoHold - mark packages as hold by dpkg {{{*/ -bool DoHold(CommandLine &CmdL) +static bool DoHold(CommandLine &CmdL) { pkgCacheFile CacheFile; pkgCache *Cache = CacheFile.GetPkgCache(); @@ -335,7 +346,7 @@ bool DoHold(CommandLine &CmdL) } /*}}}*/ /* ShowHold - show packages set on hold in dpkg status {{{*/ -bool ShowHold(CommandLine &CmdL) +static bool ShowHold(CommandLine &CmdL) { pkgCacheFile CacheFile; pkgCache *Cache = CacheFile.GetPkgCache(); @@ -372,7 +383,7 @@ bool ShowHold(CommandLine &CmdL) // ShowHelp - Show a help screen /*{{{*/ // --------------------------------------------------------------------- /* */ -bool ShowHelp(CommandLine &CmdL) +static bool ShowHelp(CommandLine &) { ioprintf(cout,_("%s %s for %s compiled on %s %s\n"),PACKAGE,PACKAGE_VERSION, COMMON_ARCH,__DATE__,__TIME__); diff --git a/cmdline/apt-sortpkgs.cc b/cmdline/apt-sortpkgs.cc index 46989044e..c2b11890a 100644 --- a/cmdline/apt-sortpkgs.cc +++ b/cmdline/apt-sortpkgs.cc @@ -25,9 +25,9 @@ #include <vector> #include <algorithm> - -#include <locale.h> -#include <unistd.h> +#include <stdio.h> +#include <iostream> +#include <string> #include <apti18n.h> /*}}}*/ @@ -62,7 +62,7 @@ struct PkgName /*{{{*/ // DoIt - Sort a single file /*{{{*/ // --------------------------------------------------------------------- /* */ -bool DoIt(string InFile) +static bool DoIt(string InFile) { FileFd Fd(InFile,FileFd::ReadOnly); pkgTagFile Tags(&Fd); @@ -142,7 +142,7 @@ bool DoIt(string InFile) // ShowHelp - Show the help text /*{{{*/ // --------------------------------------------------------------------- /* */ -int ShowHelp() +static int ShowHelp() { ioprintf(cout,_("%s %s for %s compiled on %s %s\n"),PACKAGE,PACKAGE_VERSION, COMMON_ARCH,__DATE__,__TIME__); diff --git a/cmdline/apt.cc b/cmdline/apt.cc index 7ef9060aa..4813861a4 100644 --- a/cmdline/apt.cc +++ b/cmdline/apt.cc @@ -11,39 +11,12 @@ // Include Files /*{{{*/ #include<config.h> -#include <cassert> -#include <locale.h> -#include <iostream> -#include <unistd.h> -#include <errno.h> -#include <regex.h> -#include <stdio.h> -#include <iomanip> -#include <algorithm> - - +#include <apt-pkg/cmndline.h> #include <apt-pkg/error.h> -#include <apt-pkg/cachefile.h> -#include <apt-pkg/cacheset.h> #include <apt-pkg/init.h> -#include <apt-pkg/progress.h> -#include <apt-pkg/sourcelist.h> -#include <apt-pkg/cmndline.h> -#include <apt-pkg/strutl.h> -#include <apt-pkg/fileutl.h> -#include <apt-pkg/pkgrecords.h> -#include <apt-pkg/srcrecords.h> -#include <apt-pkg/version.h> -#include <apt-pkg/policy.h> -#include <apt-pkg/tagfile.h> -#include <apt-pkg/algorithms.h> -#include <apt-pkg/sptr.h> #include <apt-pkg/pkgsystem.h> -#include <apt-pkg/indexfile.h> -#include <apt-pkg/metaindex.h> -#include <apt-pkg/hashes.h> - -#include <apti18n.h> +#include <apt-pkg/strutl.h> +#include <apt-pkg/configuration.h> #include <apt-private/private-list.h> #include <apt-private/private-search.h> @@ -55,13 +28,16 @@ #include <apt-private/private-upgrade.h> #include <apt-private/private-show.h> #include <apt-private/private-main.h> -#include <apt-private/private-utils.h> #include <apt-private/private-sources.h> - /*}}}*/ +#include <unistd.h> +#include <iostream> +#include <vector> +#include <apti18n.h> + /*}}}*/ -bool ShowHelp(CommandLine &CmdL) +static bool ShowHelp(CommandLine &) { ioprintf(c1out,_("%s %s for %s compiled on %s %s\n"),PACKAGE,PACKAGE_VERSION, COMMON_ARCH,__DATE__,__TIME__); @@ -94,7 +70,7 @@ int main(int argc, const char *argv[]) /*{{{*/ { CommandLine::Dispatch Cmds[] = { // query - {"list",&List}, + {"list",&DoList}, {"search", &FullTextSearch}, {"show", &APT::Cmd::ShowPackage}, @@ -133,7 +109,7 @@ int main(int argc, const char *argv[]) /*{{{*/ } // some different defaults - _config->CndSet("DPkgPM::Progress", "1"); + _config->CndSet("DPkg::Progress-Fancy", "1"); _config->CndSet("Apt::Color", "1"); _config->CndSet("APT::Get::Upgrade-Allow-New", true); diff --git a/cmdline/makefile b/cmdline/makefile index f89192e10..c4a249cd6 100644 --- a/cmdline/makefile +++ b/cmdline/makefile @@ -47,6 +47,13 @@ LIB_MAKES = apt-pkg/makefile SOURCE = apt-mark.cc include $(PROGRAM_H) +# The apt-helper +PROGRAM=apt-helper +SLIBS = -lapt-pkg -lapt-private $(INTLLIBS) +LIB_MAKES = apt-pkg/makefile +SOURCE = apt-helper.cc +include $(PROGRAM_H) + # The apt-report-mirror-failure program #SOURCE=apt-report-mirror-failure #TO=$(BIN) diff --git a/configure.ac b/configure.ac index e65814b77..a7ac52ea1 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="0.9.15.4ubuntu4" +PACKAGE_VERSION="1.0.1ubuntu2" PACKAGE_MAIL="APT Development Team <deity@lists.debian.org>" AC_DEFINE_UNQUOTED(PACKAGE,"$PACKAGE") AC_DEFINE_UNQUOTED(PACKAGE_VERSION,"$PACKAGE_VERSION") @@ -107,6 +107,13 @@ if test "x$HAVE_BZ2" = "xyes"; then AC_DEFINE(HAVE_BZ2) fi +HAVE_LZMA=no +AC_CHECK_LIB(lzma, lzma_easy_encoder,[AC_CHECK_HEADER(lzma.h, [HAVE_LZMA=yes], [])], []) +AC_SUBST(HAVE_LZMA) +if test "x$HAVE_LZMA" = "xyes"; then + AC_DEFINE(HAVE_LZMA) +fi + dnl Converts the ARCH to be something singular for this general CPU family dnl This is often the dpkg architecture string. dnl First check against the full canonical canoncial-system-type in $target diff --git a/debian/apt.auto-removal.sh b/debian/apt.auto-removal.sh index db38958fa..c00416127 100644 --- a/debian/apt.auto-removal.sh +++ b/debian/apt.auto-removal.sh @@ -1,5 +1,4 @@ #!/bin/sh - set -e # Author: Steve Langasek <steve.langasek@canonical.com> @@ -42,7 +41,7 @@ version_test_gt () return "$?" } -list=$(${DPKG} -l 'linux-image-[0-9]*'|awk '/^ii/ && $2 !~ /-dbg$/ { print $2 }' | sed -e's/linux-image-//') +list="$(${DPKG} -l | awk '/^ii[ ]+(linux|kfreebsd|gnumach)-image-[0-9]/ && $2 !~ /-dbg$/ { print $2 }' | sed -e 's#\(linux\|kfreebsd\|gnumach\)-image-##')" latest_version="" previous_version="" @@ -64,31 +63,23 @@ then previous_version= fi -kernels=$(sort -u <<EOF -$latest_version +kernels="$(echo "$latest_version $installed_version $running_version -$previous_version -EOF -) +$previous_version" | sort -u | sed -e 's#\.#\\.#g' )" -cat > "$config_file".dpkg-new <<EOF -// File autogenerated by $0, do not edit -APT +generateconfig() { + cat <<EOF +// DO NOT EDIT! File autogenerated by $0 +APT::NeverAutoRemove { - NeverAutoRemove - { EOF -for kernel in $kernels; do - echo " \"^linux-image-${kernel}$\";" >> "$config_file".dpkg-new - echo " \"^linux-image-extra-${kernel}$\";" >> "$config_file".dpkg-new - echo " \"^linux-signed-image-${kernel}$\";" >> "$config_file".dpkg-new - echo " \"^linux-backports-modules-.*-${kernel}$\";" >> "$config_file".dpkg-new - echo " \"^linux-headers-${kernel}$\";" >> "$config_file".dpkg-new - echo " \"^linux-tools-${kernel}$\";" >> "$config_file".dpkg-new -done -cat >> "$config_file".dpkg-new <<EOF - }; -}; -EOF -mv "$config_file".dpkg-new "$config_file" + apt-config dump --no-empty --format '%v%n' 'APT::VersionedKernelPackages' | while read package; do + for kernel in $kernels; do + echo " \"^${package}-${kernel}$\";" + done + done + echo '};' +} +generateconfig > "${config_file}.dpkg-new" +mv "${config_file}.dpkg-new" "$config_file" diff --git a/debian/apt.conf.autoremove b/debian/apt.conf.autoremove index 9684c9c7d..fc02350ae 100644 --- a/debian/apt.conf.autoremove +++ b/debian/apt.conf.autoremove @@ -4,9 +4,26 @@ APT { "^firmware-linux.*"; "^linux-firmware$"; - "^kfreebsd-image.*"; - "^gnumach$"; - "^gnumach-image.*"; + }; + + VersionedKernelPackages + { + # linux kernels + "linux-image"; + "linux-headers"; + "linux-image-extra"; + "linux-signed-image"; + # kfreebsd kernels + "kfreebsd-image"; + "kfreebsd-headers"; + # hurd kernels + "gnumach-image"; + # (out-of-tree) modules + ".*-modules"; + ".*-kernel"; + "linux-backports-modules-.*"; + # tools + "linux-tools"; }; Never-MarkAuto-Sections diff --git a/debian/apt.cron.daily b/debian/apt.cron.daily index 10e3c12ec..863c65782 100644 --- a/debian/apt.cron.daily +++ b/debian/apt.cron.daily @@ -41,7 +41,7 @@ # APT::Periodic::MaxSize "0"; (new) # - Set maximum size of the cache in MB (0=disable). If the cache # is bigger, cached package files are deleted until the size -# requirement is met (the biggest packages will be deleted +# requirement is met (the oldest packages will be deleted # first). # # APT::Periodic::Update-Package-Lists "0"; @@ -91,7 +91,7 @@ check_stamp() stamp=$(date --date=$(date -r $stamp_file --iso-8601) +%s 2>/dev/null) if [ "$?" != "0" ]; then # Due to some timezones returning 'invalid date' for midnight on - # certain dates (eg America/Sao_Paulo), if date returns with error + # certain dates (e.g. America/Sao_Paulo), if date returns with error # remove the stamp file and return 0. See coreutils bug: # http://lists.gnu.org/archive/html/bug-coreutils/2007-09/msg00176.html rm -f "$stamp_file" @@ -101,14 +101,14 @@ check_stamp() now=$(date --date=$(date --iso-8601) +%s 2>/dev/null) if [ "$?" != "0" ]; then # As above, due to some timezones returning 'invalid date' for midnight - # on certain dates (eg America/Sao_Paulo), if date returns with error + # on certain dates (e.g. America/Sao_Paulo), if date returns with error # return 0. return 0 fi delta=$(($now-$stamp)) - # intervall is in days, convert to sec. + # interval is in days, convert to sec. interval=$(($interval*60*60*24)) debug_echo "check_stamp: interval=$interval, now=$now, stamp=$stamp, delta=$delta (sec)" @@ -338,7 +338,7 @@ if test -r /var/lib/apt/extended_states; then fi fi -# check apt-config exstance +# check apt-config existence if ! which apt-config >/dev/null ; then exit 0 fi diff --git a/debian/changelog b/debian/changelog index 1239cfcef..af0a50c57 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,38 +1,143 @@ -apt (0.9.15.4ubuntu4) trusty; urgency=low +apt (1.0.1ubuntu2) trusty; urgency=low + + * fix symlink of etc/apt/apt.conf.d/01autoremove when runnning in + the auto-pkg-test environment + + -- Michael Vogt <michael.vogt@ubuntu.com> Thu, 10 Apr 2014 14:24:25 +0200 + +apt (1.0.1ubuntu1) trusty; urgency=low + + * merge with the debian/sid 1.0.1 version + (LP: #1302033) + + -- Michael Vogt <michael.vogt@ubuntu.com> Tue, 01 Apr 2014 17:48:58 +0200 + +apt (1.0.1) unstable; urgency=medium - Cherry pick fixes from the apt 1.0 branch: - [ Michael Vogt ] - * add sun-java{5,6}-jdk to breaks/replaces as that provided a "apt" - binary as well + * Fix crash in "apt list" when a sources.list file is unreable + (Closes: 743413) + * make apt search case-insensitive by default + * Fix possible race when stunnel/aptwebserver create their PID files + in the tests + * Fix insecure file permissions when using FileFd with OpenMode::Atomic + (LP: #1304657) + + [ Julian Andres Klode ] + * Version the Breaks/Replaces for sun-java{5,6}-jdk (LP: #1302736) + (Closes: #743616) + * Add versioned openjdk-6-jdk breaks + + [ Josef Vitu ] + * apt: Minor typo in 'apt' man page (closes: #743657) + + -- Michael Vogt <mvo@debian.org> Thu, 10 Apr 2014 09:48:56 +0200 + +apt (1.0) unstable; urgency=low + + The "Happy birthday and 10000b years in the making" release + + [ Julian Andres Klode ] + * apt-inst: Do not try to create a substring of an empty string in + error reporting (LP: #1288718) + + [ Beatrice Torracca ] + * Italian manpages translation update (Closes: 741867) + + [ Kenshi Muto ] + * Japanese programs translation update (Closes: 742255) [ David Kalnischkies ] + * continue reading in xz even if it outputs nothing + * only consider versioned kernel packages in autoremove (Closes: 741962) + * correct some reported typos in /etc/cron.daily/apt (Closes: 702016) * ensure proper teardown in dpkg error cases (Closes: 738969) - * use the pretty fullname of a pkg as download desciption - * cmdline parsing: apt-config is not apt-cdrom - * do not configure already unpacked packages needlessly (Closes: 740843) - LP: #1286161 + * update symbols file to include new symbols from 0.9.16 + * do IsInstallOk call in MarkInstall unconditionally + * discard candidates via IsInstallOk to allow override (Closes: 740750) + + [ Michael Vogt ] + * install apt binary + * add apt.8.xml manpage + * make fancy-progress fg/bg color configurable via something like + Dpkg::Progress-Fancy::Progress-{bg,fg}="%1b[30m" + (thanks to Tim Wasser for the suggestion) + * Add progressbar to "Dpkg::Progress-Fancy" + * fix documentation for APT::Periodic::MaxSize "0" (closes: #740551) + * Use mkstemp() in apt-extracttemplaes (closes: #741627) + * Add new Debug::RunScripts debug option + * do not crash on SIGPIPE in pkgDPkgPM::RunScriptsWithPkgs() + * enable DPkg::Progress-Fancy by default when "apt" is used + * refresh po/pot and unfuzzy apt-extracttemplate manpage change + * remove no longer needed apt.7 page + * install "apt" binary by default + * add sun-java{5,6}-jdk to breaks/replaces as they provided a + "apt" binary as well + + [ Trần Ngá»c Quân ] + * l10n: vi.po (623t): Update Vietnamese translation + * debian: Add default compress option to xz + + -- Michael Vogt <mvo@debian.org> Tue, 01 Apr 2014 15:48:46 +0200 + +apt (0.9.16.1) unstable; urgency=medium + + [ Chris Leick ] + * Updated German doc translation [ Julian Andres Klode ] - * Promote xz-utils from apt Suggests to libapt-pkg Depends + * Fix handling of autoclosing for compressed files (Closes: #741685) - -- Michael Vogt <mvo@ubuntu.com> Fri, 04 Apr 2014 09:08:51 +0200 + -- Julian Andres Klode <jak@debian.org> Sat, 15 Mar 2014 18:05:25 +0100 -apt (0.9.15.4ubuntu3) trusty; urgency=low +apt (0.9.16) unstable; urgency=medium - * cherry pick git commit b68ce88357daf36 to fix crash in - apt-extracttemplates (LP: #1288718) + [ Michael Vogt ] + * add hashsum support in apt-helper download-file and + add more tests - -- Michael Vogt <michael.vogt@ubuntu.com> Wed, 02 Apr 2014 15:00:11 +0200 + [ Trần Ngá»c Quân ] + * l10n: vi.po (624t): Update Vietnamese translation -apt (0.9.15.4ubuntu2) trusty; urgency=medium + [ David Kalnischkies ] + * propagate a negative score point along breaks/conflicts + * check version before adding scores in resolver + * autogenerate makefile for vendor system + * add default and override handling for Cnf::FindVector + * support DEB_BUILD_PROFILES and -P for build profiles + * do not configure already unpacked packages needlessly (Closes: 740843) + * if mountpoint has a ".disk" directory it is mounted + * no error for non-existing mountpoints in MountCdrom + * apt-cdrom ident shouldn't be interactive (Closes: 740673) + * support very long mtab entries in mountpoint discovery + * msgstr with elipses need three dots + * cmdline parsing: apt-config is not apt-cdrom + * use a configurable list of versioned kernel packages + * support kfreebsd and hurd in the kernel hook + * add ".*-{kernel,modules}-$KERVER" matcher for hook + * ensure that a dot is a dot in the hook + * use liblzma-dev to provide xz/lzma support + * use the pretty fullname of a pkg as download desciption + + [ Johannes Schauer ] + * implement BuildProfileSpec support as dpkg has in 1.17.2 (Closes: 661537) + + [ Wojciech Górski ] + * fix polish --install-suggests text in apt-get manpage (Closes: 741056) + + -- Michael Vogt <mvo@debian.org> Fri, 14 Mar 2014 09:45:05 +0100 - * debian/tests/control: Add missing build-essential, fakeroot, and wget test - dependencies. - * debian/tests/run-tests: Pin locale to C to avoid test failures in other - locales. +apt (0.9.15.5) unstable; urgency=medium + + [ Michael Vogt ] + * vendor/tanglu/makefile: add missing clean/sources.list + * run the acquire tests with the new apt-helper binary, this + fixes the autopkgtest failures + + [ Martin Pitt ] + * Fix autopkgtest missing dependencies and locale (closes: #739988) - -- Martin Pitt <martin.pitt@ubuntu.com> Mon, 24 Feb 2014 18:26:13 +0100 + -- Michael Vogt <mvo@debian.org> Fri, 28 Feb 2014 08:44:25 +0100 apt (0.9.15.4ubuntu1) trusty; urgency=low diff --git a/debian/control b/debian/control index 59c38783e..c5604bc0c 100644 --- a/debian/control +++ b/debian/control @@ -8,8 +8,9 @@ Uploaders: Michael Vogt <mvo@debian.org>, Christian Perrier <bubulle@debian.org Standards-Version: 3.9.5 Build-Depends: dpkg-dev (>= 1.15.8), debhelper (>= 8.1.3~), libdb-dev, gettext (>= 0.12), libcurl4-gnutls-dev (>= 7.19.4~), - zlib1g-dev, libbz2-dev, xsltproc, docbook-xsl, docbook-xml, - po4a (>= 0.34-2), autotools-dev, autoconf, automake + zlib1g-dev, libbz2-dev, liblzma-dev, + xsltproc, docbook-xsl, docbook-xml, po4a (>= 0.34-2), + autotools-dev, autoconf, automake Build-Depends-Indep: doxygen, debiandoc-sgml, graphviz Build-Conflicts: autoconf2.13, automake1.4 Vcs-Git: git://anonscm.debian.org/apt/apt.git @@ -19,10 +20,10 @@ XS-Testsuite: autopkgtest Package: apt Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, ${apt:keyring}, gnupg -Replaces: manpages-pl (<< 20060617-3~), manpages-it (<< 2.80-4~), sun-java6-jdk, sun-java5-jdk -Breaks: manpages-pl (<< 20060617-3~), manpages-it (<< 2.80-4~), sun-java6-jdk, sun-java5-jdk +Replaces: manpages-pl (<< 20060617-3~), manpages-it (<< 2.80-4~), sun-java6-jdk (>> 0), sun-java5-jdk (>> 0), openjdk-6-jdk (<< 6b24-1.11-0ubuntu1~) +Breaks: manpages-pl (<< 20060617-3~), manpages-it (<< 2.80-4~), sun-java6-jdk (>> 0), sun-java5-jdk (>> 0), openjdk-6-jdk (<< 6b24-1.11-0ubuntu1~) Conflicts: python-apt (<< 0.7.93.2~) -Suggests: aptitude | synaptic | wajig, dpkg-dev, apt-doc, python-apt +Suggests: aptitude | synaptic | wajig, dpkg-dev (>= 1.17.2), apt-doc, python-apt Description: commandline package manager This package provides commandline tools for searching and managing as well as querying information about packages @@ -42,7 +43,7 @@ Package: libapt-pkg4.12 Architecture: any Multi-Arch: same Pre-Depends: ${misc:Pre-Depends} -Depends: ${shlibs:Depends}, ${misc:Depends}, xz-utils +Depends: ${shlibs:Depends}, ${misc:Depends} Breaks: apt (<< 0.9.4~), libapt-inst1.5 (<< 0.9.9~) Section: libs Description: package management runtime library @@ -108,7 +109,6 @@ Description: documentation for APT development Package: apt-utils Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -Suggests: xz-utils Description: package management related utility programs This package contains some less used commandline utilities related to package management with APT. diff --git a/debian/libapt-pkg4.12.symbols b/debian/libapt-pkg4.12.symbols index 17b9f69fa..5d7b21f10 100644 --- a/debian/libapt-pkg4.12.symbols +++ b/debian/libapt-pkg4.12.symbols @@ -184,9 +184,7 @@ libapt-pkg.so.4.12 libapt-pkg4.12 #MINVER# (c++)"pkgRecords::Parser::~Parser()@Base" 0.8.0 (c++)"pkgRecords::pkgRecords(pkgCache&)@Base" 0.8.0 (c++)"pkgRecords::~pkgRecords()@Base" 0.8.0 - (c++)"pkgTagFile::Fill()@Base" 0.8.0 (c++)"pkgTagFile::Step(pkgTagSection&)@Base" 0.8.0 - (c++)"pkgTagFile::Resize()@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 @@ -517,11 +515,8 @@ libapt-pkg.so.4.12 libapt-pkg4.12 #MINVER# (c++)"pkgCacheGenerator::SelectFile(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > 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::AllocateInMap(unsigned long const&)@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::WriteStringInMap(char const*)@Base" 0.8.0 - (c++)"pkgCacheGenerator::WriteStringInMap(char const*, unsigned long const&)@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 @@ -1126,24 +1121,24 @@ libapt-pkg.so.4.12 libapt-pkg4.12 #MINVER# (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++|optional=private)"GlobalError::Insert(GlobalError::MsgType, char const*, char*&, unsigned int&)@Base" 0.8.11.4 - (arch=armel armhf|c++|optional=private)"GlobalError::Insert(GlobalError::MsgType, char const*, std::__va_list&, unsigned int&)@Base" 0.8.11.4 - (arch=alpha|c++|optional=private)"GlobalError::Insert(GlobalError::MsgType, char const*, __va_list_tag&, unsigned long&)@Base" 0.8.11.4 - (arch=powerpc powerpcspe x32|c++|optional=private)"GlobalError::Insert(GlobalError::MsgType, char const*, __va_list_tag (&) [1], unsigned int&)@Base" 0.8.11.4 - (arch=amd64 kfreebsd-amd64 s390 s390x|c++|optional=private)"GlobalError::Insert(GlobalError::MsgType, char const*, __va_list_tag (&) [1], unsigned long&)@Base" 0.8.11.4 - (arch=hppa mips mipsel sparc|c++|optional=private)"GlobalError::Insert(GlobalError::MsgType, char const*, void*&, unsigned int&)@Base" 0.8.11.4 - (arch=ia64 sparc64|c++|optional=private)"GlobalError::Insert(GlobalError::MsgType, char const*, void*&, unsigned long&)@Base" 0.8.11.4 - (arch=sh4|c++|optional=private)"GlobalError::Insert(GlobalError::MsgType, char const*, __builtin_va_list&, unsigned int&)@Base" 0.8.11.4 - (arch=ppc64|c++|optional=private)"GlobalError::Insert(GlobalError::MsgType, char const*, char*&, unsigned long&)@Base" 0.8.11.4 - (arch=i386 hurd-i386 kfreebsd-i386|c++|optional=private)"GlobalError::InsertErrno(GlobalError::MsgType, char const*, char const*, char*&, int, unsigned int&)@Base" 0.8.11.4 - (arch=armel armhf|c++|optional=private)"GlobalError::InsertErrno(GlobalError::MsgType, char const*, char const*, std::__va_list&, int, unsigned int&)@Base" 0.8.11.4 - (arch=alpha|c++|optional=private)"GlobalError::InsertErrno(GlobalError::MsgType, char const*, char const*, __va_list_tag&, int, unsigned long&)@Base" 0.8.11.4 - (arch=powerpc powerpcspe x32|c++|optional=private)"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++|optional=private)"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++|optional=private)"GlobalError::InsertErrno(GlobalError::MsgType, char const*, char const*, void*&, int, unsigned int&)@Base" 0.8.11.4 - (arch=ia64 sparc64|c++|optional=private)"GlobalError::InsertErrno(GlobalError::MsgType, char const*, char const*, void*&, int, unsigned long&)@Base" 0.8.11.4 1 - (arch=sh4|c++|optional=private)"GlobalError::InsertErrno(GlobalError::MsgType, char const*, char const*, __builtin_va_list&, int, unsigned int&)@Base" 0.8.11.4 - (arch=ppc64|c++|optional=private)"GlobalError::InsertErrno(GlobalError::MsgType, char const*, char const*, char*&, int, unsigned long&)@Base" 0.8.11.4 + (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 @@ -1196,8 +1191,7 @@ libapt-pkg.so.4.12 libapt-pkg4.12 #MINVER# (c++)"APT::Configuration::getCompressorExtensions()@Base" 0.8.12 (c++)"APT::Configuration::setDefaultConfigurationForCompressors()@Base" 0.8.12 (c++)"pkgAcqMetaClearSig::Custom600Headers()@Base" 0.8.13 - (c++|optional=private)"debListParser::NewProvidesAllArch(pkgCache::VerIterator&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 0.8.13.2 - (c++|optional=private)"PrintMode(char)@Base" 0.8.13.2 + (c++)"debListParser::NewProvidesAllArch(pkgCache::VerIterator&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > 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 @@ -1238,18 +1232,14 @@ libapt-pkg.so.4.12 libapt-pkg4.12 #MINVER# (c++)"EDSP::ReadRequest(int, std::list<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > >&, std::list<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > >&, bool&, bool&, bool&)@Base" 0.8.16~exp2 (c++)"EDSP::ApplyRequest(std::list<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&, std::list<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&, pkgDepCache&)@Base" 0.8.16~exp2 (c++)"EDSP::ReadResponse(int, pkgDepCache&, OpProgress*)@Base" 0.8.16~exp2 - (c++)"EDSP::StringToBool(char const*, bool)@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::WriteScenarioVersion(pkgDepCache&, _IO_FILE*, pkgCache::PkgIterator const&, pkgCache::VerIterator const&)@Base" 0.8.16~exp2 - (c++)"EDSP::WriteScenarioDependency(pkgDepCache&, _IO_FILE*, pkgCache::PkgIterator const&, pkgCache::VerIterator const&)@Base" 0.8.16~exp2 (c++)"EDSP::DepMap@Base" 0.8.16~exp2 (c++)"EDSP::PrioMap@Base" 0.8.16~exp2 - (c++)"EDSP::ReadLine(int, std::basic_string<char, std::char_traits<char>, std::allocator<char> >&)@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 @@ -1386,7 +1376,6 @@ libapt-pkg.so.4.12 libapt-pkg4.12 #MINVER# (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 - (c++|optional=private)"FileFd::OpenInternDescriptor(unsigned int, APT::Configuration::Compressor const&)@Base" 0.8.16~exp9 ### CacheSet rework: making them real containers breaks bigtime the API (for the CacheSetHelper) (c++)"APT::PackageContainer<std::set<pkgCache::PkgIterator, std::less<pkgCache::PkgIterator>, std::allocator<pkgCache::PkgIterator> > >::const_iterator::getPkg() const@Base" 0.8.16~exp9 (c++)"APT::PackageContainer<std::set<pkgCache::PkgIterator, std::less<pkgCache::PkgIterator>, std::allocator<pkgCache::PkgIterator> > >::getConstructor() const@Base" 0.8.16~exp9 @@ -1426,7 +1415,6 @@ libapt-pkg.so.4.12 libapt-pkg4.12 #MINVER# (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<APT::VersionContainerInterface::Modifier, std::allocator<APT::VersionContainerInterface::Modifier> > const&, APT::CacheSetHelper&)@Base" 0.8.16~exp9 (c++)"EDSP::WriteLimitedScenario(pkgDepCache&, _IO_FILE*, APT::PackageContainer<std::set<pkgCache::PkgIterator, std::less<pkgCache::PkgIterator>, std::allocator<pkgCache::PkgIterator> > > const&, OpProgress*)@Base" 0.8.16~exp9 - (c++)"EDSP::WriteScenarioLimitedDependency(pkgDepCache&, _IO_FILE*, pkgCache::PkgIterator const&, pkgCache::VerIterator const&, APT::PackageContainer<std::set<pkgCache::PkgIterator, std::less<pkgCache::PkgIterator>, std::allocator<pkgCache::PkgIterator> > > const&)@Base" 0.8.16~exp9 (c++)"typeinfo for APT::PackageContainer<std::set<pkgCache::PkgIterator, std::less<pkgCache::PkgIterator>, std::allocator<pkgCache::PkgIterator> > >::const_iterator@Base" 0.8.16~exp9 (c++)"typeinfo for APT::PackageContainer<std::set<pkgCache::PkgIterator, std::less<pkgCache::PkgIterator>, std::allocator<pkgCache::PkgIterator> > >@Base" 0.8.16~exp9 (c++)"typeinfo for APT::PackageContainer<std::list<pkgCache::PkgIterator, std::allocator<pkgCache::PkgIterator> > >::const_iterator@Base" 0.8.16~exp9 @@ -1538,11 +1526,6 @@ libapt-pkg.so.4.12 libapt-pkg4.12 #MINVER# (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++|optional=private)"pkgCacheGenerator::MergeListGroup(pkgCacheGenerator::ListParser&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 0.8.16~exp7 - (c++|optional=private)"pkgCacheGenerator::MergeListPackage(pkgCacheGenerator::ListParser&, pkgCache::PkgIterator&)@Base" 0.8.16~exp7 - (c++|optional=private)"pkgCacheGenerator::MergeListVersion(pkgCacheGenerator::ListParser&, pkgCache::PkgIterator&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, pkgCache::VerIterator*&)@Base" 0.8.16~exp7 - (c++|optional=private)"pkgCacheGenerator::AddImplicitDepends(pkgCache::GrpIterator&, pkgCache::PkgIterator&, pkgCache::VerIterator&)@Base" 0.8.16~exp7 - (c++|optional=private)"pkgCacheGenerator::AddImplicitDepends(pkgCache::VerIterator&, pkgCache::PkgIterator&)@Base" 0.8.16~exp7 (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<char, std::char_traits<char>, std::allocator<char> > const&, FileFd*, std::vector<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > >*, FileFd*)@Base" 0.9.7.9~exp2 @@ -1551,7 +1534,6 @@ libapt-pkg.so.4.12 libapt-pkg4.12 #MINVER# (c++)"SigVerify::RunGPGV(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, int const&)@Base" 0.9.7.9~exp2 (c++)"Configuration::Dump(std::basic_ostream<char, std::char_traits<char> >&, char const*, char const*, bool)@Base" 0.9.3 (c++)"AcquireUpdate(pkgAcquire&, int, bool, bool)@Base" 0.9.3 - (c++|optional=private)"pkgAcqMethod::Dequeue()@Base" 0.9.4 (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<char, std::char_traits<char>, std::allocator<char> >, APT::CacheSetHelper&)@Base" 0.9.7 @@ -1566,8 +1548,6 @@ libapt-pkg.so.4.12 libapt-pkg4.12 #MINVER# (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<char, std::char_traits<char>, std::allocator<char> > const&, unsigned int, unsigned long, unsigned long)@Base" 0.9.8 - (c++)"FileFd::FileFdErrno(char const*, char const*, ...)@Base" 0.9.9 - (c++)"FileFd::FileFdError(char const*, ...)@Base" 0.9.9 (c++)"operator<<(std::basic_ostream<char, std::char_traits<char> >&, 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 @@ -1580,7 +1560,6 @@ libapt-pkg.so.4.12 libapt-pkg4.12 #MINVER# (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<char, std::char_traits<char>, std::allocator<char> >, APT::CacheSetHelper&)@Base" 0.9.11 - (c++|optional=private)"pkgTagFile::Resize(unsigned long long)@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<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, unsigned int)@Base" 0.9.11.3 @@ -1592,7 +1571,14 @@ libapt-pkg.so.4.12 libapt-pkg4.12 #MINVER# (c++)"HashString::GetHashForFile(std::basic_string<char, std::char_traits<char>, std::allocator<char> >) const@Base" 0.9.13.1 (c++)"indexRecords::GetSuite() const@Base" 0.9.13.2 (c++)"GetTempDir()@Base" 0.9.14.2 - (c++|optional=private)"pkgCdrom::MountAndIdentCDROM(Configuration&, std::basic_string<char, std::char_traits<char>, std::allocator<char> >&, std::basic_string<char, std::char_traits<char>, std::allocator<char> >&, pkgCdromStatus*)@Base" 0.9.15.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<char, std::char_traits<char>, std::allocator<char> > const&) const@Base" 0.9.16 + (c++)"debListParser::ParseDepends(char const*, char const*, std::basic_string<char, std::char_traits<char>, std::allocator<char> >&, std::basic_string<char, std::char_traits<char>, std::allocator<char> >&, unsigned int&)@Base" 0.9.16 + (c++)"debListParser::ParseDepends(char const*, char const*, std::basic_string<char, std::char_traits<char>, std::allocator<char> >&, std::basic_string<char, std::char_traits<char>, std::allocator<char> >&, unsigned int&, bool const&)@Base" 0.9.16 + (c++)"debListParser::ParseDepends(char const*, char const*, std::basic_string<char, std::char_traits<char>, std::allocator<char> >&, std::basic_string<char, std::char_traits<char>, std::allocator<char> >&, 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<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> >)@Base" 0.9.16 ### demangle strangeness - buildd report it as MISSING and as new… (c++)"pkgAcqMetaSig::pkgAcqMetaSig(pkgAcquire*, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::vector<IndexTarget*, std::allocator<IndexTarget*> > const*, indexRecords*)@Base" 0.8.0 ### gcc-4.6 artefacts diff --git a/debian/rules b/debian/rules index e817d4884..338890445 100755 --- a/debian/rules +++ b/debian/rules @@ -209,6 +209,9 @@ apt: build-binary build-manpages debian/apt.install #mv debian/$@/usr/bin/apt-report-mirror-failure \ # debian/$@/usr/lib/apt/apt-report-mirror-failure \ + # move the apt-helper in place + mv debian/$@/usr/bin/apt-helper debian/$@/usr/lib/apt/apt-helper + dh_bugfiles -p$@ dh_lintian -p$@ dh_installexamples -p$@ $(BLD)/docs/examples/* diff --git a/debian/source/options b/debian/source/options new file mode 100644 index 000000000..d14f4af37 --- /dev/null +++ b/debian/source/options @@ -0,0 +1,2 @@ +# Use xz compression by default, we save disk space +compression = "xz" diff --git a/debian/tests/run-tests b/debian/tests/run-tests index 6dc4eaa93..9f90caa8f 100644 --- a/debian/tests/run-tests +++ b/debian/tests/run-tests @@ -14,5 +14,7 @@ make -C test/interactive-helper/ # run against the installed apt APT_INTEGRATION_TESTS_WEBSERVER_BIN_DIR=$(pwd)/build/bin \ APT_INTEGRATION_TESTS_METHODS_DIR=/usr/lib/apt/methods \ +APT_INTEGRATION_TESTS_LIBEXEC_DIR=/usr/lib/apt/ \ APT_INTEGRATION_TESTS_BUILD_DIR=/usr/bin \ +APT_INTEGRATION_TESTS_LIBRARY_PATH=/dev/null/does/not/exist \ ./test/integration/run-tests diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in index 306bab1dc..ffd7c88b9 100644 --- a/doc/Doxyfile.in +++ b/doc/Doxyfile.in @@ -40,7 +40,7 @@ PROJECT_NUMBER = @PACKAGE_VERSION@ # for a project that appears at the top of each page and should give viewer # a quick idea about the purpose of the project. Keep the description short. -PROJECT_BRIEF = +PROJECT_BRIEF = "commandline package manager" # With the PROJECT_LOGO tag one can specify an logo or icon that is # included in the documentation. The maximum height of the logo should not @@ -197,7 +197,7 @@ TAB_SIZE = 8 # will result in a user-defined paragraph with heading "Side Effects:". # You can put \n's in the value part of an alias to insert newlines. -ALIASES = +ALIASES = "TODO=\todo" # This tag can be used to specify a number of word-keyword mappings (TCL only). # A mapping has the form "name=value". For example adding @@ -601,7 +601,7 @@ CITE_BIB_FILES = # The QUIET tag can be used to turn on/off the messages that are generated # by doxygen. Possible values are YES and NO. If left blank NO is used. -QUIET = NO +QUIET = YES # The WARNINGS tag can be used to turn on/off the warning messages that are # generated by doxygen. Possible values are YES and NO. If left blank @@ -748,7 +748,7 @@ IMAGE_PATH = # code is scanned, but not when the output code is generated. If lines are added # or removed, the anchors will not be placed correctly. -INPUT_FILTER = +INPUT_FILTER = "sed -e 's#//[ ]*FIXME:\?#/// \\todo#'" # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern # basis. @@ -1287,7 +1287,7 @@ EXTRA_SEARCH_MAPPINGS = # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output. -GENERATE_LATEX = YES +GENERATE_LATEX = NO # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be diff --git a/doc/apt-extracttemplates.1.xml b/doc/apt-extracttemplates.1.xml index d27e05075..9f9888069 100644 --- a/doc/apt-extracttemplates.1.xml +++ b/doc/apt-extracttemplates.1.xml @@ -47,8 +47,8 @@ <para>template-file and config-script are written to the temporary directory specified by the <option>-t</option> or <option>--tempdir</option> (<literal>APT::ExtractTemplates::TempDir</literal>) directory, - with filenames of the form <filename>package.template.XXXX</filename> and - <filename>package.config.XXXX</filename></para> + with filenames of the form <filename>package.template.XXXXXX</filename> and + <filename>package.config.XXXXXX</filename></para> </refsect1> <refsect1><title>options</title> diff --git a/doc/apt-get.8.xml b/doc/apt-get.8.xml index 595ea875d..1ed08904e 100644 --- a/doc/apt-get.8.xml +++ b/doc/apt-get.8.xml @@ -371,7 +371,18 @@ by <command>apt-get source --compile</command> and how cross-builddependencies are satisfied. By default is it not set which means that the host architecture is the same as the build architecture (which is defined by <literal>APT::Architecture</literal>). - Configuration Item: <literal>APT::Get::Host-Architecture</literal> + Configuration Item: <literal>APT::Get::Host-Architecture</literal>. + </para></listitem> + </varlistentry> + + <varlistentry><term><option>-P</option></term> + <term><option>--build-profiles</option></term> + <listitem><para>This option controls the activated build profiles for which + a source package is built by <command>apt-get source --compile</command> and + how build dependencies are satisfied. By default no build profile is active. + More than one build profile can be activated at a time by concatenating them + with a comma. + Configuration Item: <literal>APT::Build-Profiles</literal>. </para></listitem> </varlistentry> diff --git a/doc/apt-verbatim.ent b/doc/apt-verbatim.ent index b9e6a881a..37d2cf8c8 100644 --- a/doc/apt-verbatim.ent +++ b/doc/apt-verbatim.ent @@ -39,6 +39,12 @@ </citerefentry>" > +<!ENTITY apt "<citerefentry> + <refentrytitle><command>apt</command></refentrytitle> + <manvolnum>8</manvolnum> + </citerefentry>" +> + <!ENTITY apt-preferences "<citerefentry> <refentrytitle><command>apt_preferences</command></refentrytitle> <manvolnum>5</manvolnum> @@ -219,14 +225,13 @@ "> <!-- this will be updated by 'prepare-release' --> -<!ENTITY apt-product-version "0.9.15.4"> +<!ENTITY apt-product-version "1.0.1"> <!-- (Code)names for various things used all over the place --> <!ENTITY oldstable-codename "squeeze"> <!ENTITY stable-codename "wheezy"> <!ENTITY testing-codename "jessie"> <!ENTITY stable-version "7"> -<!ENTITY tanglu-codename "bartholomea"> <!ENTITY ubuntu-codename "trusty"> <!-- good and bad just refers to matching and not matching a pattern… @@ -248,6 +253,26 @@ <!ENTITY synopsis-param-filename "<filename><replaceable>&synopsis-filename;</replaceable></filename>"> <!ENTITY synopsis-help "<arg choice='plain'><group choice='req'><arg choice='plain'>-v</arg><arg choice='plain'>--version</arg></group></arg> <arg choice='plain'><group choice='req'><arg choice='plain'>-h</arg><arg choice='plain'>--help</arg></group></arg>"> +<!ENTITY synopsis-command-apt "<refsynopsisdiv><cmdsynopsis> + <command>apt</command> + <arg><option>-h</option></arg> + &synopsis-arg-option; + &synopsis-arg-config; + &synopsis-arg-target-release; + &synopsis-arg-architecture; + <group choice='req'> + <arg choice='plain'>list</arg> + <arg choice='plain'>search</arg> + <arg choice='plain'>show</arg> + <arg choice='plain'>update</arg> + <arg choice='plain'>install &synopsis-arg-pkgver;</arg> + <arg choice='plain'>remove &synopsis-arg-pkg;</arg> + <arg choice='plain'>upgrade</arg> + <arg choice='plain'>full-upgrade</arg> + <arg choice='plain'>edit-sources</arg> + &synopsis-help; + </group> +</cmdsynopsis></refsynopsisdiv>"> <!ENTITY synopsis-command-apt-get "<refsynopsisdiv><cmdsynopsis> <command>apt-get</command> <arg><option>-asqdyfmubV</option></arg> diff --git a/doc/apt.8 b/doc/apt.8 deleted file mode 100644 index d84a3b4dd..000000000 --- a/doc/apt.8 +++ /dev/null @@ -1,52 +0,0 @@ -.\" This manpage is copyright (C) 1998 Branden Robinson <branden@debian.org>. -.\" -.\" This is free software; you may redistribute it and/or modify -.\" it under the terms of the GNU General Public License as -.\" published by the Free Software Foundation; either version 2, -.\" or (at your option) any later version. -.\" -.\" This is distributed in the hope that it will be useful, but -.\" WITHOUT ANY WARRANTY; without even the implied warranty of -.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -.\" GNU General Public License for more details. -.\" -.\" You should have received a copy of the GNU General Public -.\" License along with APT; if not, write to the Free Software -.\" Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA -.\" 02111-1307 USA -.TH apt 8 "16 June 1998" "Debian" -.SH NAME -apt \- Advanced Package Tool -.SH SYNOPSIS -.B apt -.SH DESCRIPTION -APT is a management system for software packages. For normal day to day -package management there are several frontends available, such as -.BR aptitude (8) -for the command line or -.BR synaptic (8) -for the X Window System. Some options are only implemented in -.BR apt-get (8) -though. -.SH SEE ALSO -.BR apt-cache (8), -.BR apt-get (8), -.BR apt.conf (5), -.BR sources.list (5), -.BR apt_preferences (5), -.BR apt-secure (8) -.SH DIAGNOSTICS -apt returns zero on normal operation, decimal 100 on error. -.SH BUGS -This manpage isn't even started. -.PP -See <http://bugs.debian.org/apt>. If you wish to report a -bug in -.BR apt , -please see -.I /usr/share/doc/debian/bug-reporting.txt -or the -.BR reportbug (1) -command. -.SH AUTHOR -apt was written by the APT team <apt@packages.debian.org>. diff --git a/doc/apt.8.xml b/doc/apt.8.xml new file mode 100644 index 000000000..85e7276bf --- /dev/null +++ b/doc/apt.8.xml @@ -0,0 +1,184 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" + "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ + +<!ENTITY % aptent SYSTEM "apt.ent"> +%aptent; + +<!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> +%aptverbatiment; + +]> + +<refentry> + + <refentryinfo> + &apt-author.team; + &apt-email; + &apt-product; + <!-- The last update date --> + <date>2013-11-25T00:00:00Z</date> + </refentryinfo> + + <refmeta> + <refentrytitle>apt</refentrytitle> + <manvolnum>8</manvolnum> + <refmiscinfo class="manual">APT</refmiscinfo> + </refmeta> + + <!-- Man page title --> + <refnamediv> + <refname>apt</refname> + <refpurpose>command-line interface</refpurpose> + </refnamediv> + + &synopsis-command-apt; + + <refsect1><title>Description</title> + <para><command>apt</command> (Advanced Package Tool) is the + command-line tool for handling packages. It provides a commandline + interface for the package management of the system. + + See also &apt-get; and &apt-cache; for more low-level command options. + </para> + + <variablelist> + <varlistentry><term><option>list</option></term> + <listitem><para><literal>list</literal> is used to + display a list of packages. It supports shell pattern for matching + package names and the following options: + <option>--installed</option>, + <option>--upgradable</option>, + <option>--all-versions</option> + are supported. + </para></listitem> + </varlistentry> + + <varlistentry><term><option>search</option></term> + <listitem><para><literal>search</literal> searches for the given + term(s) and display matching packages. + </para></listitem> + </varlistentry> + + <varlistentry><term><option>show</option></term> + <listitem><para><literal>show</literal> shows the package information + for the given package(s). + </para></listitem> + </varlistentry> + + <varlistentry><term><option>install</option></term> + <listitem> + <para><literal>install</literal> is followed by one or more + package names desired for installation or upgrading. + </para> + + <para>A specific version of a package can be selected for installation by + following the package name with an equals and the version of the package + to select. This will cause that version to be located and selected for + install. Alternatively a specific distribution can be selected by + following the package name with a slash and the version of the + distribution or the Archive name (stable, testing, unstable).</para> + </listitem> + </varlistentry> + + <varlistentry><term><option>remove</option></term> + <listitem><para><literal>remove</literal> is identical to <literal>install</literal> except that packages are + removed instead of installed. Note that removing a package leaves its + configuration files on the system. If a plus sign is appended to the package + name (with no intervening space), the identified package will be + installed instead of removed.</para></listitem> + </varlistentry> + + <varlistentry><term><option>edit-sources</option></term> + <listitem><para><literal>edit-sources</literal> lets you edit + your sources.list file and provides basic sanity checks. + </para></listitem> + </varlistentry> + + <varlistentry><term><option>update</option></term> + <listitem><para><literal>update</literal> is used to + resynchronize the package index files from their sources. + </para></listitem> + </varlistentry> + + <varlistentry><term><option>upgrade</option></term> + <listitem><para><literal>upgrade</literal> is used to install the + newest versions of all packages currently installed on the system + from the sources enumerated in + <filename>/etc/apt/sources.list</filename>. New package will be + installed, but existing package will never removed. + </para></listitem> + </varlistentry> + + <varlistentry><term><option>full-upgrade</option></term> + <listitem><para><literal>full-upgrade</literal> performs the + function of upgrade but may also remove installed packages + if that is required in order to resolve a package conflict. + </para></listitem> + </varlistentry> + + + </variablelist> + </refsect1> + + <refsect1><title>options</title> + &apt-cmdblurb; + + <variablelist> + + &apt-commonoptions; + + </variablelist> + </refsect1> + + <refsect1><title>Script usage</title> + <para> + The &apt; commandline is designed as a end-user tool and it may + change the output between versions. While it tries to not break + backward compatibility there is no guarantee for it either. + All features of &apt; are available in &apt-cache; and &apt-get; + via APT options. Please prefer using these commands in your scripts. + </para> + </refsect1> + + <refsect1><title>Differences to &apt-get;</title> + <para>The <command>apt</command> command is meant to be pleasant for + end users and does not need to be backward compatible like + &apt-get;. Therefore some options are different: + + <itemizedlist> + <listitem> + <para>The option <literal>DPkgPM::Progress-Fancy</literal> is enabled. + </para> + </listitem> + <listitem> + <para>The option <literal>APT::Color</literal> is enabled. + </para> + </listitem> + <listitem> + <para>A new <literal>list</literal> command is available + similar to <literal>dpkg --list</literal>. + </para> + </listitem> + <listitem> + <para>The option <literal>upgrade</literal> has + <literal>--with-new-pkgs</literal> enabled by default. + </para> + </listitem> + + </itemizedlist> + </para> + + </refsect1> + + <refsect1><title>See Also</title> + <para>&apt-get;, &apt-cache;, &sources-list;, + &apt-conf;, &apt-config;, + The APT User's guide in &guidesdir;, &apt-preferences;, the APT Howto.</para> + </refsect1> + + <refsect1><title>Diagnostics</title> + <para><command>apt</command> returns zero on normal operation, decimal 100 on error.</para> + </refsect1> + &manbugs; +</refentry> diff --git a/doc/apt.conf.5.xml b/doc/apt.conf.5.xml index bfc43ba29..fcbf20dac 100644 --- a/doc/apt.conf.5.xml +++ b/doc/apt.conf.5.xml @@ -177,6 +177,15 @@ DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt";}; </para></listitem> </varlistentry> + <varlistentry><term><option>Build-Profiles</option></term> + <listitem><para> + List of all build profiles enabled for build-dependency resolution, + without the "<literal>profile.</literal>" namespace prefix. + By default this list is empty. The <envar>DEB_BUILD_PROFILES</envar> + as used by &dpkg-buildpackage; overrides the list notation. + </para></listitem> + </varlistentry> + <varlistentry><term><option>Default-Release</option></term> <listitem><para>Default release to install packages from if more than one version is available. Contains release name, codename or release version. Examples: 'stable', 'testing', @@ -1175,6 +1184,18 @@ DPkg::TriggersPending "true";</literallayout></para> </listitem> </varlistentry> + <varlistentry> + <term><option>Debug::RunScripts</option></term> + <listitem> + <para> + Display the external commands that are called by apt hooks. + This includes e.g. the config options + <literal>DPkg::{Pre,Post}-Invoke</literal> or + <literal>APT::Update::{Pre,Post}-Invoke</literal>. + </para> + </listitem> + </varlistentry> + <!-- 2009/07/11 Currently used nowhere. The corresponding code is commented. <varlistentry> diff --git a/doc/en/makefile b/doc/en/makefile index 247ce38b5..1be137c73 100644 --- a/doc/en/makefile +++ b/doc/en/makefile @@ -19,23 +19,19 @@ apt-vendor.ent: ../../vendor/current/apt-vendor.ent ln -sf $(shell readlink -f $^) $@ # Install generation hooks -manpages: $($(LOCAL)-LIST) apt.8 +manpages: $($(LOCAL)-LIST) $($(LOCAL)-LIST) :: % : ../%.xml $(STYLESHEET) $(INCLUDES) echo Creating man page $@ $(XSLTPROC) -o $@ $(STYLESHEET) $< -apt.8: ../apt.8 - cp -a ../apt.8 apt.8 - # Clean rule .PHONY: clean/$(LOCAL) veryclean: clean/$(LOCAL) clean: clean/$(LOCAL) clean/$(LOCAL): - -rm -rf $($(@F)-LIST) apt.8 apt-vendor.ent + -rm -rf $($(@F)-LIST) apt-vendor.ent endif # Chain to the manpage rule -SOURCE = apt.8 include $(MANPAGE_H) diff --git a/doc/examples/configure-index b/doc/examples/configure-index index 93e96cf16..2d9f829ba 100644 --- a/doc/examples/configure-index +++ b/doc/examples/configure-index @@ -149,7 +149,7 @@ APT MaxSize "0"; // (new) // - Set maximum size of the cache in MB (0=disable). If the cache // is bigger, cached package files are deleted until the size - // requirement is met (the biggest packages will be deleted + // requirement is met (the oldest packages will be deleted // first). Update-Package-Lists "0"; @@ -450,7 +450,7 @@ Debug aptcdrom "false"; // Show found package files IdentCdrom "false"; acquire::netrc "false"; // netrc parser - + RunScripts "false"; // debug invocation of external scripts } pkgCacheGen::Essential "native"; // other modes: all, none, installed diff --git a/doc/makefile b/doc/makefile index 4b63e542f..3939c749f 100644 --- a/doc/makefile +++ b/doc/makefile @@ -66,9 +66,7 @@ update-po: manpages/subdirs: $(MANPAGEPOLIST) $(MANPAGEPOLIST) :: manpages-translation-% : %/makefile po4a.conf - # first line is for apt.8 (see Bug#696923) po4a --previous --no-backups --translate-only $(dir $<)apt.ent \ - $(patsubst %,--translate-only $(dir $<)%,$(patsubst %.8,%.$(subst /,,$(dir $<)).8,$(wildcard *.8))) \ $(patsubst %,--translate-only $(dir $<)%,$(patsubst %.1.xml,%.$(subst /,,$(dir $<)).1.xml,$(wildcard *.1.xml))) \ $(patsubst %,--translate-only $(dir $<)%,$(patsubst %.2.xml,%.$(subst /,,$(dir $<)).2.xml,$(wildcard *.2.xml))) \ $(patsubst %,--translate-only $(dir $<)%,$(patsubst %.3.xml,%.$(subst /,,$(dir $<)).3.xml,$(wildcard *.3.xml))) \ diff --git a/doc/po/apt-doc.pot b/doc/po/apt-doc.pot index 348980dd7..8eebad5e8 100644 --- a/doc/po/apt-doc.pot +++ b/doc/po/apt-doc.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: apt-doc 0.9.15.3\n" +"Project-Id-Version: apt-doc 1.0.1\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -497,26 +497,203 @@ msgid "" msgstr "" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 apt-mark.8.xml:28 apt-secure.8.xml:27 apt-cdrom.8.xml:27 apt-config.8.xml:28 +#: apt.8.xml:25 apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 apt-mark.8.xml:28 apt-secure.8.xml:27 apt-cdrom.8.xml:27 apt-config.8.xml:28 msgid "8" msgstr "" #. type: Content of: <refentry><refmeta><refmiscinfo> -#: apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 apt-mark.8.xml:29 apt-secure.8.xml:28 apt-cdrom.8.xml:28 apt-config.8.xml:29 apt.conf.5.xml:34 apt_preferences.5.xml:28 sources.list.5.xml:29 apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 apt-ftparchive.1.xml:29 +#: apt.8.xml:26 apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 apt-mark.8.xml:29 apt-secure.8.xml:28 apt-cdrom.8.xml:28 apt-config.8.xml:29 apt.conf.5.xml:34 apt_preferences.5.xml:28 sources.list.5.xml:29 apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 apt-ftparchive.1.xml:29 msgid "APT" msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-get.8.xml:35 -msgid "APT package handling utility -- command-line interface" +#: apt.8.xml:32 +msgid "command-line interface" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 apt-mark.8.xml:40 apt-secure.8.xml:52 apt-cdrom.8.xml:39 apt-config.8.xml:40 apt.conf.5.xml:43 apt_preferences.5.xml:38 sources.list.5.xml:38 apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 apt-ftparchive.1.xml:40 +#: apt.8.xml:37 apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 apt-mark.8.xml:40 apt-secure.8.xml:52 apt-cdrom.8.xml:39 apt-config.8.xml:40 apt.conf.5.xml:43 apt_preferences.5.xml:38 sources.list.5.xml:38 apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 apt-ftparchive.1.xml:40 msgid "Description" msgstr "" #. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:38 +msgid "" +"<command>apt</command> (Advanced Package Tool) is the command-line tool for " +"handling packages. It provides a commandline interface for the package " +"management of the system. See also &apt-get; and &apt-cache; for more " +"low-level command options." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:47 +msgid "" +"<literal>list</literal> is used to display a list of packages. It supports " +"shell pattern for matching package names and the following options: " +"<option>--installed</option>, <option>--upgradable</option>, " +"<option>--all-versions</option> are supported." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:58 +msgid "" +"<literal>search</literal> searches for the given term(s) and display " +"matching packages." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:64 +msgid "" +"<literal>show</literal> shows the package information for the given " +"package(s)." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:71 +msgid "" +"<literal>install</literal> is followed by one or more package names desired " +"for installation or upgrading." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:75 apt-get.8.xml:118 +msgid "" +"A specific version of a package can be selected for installation by " +"following the package name with an equals and the version of the package to " +"select. This will cause that version to be located and selected for " +"install. Alternatively a specific distribution can be selected by following " +"the package name with a slash and the version of the distribution or the " +"Archive name (stable, testing, unstable)." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:85 apt-get.8.xml:153 +msgid "" +"<literal>remove</literal> is identical to <literal>install</literal> except " +"that packages are removed instead of installed. Note that removing a package " +"leaves its configuration files on the system. If a plus sign is appended to " +"the package name (with no intervening space), the identified package will be " +"installed instead of removed." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:93 +msgid "" +"<literal>edit-sources</literal> lets you edit your sources.list file and " +"provides basic sanity checks." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:99 +msgid "" +"<literal>update</literal> is used to resynchronize the package index files " +"from their sources." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:105 +msgid "" +"<literal>upgrade</literal> is used to install the newest versions of all " +"packages currently installed on the system from the sources enumerated in " +"<filename>/etc/apt/sources.list</filename>. New package will be installed, " +"but existing package will never removed." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:114 +msgid "" +"<literal>full-upgrade</literal> performs the function of upgrade but may " +"also remove installed packages if that is required in order to resolve a " +"package conflict." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:124 apt-get.8.xml:257 apt-cache.8.xml:250 apt-mark.8.xml:110 apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50 apt-ftparchive.1.xml:506 +msgid "options" +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:134 +msgid "Script usage" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:136 +msgid "" +"The &apt; commandline is designed as a end-user tool and it may change the " +"output between versions. While it tries to not break backward compatibility " +"there is no guarantee for it either. All features of &apt; are available in " +"&apt-cache; and &apt-get; via APT options. Please prefer using these " +"commands in your scripts." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:144 +msgid "Differences to &apt-get;" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:145 +msgid "" +"The <command>apt</command> command is meant to be pleasant for end users and " +"does not need to be backward compatible like &apt-get;. Therefore some " +"options are different:" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:151 +msgid "The option <literal>DPkgPM::Progress-Fancy</literal> is enabled." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:155 +msgid "The option <literal>APT::Color</literal> is enabled." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:159 +msgid "" +"A new <literal>list</literal> command is available similar to <literal>dpkg " +"--list</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:164 +msgid "" +"The option <literal>upgrade</literal> has <literal>--with-new-pkgs</literal> " +"enabled by default." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:174 apt-get.8.xml:558 apt-cache.8.xml:352 apt-key.8.xml:197 apt-mark.8.xml:133 apt-secure.8.xml:193 apt-cdrom.8.xml:154 apt-config.8.xml:111 apt.conf.5.xml:1227 apt_preferences.5.xml:707 sources.list.5.xml:280 apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 apt-ftparchive.1.xml:609 +msgid "See Also" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:175 +msgid "" +"&apt-get;, &apt-cache;, &sources-list;, &apt-conf;, &apt-config;, The APT " +"User's guide in &guidesdir;, &apt-preferences;, the APT Howto." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:180 apt-get.8.xml:564 apt-cache.8.xml:357 apt-mark.8.xml:137 apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76 apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613 +msgid "Diagnostics" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:181 +msgid "" +"<command>apt</command> returns zero on normal operation, decimal 100 on " +"error." +msgstr "" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-get.8.xml:35 +msgid "APT package handling utility -- command-line interface" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> #: apt-get.8.xml:41 msgid "" "<command>apt-get</command> is the command-line tool for handling packages, " @@ -607,17 +784,6 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:118 -msgid "" -"A specific version of a package can be selected for installation by " -"following the package name with an equals and the version of the package to " -"select. This will cause that version to be located and selected for " -"install. Alternatively a specific distribution can be selected by following " -"the package name with a slash and the version of the distribution or the " -"Archive name (stable, testing, unstable)." -msgstr "" - -#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:125 msgid "" "Both of the version selection mechanisms can downgrade packages and must be " @@ -656,16 +822,6 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:153 -msgid "" -"<literal>remove</literal> is identical to <literal>install</literal> except " -"that packages are removed instead of installed. Note that removing a package " -"leaves its configuration files on the system. If a plus sign is appended to " -"the package name (with no intervening space), the identified package will be " -"installed instead of removed." -msgstr "" - -#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:161 msgid "" "<literal>purge</literal> is identical to <literal>remove</literal> except " @@ -791,11 +947,6 @@ msgid "" "<option>install</option> command." msgstr "" -#. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:257 apt-cache.8.xml:250 apt-mark.8.xml:110 apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50 apt-ftparchive.1.xml:506 -msgid "options" -msgstr "" - #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:262 msgid "" @@ -935,18 +1086,28 @@ msgid "" "are satisfied. By default is it not set which means that the host " "architecture is the same as the build architecture (which is defined by " "<literal>APT::Architecture</literal>). Configuration Item: " -"<literal>APT::Get::Host-Architecture</literal>" +"<literal>APT::Get::Host-Architecture</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:380 msgid "" +"This option controls the activated build profiles for which a source package " +"is built by <command>apt-get source --compile</command> and how build " +"dependencies are satisfied. By default no build profile is active. More " +"than one build profile can be activated at a time by concatenating them with " +"a comma. Configuration Item: <literal>APT::Build-Profiles</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:391 +msgid "" "Compile source packages after downloading them. Configuration Item: " "<literal>APT::Get::Compile</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:385 +#: apt-get.8.xml:396 msgid "" "Ignore package holds; this causes <command>apt-get</command> to ignore a " "hold placed on a package. This may be useful in conjunction with " @@ -955,7 +1116,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:392 +#: apt-get.8.xml:403 msgid "" "Allow installing new packages when used in conjunction with " "<literal>upgrade</literal>. This is useful if the update of a installed " @@ -967,7 +1128,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:404 +#: apt-get.8.xml:415 msgid "" "Do not upgrade packages; when used in conjunction with " "<literal>install</literal>, <literal>no-upgrade</literal> will prevent " @@ -976,7 +1137,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:411 +#: apt-get.8.xml:422 msgid "" "Do not install new packages; when used in conjunction with " "<literal>install</literal>, <literal>only-upgrade</literal> will install " @@ -986,7 +1147,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:419 +#: apt-get.8.xml:430 msgid "" "Force yes; this is a dangerous option that will cause apt to continue " "without prompting if it is doing something potentially harmful. It should " @@ -996,7 +1157,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:427 +#: apt-get.8.xml:438 msgid "" "Instead of fetching the files to install their URIs are printed. Each URI " "will have the path, the destination file name, the size and the expected MD5 " @@ -1009,7 +1170,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:438 +#: apt-get.8.xml:449 msgid "" "Use purge instead of remove for anything that would be removed. An asterisk " "(\"*\") will be displayed next to packages which are scheduled to be " @@ -1019,14 +1180,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:446 +#: apt-get.8.xml:457 msgid "" "Re-install packages that are already installed and at the newest version. " "Configuration Item: <literal>APT::Get::ReInstall</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:451 +#: apt-get.8.xml:462 msgid "" "This option is on by default; use <literal>--no-list-cleanup</literal> to " "turn it off. When it is on, <command>apt-get</command> will automatically " @@ -1037,7 +1198,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:461 +#: apt-get.8.xml:472 msgid "" "This option controls the default input to the policy engine; it creates a " "default pin at priority 990 using the specified release string. This " @@ -1052,7 +1213,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:476 +#: apt-get.8.xml:487 msgid "" "Only perform operations that are 'trivial'. Logically this can be considered " "related to <option>--assume-yes</option>; where " @@ -1062,14 +1223,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:483 +#: apt-get.8.xml:494 msgid "" "If any packages are to be removed apt-get immediately aborts without " "prompting. Configuration Item: <literal>APT::Get::Remove</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:489 +#: apt-get.8.xml:500 msgid "" "If the command is either <literal>install</literal> or " "<literal>remove</literal>, then this option acts like running the " @@ -1078,7 +1239,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:496 +#: apt-get.8.xml:507 msgid "" "Only has meaning for the <literal>source</literal> and " "<literal>build-dep</literal> commands. Indicates that the given source " @@ -1090,7 +1251,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:507 +#: apt-get.8.xml:518 msgid "" "Download only the diff, dsc, or tar file of a source archive. Configuration " "Item: <literal>APT::Get::Diff-Only</literal>, " @@ -1099,14 +1260,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:513 +#: apt-get.8.xml:524 msgid "" "Only process architecture-dependent build-dependencies. Configuration Item: " "<literal>APT::Get::Arch-Only</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:518 +#: apt-get.8.xml:529 msgid "" "Ignore if packages can't be authenticated and don't prompt about it. This " "is useful for tools like pbuilder. Configuration Item: " @@ -1114,7 +1275,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:524 +#: apt-get.8.xml:535 msgid "" "Show user friendly progress information in the terminal window when packages " "are installed, upgraded or removed. For a machine parsable version of this " @@ -1124,30 +1285,20 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:537 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 apt.conf.5.xml:1200 apt_preferences.5.xml:700 +#: apt-get.8.xml:548 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 apt.conf.5.xml:1221 apt_preferences.5.xml:700 msgid "Files" msgstr "" -#. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:547 apt-cache.8.xml:352 apt-key.8.xml:197 apt-mark.8.xml:133 apt-secure.8.xml:193 apt-cdrom.8.xml:154 apt-config.8.xml:111 apt.conf.5.xml:1206 apt_preferences.5.xml:707 sources.list.5.xml:280 apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 apt-ftparchive.1.xml:609 -msgid "See Also" -msgstr "" - #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:548 +#: apt-get.8.xml:559 msgid "" "&apt-cache;, &apt-cdrom;, &dpkg;, &sources-list;, &apt-conf;, &apt-config;, " "&apt-secure;, The APT User's guide in &guidesdir;, &apt-preferences;, the " "APT Howto." msgstr "" -#. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:553 apt-cache.8.xml:357 apt-mark.8.xml:137 apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76 apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613 -msgid "Diagnostics" -msgstr "" - #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:554 +#: apt-get.8.xml:565 msgid "" "<command>apt-get</command> returns zero on normal operation, decimal 100 on " "error." @@ -2465,7 +2616,16 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:181 +#: apt.conf.5.xml:182 +msgid "" +"List of all build profiles enabled for build-dependency resolution, without " +"the \"<literal>profile.</literal>\" namespace prefix. By default this list " +"is empty. The <envar>DEB_BUILD_PROFILES</envar> as used by " +"&dpkg-buildpackage; overrides the list notation." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:190 msgid "" "Default release to install packages from if more than one version is " "available. Contains release name, codename or release version. Examples: " @@ -2474,14 +2634,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:187 +#: apt.conf.5.xml:196 msgid "" "Ignore held packages; this global option causes the problem resolver to " "ignore held packages in its decision making." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:192 +#: apt.conf.5.xml:201 msgid "" "Defaults to on. When turned on the autoclean feature will remove any " "packages which can no longer be downloaded from the cache. If turned off " @@ -2490,7 +2650,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:200 +#: apt.conf.5.xml:209 msgid "" "Defaults to on, which will cause APT to install essential and important " "packages as soon as possible in an install/upgrade operation, in order to " @@ -2505,7 +2665,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:212 +#: apt.conf.5.xml:221 msgid "" "The immediate configuration marker is also applied in the potentially " "problematic case of circular dependencies, since a dependency with the " @@ -2522,7 +2682,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:225 +#: apt.conf.5.xml:234 msgid "" "Before a big operation like <literal>dist-upgrade</literal> is run with this " "option disabled you should try to explicitly <literal>install</literal> the " @@ -2533,7 +2693,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:236 +#: apt.conf.5.xml:245 msgid "" "Never enable this option unless you <emphasis>really</emphasis> know what " "you are doing. It permits APT to temporarily remove an essential package to " @@ -2546,7 +2706,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:248 +#: apt.conf.5.xml:257 msgid "" "APT uses since version 0.7.26 a resizable memory mapped cache file to store " "the available information. <literal>Cache-Start</literal> acts as a hint of " @@ -2567,38 +2727,38 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:264 +#: apt.conf.5.xml:273 msgid "Defines which packages are considered essential build dependencies." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:268 +#: apt.conf.5.xml:277 msgid "" "The Get subsection controls the &apt-get; tool; please see its documentation " "for more information about the options here." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:273 +#: apt.conf.5.xml:282 msgid "" "The Cache subsection controls the &apt-cache; tool; please see its " "documentation for more information about the options here." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:278 +#: apt.conf.5.xml:287 msgid "" "The CDROM subsection controls the &apt-cdrom; tool; please see its " "documentation for more information about the options here." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:284 +#: apt.conf.5.xml:293 msgid "The Acquire Group" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:285 +#: apt.conf.5.xml:294 msgid "" "The <literal>Acquire</literal> group of options controls the download of " "packages as well as the various \"acquire methods\" responsible for the " @@ -2606,7 +2766,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:292 +#: apt.conf.5.xml:301 msgid "" "Security related option defaulting to true, as giving a Release file's " "validation an expiration date prevents replay attacks over a long timescale, " @@ -2619,7 +2779,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:305 +#: apt.conf.5.xml:314 msgid "" "Maximum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -2631,7 +2791,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:317 +#: apt.conf.5.xml:326 msgid "" "Minimum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -2643,7 +2803,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:329 +#: apt.conf.5.xml:338 msgid "" "Try to download deltas called <literal>PDiffs</literal> for indexes (like " "<filename>Packages</filename> files) instead of downloading whole ones. True " @@ -2651,7 +2811,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:332 +#: apt.conf.5.xml:341 msgid "" "Two sub-options to limit the use of PDiffs are also available: " "<literal>FileLimit</literal> can be used to specify a maximum number of " @@ -2663,7 +2823,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:342 +#: apt.conf.5.xml:351 msgid "" "Queuing mode; <literal>Queue-Mode</literal> can be one of " "<literal>host</literal> or <literal>access</literal> which determines how " @@ -2673,21 +2833,21 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:350 +#: apt.conf.5.xml:359 msgid "" "Number of retries to perform. If this is non-zero APT will retry failed " "files the given number of times." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:355 +#: apt.conf.5.xml:364 msgid "" "Use symlinks for source archives. If set to true then source archives will " "be symlinked when possible instead of copying. True is the default." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:360 +#: apt.conf.5.xml:369 msgid "" "<literal>http::Proxy</literal> sets the default proxy to use for HTTP " "URIs. It is in the standard form of " @@ -2700,7 +2860,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:368 +#: apt.conf.5.xml:377 msgid "" "Three settings are provided for cache control with HTTP/1.1 compliant proxy " "caches. <literal>No-Cache</literal> tells the proxy not to use its cached " @@ -2712,14 +2872,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:378 apt.conf.5.xml:466 +#: apt.conf.5.xml:387 apt.conf.5.xml:475 msgid "" "The option <literal>timeout</literal> sets the timeout timer used by the " "method; this value applies to the connection as well as the data timeout." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:381 +#: apt.conf.5.xml:390 msgid "" "The setting <literal>Acquire::http::Pipeline-Depth</literal> can be used to " "enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial " @@ -2731,14 +2891,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:388 +#: apt.conf.5.xml:397 msgid "" "<literal>Acquire::http::AllowRedirect</literal> controls whether APT will " "follow redirects, which is enabled by default." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:391 +#: apt.conf.5.xml:400 msgid "" "The used bandwidth can be limited with " "<literal>Acquire::http::Dl-Limit</literal> which accepts integer values in " @@ -2748,7 +2908,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:398 +#: apt.conf.5.xml:407 msgid "" "<literal>Acquire::http::User-Agent</literal> can be used to set a different " "User-Agent for the http download method as some proxies allow access for " @@ -2756,7 +2916,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:402 +#: apt.conf.5.xml:411 msgid "" "<literal>Acquire::http::Proxy-Auto-Detect</literal> can be used to specify " "an external command to discover the http proxy to use. Apt expects the " @@ -2770,7 +2930,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:420 +#: apt.conf.5.xml:429 msgid "" "The <literal>Cache-control</literal>, <literal>Timeout</literal>, " "<literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> and " @@ -2781,7 +2941,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:428 +#: apt.conf.5.xml:437 msgid "" "<literal>CaInfo</literal> suboption specifies place of file that holds info " "about trusted certificates. <literal><host>::CaInfo</literal> is the " @@ -2805,7 +2965,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:449 +#: apt.conf.5.xml:458 msgid "" "<literal>ftp::Proxy</literal> sets the default proxy to use for FTP URIs. " "It is in the standard form of " @@ -2826,7 +2986,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:469 +#: apt.conf.5.xml:478 msgid "" "Several settings are provided to control passive mode. Generally it is safe " "to leave passive mode on; it works in nearly every environment. However, " @@ -2836,7 +2996,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:476 +#: apt.conf.5.xml:485 msgid "" "It is possible to proxy FTP over HTTP by setting the " "<envar>ftp_proxy</envar> environment variable to an HTTP URL - see the " @@ -2846,7 +3006,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:481 +#: apt.conf.5.xml:490 msgid "" "The setting <literal>ForceExtended</literal> controls the use of RFC2428 " "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is " @@ -2856,13 +3016,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:495 +#: apt.conf.5.xml:504 #, no-wrap msgid "/cdrom/::Mount \"foo\";" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:490 +#: apt.conf.5.xml:499 msgid "" "For URIs using the <literal>cdrom</literal> method, the only configurable " "option is the mount point, <literal>cdrom::Mount</literal>, which must be " @@ -2875,7 +3035,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:503 +#: apt.conf.5.xml:512 msgid "" "For GPGV URIs the only configurable option is " "<literal>gpgv::Options</literal>, which passes additional parameters to " @@ -2883,7 +3043,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:514 +#: apt.conf.5.xml:523 #, no-wrap msgid "" "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> " @@ -2891,7 +3051,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:509 +#: apt.conf.5.xml:518 msgid "" "List of compression types which are understood by the acquire methods. " "Files like <filename>Packages</filename> can be available in various " @@ -2903,19 +3063,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:519 +#: apt.conf.5.xml:528 #, no-wrap msgid "Acquire::CompressionTypes::Order:: \"gz\";" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:522 +#: apt.conf.5.xml:531 #, no-wrap msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:515 +#: apt.conf.5.xml:524 msgid "" "Also, the <literal>Order</literal> subgroup can be used to define in which " "order the acquire system will try to download the compressed files. The " @@ -2933,13 +3093,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:529 +#: apt.conf.5.xml:538 #, no-wrap msgid "Dir::Bin::bzip2 \"/bin/bzip2\";" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:524 +#: apt.conf.5.xml:533 msgid "" "Note that the " "<literal>Dir::Bin::<replaceable>Methodname</replaceable></literal> will be " @@ -2955,7 +3115,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:534 +#: apt.conf.5.xml:543 msgid "" "The special type <literal>uncompressed</literal> can be used to give " "uncompressed files a preference, but note that most archives don't provide " @@ -2963,7 +3123,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:541 +#: apt.conf.5.xml:550 msgid "" "When downloading <literal>gzip</literal> compressed indexes (Packages, " "Sources, or Translations), keep them gzip compressed locally instead of " @@ -2972,7 +3132,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:549 +#: apt.conf.5.xml:558 msgid "" "The Languages subsection controls which <filename>Translation</filename> " "files are downloaded and in which order APT tries to display the " @@ -2984,13 +3144,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><programlisting> -#: apt.conf.5.xml:566 +#: apt.conf.5.xml:575 #, no-wrap msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:554 +#: apt.conf.5.xml:563 msgid "" "The default list includes \"environment\" and " "\"en\". \"<literal>environment</literal>\" has a special meaning here: it " @@ -3012,7 +3172,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:567 +#: apt.conf.5.xml:576 msgid "" "Note: To prevent problems resulting from APT being executed in different " "environments (e.g. by different users or by other programs) all Translation " @@ -3022,22 +3182,22 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:576 +#: apt.conf.5.xml:585 msgid "When downloading, force to use only the IPv4 protocol." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:582 +#: apt.conf.5.xml:591 msgid "When downloading, force to use only the IPv6 protocol." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:589 +#: apt.conf.5.xml:598 msgid "Directories" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:591 +#: apt.conf.5.xml:600 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@ -3049,7 +3209,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:598 +#: apt.conf.5.xml:607 msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@ -3062,7 +3222,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:607 +#: apt.conf.5.xml:616 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -3072,7 +3232,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:613 +#: apt.conf.5.xml:622 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -3080,7 +3240,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:617 +#: apt.conf.5.xml:626 msgid "" "Binary programs are pointed to by " "<literal>Dir::Bin</literal>. <literal>Dir::Bin::Methods</literal> specifies " @@ -3092,7 +3252,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:625 +#: apt.conf.5.xml:634 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -3105,7 +3265,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:638 +#: apt.conf.5.xml:647 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@ -3116,12 +3276,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:647 +#: apt.conf.5.xml:656 msgid "APT in DSelect" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:649 +#: apt.conf.5.xml:658 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@ -3129,7 +3289,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:654 +#: apt.conf.5.xml:663 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, " @@ -3143,40 +3303,40 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:668 +#: apt.conf.5.xml:677 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:673 +#: apt.conf.5.xml:682 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:678 +#: apt.conf.5.xml:687 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:684 +#: apt.conf.5.xml:693 msgid "How APT calls &dpkg;" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:685 +#: apt.conf.5.xml:694 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:690 +#: apt.conf.5.xml:699 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -3184,7 +3344,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:696 +#: apt.conf.5.xml:705 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -3193,7 +3353,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:703 +#: apt.conf.5.xml:712 msgid "" "This is a list of shell commands to run before invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -3204,7 +3364,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:710 +#: apt.conf.5.xml:719 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@ -3213,7 +3373,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:715 +#: apt.conf.5.xml:724 msgid "" "The version of the protocol to be used for the command " "<literal><replaceable>cmd</replaceable></literal> can be chosen by setting " @@ -3224,7 +3384,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:722 +#: apt.conf.5.xml:731 msgid "" "The file descriptor to be used to send the information can be requested with " "<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</literal> " @@ -3235,26 +3395,26 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:732 +#: apt.conf.5.xml:741 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:737 +#: apt.conf.5.xml:746 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:742 +#: apt.conf.5.xml:751 msgid "dpkg trigger usage (and related options)" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:743 +#: apt.conf.5.xml:752 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@ -3269,7 +3429,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:758 +#: apt.conf.5.xml:767 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -3279,7 +3439,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:752 +#: apt.conf.5.xml:761 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -3293,7 +3453,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:765 +#: apt.conf.5.xml:774 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -3306,7 +3466,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:773 +#: apt.conf.5.xml:782 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is " @@ -3324,7 +3484,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:788 +#: apt.conf.5.xml:797 msgid "" "If this option is set APT will call <command>dpkg --configure " "--pending</command> to let &dpkg; handle all required configurations and " @@ -3336,7 +3496,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:795 +#: apt.conf.5.xml:804 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@ -3347,7 +3507,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:808 +#: apt.conf.5.xml:817 #, no-wrap msgid "" "OrderList::Score {\n" @@ -3359,7 +3519,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:801 +#: apt.conf.5.xml:810 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@ -3373,12 +3533,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:821 +#: apt.conf.5.xml:830 msgid "Periodic and Archives options" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:822 +#: apt.conf.5.xml:831 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@ -3387,12 +3547,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:830 +#: apt.conf.5.xml:839 msgid "Debug options" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:832 +#: apt.conf.5.xml:841 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -3403,7 +3563,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:843 +#: apt.conf.5.xml:852 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, " @@ -3411,7 +3571,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:851 +#: apt.conf.5.xml:860 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s " @@ -3419,7 +3579,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:860 +#: apt.conf.5.xml:869 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -3429,65 +3589,65 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:868 +#: apt.conf.5.xml:877 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:878 +#: apt.conf.5.xml:887 msgid "A full list of debugging options to apt follows." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:887 +#: apt.conf.5.xml:896 msgid "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:898 +#: apt.conf.5.xml:907 msgid "Print information related to downloading packages using FTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:909 +#: apt.conf.5.xml:918 msgid "Print information related to downloading packages using HTTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:920 +#: apt.conf.5.xml:929 msgid "Print information related to downloading packages using HTTPS." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:931 +#: apt.conf.5.xml:940 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:942 +#: apt.conf.5.xml:951 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:952 +#: apt.conf.5.xml:961 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:962 +#: apt.conf.5.xml:971 msgid "" "Output each cryptographic hash that is generated by the " "<literal>apt</literal> libraries." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:972 +#: apt.conf.5.xml:981 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -3495,52 +3655,52 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:983 +#: apt.conf.5.xml:992 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:995 +#: apt.conf.5.xml:1004 msgid "Log when items are added to or removed from the global download queue." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1005 +#: apt.conf.5.xml:1014 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1015 +#: apt.conf.5.xml:1024 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1027 +#: apt.conf.5.xml:1036 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1038 +#: apt.conf.5.xml:1047 msgid "Log all interactions with the sub-processes that actually perform downloads." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1049 +#: apt.conf.5.xml:1058 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1059 +#: apt.conf.5.xml:1068 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial " @@ -3550,7 +3710,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1073 +#: apt.conf.5.xml:1082 msgid "" "Generate debug messages describing which packages are marked as " "keep/install/remove while the ProblemResolver does his work. Each addition " @@ -3568,45 +3728,45 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1094 +#: apt.conf.5.xml:1103 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1105 +#: apt.conf.5.xml:1114 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1116 +#: apt.conf.5.xml:1125 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1128 +#: apt.conf.5.xml:1137 msgid "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1139 +#: apt.conf.5.xml:1148 msgid "Output the priority of each package list on startup." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1149 +#: apt.conf.5.xml:1158 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1160 +#: apt.conf.5.xml:1169 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -3614,19 +3774,27 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1172 +#: apt.conf.5.xml:1181 msgid "" "Print information about the vendors read from " "<filename>/etc/apt/vendors.list</filename>." msgstr "" +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:1191 +msgid "" +"Display the external commands that are called by apt hooks. This includes " +"e.g. the config options <literal>DPkg::{Pre,Post}-Invoke</literal> or " +"<literal>APT::Update::{Pre,Post}-Invoke</literal>." +msgstr "" + #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:1194 apt_preferences.5.xml:547 sources.list.5.xml:239 apt-ftparchive.1.xml:598 +#: apt.conf.5.xml:1215 apt_preferences.5.xml:547 sources.list.5.xml:239 apt-ftparchive.1.xml:598 msgid "Examples" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1195 +#: apt.conf.5.xml:1216 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -3634,7 +3802,7 @@ msgstr "" #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1207 +#: apt.conf.5.xml:1228 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "" @@ -5074,8 +5242,8 @@ msgid "" "template-file and config-script are written to the temporary directory " "specified by the <option>-t</option> or <option>--tempdir</option> " "(<literal>APT::ExtractTemplates::TempDir</literal>) directory, with " -"filenames of the form <filename>package.template.XXXX</filename> and " -"<filename>package.config.XXXX</filename>" +"filenames of the form <filename>package.template.XXXXXX</filename> and " +"<filename>package.config.XXXXXX</filename>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> @@ -5837,115 +6005,6 @@ msgid "" "100 on error." msgstr "" -#. type: TH -#: apt.8:17 -#, no-wrap -msgid "apt" -msgstr "" - -#. type: TH -#: apt.8:17 -#, no-wrap -msgid "16 June 1998" -msgstr "" - -#. type: TH -#: apt.8:17 -#, no-wrap -msgid "Debian" -msgstr "" - -#. type: SH -#: apt.8:18 -#, no-wrap -msgid "NAME" -msgstr "" - -#. type: Plain text -#: apt.8:20 -msgid "apt - Advanced Package Tool" -msgstr "" - -#. type: SH -#: apt.8:20 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -#. type: Plain text -#: apt.8:22 -msgid "B<apt>" -msgstr "" - -#. type: SH -#: apt.8:22 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -#. type: Plain text -#: apt.8:31 -msgid "" -"APT is a management system for software packages. For normal day to day " -"package management there are several frontends available, such as " -"B<aptitude>(8) for the command line or B<synaptic>(8) for the X Window " -"System. Some options are only implemented in B<apt-get>(8) though." -msgstr "" - -#. type: SH -#: apt.8:31 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -#. type: Plain text -#: apt.8:38 -msgid "" -"B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " -"B<apt_preferences>(5), B<apt-secure>(8)" -msgstr "" - -#. type: SH -#: apt.8:38 -#, no-wrap -msgid "DIAGNOSTICS" -msgstr "" - -#. type: Plain text -#: apt.8:40 -msgid "apt returns zero on normal operation, decimal 100 on error." -msgstr "" - -#. type: SH -#: apt.8:40 -#, no-wrap -msgid "BUGS" -msgstr "" - -#. type: Plain text -#: apt.8:42 -msgid "This manpage isn't even started." -msgstr "" - -#. type: Plain text -#: apt.8:51 -msgid "" -"See E<lt>http://bugs.debian.org/aptE<gt>. If you wish to report a bug in " -"B<apt>, please see I</usr/share/doc/debian/bug-reporting.txt> or the " -"B<reportbug>(1) command." -msgstr "" - -#. type: SH -#: apt.8:51 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -#. type: Plain text -#: apt.8:52 -msgid "apt was written by the APT team E<lt>apt@packages.debian.orgE<gt>." -msgstr "" - #. type: <title></title> #: guide.sgml:4 msgid "APT User's Guide" @@ -6183,7 +6242,7 @@ msgstr "" #: guide.sgml:163 msgid "" "<prgn>apt-get</prgn> has several command line options that are detailed in " -"its man page, <manref section=\"8\" name=\"apt-get\">. The most useful " +"its man page, <manref name=\"apt-get\" section=\"8\">. The most useful " "option is <tt>-d</tt> which does not install the fetched files. If the " "system has to download a large number of package it would be undesired to " "start installing them in case something goes wrong. When <tt>-d</tt> is used " diff --git a/doc/po/de.po b/doc/po/de.po index b7d84acc1..953eeed37 100644 --- a/doc/po/de.po +++ b/doc/po/de.po @@ -5,10 +5,10 @@ # msgid "" msgstr "" -"Project-Id-Version: apt-doc 0.9.14.2\n" +"Project-Id-Version: apt-doc 0.9.16\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" -"PO-Revision-Date: 2014-01-26 15:26+0100\n" +"POT-Creation-Date: 2014-04-10 09:49+0200\n" +"PO-Revision-Date: 2014-04-01 14:00+0200\n" "Last-Translator: Chris Leick <c.leick@vollbio.de>\n" "Language-Team: German <debian-l10n-german@lists.debian.org>\n" "Language: de\n" @@ -615,40 +615,266 @@ msgid "" msgstr "<!ENTITY synopsis-keyid \"Schlüsselkennung\">" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 apt-mark.8.xml:28 -#: apt-secure.8.xml:27 apt-cdrom.8.xml:27 apt-config.8.xml:28 +#: apt.8.xml:25 apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 +#: apt-mark.8.xml:28 apt-secure.8.xml:27 apt-cdrom.8.xml:27 +#: apt-config.8.xml:28 msgid "8" msgstr "8" #. type: Content of: <refentry><refmeta><refmiscinfo> -#: apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 apt-mark.8.xml:29 -#: apt-secure.8.xml:28 apt-cdrom.8.xml:28 apt-config.8.xml:29 -#: apt.conf.5.xml:34 apt_preferences.5.xml:28 sources.list.5.xml:29 -#: apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 apt-ftparchive.1.xml:29 +#: apt.8.xml:26 apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 +#: apt-mark.8.xml:29 apt-secure.8.xml:28 apt-cdrom.8.xml:28 +#: apt-config.8.xml:29 apt.conf.5.xml:34 apt_preferences.5.xml:28 +#: sources.list.5.xml:29 apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 +#: apt-ftparchive.1.xml:29 msgid "APT" msgstr "APT" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-get.8.xml:35 -msgid "APT package handling utility -- command-line interface" -msgstr "APT-Werkzeug für den Umgang mit Paketen -- Befehlszeilenschnittstelle" +#: apt.8.xml:32 +msgid "command-line interface" +msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 apt-mark.8.xml:40 -#: apt-secure.8.xml:52 apt-cdrom.8.xml:39 apt-config.8.xml:40 -#: apt.conf.5.xml:43 apt_preferences.5.xml:38 sources.list.5.xml:38 -#: apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 apt-ftparchive.1.xml:40 +#: apt.8.xml:37 apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 +#: apt-mark.8.xml:40 apt-secure.8.xml:52 apt-cdrom.8.xml:39 +#: apt-config.8.xml:40 apt.conf.5.xml:43 apt_preferences.5.xml:38 +#: sources.list.5.xml:38 apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 +#: apt-ftparchive.1.xml:40 msgid "Description" msgstr "Beschreibung" #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:41 +#: apt.8.xml:38 +msgid "" +"<command>apt</command> (Advanced Package Tool) is the command-line tool for " +"handling packages. It provides a commandline interface for the package " +"management of the system. See also &apt-get; and &apt-cache; for more low-" +"level command options." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:47 +msgid "" +"<literal>list</literal> is used to display a list of packages. It supports " +"shell pattern for matching package names and the following options: " +"<option>--installed</option>, <option>--upgradable</option>, <option>--all-" +"versions</option> are supported." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:58 +msgid "" +"<literal>search</literal> searches for the given term(s) and display " +"matching packages." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:64 +#, fuzzy +#| msgid "" +#| "<literal>rdepends</literal> shows a listing of each reverse dependency a " +#| "package has." +msgid "" +"<literal>show</literal> shows the package information for the given " +"package(s)." +msgstr "" +"<literal>rdepends</literal> zeigt eine Liste von jeder " +"Rückwärtsabhängigkeit, die ein Paket hat." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:71 +msgid "" +"<literal>install</literal> is followed by one or more package names desired " +"for installation or upgrading." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:75 apt-get.8.xml:118 +msgid "" +"A specific version of a package can be selected for installation by " +"following the package name with an equals and the version of the package to " +"select. This will cause that version to be located and selected for install. " +"Alternatively a specific distribution can be selected by following the " +"package name with a slash and the version of the distribution or the Archive " +"name (stable, testing, unstable)." +msgstr "" +"Eine bestimmte Version eines Paketes kann durch den Paketnamen gefolgt von " +"einem Gleichheitszeichen und der Version des Paketes zur Installation " +"ausgewählt werden. Dies bewirkt, dass diese Version gesucht und zum " +"Installieren ausgewählt wird. Alternativ kann eine bestimmte Distribution " +"durch den Paketnamen gefolgt von einem Schrägstrich und der Version der " +"Distribution oder des Archivnamens (»stable«, »testing«, »unstable«) " +"ausgewählt werden." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:85 apt-get.8.xml:153 +msgid "" +"<literal>remove</literal> is identical to <literal>install</literal> except " +"that packages are removed instead of installed. Note that removing a package " +"leaves its configuration files on the system. If a plus sign is appended to " +"the package name (with no intervening space), the identified package will be " +"installed instead of removed." +msgstr "" +"<literal>remove</literal> ist identisch mit <literal>install</literal>, mit " +"der Ausnahme, dass Pakte entfernt anstatt installiert werden. Beachten Sie, " +"dass das Entfernen von Paketen deren Konfigurationsdateien im System " +"belässt. Wenn ein Pluszeichen an den Paketnamen angehängt wird (ohne " +"Leerzeichen dazwischen) wird das erkannte Paket installiert anstatt entfernt." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:93 +msgid "" +"<literal>edit-sources</literal> lets you edit your sources.list file and " +"provides basic sanity checks." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:99 #, fuzzy #| msgid "" -#| "<command>apt-get</command> is the command-line tool for handling " -#| "packages, and may be considered the user's \"back-end\" to other tools " -#| "using the APT library. Several \"front-end\" interfaces exist, such as " -#| "&dselect;, &aptitude;, &synaptic; and &wajig;." +#| "<literal>showhold</literal> is used to print a list of packages on hold " +#| "in the same way as for the other show commands." +msgid "" +"<literal>update</literal> is used to resynchronize the package index files " +"from their sources." +msgstr "" +"<literal>showhold</literal> wird benutzt, um eine Liste auf »hold« gesetzter " +"Pakete auf die gleiche Art wie für andere Anzeigebefehle auszugeben." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:105 +msgid "" +"<literal>upgrade</literal> is used to install the newest versions of all " +"packages currently installed on the system from the sources enumerated in " +"<filename>/etc/apt/sources.list</filename>. New package will be installed, " +"but existing package will never removed." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:114 +msgid "" +"<literal>full-upgrade</literal> performs the function of upgrade but may " +"also remove installed packages if that is required in order to resolve a " +"package conflict." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:124 apt-get.8.xml:257 apt-cache.8.xml:250 apt-mark.8.xml:110 +#: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50 +#: apt-ftparchive.1.xml:506 +msgid "options" +msgstr "Optionen" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:134 +msgid "Script usage" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:136 +msgid "" +"The &apt; commandline is designed as a end-user tool and it may change the " +"output between versions. While it tries to not break backward compatibility " +"there is no guarantee for it either. All features of &apt; are available in " +"&apt-cache; and &apt-get; via APT options. Please prefer using these " +"commands in your scripts." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:144 +msgid "Differences to &apt-get;" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:145 +msgid "" +"The <command>apt</command> command is meant to be pleasant for end users and " +"does not need to be backward compatible like &apt-get;. Therefore some " +"options are different:" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:151 +#, fuzzy +#| msgid "the <literal>Package:</literal> line" +msgid "The option <literal>DPkgPM::Progress-Fancy</literal> is enabled." +msgstr "die <literal>Package:</literal>-Zeile" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:155 +#, fuzzy +#| msgid "the <literal>Component:</literal> line" +msgid "The option <literal>APT::Color</literal> is enabled." +msgstr "die <literal>Component:</literal>-Zeile" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:159 +msgid "" +"A new <literal>list</literal> command is available similar to <literal>dpkg " +"--list</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:164 +#, fuzzy +#| msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" +msgid "" +"The option <literal>upgrade</literal> has <literal>--with-new-pkgs</literal> " +"enabled by default." +msgstr "die <literal>Archive:</literal>- oder <literal>Suite:</literal>-Zeile" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:174 apt-get.8.xml:558 apt-cache.8.xml:352 apt-key.8.xml:197 +#: apt-mark.8.xml:133 apt-secure.8.xml:193 apt-cdrom.8.xml:154 +#: apt-config.8.xml:111 apt.conf.5.xml:1227 apt_preferences.5.xml:707 +#: sources.list.5.xml:280 apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 +#: apt-ftparchive.1.xml:609 +msgid "See Also" +msgstr "Siehe auch" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:175 +#, fuzzy +#| msgid "" +#| "&apt-cache;, &apt-cdrom;, &dpkg;, &sources-list;, &apt-conf;, &apt-" +#| "config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-" +#| "preferences;, the APT Howto." +msgid "" +"&apt-get;, &apt-cache;, &sources-list;, &apt-conf;, &apt-config;, The APT " +"User's guide in &guidesdir;, &apt-preferences;, the APT Howto." +msgstr "" +"&apt-cache;, &apt-cdrom;, &dpkg;, &sources-list;, &apt-conf;, &apt-config;, " +"&apt-secure;, die APT-Benutzeranleitung in &guidesdir;, &apt-preferences;, " +"das APT-Howto." + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:180 apt-get.8.xml:564 apt-cache.8.xml:357 apt-mark.8.xml:137 +#: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76 +#: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613 +msgid "Diagnostics" +msgstr "Diagnose" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:181 +#, fuzzy +#| msgid "" +#| "<command>apt-get</command> returns zero on normal operation, decimal 100 " +#| "on error." +msgid "" +"<command>apt</command> returns zero on normal operation, decimal 100 on " +"error." +msgstr "" +"<command>apt-get</command> gibt bei normalen Operationen 0 zurück, dezimal " +"100 bei Fehlern." + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-get.8.xml:35 +msgid "APT package handling utility -- command-line interface" +msgstr "APT-Werkzeug für den Umgang mit Paketen -- Befehlszeilenschnittstelle" + +#. type: Content of: <refentry><refsect1><para> +#: apt-get.8.xml:41 msgid "" "<command>apt-get</command> is the command-line tool for handling packages, " "and may be considered the user's \"back-end\" to other tools using the APT " @@ -658,7 +884,7 @@ msgstr "" "<command>apt-get</command> ist ein Befehlszeilenwerkzeug zur Handhabung von " "Paketen und könnte als »Backend« anderer Werkzeugen betrachtet werden, die " "die APT-Bibliothek benutzen. Es existieren mehrere " -"Oberflächenschnittstellen, wie &dselect;, &aptitude;, &synaptic; und &wajig;." +"Oberflächenschnittstellen, wie &aptitude;, &synaptic; und &wajig;." #. type: Content of: <refentry><refsect1><para> #: apt-get.8.xml:46 apt-cache.8.xml:46 apt-cdrom.8.xml:53 apt-config.8.xml:46 @@ -794,24 +1020,6 @@ msgstr "" "get getroffen wurden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:118 -msgid "" -"A specific version of a package can be selected for installation by " -"following the package name with an equals and the version of the package to " -"select. This will cause that version to be located and selected for install. " -"Alternatively a specific distribution can be selected by following the " -"package name with a slash and the version of the distribution or the Archive " -"name (stable, testing, unstable)." -msgstr "" -"Eine bestimmte Version eines Paketes kann durch den Paketnamen gefolgt von " -"einem Gleichheitszeichen und der Version des Paketes zur Installation " -"ausgewählt werden. Dies bewirkt, dass diese Version gesucht und zum " -"Installieren ausgewählt wird. Alternativ kann eine bestimmte Distribution " -"durch den Paketnamen gefolgt von einem Schrägstrich und der Version der " -"Distribution oder des Archivnamens (»stable«, »testing«, »unstable«) " -"ausgewählt werden." - -#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:125 msgid "" "Both of the version selection mechanisms can downgrade packages and must be " @@ -871,21 +1079,6 @@ msgstr "" "Zeichen, um genauere reguläre Ausdruck zu erstellen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:153 -msgid "" -"<literal>remove</literal> is identical to <literal>install</literal> except " -"that packages are removed instead of installed. Note that removing a package " -"leaves its configuration files on the system. If a plus sign is appended to " -"the package name (with no intervening space), the identified package will be " -"installed instead of removed." -msgstr "" -"<literal>remove</literal> ist identisch mit <literal>install</literal>, mit " -"der Ausnahme, dass Pakte entfernt anstatt installiert werden. Beachten Sie, " -"dass das Entfernen von Paketen deren Konfigurationsdateien im System " -"belässt. Wenn ein Pluszeichen an den Paketnamen angehängt wird (ohne " -"Leerzeichen dazwischen) wird das erkannte Paket installiert anstatt entfernt." - -#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:161 msgid "" "<literal>purge</literal> is identical to <literal>remove</literal> except " @@ -984,7 +1177,7 @@ msgid "" "option> option instead." msgstr "" "<literal>build-dep</literal> veranlasst apt-get, Pakete zu installieren/" -"entfernen, um zu versuchen, die Bau-Abhängigkeiten eines Quellpakets zu " +"entfernen, um zu versuchen, die Bauabhängigkeiten eines Quellpakets zu " "erfüllen. Standardmäßig werden die Abhängigkeiten erfüllt, um das Paket auf " "native Art zu bauen. Falls gewünscht, kann stattdessen eine " "Rechnerarchitektur mit der Option <option>--host-architecture</option> " @@ -1010,15 +1203,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:217 -#, fuzzy -#| msgid "" -#| "<literal>clean</literal> clears out the local repository of retrieved " -#| "package files. It removes everything but the lock file from " -#| "<filename>&cachedir;/archives/</filename> and <filename>&cachedir;/" -#| "archives/partial/</filename>. When APT is used as a &dselect; method, " -#| "<literal>clean</literal> is run automatically. Those who do not use " -#| "dselect will likely want to run <literal>apt-get clean</literal> from " -#| "time to time to free up disk space." msgid "" "<literal>clean</literal> clears out the local repository of retrieved " "package files. It removes everything but the lock file from " @@ -1028,10 +1212,7 @@ msgstr "" "<literal>clean</literal> bereinigt das lokale Depot von heruntergeladenen " "Paketdateien. Es entfernt alles außer der Sperrdatei aus " "<filename>&cachedir;/archives/</filename> und <filename>&cachedir;/archives/" -"partial/</filename>. Wenn APT als eine &dselect;-Methode benutzt wird, wird " -"<literal>clean</literal> automatisch ausgeführt. Diejenigen, die Dselect " -"nicht benutzen, werden <literal>apt-get clean</literal> wahrscheinlich von " -"Zeit zu Zeit ausführen, um Plattenplatz freizugeben." +"partial/</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:224 @@ -1087,13 +1268,6 @@ msgstr "" "installierte Version. Sie können jedoch die gleichen Optionen wie für den " "Befehl <option>install</option> angeben." -#. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:257 apt-cache.8.xml:250 apt-mark.8.xml:110 -#: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50 -#: apt-ftparchive.1.xml:506 -msgid "options" -msgstr "Optionen" - #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:262 msgid "" @@ -1124,19 +1298,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:277 -#, fuzzy -#| msgid "" -#| "Fix; attempt to correct a system with broken dependencies in place. This " -#| "option, when used with install/remove, can omit any packages to permit " -#| "APT to deduce a likely solution. If packages are specified, these have to " -#| "completely correct the problem. The option is sometimes necessary when " -#| "running APT for the first time; APT itself does not allow broken package " -#| "dependencies to exist on a system. It is possible that a system's " -#| "dependency structure can be so corrupt as to require manual intervention " -#| "(which usually means using &dselect; or <command>dpkg --remove</command> " -#| "to eliminate some of the offending packages). Use of this option together " -#| "with <option>-m</option> may produce an error in some situations. " -#| "Configuration Item: <literal>APT::Get::Fix-Broken</literal>." msgid "" "Fix; attempt to correct a system with broken dependencies in place. This " "option, when used with install/remove, can omit any packages to permit APT " @@ -1158,11 +1319,11 @@ msgstr "" "Mal ausgeführt wird. APT selbst erlaubt es nicht, dass auf einen System " "beschädigte Paketabhängigkeiten existieren. Es ist möglich, dass eine " "Abhängigkeitsstruktur eines Systems so fehlerhaft ist, dass ein manuelles " -"Eingreifen erforderlich ist (was normalerweise bedeutet, dass &dselect; oder " -"<command>dpkg --remove</command> benutzt wird, um einige der fehlerhaften " -"Pakete zu beseitigen). Wenn Sie die Option zusammen mit <option>-m</option> " -"benutzen, könnte das in einigen Situationen zu Fehlern führen. " -"Konfigurationselement: <literal>APT::Get::Fix-Broken</literal>." +"Eingreifen erforderlich ist (was normalerweise bedeutet, dass <command>dpkg " +"--remove</command> benutzt wird, um einige der fehlerhaften Pakete zu " +"beseitigen). Wenn Sie die Option zusammen mit <option>-m</option> benutzen, " +"könnte das in einigen Situationen zu Fehlern führen. Konfigurationselement: " +"<literal>APT::Get::Fix-Broken</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:292 @@ -1316,18 +1477,34 @@ msgid "" "satisfied. By default is it not set which means that the host architecture " "is the same as the build architecture (which is defined by <literal>APT::" "Architecture</literal>). Configuration Item: <literal>APT::Get::Host-" -"Architecture</literal>" +"Architecture</literal>." msgstr "" "Diese Option steuert, wie die Architekturpakete durch <command>apt-get " -"source --compile</command> gebaut und wie Cross-Bau-Abhängigkeiten erfüllt " +"source --compile</command> gebaut und wie Cross-Bauabhängigkeiten erfüllt " "werden. Standardmäßig ist sie nicht gesetze, was bedeutet, dass die " -"Rechnerarchitektur die gleiche wie die Bau-Architektur ist (die durch " +"Rechnerarchitektur die gleiche wie die Bauarchitektur ist (die durch " "<literal>APT::Architecture</literal>) definiert wird). " -"Konfigurationselement: <literal>APT::Get::Host-Architecture</literal>" +"Konfigurationselement: <literal>APT::Get::Host-Architecture</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:380 msgid "" +"This option controls the activated build profiles for which a source package " +"is built by <command>apt-get source --compile</command> and how build " +"dependencies are satisfied. By default no build profile is active. More " +"than one build profile can be activated at a time by concatenating them with " +"a comma. Configuration Item: <literal>APT::Build-Profiles</literal>." +msgstr "" +"Diese Option steuert die aktivierten Bauprofile für die ein Quellpaket durch " +"<command>apt-get source --compile</command> gebaut und wie Cross-" +"Bauabhängigkeiten erfüllt werden. Standardmäßig ist kein Bauprofil aktiv. " +"Ein weiteres Bauprofil kann gleichzeitig aktiviert werden, indem es durch " +"ein Komma getrennt angehängt wird. Konfigurationselement: <literal>APT::" +"Build-Profiles</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:391 +msgid "" "Compile source packages after downloading them. Configuration Item: " "<literal>APT::Get::Compile</literal>." msgstr "" @@ -1335,7 +1512,7 @@ msgstr "" "Konfigurationselement: <literal>APT::Get::Compile</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:385 +#: apt-get.8.xml:396 msgid "" "Ignore package holds; this causes <command>apt-get</command> to ignore a " "hold placed on a package. This may be useful in conjunction with " @@ -1349,7 +1526,7 @@ msgstr "" "<literal>APT::Ignore-Hold</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:392 +#: apt-get.8.xml:403 msgid "" "Allow installing new packages when used in conjunction with " "<literal>upgrade</literal>. This is useful if the update of a installed " @@ -1369,7 +1546,7 @@ msgstr "" "wird.Konfigurationselement: <literal>APT::Get::Upgrade-Allow-New</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:404 +#: apt-get.8.xml:415 msgid "" "Do not upgrade packages; when used in conjunction with <literal>install</" "literal>, <literal>no-upgrade</literal> will prevent packages on the command " @@ -1383,7 +1560,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:411 +#: apt-get.8.xml:422 msgid "" "Do not install new packages; when used in conjunction with <literal>install</" "literal>, <literal>only-upgrade</literal> will install upgrades for already " @@ -1397,7 +1574,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:419 +#: apt-get.8.xml:430 msgid "" "Force yes; this is a dangerous option that will cause apt to continue " "without prompting if it is doing something potentially harmful. It should " @@ -1412,7 +1589,7 @@ msgstr "" "zerstören! Konfigurationselement: <literal>APT::Get::force-yes</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:427 +#: apt-get.8.xml:438 msgid "" "Instead of fetching the files to install their URIs are printed. Each URI " "will have the path, the destination file name, the size and the expected MD5 " @@ -1434,7 +1611,7 @@ msgstr "" "Get::Print-URIs</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:438 +#: apt-get.8.xml:449 msgid "" "Use purge instead of remove for anything that would be removed. An asterisk " "(\"*\") will be displayed next to packages which are scheduled to be purged. " @@ -1447,7 +1624,7 @@ msgstr "" "option>. Konfigurationselement: <literal>APT::Get::Purge</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:446 +#: apt-get.8.xml:457 msgid "" "Re-install packages that are already installed and at the newest version. " "Configuration Item: <literal>APT::Get::ReInstall</literal>." @@ -1456,7 +1633,7 @@ msgstr "" "Version haben. Konfigurationselement: <literal>APT::Get::ReInstall</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:451 +#: apt-get.8.xml:462 msgid "" "This option is on by default; use <literal>--no-list-cleanup</literal> to " "turn it off. When it is on, <command>apt-get</command> will automatically " @@ -1474,7 +1651,7 @@ msgstr "" "Get::List-Cleanup</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:461 +#: apt-get.8.xml:472 msgid "" "This option controls the default input to the policy engine; it creates a " "default pin at priority 990 using the specified release string. This " @@ -1499,7 +1676,7 @@ msgstr "" "auch die &apt-preferences;-Handbuchseite." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:476 +#: apt-get.8.xml:487 msgid "" "Only perform operations that are 'trivial'. Logically this can be considered " "related to <option>--assume-yes</option>; where <option>--assume-yes</" @@ -1513,7 +1690,7 @@ msgstr "" "Trivial-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:483 +#: apt-get.8.xml:494 msgid "" "If any packages are to be removed apt-get immediately aborts without " "prompting. Configuration Item: <literal>APT::Get::Remove</literal>." @@ -1522,7 +1699,7 @@ msgstr "" "Nachfrage ab. Konfigurationselement: <literal>APT::Get::Remove</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:489 +#: apt-get.8.xml:500 msgid "" "If the command is either <literal>install</literal> or <literal>remove</" "literal>, then this option acts like running the <literal>autoremove</" @@ -1536,7 +1713,7 @@ msgstr "" "AutomaticRemove</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:496 +#: apt-get.8.xml:507 msgid "" "Only has meaning for the <literal>source</literal> and <literal>build-dep</" "literal> commands. Indicates that the given source names are not to be " @@ -1555,7 +1732,7 @@ msgstr "" "Get::Only-Source</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:507 +#: apt-get.8.xml:518 msgid "" "Download only the diff, dsc, or tar file of a source archive. Configuration " "Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</" @@ -1567,7 +1744,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:513 +#: apt-get.8.xml:524 msgid "" "Only process architecture-dependent build-dependencies. Configuration Item: " "<literal>APT::Get::Arch-Only</literal>." @@ -1576,7 +1753,7 @@ msgstr "" "Konfigurationselement: <literal>APT::Get::Arch-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:518 +#: apt-get.8.xml:529 msgid "" "Ignore if packages can't be authenticated and don't prompt about it. This " "is useful for tools like pbuilder. Configuration Item: <literal>APT::Get::" @@ -1588,7 +1765,7 @@ msgstr "" # FIXME s/Item/Items/ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:524 +#: apt-get.8.xml:535 msgid "" "Show user friendly progress information in the terminal window when packages " "are installed, upgraded or removed. For a machine parsable version of this " @@ -1604,45 +1781,24 @@ msgstr "" "<literal>Dpkg::Progress-Fancy</literal>." #. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:537 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 -#: apt.conf.5.xml:1200 apt_preferences.5.xml:700 +#: apt-get.8.xml:548 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 +#: apt.conf.5.xml:1221 apt_preferences.5.xml:700 msgid "Files" msgstr "Dateien" -#. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:547 apt-cache.8.xml:352 apt-key.8.xml:197 apt-mark.8.xml:133 -#: apt-secure.8.xml:193 apt-cdrom.8.xml:154 apt-config.8.xml:111 -#: apt.conf.5.xml:1206 apt_preferences.5.xml:707 sources.list.5.xml:280 -#: apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 -#: apt-ftparchive.1.xml:609 -msgid "See Also" -msgstr "Siehe auch" - #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:548 -#, fuzzy -#| msgid "" -#| "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " -#| "&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-" -#| "preferences;, the APT Howto." +#: apt-get.8.xml:559 msgid "" "&apt-cache;, &apt-cdrom;, &dpkg;, &sources-list;, &apt-conf;, &apt-config;, " "&apt-secure;, The APT User's guide in &guidesdir;, &apt-preferences;, the " "APT Howto." msgstr "" -"&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " -"&apt-config;, &apt-secure;, die APT-Benutzeranleitung in &guidesdir;, &apt-" -"preferences;, das APT-Howto." - -#. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:553 apt-cache.8.xml:357 apt-mark.8.xml:137 -#: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76 -#: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613 -msgid "Diagnostics" -msgstr "Diagnose" +"&apt-cache;, &apt-cdrom;, &dpkg;, &sources-list;, &apt-conf;, &apt-config;, " +"&apt-secure;, die APT-Benutzeranleitung in &guidesdir;, &apt-preferences;, " +"das APT-Howto." #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:554 +#: apt-get.8.xml:565 msgid "" "<command>apt-get</command> returns zero on normal operation, decimal 100 on " "error." @@ -3504,7 +3660,21 @@ msgstr "" "print-architectures</command> registriert werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:181 +#: apt.conf.5.xml:182 +msgid "" +"List of all build profiles enabled for build-dependency resolution, without " +"the \"<literal>profile.</literal>\" namespace prefix. By default this list " +"is empty. The <envar>DEB_BUILD_PROFILES</envar> as used by &dpkg-" +"buildpackage; overrides the list notation." +msgstr "" +"Liste aller Bauprofile ohne das Namensraum-Präfix »<literal>profile.</" +"literal>«, die für die Auflösung der Bauabhängigkeiten aktiviert sind. " +"Standardmäßig ist diese Liste leer. <envar>DEB_BUILD_PROFILES</envar> setzt " +"so, wie es durch &dpkg-buildpackage; benutzt wird, die Listenschreibweise " +"außer Kraft." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:190 msgid "" "Default release to install packages from if more than one version is " "available. Contains release name, codename or release version. Examples: " @@ -3517,7 +3687,7 @@ msgstr "" "codename;«, »4.0«, »5.0*«. Siehe auch &apt-preferences;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:187 +#: apt.conf.5.xml:196 msgid "" "Ignore held packages; this global option causes the problem resolver to " "ignore held packages in its decision making." @@ -3526,7 +3696,7 @@ msgstr "" "Problemlöser, gehaltene Pakete beim Treffen von Entscheidungen zu ignorieren." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:192 +#: apt.conf.5.xml:201 msgid "" "Defaults to on. When turned on the autoclean feature will remove any " "packages which can no longer be downloaded from the cache. If turned off " @@ -3541,7 +3711,7 @@ msgstr "" "Möglichkeiten bereitstellt, um sie erneut zu installieren." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:200 +#: apt.conf.5.xml:209 msgid "" "Defaults to on, which will cause APT to install essential and important " "packages as soon as possible in an install/upgrade operation, in order to " @@ -3569,7 +3739,7 @@ msgstr "" "Abhängigkeit von A nicht länger erfüllt wird." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:212 +#: apt.conf.5.xml:221 msgid "" "The immediate configuration marker is also applied in the potentially " "problematic case of circular dependencies, since a dependency with the " @@ -3599,7 +3769,7 @@ msgstr "" "Stelle verhindern kann." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:225 +#: apt.conf.5.xml:234 msgid "" "Before a big operation like <literal>dist-upgrade</literal> is run with this " "option disabled you should try to explicitly <literal>install</literal> the " @@ -3617,7 +3787,7 @@ msgstr "" "des Upgrade-Prozesses arbeiten können." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:236 +#: apt.conf.5.xml:245 msgid "" "Never enable this option unless you <emphasis>really</emphasis> know what " "you are doing. It permits APT to temporarily remove an essential package to " @@ -3639,7 +3809,7 @@ msgstr "" "davon abhängt, sind." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:248 +#: apt.conf.5.xml:257 msgid "" "APT uses since version 0.7.26 a resizable memory mapped cache file to store " "the available information. <literal>Cache-Start</literal> acts as a hint of " @@ -3676,13 +3846,13 @@ msgstr "" "auf 0 gesetzt ist, kann der Zwischenspeicher nicht automatisch wachsen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:264 +#: apt.conf.5.xml:273 msgid "Defines which packages are considered essential build dependencies." msgstr "" "definiert, welche Pakete als essentielle Bauabhängigkeiten betrachtet werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:268 +#: apt.conf.5.xml:277 msgid "" "The Get subsection controls the &apt-get; tool; please see its documentation " "for more information about the options here." @@ -3692,7 +3862,7 @@ msgstr "" "erhalten." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:273 +#: apt.conf.5.xml:282 msgid "" "The Cache subsection controls the &apt-cache; tool; please see its " "documentation for more information about the options here." @@ -3702,7 +3872,7 @@ msgstr "" "erhalten." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:278 +#: apt.conf.5.xml:287 msgid "" "The CDROM subsection controls the &apt-cdrom; tool; please see its " "documentation for more information about the options here." @@ -3712,12 +3882,12 @@ msgstr "" "erhalten." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:284 +#: apt.conf.5.xml:293 msgid "The Acquire Group" msgstr "Die Erwerbgruppe" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:285 +#: apt.conf.5.xml:294 msgid "" "The <literal>Acquire</literal> group of options controls the download of " "packages as well as the various \"acquire methods\" responsible for the " @@ -3728,7 +3898,7 @@ msgstr "" "Herunterladen selbst zuständig sind (siehe auch &sources-list;)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:292 +#: apt.conf.5.xml:301 msgid "" "Security related option defaulting to true, as giving a Release file's " "validation an expiration date prevents replay attacks over a long timescale, " @@ -3750,7 +3920,7 @@ msgstr "" "ValidTime</literal> unten benutzt werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:305 +#: apt.conf.5.xml:314 msgid "" "Maximum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -3769,7 +3939,7 @@ msgstr "" "Anhängen der Archivbezeichnung an den Optionsnamen vorgenommen werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:317 +#: apt.conf.5.xml:326 msgid "" "Minimum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -3789,7 +3959,7 @@ msgstr "" "Optionsnamen vorgenommen werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:329 +#: apt.conf.5.xml:338 msgid "" "Try to download deltas called <literal>PDiffs</literal> for indexes (like " "<filename>Packages</filename> files) instead of downloading whole ones. True " @@ -3800,7 +3970,7 @@ msgstr "" "der kompletten Dateien. Vorgabe ist True." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:332 +#: apt.conf.5.xml:341 msgid "" "Two sub-options to limit the use of PDiffs are also available: " "<literal>FileLimit</literal> can be used to specify a maximum number of " @@ -3818,7 +3988,7 @@ msgstr "" "komplette Datei anstelle der Patche heruntergeladen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:342 +#: apt.conf.5.xml:351 msgid "" "Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</" "literal> or <literal>access</literal> which determines how APT parallelizes " @@ -3834,7 +4004,7 @@ msgstr "" "URI-Art geöffnet wird." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:350 +#: apt.conf.5.xml:359 msgid "" "Number of retries to perform. If this is non-zero APT will retry failed " "files the given number of times." @@ -3843,7 +4013,7 @@ msgstr "" "APT fehlgeschlagene Dateien in der angegebenen Zahl erneut versuchen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:355 +#: apt.conf.5.xml:364 msgid "" "Use symlinks for source archives. If set to true then source archives will " "be symlinked when possible instead of copying. True is the default." @@ -3853,7 +4023,7 @@ msgstr "" "kopiert zu werden. True ist die Vorgabe." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:360 +#: apt.conf.5.xml:369 msgid "" "<literal>http::Proxy</literal> sets the default proxy to use for HTTP URIs. " "It is in the standard form of <literal>http://[[user][:pass]@]host[:port]/</" @@ -3872,7 +4042,7 @@ msgstr "" "wurde, wird die Umgebungsvariable <envar>http_proxy</envar> benutzt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:368 +#: apt.conf.5.xml:377 msgid "" "Three settings are provided for cache control with HTTP/1.1 compliant proxy " "caches. <literal>No-Cache</literal> tells the proxy not to use its cached " @@ -3893,7 +4063,7 @@ msgstr "" "Zwischenspeicher mit (großen) .deb-Dateien verunreinigt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:378 apt.conf.5.xml:466 +#: apt.conf.5.xml:387 apt.conf.5.xml:475 msgid "" "The option <literal>timeout</literal> sets the timeout timer used by the " "method; this value applies to the connection as well as the data timeout." @@ -3903,7 +4073,7 @@ msgstr "" "Datenzeitüberschreitungen angewandt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:381 +#: apt.conf.5.xml:390 msgid "" "The setting <literal>Acquire::http::Pipeline-Depth</literal> can be used to " "enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e." @@ -3923,7 +4093,7 @@ msgstr "" "HTTP/1.1-Spezifikation entsprechen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:388 +#: apt.conf.5.xml:397 msgid "" "<literal>Acquire::http::AllowRedirect</literal> controls whether APT will " "follow redirects, which is enabled by default." @@ -3932,7 +4102,7 @@ msgstr "" "folgen wird, was standardmäßig aktiviert ist." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:391 +#: apt.conf.5.xml:400 msgid "" "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</" "literal> which accepts integer values in kilobytes per second. The default " @@ -3948,7 +4118,7 @@ msgstr "" "Zeit deaktiviert." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:398 +#: apt.conf.5.xml:407 msgid "" "<literal>Acquire::http::User-Agent</literal> can be used to set a different " "User-Agent for the http download method as some proxies allow access for " @@ -3960,7 +4130,7 @@ msgstr "" "bekannten Bezeichner verwendet." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:402 +#: apt.conf.5.xml:411 msgid "" "<literal>Acquire::http::Proxy-Auto-Detect</literal> can be used to specify " "an external command to discover the http proxy to use. Apt expects the " @@ -3983,7 +4153,7 @@ msgstr "" "dem veralteten Optionsnamen <literal>ProxyAutoDetect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:420 +#: apt.conf.5.xml:429 msgid "" "The <literal>Cache-control</literal>, <literal>Timeout</literal>, " "<literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> and " @@ -4000,7 +4170,7 @@ msgstr "" "<literal>Pipeline-Depth</literal> wird noch nicht unterstützt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:428 +#: apt.conf.5.xml:437 msgid "" "<literal>CaInfo</literal> suboption specifies place of file that holds info " "about trusted certificates. <literal><host>::CaInfo</literal> is the " @@ -4041,7 +4211,7 @@ msgstr "" "Rechner ist <literal><host>::SslForceVersion</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:449 +#: apt.conf.5.xml:458 msgid "" "<literal>ftp::Proxy</literal> sets the default proxy to use for FTP URIs. " "It is in the standard form of <literal>ftp://[[user][:pass]@]host[:port]/</" @@ -4076,7 +4246,7 @@ msgstr "" "literal> und <literal>$(SITE_PORT)</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:469 +#: apt.conf.5.xml:478 msgid "" "Several settings are provided to control passive mode. Generally it is safe " "to leave passive mode on; it works in nearly every environment. However, " @@ -4093,7 +4263,7 @@ msgstr "" "Musterkonfigurationsdatei)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:476 +#: apt.conf.5.xml:485 msgid "" "It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</" "envar> environment variable to an HTTP URL - see the discussion of the http " @@ -4107,7 +4277,7 @@ msgstr "" "Effizienz nicht empfohlen FTP über HTTP zu benutzen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:481 +#: apt.conf.5.xml:490 msgid "" "The setting <literal>ForceExtended</literal> controls the use of RFC2428 " "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is " @@ -4123,13 +4293,13 @@ msgstr "" "Server RFC2428 unterstützen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:495 +#: apt.conf.5.xml:504 #, no-wrap msgid "/cdrom/::Mount \"foo\";" msgstr "/cdrom/::Mount \"foo\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:490 +#: apt.conf.5.xml:499 msgid "" "For URIs using the <literal>cdrom</literal> method, the only configurable " "option is the mount point, <literal>cdrom::Mount</literal>, which must be " @@ -4151,7 +4321,7 @@ msgstr "" "Aushängebefehle können per UMount angegeben werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:503 +#: apt.conf.5.xml:512 msgid "" "For GPGV URIs the only configurable option is <literal>gpgv::Options</" "literal>, which passes additional parameters to gpgv." @@ -4160,13 +4330,13 @@ msgstr "" "literal>, um zusätzliche Parameter an Gpgv weiterzuleiten." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:514 +#: apt.conf.5.xml:523 #, no-wrap msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";" msgstr "Acquire::CompressionTypes::<replaceable>Dateierweiterung</replaceable> \"<replaceable>Methodenname</replaceable>\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:509 +#: apt.conf.5.xml:518 msgid "" "List of compression types which are understood by the acquire methods. " "Files like <filename>Packages</filename> can be available in various " @@ -4186,19 +4356,19 @@ msgstr "" "\"synopsis\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:519 +#: apt.conf.5.xml:528 #, no-wrap msgid "Acquire::CompressionTypes::Order:: \"gz\";" msgstr "Acquire::CompressionTypes::Order:: \"gz\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:522 +#: apt.conf.5.xml:531 #, no-wrap msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:515 +#: apt.conf.5.xml:524 msgid "" "Also, the <literal>Order</literal> subgroup can be used to define in which " "order the acquire system will try to download the compressed files. The " @@ -4230,13 +4400,13 @@ msgstr "" "explizit zur Liste hinzuzufügen, da es automatisch hinzufügt wird." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:529 +#: apt.conf.5.xml:538 #, no-wrap msgid "Dir::Bin::bzip2 \"/bin/bzip2\";" msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:524 +#: apt.conf.5.xml:533 msgid "" "Note that the <literal>Dir::Bin::<replaceable>Methodname</replaceable></" "literal> will be checked at run time. If this option has been set, the " @@ -4262,7 +4432,7 @@ msgstr "" "nicht überschreiben, es wird diesen Typ nur vor die Liste setzen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:534 +#: apt.conf.5.xml:543 msgid "" "The special type <literal>uncompressed</literal> can be used to give " "uncompressed files a preference, but note that most archives don't provide " @@ -4274,7 +4444,7 @@ msgstr "" "dies meist nur für lokale Spiegel benutzt werden kann." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:541 +#: apt.conf.5.xml:550 msgid "" "When downloading <literal>gzip</literal> compressed indexes (Packages, " "Sources, or Translations), keep them gzip compressed locally instead of " @@ -4288,7 +4458,7 @@ msgstr "" "False." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:549 +#: apt.conf.5.xml:558 msgid "" "The Languages subsection controls which <filename>Translation</filename> " "files are downloaded and in which order APT tries to display the description-" @@ -4308,13 +4478,13 @@ msgstr "" "langen Sprachcodes selten." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><programlisting> -#: apt.conf.5.xml:566 +#: apt.conf.5.xml:575 #, no-wrap msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" msgstr "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:554 +#: apt.conf.5.xml:563 msgid "" "The default list includes \"environment\" and \"en\". " "\"<literal>environment</literal>\" has a special meaning here: it will be " @@ -4355,7 +4525,7 @@ msgstr "" "\"0\"/>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:567 +#: apt.conf.5.xml:576 msgid "" "Note: To prevent problems resulting from APT being executed in different " "environments (e.g. by different users or by other programs) all Translation " @@ -4369,22 +4539,22 @@ msgstr "" "Liste hinzugefügt (nach einem impliziten »<literal>none</literal>«)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:576 +#: apt.conf.5.xml:585 msgid "When downloading, force to use only the IPv4 protocol." msgstr "Beim Herunterladen wird die Verwendung des IPv4-Protokolls erzwungen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:582 +#: apt.conf.5.xml:591 msgid "When downloading, force to use only the IPv6 protocol." msgstr "Beim Herunterladen wird die Verwendung des IPv6-Protokolls erzwungen." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:589 +#: apt.conf.5.xml:598 msgid "Directories" msgstr "Verzeichnisse" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:591 +#: apt.conf.5.xml:600 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@ -4404,7 +4574,7 @@ msgstr "" "nicht mit <filename>/</filename> oder <filename>./</filename> beginnen." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:598 +#: apt.conf.5.xml:607 msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@ -4427,7 +4597,7 @@ msgstr "" "Standardverzeichnis in <literal>Dir::Cache</literal> enthalten." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:607 +#: apt.conf.5.xml:616 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -4442,7 +4612,7 @@ msgstr "" "Konfigurationsdatei erfolgt)." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:613 +#: apt.conf.5.xml:622 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -4454,7 +4624,7 @@ msgstr "" "geladen." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:617 +#: apt.conf.5.xml:626 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@ -4472,7 +4642,7 @@ msgstr "" "Programms an." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:625 +#: apt.conf.5.xml:634 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -4492,7 +4662,7 @@ msgstr "" "<filename>/tmp/staging/var/lib/dpkg/status</filename> nachgesehen." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:638 +#: apt.conf.5.xml:647 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@ -4510,12 +4680,12 @@ msgstr "" "diese Muster verwandt werden." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:647 +#: apt.conf.5.xml:656 msgid "APT in DSelect" msgstr "APT in DSelect" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:649 +#: apt.conf.5.xml:658 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@ -4526,7 +4696,7 @@ msgstr "" "<literal>DSelect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:654 +#: apt.conf.5.xml:663 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@ -4549,7 +4719,7 @@ msgstr "" "vor dem Herunterladen neuer Pakete durch." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:668 +#: apt.conf.5.xml:677 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." @@ -4558,7 +4728,7 @@ msgstr "" "übermittelt, wenn es für die Installationsphase durchlaufen wird." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:673 +#: apt.conf.5.xml:682 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." @@ -4567,7 +4737,7 @@ msgstr "" "übermittelt, wenn es für die Aktualisierungsphase durchlaufen wird." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:678 +#: apt.conf.5.xml:687 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." @@ -4576,12 +4746,12 @@ msgstr "" "nachfragen, um fortzufahren. Vorgabe ist es, nur bei Fehlern nachzufragen." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:684 +#: apt.conf.5.xml:693 msgid "How APT calls &dpkg;" msgstr "Wie APT &dpkg; aufruft" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:685 +#: apt.conf.5.xml:694 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." @@ -4590,7 +4760,7 @@ msgstr "" "stehen im Abschnitt <literal>DPkg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:690 +#: apt.conf.5.xml:699 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -4601,7 +4771,7 @@ msgstr "" "jedes Listenelement wird als einzelnes Argument an &dpkg; übermittelt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:696 +#: apt.conf.5.xml:705 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4615,7 +4785,7 @@ msgstr "" "APT abgebrochen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:703 +#: apt.conf.5.xml:712 msgid "" "This is a list of shell commands to run before invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4634,7 +4804,7 @@ msgstr "" "übergeben." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:710 +#: apt.conf.5.xml:719 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@ -4647,7 +4817,7 @@ msgstr "" "Version die Architektur und den <literal>MultiArch</literal>-Schalter hinzu." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:715 +#: apt.conf.5.xml:724 msgid "" "The version of the protocol to be used for the command " "<literal><replaceable>cmd</replaceable></literal> can be chosen by setting " @@ -4665,7 +4835,7 @@ msgstr "" "bietet." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:722 +#: apt.conf.5.xml:731 msgid "" "The file descriptor to be used to send the information can be requested with " "<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</" @@ -4683,7 +4853,7 @@ msgstr "" "verwendeten Dateideskriptors als eine Bestätigung." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:732 +#: apt.conf.5.xml:741 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." @@ -4692,7 +4862,7 @@ msgstr "" "die Vorgabe ist <filename>/</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:737 +#: apt.conf.5.xml:746 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." @@ -4702,12 +4872,12 @@ msgstr "" "Programme werden erstellt." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:742 +#: apt.conf.5.xml:751 msgid "dpkg trigger usage (and related options)" msgstr "Dpkd-Trigger-Benutzung (und zugehörige Optionen)" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:743 +#: apt.conf.5.xml:752 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@ -4734,7 +4904,7 @@ msgstr "" "Pakete konfiguriert werden." #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:758 +#: apt.conf.5.xml:767 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -4748,7 +4918,7 @@ msgstr "" "DPkg::TriggersPending \"true\";" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:752 +#: apt.conf.5.xml:761 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -4773,7 +4943,7 @@ msgstr "" "Optionenkombination wäre <placeholder type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:765 +#: apt.conf.5.xml:774 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -4796,7 +4966,7 @@ msgstr "" "anhängen." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:773 +#: apt.conf.5.xml:782 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@ -4826,7 +4996,7 @@ msgstr "" "enden könnte und möglicherweise nicht mehr startbar ist." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:788 +#: apt.conf.5.xml:797 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@ -4845,7 +5015,7 @@ msgstr "" "deaktivieren." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:795 +#: apt.conf.5.xml:804 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@ -4861,7 +5031,7 @@ msgstr "" "benötigt werden." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:808 +#: apt.conf.5.xml:817 #, no-wrap msgid "" "OrderList::Score {\n" @@ -4879,7 +5049,7 @@ msgstr "" "};" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:801 +#: apt.conf.5.xml:810 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@ -4903,12 +5073,12 @@ msgstr "" "mit ihren Vorgabewerten. <placeholder type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:821 +#: apt.conf.5.xml:830 msgid "Periodic and Archives options" msgstr "Periodische- und Archivoptionen" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:822 +#: apt.conf.5.xml:831 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@ -4922,12 +5092,12 @@ msgstr "" "Dokumentation dieser Optionen zu erhalten." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:830 +#: apt.conf.5.xml:839 msgid "Debug options" msgstr "Fehlersuchoptionen" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:832 +#: apt.conf.5.xml:841 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -4945,7 +5115,7 @@ msgstr "" "könnten es sein:" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:843 +#: apt.conf.5.xml:852 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@ -4956,7 +5126,7 @@ msgstr "" "getroffenen Entscheidungen ein." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:851 +#: apt.conf.5.xml:860 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@ -4967,7 +5137,7 @@ msgstr "" "<literal>apt-get -s install</literal>) als nicht root-Anwender auszuführen." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:860 +#: apt.conf.5.xml:869 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -4979,7 +5149,7 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:868 +#: apt.conf.5.xml:877 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." @@ -4988,12 +5158,12 @@ msgstr "" "Daten in CD-ROM-IDs aus." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:878 +#: apt.conf.5.xml:887 msgid "A full list of debugging options to apt follows." msgstr "Eine vollständige Liste der Fehlersuchoptionen von APT folgt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:887 +#: apt.conf.5.xml:896 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" @@ -5001,28 +5171,28 @@ msgstr "" "literal>-Quellen beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:898 +#: apt.conf.5.xml:907 msgid "Print information related to downloading packages using FTP." msgstr "" "gibt Informationen aus, die sich auf das Herunterladen von Paketen per FTP " "beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:909 +#: apt.conf.5.xml:918 msgid "Print information related to downloading packages using HTTP." msgstr "" "gibt Informationen aus, die sich auf das Herunterladen von Paketen per HTTP " "beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:920 +#: apt.conf.5.xml:929 msgid "Print information related to downloading packages using HTTPS." msgstr "" "gibt Informationen aus, die sich auf das Herunterladen von Paketen per HTTPS " "beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:931 +#: apt.conf.5.xml:940 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." @@ -5031,7 +5201,7 @@ msgstr "" "mittels <literal>gpg</literal> beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:942 +#: apt.conf.5.xml:951 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." @@ -5040,13 +5210,13 @@ msgstr "" "CD-ROMs gespeichert sind." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:952 +#: apt.conf.5.xml:961 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" "beschreibt den Prozess der Auflösung von Bauabhängigkeiten in &apt-get;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:962 +#: apt.conf.5.xml:971 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." @@ -5055,7 +5225,7 @@ msgstr "" "Bibliotheken generiert wurde." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:972 +#: apt.conf.5.xml:981 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -5066,7 +5236,7 @@ msgstr "" "ID für eine CD-ROM generiert wird." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:983 +#: apt.conf.5.xml:992 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." @@ -5076,14 +5246,14 @@ msgstr "" "gleichen Zeit laufen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:995 +#: apt.conf.5.xml:1004 msgid "Log when items are added to or removed from the global download queue." msgstr "" "protokolliert, wenn Elemente aus der globalen Warteschlange zum " "Herunterladen hinzugefügt oder entfernt werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1005 +#: apt.conf.5.xml:1014 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." @@ -5092,7 +5262,7 @@ msgstr "" "und kryptografischen Signaturen von heruntergeladenen Dateien beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1015 +#: apt.conf.5.xml:1024 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." @@ -5101,7 +5271,7 @@ msgstr "" "Diffs und Fehler, die die Paketindexlisten-Diffs betreffen, aus." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1027 +#: apt.conf.5.xml:1036 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." @@ -5111,7 +5281,7 @@ msgstr "" "werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1038 +#: apt.conf.5.xml:1047 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" @@ -5119,7 +5289,7 @@ msgstr "" "durchführen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1049 +#: apt.conf.5.xml:1058 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." @@ -5129,7 +5299,7 @@ msgstr "" "beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1059 +#: apt.conf.5.xml:1068 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@ -5145,7 +5315,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1073 +#: apt.conf.5.xml:1082 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@ -5178,7 +5348,7 @@ msgstr "" "dem das Paket erscheint." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1094 +#: apt.conf.5.xml:1103 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." @@ -5188,7 +5358,7 @@ msgstr "" "sind, aus." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1105 +#: apt.conf.5.xml:1114 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." @@ -5197,7 +5367,7 @@ msgstr "" "und alle während deren Auswertung gefundenen Fehler aus." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1116 +#: apt.conf.5.xml:1125 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." @@ -5207,7 +5377,7 @@ msgstr "" "soll." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1128 +#: apt.conf.5.xml:1137 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" @@ -5215,12 +5385,12 @@ msgstr "" "von &dpkg; ausgeführt werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1139 +#: apt.conf.5.xml:1148 msgid "Output the priority of each package list on startup." msgstr "gibt die Priorität jeder Paketliste beim Start aus." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1149 +#: apt.conf.5.xml:1158 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." @@ -5230,7 +5400,7 @@ msgstr "" "aufgetreten ist)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1160 +#: apt.conf.5.xml:1169 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -5242,7 +5412,7 @@ msgstr "" "Marker</literal> beschrieben." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1172 +#: apt.conf.5.xml:1181 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." @@ -5250,14 +5420,22 @@ msgstr "" "gibt die Informationen über die in <filename>/etc/apt/vendors.list</" "filename> gelesenen Anbieter aus." +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:1191 +msgid "" +"Display the external commands that are called by apt hooks. This includes e." +"g. the config options <literal>DPkg::{Pre,Post}-Invoke</literal> or " +"<literal>APT::Update::{Pre,Post}-Invoke</literal>." +msgstr "" + #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:1194 apt_preferences.5.xml:547 sources.list.5.xml:239 +#: apt.conf.5.xml:1215 apt_preferences.5.xml:547 sources.list.5.xml:239 #: apt-ftparchive.1.xml:598 msgid "Examples" msgstr "Beispiele" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1195 +#: apt.conf.5.xml:1216 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -5267,7 +5445,7 @@ msgstr "" #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1207 +#: apt.conf.5.xml:1228 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." @@ -7273,14 +7451,14 @@ msgid "" "template-file and config-script are written to the temporary directory " "specified by the <option>-t</option> or <option>--tempdir</option> " "(<literal>APT::ExtractTemplates::TempDir</literal>) directory, with " -"filenames of the form <filename>package.template.XXXX</filename> and " -"<filename>package.config.XXXX</filename>" +"filenames of the form <filename>package.template.XXXXXX</filename> and " +"<filename>package.config.XXXXXX</filename>" msgstr "" "Schablonendatei und Konfigurationsskript werden in das temporäre Verzeichnis " "geschrieben, das durch das Verzeichnis <option>-t</option> oder <option>--" "tempdir</option> (<literal>APT::ExtractTemplates::TempDir</literal>) mit " -"Dateinamen der Form <filename>package. template.XXXX</filename> und " -"<filename>package.config.XXXX</filename> angegeben wurde." +"Dateinamen der Form <filename>package. template.XXXXXX</filename> und " +"<filename>package.config.XXXXXX</filename> angegeben wurde." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-extracttemplates.1.xml:60 @@ -8317,124 +8495,6 @@ msgstr "" "<command>apt-ftparchive</command> gibt bei normalen Operationen 0 zurück, " "dezimal 100 bei Fehlern." -#. type: TH -#: apt.8:17 -#, no-wrap -msgid "apt" -msgstr "apt" - -#. type: TH -#: apt.8:17 -#, no-wrap -msgid "16 June 1998" -msgstr "16. Juni 1998" - -#. type: TH -#: apt.8:17 -#, no-wrap -msgid "Debian" -msgstr "Debian" - -#. type: SH -#: apt.8:18 -#, no-wrap -msgid "NAME" -msgstr "NAME" - -#. type: Plain text -#: apt.8:20 -msgid "apt - Advanced Package Tool" -msgstr "apt - Fortschrittliches Paketwerkzeug (Advanced Package Tool)" - -#. type: SH -#: apt.8:20 -#, no-wrap -msgid "SYNOPSIS" -msgstr "ÜBERSICHT" - -#. type: Plain text -#: apt.8:22 -msgid "B<apt>" -msgstr "B<apt>" - -#. type: SH -#: apt.8:22 -#, no-wrap -msgid "DESCRIPTION" -msgstr "BESCHREIBUNG" - -#. type: Plain text -#: apt.8:31 -msgid "" -"APT is a management system for software packages. For normal day to day " -"package management there are several frontends available, such as " -"B<aptitude>(8) for the command line or B<synaptic>(8) for the X Window " -"System. Some options are only implemented in B<apt-get>(8) though." -msgstr "" -"APT ist ein Verwaltungssystem für Softwarepakete. Für normale alltägliche " -"Paketverwaltung sind mehrere Oberflächen, wie B<aptitude>(8) für die " -"Befehlszeile oder B<synaptic>(8) für das X-Window-System, verfügbar. Einige " -"Optionen sind jedoch nur in B<apt-get>(8) implementiert." - -#. type: SH -#: apt.8:31 -#, no-wrap -msgid "SEE ALSO" -msgstr "SIEHE AUCH" - -#. type: Plain text -#: apt.8:38 -msgid "" -"B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " -"B<apt_preferences>(5), B<apt-secure>(8)" -msgstr "" -"B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " -"B<apt_preferences>(5), B<apt-secure>(8)" - -#. type: SH -#: apt.8:38 -#, no-wrap -msgid "DIAGNOSTICS" -msgstr "DIAGNOSE" - -#. type: Plain text -#: apt.8:40 -msgid "apt returns zero on normal operation, decimal 100 on error." -msgstr "APT gibt bei normalen Operationen 0 zurück, dezimal 100 bei Fehlern." - -#. type: SH -#: apt.8:40 -#, no-wrap -msgid "BUGS" -msgstr "FEHLER" - -#. type: Plain text -#: apt.8:42 -msgid "This manpage isn't even started." -msgstr "Diese Handbuchseite wurde noch nicht mal begonnen." - -#. type: Plain text -#: apt.8:51 -msgid "" -"See E<lt>http://bugs.debian.org/aptE<gt>. If you wish to report a bug in " -"B<apt>, please see I</usr/share/doc/debian/bug-reporting.txt> or the " -"B<reportbug>(1) command." -msgstr "" -"siehe auch E<lt>http://bugs.debian.org/aptE<gt>. Wenn Sie einen Fehler in " -"B<apt> berichten möchten, sehen Sie sich bitte I</usr/share/doc/debian/bug-" -"reporting.txt> oder den Befehl B<reportbug>(1) an." - -#. type: SH -#: apt.8:51 -#, no-wrap -msgid "AUTHOR" -msgstr "AUTOR" - -#. type: Plain text -#: apt.8:52 -msgid "apt was written by the APT team E<lt>apt@packages.debian.orgE<gt>." -msgstr "APT wurde vom APT-Team E<lt>apt@packages.debian.orgE<gt> geschrieben." - #. type: <title></title> #: guide.sgml:4 msgid "APT User's Guide" @@ -8769,18 +8829,9 @@ msgstr "" #. type: <p></p> #: guide.sgml:163 -#, fuzzy -#| msgid "" -#| "<prgn>apt-get</prgn> has several command line options that are detailed " -#| "in its man page, <manref section=\"8\" name=\"apt-get\">. The most useful " -#| "option is <tt>-d</tt> which does not install the fetched files. If the " -#| "system has to download a large number of package it would be undesired to " -#| "start installing them in case something goes wrong. When <tt>-d</tt> is " -#| "used the downloaded archives can be installed by simply running the " -#| "command that caused them to be downloaded again without <tt>-d</tt>." msgid "" "<prgn>apt-get</prgn> has several command line options that are detailed in " -"its man page, <manref section=\"8\" name=\"apt-get\">. The most useful " +"its man page, <manref name=\"apt-get\" section=\"8\">. The most useful " "option is <tt>-d</tt> which does not install the fetched files. If the " "system has to download a large number of package it would be undesired to " "start installing them in case something goes wrong. When <tt>-d</tt> is used " @@ -8788,7 +8839,7 @@ msgid "" "caused them to be downloaded again without <tt>-d</tt>." msgstr "" "<prgn>apt-get</prgn> hat mehrere Befehlszeilenoptionen, die sich detailliert " -"in dessen Handbuchseite, <manref section=\"8\" name=\"apt-get\"> finden. Die " +"in dessen Handbuchseite, <manref name=\"apt-get\" section=\"8\"> finden. Die " "nützlichste Option ist <tt>-d</tt>, die die heruntergeladenen Dateien nicht " "installiert. Falls das System eine große Anzahl Pakete herunterladen soll, " "würde es nicht erwünscht sein, wenn die Installation in dem Fall gestartet " @@ -10017,3 +10068,87 @@ msgstr " # apt-get -o dir::cache::archives=\"/Platte/\" dist-upgrade" #: offline.sgml:234 msgid "Which will use the already fetched archives on the disc." msgstr "Es wird die bereits auf die Platte heruntergeladenen Archive benutzen." + +#~ msgid "apt" +#~ msgstr "apt" + +#~ msgid "16 June 1998" +#~ msgstr "16. Juni 1998" + +#~ msgid "Debian" +#~ msgstr "Debian" + +#~ msgid "NAME" +#~ msgstr "NAME" + +#~ msgid "apt - Advanced Package Tool" +#~ msgstr "apt - Fortschrittliches Paketwerkzeug (Advanced Package Tool)" + +#~ msgid "SYNOPSIS" +#~ msgstr "ÜBERSICHT" + +#~ msgid "B<apt>" +#~ msgstr "B<apt>" + +#~ msgid "DESCRIPTION" +#~ msgstr "BESCHREIBUNG" + +#, fuzzy +#~| msgid "" +#~| "APT is a management system for software packages. For normal day to day " +#~| "package management there are several frontends available, such as " +#~| "B<aptitude>(8) for the command line or B<synaptic>(8) for the X Window " +#~| "System. Some options are only implemented in B<apt-get>(8) though." +#~ msgid "" +#~ "For normal day to day package management there are several frontends " +#~ "available, such as B<aptitude>(8) for the command line or " +#~ "B<synaptic>(8) for the X Window System. Some options are only " +#~ "implemented in B<apt-get>(8) though." +#~ msgstr "" +#~ "APT ist ein Verwaltungssystem für Softwarepakete. Für normale alltägliche " +#~ "Paketverwaltung sind mehrere Oberflächen, wie B<aptitude>(8) für die " +#~ "Befehlszeile oder B<synaptic>(8) für das X-Window-System, verfügbar. " +#~ "Einige Optionen sind jedoch nur in B<apt-get>(8) implementiert." + +#~ msgid "SEE ALSO" +#~ msgstr "SIEHE AUCH" + +#, fuzzy +#~| msgid "" +#~| "B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " +#~| "B<apt_preferences>(5), B<apt-secure>(8)" +#~ msgid "" +#~ "B<apt>(8), B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources." +#~ "list>(5), B<apt_preferences>(5), B<apt-secure>(8)" +#~ msgstr "" +#~ "B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " +#~ "B<apt_preferences>(5), B<apt-secure>(8)" + +#~ msgid "DIAGNOSTICS" +#~ msgstr "DIAGNOSE" + +#~ msgid "apt returns zero on normal operation, decimal 100 on error." +#~ msgstr "" +#~ "APT gibt bei normalen Operationen 0 zurück, dezimal 100 bei Fehlern." + +#~ msgid "BUGS" +#~ msgstr "FEHLER" + +#~ msgid "This manpage isn't even started." +#~ msgstr "Diese Handbuchseite wurde noch nicht mal begonnen." + +#~ msgid "" +#~ "See E<lt>http://bugs.debian.org/aptE<gt>. If you wish to report a bug in " +#~ "B<apt>, please see I</usr/share/doc/debian/bug-reporting.txt> or the " +#~ "B<reportbug>(1) command." +#~ msgstr "" +#~ "siehe auch E<lt>http://bugs.debian.org/aptE<gt>. Wenn Sie einen Fehler in " +#~ "B<apt> berichten möchten, sehen Sie sich bitte I</usr/share/doc/debian/" +#~ "bug-reporting.txt> oder den Befehl B<reportbug>(1) an." + +#~ msgid "AUTHOR" +#~ msgstr "AUTOR" + +#~ msgid "apt was written by the APT team E<lt>apt@packages.debian.orgE<gt>." +#~ msgstr "" +#~ "APT wurde vom APT-Team E<lt>apt@packages.debian.orgE<gt> geschrieben." diff --git a/doc/po/es.po b/doc/po/es.po index bcf0ccf51..219e56710 100644 --- a/doc/po/es.po +++ b/doc/po/es.po @@ -38,8 +38,8 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.7.1\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" -"PO-Revision-Date: 2012-07-14 12:21+0200\n" +"POT-Creation-Date: 2014-04-10 09:49+0200\n" +"PO-Revision-Date: 2014-04-01 14:00+0200\n" "Last-Translator: Omar Campagne <ocampagne@gmail.com>\n" "Language-Team: Debian l10n Spanish <debian-l10n-spanish@lists.debian.org>\n" "Language: es\n" @@ -699,34 +699,266 @@ msgstr "" "473041FA --> <!ENTITY synopsis-keyid \"keyid\">" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 apt-mark.8.xml:28 -#: apt-secure.8.xml:27 apt-cdrom.8.xml:27 apt-config.8.xml:28 +#: apt.8.xml:25 apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 +#: apt-mark.8.xml:28 apt-secure.8.xml:27 apt-cdrom.8.xml:27 +#: apt-config.8.xml:28 msgid "8" msgstr "8" #. type: Content of: <refentry><refmeta><refmiscinfo> -#: apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 apt-mark.8.xml:29 -#: apt-secure.8.xml:28 apt-cdrom.8.xml:28 apt-config.8.xml:29 -#: apt.conf.5.xml:34 apt_preferences.5.xml:28 sources.list.5.xml:29 -#: apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 apt-ftparchive.1.xml:29 +#: apt.8.xml:26 apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 +#: apt-mark.8.xml:29 apt-secure.8.xml:28 apt-cdrom.8.xml:28 +#: apt-config.8.xml:29 apt.conf.5.xml:34 apt_preferences.5.xml:28 +#: sources.list.5.xml:29 apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 +#: apt-ftparchive.1.xml:29 msgid "APT" msgstr "APT" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-get.8.xml:35 -msgid "APT package handling utility -- command-line interface" +#: apt.8.xml:32 +msgid "command-line interface" msgstr "" -"Herramienta de gestión de paquetes APT -- interfaz para la lÃnea de órdenes" #. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 apt-mark.8.xml:40 -#: apt-secure.8.xml:52 apt-cdrom.8.xml:39 apt-config.8.xml:40 -#: apt.conf.5.xml:43 apt_preferences.5.xml:38 sources.list.5.xml:38 -#: apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 apt-ftparchive.1.xml:40 +#: apt.8.xml:37 apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 +#: apt-mark.8.xml:40 apt-secure.8.xml:52 apt-cdrom.8.xml:39 +#: apt-config.8.xml:40 apt.conf.5.xml:43 apt_preferences.5.xml:38 +#: sources.list.5.xml:38 apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 +#: apt-ftparchive.1.xml:40 msgid "Description" msgstr "Descripción" #. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:38 +msgid "" +"<command>apt</command> (Advanced Package Tool) is the command-line tool for " +"handling packages. It provides a commandline interface for the package " +"management of the system. See also &apt-get; and &apt-cache; for more low-" +"level command options." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:47 +msgid "" +"<literal>list</literal> is used to display a list of packages. It supports " +"shell pattern for matching package names and the following options: " +"<option>--installed</option>, <option>--upgradable</option>, <option>--all-" +"versions</option> are supported." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:58 +msgid "" +"<literal>search</literal> searches for the given term(s) and display " +"matching packages." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:64 +#, fuzzy +#| msgid "" +#| "<literal>rdepends</literal> shows a listing of each reverse dependency a " +#| "package has." +msgid "" +"<literal>show</literal> shows the package information for the given " +"package(s)." +msgstr "" +"<literal>rdepends</literal> muestra las dependencias inversas de un paquete." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:71 +msgid "" +"<literal>install</literal> is followed by one or more package names desired " +"for installation or upgrading." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:75 apt-get.8.xml:118 +msgid "" +"A specific version of a package can be selected for installation by " +"following the package name with an equals and the version of the package to " +"select. This will cause that version to be located and selected for install. " +"Alternatively a specific distribution can be selected by following the " +"package name with a slash and the version of the distribution or the Archive " +"name (stable, testing, unstable)." +msgstr "" +"Puede seleccionar una versión especifica de un paquete poniendo a " +"continuación del nombre del paquete un sÃmbolo igual («=») seguido de la " +"versión deseada. Esto provocará que se localice y seleccione esa versión " +"para su instalación. Alternativamente se puede seleccionar una distribución " +"especÃfica poniendo a continuación del nombre del paquete una barra («/») " +"seguida de la versión de la distribución o su nombre en el archivo de Debian " +"(stable, testing, unstable)." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:85 apt-get.8.xml:153 +msgid "" +"<literal>remove</literal> is identical to <literal>install</literal> except " +"that packages are removed instead of installed. Note that removing a package " +"leaves its configuration files on the system. If a plus sign is appended to " +"the package name (with no intervening space), the identified package will be " +"installed instead of removed." +msgstr "" +"<literal>remove</literal> se comporta del mismo modo que <literal>install</" +"literal> con la diferencia de que elimina los paquetes en vez de " +"instalarlos. Tenga en cuenta que al eliminar un paquete sus ficheros de " +"configuración permanecen en el sistema. Si un signo de suma precede al " +"nombre del paquete (sin ningún espacio en blanco entre los dos), el paquete " +"en cuestión será instalado en vez de eliminado." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:93 +msgid "" +"<literal>edit-sources</literal> lets you edit your sources.list file and " +"provides basic sanity checks." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:99 +#, fuzzy +#| msgid "" +#| "<literal>showhold</literal> is used to print a list of packages on hold " +#| "in the same way as for the other show commands." +msgid "" +"<literal>update</literal> is used to resynchronize the package index files " +"from their sources." +msgstr "" +"<literal>showhold</literal> muestra una lista de paquetes retenidos («hold») " +"de la misma forma que las otras órdenes «show»." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:105 +msgid "" +"<literal>upgrade</literal> is used to install the newest versions of all " +"packages currently installed on the system from the sources enumerated in " +"<filename>/etc/apt/sources.list</filename>. New package will be installed, " +"but existing package will never removed." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:114 +msgid "" +"<literal>full-upgrade</literal> performs the function of upgrade but may " +"also remove installed packages if that is required in order to resolve a " +"package conflict." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:124 apt-get.8.xml:257 apt-cache.8.xml:250 apt-mark.8.xml:110 +#: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50 +#: apt-ftparchive.1.xml:506 +msgid "options" +msgstr "Opciones" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:134 +msgid "Script usage" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:136 +msgid "" +"The &apt; commandline is designed as a end-user tool and it may change the " +"output between versions. While it tries to not break backward compatibility " +"there is no guarantee for it either. All features of &apt; are available in " +"&apt-cache; and &apt-get; via APT options. Please prefer using these " +"commands in your scripts." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:144 +msgid "Differences to &apt-get;" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:145 +msgid "" +"The <command>apt</command> command is meant to be pleasant for end users and " +"does not need to be backward compatible like &apt-get;. Therefore some " +"options are different:" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:151 +#, fuzzy +#| msgid "the <literal>Package:</literal> line" +msgid "The option <literal>DPkgPM::Progress-Fancy</literal> is enabled." +msgstr "La lÃnea <literal>Package:</literal>" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:155 +#, fuzzy +#| msgid "the <literal>Component:</literal> line" +msgid "The option <literal>APT::Color</literal> is enabled." +msgstr "La lÃnea <literal>Component:</literal>" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:159 +msgid "" +"A new <literal>list</literal> command is available similar to <literal>dpkg " +"--list</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:164 +#, fuzzy +#| msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" +msgid "" +"The option <literal>upgrade</literal> has <literal>--with-new-pkgs</literal> " +"enabled by default." +msgstr "Las lÃneas <literal>Archive:</literal> o <literal>Suite:</literal>" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:174 apt-get.8.xml:558 apt-cache.8.xml:352 apt-key.8.xml:197 +#: apt-mark.8.xml:133 apt-secure.8.xml:193 apt-cdrom.8.xml:154 +#: apt-config.8.xml:111 apt.conf.5.xml:1227 apt_preferences.5.xml:707 +#: sources.list.5.xml:280 apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 +#: apt-ftparchive.1.xml:609 +msgid "See Also" +msgstr "Véase también" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:175 +#, fuzzy +#| msgid "" +#| "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " +#| "&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-" +#| "preferences;, the APT Howto." +msgid "" +"&apt-get;, &apt-cache;, &sources-list;, &apt-conf;, &apt-config;, The APT " +"User's guide in &guidesdir;, &apt-preferences;, the APT Howto." +msgstr "" +"&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " +"&apt-config;, &apt-secure;, la guÃa de usuario de APT en &guidesdir;, &apt-" +"preferences;, el Cómo de APT." + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:180 apt-get.8.xml:564 apt-cache.8.xml:357 apt-mark.8.xml:137 +#: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76 +#: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613 +msgid "Diagnostics" +msgstr "Diagnósticos" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:181 +#, fuzzy +#| msgid "" +#| "<command>apt-get</command> returns zero on normal operation, decimal 100 " +#| "on error." +msgid "" +"<command>apt</command> returns zero on normal operation, decimal 100 on " +"error." +msgstr "" +"<command>apt-get</command> devuelve cero si no hay ningún error, y el valor " +"100 en caso de error." + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-get.8.xml:35 +msgid "APT package handling utility -- command-line interface" +msgstr "" +"Herramienta de gestión de paquetes APT -- interfaz para la lÃnea de órdenes" + +#. type: Content of: <refentry><refsect1><para> #: apt-get.8.xml:41 #, fuzzy #| msgid "" @@ -878,24 +1110,6 @@ msgstr "" "de apt-get." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:118 -msgid "" -"A specific version of a package can be selected for installation by " -"following the package name with an equals and the version of the package to " -"select. This will cause that version to be located and selected for install. " -"Alternatively a specific distribution can be selected by following the " -"package name with a slash and the version of the distribution or the Archive " -"name (stable, testing, unstable)." -msgstr "" -"Puede seleccionar una versión especifica de un paquete poniendo a " -"continuación del nombre del paquete un sÃmbolo igual («=») seguido de la " -"versión deseada. Esto provocará que se localice y seleccione esa versión " -"para su instalación. Alternativamente se puede seleccionar una distribución " -"especÃfica poniendo a continuación del nombre del paquete una barra («/») " -"seguida de la versión de la distribución o su nombre en el archivo de Debian " -"(stable, testing, unstable)." - -#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:125 msgid "" "Both of the version selection mechanisms can downgrade packages and must be " @@ -954,22 +1168,6 @@ msgstr "" "«$», o bien crear una expresión regular más especÃfica." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:153 -msgid "" -"<literal>remove</literal> is identical to <literal>install</literal> except " -"that packages are removed instead of installed. Note that removing a package " -"leaves its configuration files on the system. If a plus sign is appended to " -"the package name (with no intervening space), the identified package will be " -"installed instead of removed." -msgstr "" -"<literal>remove</literal> se comporta del mismo modo que <literal>install</" -"literal> con la diferencia de que elimina los paquetes en vez de " -"instalarlos. Tenga en cuenta que al eliminar un paquete sus ficheros de " -"configuración permanecen en el sistema. Si un signo de suma precede al " -"nombre del paquete (sin ningún espacio en blanco entre los dos), el paquete " -"en cuestión será instalado en vez de eliminado." - -#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:161 msgid "" "<literal>purge</literal> is identical to <literal>remove</literal> except " @@ -1168,13 +1366,6 @@ msgstr "" "parte, puede definir las mismas opciones que con la orden <option>install</" "option>." -#. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:257 apt-cache.8.xml:250 apt-mark.8.xml:110 -#: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50 -#: apt-ftparchive.1.xml:506 -msgid "options" -msgstr "Opciones" - #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:262 msgid "" @@ -1386,13 +1577,21 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:370 +#, fuzzy +#| msgid "" +#| "This option controls the architecture packages are built for by " +#| "<command>apt-get source --compile</command> and how cross-" +#| "builddependencies are satisfied. By default is it not set which means " +#| "that the host architecture is the same as the build architecture (which " +#| "is defined by <literal>APT::Architecture</literal>). Configuration Item: " +#| "<literal>APT::Get::Host-Architecture</literal>" msgid "" "This option controls the architecture packages are built for by <command>apt-" "get source --compile</command> and how cross-builddependencies are " "satisfied. By default is it not set which means that the host architecture " "is the same as the build architecture (which is defined by <literal>APT::" "Architecture</literal>). Configuration Item: <literal>APT::Get::Host-" -"Architecture</literal>" +"Architecture</literal>." msgstr "" "Esta opción controla la arquitectura para la que se construyen los paquetes " "mediante <command>apt-get source --compile</command> y cómo se satisfacen " @@ -1403,6 +1602,30 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:380 +#, fuzzy +#| msgid "" +#| "This option controls the architecture packages are built for by " +#| "<command>apt-get source --compile</command> and how cross-" +#| "builddependencies are satisfied. By default is it not set which means " +#| "that the host architecture is the same as the build architecture (which " +#| "is defined by <literal>APT::Architecture</literal>). Configuration Item: " +#| "<literal>APT::Get::Host-Architecture</literal>" +msgid "" +"This option controls the activated build profiles for which a source package " +"is built by <command>apt-get source --compile</command> and how build " +"dependencies are satisfied. By default no build profile is active. More " +"than one build profile can be activated at a time by concatenating them with " +"a comma. Configuration Item: <literal>APT::Build-Profiles</literal>." +msgstr "" +"Esta opción controla la arquitectura para la que se construyen los paquetes " +"mediante <command>apt-get source --compile</command> y cómo se satisfacen " +"las dependencias cruzadas de construcción. No se define por omisión, lo que " +"implica que la arquitectura anfitrión es la misma que la de construcción " +"(definida con <literal>APT::Architecture</literal>). Opción de " +"configuración: <literal>APT::Get::Host-Architecture</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:391 msgid "" "Compile source packages after downloading them. Configuration Item: " "<literal>APT::Get::Compile</literal>." @@ -1411,7 +1634,7 @@ msgstr "" "<literal>APT::Get::Compile</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:385 +#: apt-get.8.xml:396 msgid "" "Ignore package holds; this causes <command>apt-get</command> to ignore a " "hold placed on a package. This may be useful in conjunction with " @@ -1425,7 +1648,7 @@ msgstr "" "Ignore-Hold</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:392 +#: apt-get.8.xml:403 msgid "" "Allow installing new packages when used in conjunction with " "<literal>upgrade</literal>. This is useful if the update of a installed " @@ -1437,7 +1660,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:404 +#: apt-get.8.xml:415 msgid "" "Do not upgrade packages; when used in conjunction with <literal>install</" "literal>, <literal>no-upgrade</literal> will prevent packages on the command " @@ -1450,7 +1673,7 @@ msgstr "" "configuración: <literal>APT::Get::Upgrade</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:411 +#: apt-get.8.xml:422 msgid "" "Do not install new packages; when used in conjunction with <literal>install</" "literal>, <literal>only-upgrade</literal> will install upgrades for already " @@ -1464,7 +1687,7 @@ msgstr "" "<literal>APT::Get::Only-Upgrade</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:419 +#: apt-get.8.xml:430 msgid "" "Force yes; this is a dangerous option that will cause apt to continue " "without prompting if it is doing something potentially harmful. It should " @@ -1480,7 +1703,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:427 +#: apt-get.8.xml:438 msgid "" "Instead of fetching the files to install their URIs are printed. Each URI " "will have the path, the destination file name, the size and the expected MD5 " @@ -1502,7 +1725,7 @@ msgstr "" "<literal>APT::Get::Print-URIs</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:438 +#: apt-get.8.xml:449 msgid "" "Use purge instead of remove for anything that would be removed. An asterisk " "(\"*\") will be displayed next to packages which are scheduled to be purged. " @@ -1516,7 +1739,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:446 +#: apt-get.8.xml:457 msgid "" "Re-install packages that are already installed and at the newest version. " "Configuration Item: <literal>APT::Get::ReInstall</literal>." @@ -1526,7 +1749,7 @@ msgstr "" "ReInstall</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:451 +#: apt-get.8.xml:462 msgid "" "This option is on by default; use <literal>--no-list-cleanup</literal> to " "turn it off. When it is on, <command>apt-get</command> will automatically " @@ -1544,7 +1767,7 @@ msgstr "" "<literal>APT::Get::List-Cleanup</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:461 +#: apt-get.8.xml:472 msgid "" "This option controls the default input to the policy engine; it creates a " "default pin at priority 990 using the specified release string. This " @@ -1568,7 +1791,7 @@ msgstr "" "también la página del manual de &apt-preferences;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:476 +#: apt-get.8.xml:487 msgid "" "Only perform operations that are 'trivial'. Logically this can be considered " "related to <option>--assume-yes</option>; where <option>--assume-yes</" @@ -1582,7 +1805,7 @@ msgstr "" "<literal>APT::Get::Trivial-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:483 +#: apt-get.8.xml:494 msgid "" "If any packages are to be removed apt-get immediately aborts without " "prompting. Configuration Item: <literal>APT::Get::Remove</literal>." @@ -1591,7 +1814,7 @@ msgstr "" "preguntar. Opción de configuración: <literal>APT::Get::Remove</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:489 +#: apt-get.8.xml:500 msgid "" "If the command is either <literal>install</literal> or <literal>remove</" "literal>, then this option acts like running the <literal>autoremove</" @@ -1604,7 +1827,7 @@ msgstr "" "Get::AutomaticRemove</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:496 +#: apt-get.8.xml:507 msgid "" "Only has meaning for the <literal>source</literal> and <literal>build-dep</" "literal> commands. Indicates that the given source names are not to be " @@ -1624,7 +1847,7 @@ msgstr "" "literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:507 +#: apt-get.8.xml:518 msgid "" "Download only the diff, dsc, or tar file of a source archive. Configuration " "Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</" @@ -1635,7 +1858,7 @@ msgstr "" "Dsc-Only</literal> y <literal>APT::Get::Tar-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:513 +#: apt-get.8.xml:524 msgid "" "Only process architecture-dependent build-dependencies. Configuration Item: " "<literal>APT::Get::Arch-Only</literal>." @@ -1644,7 +1867,7 @@ msgstr "" "arquitectura. Opción de configuración: <literal>APT::Get::Arch-Only</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:518 +#: apt-get.8.xml:529 msgid "" "Ignore if packages can't be authenticated and don't prompt about it. This " "is useful for tools like pbuilder. Configuration Item: <literal>APT::Get::" @@ -1655,7 +1878,7 @@ msgstr "" "configuración: <literal>APT::Get::AllowUnauthenticated</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:524 +#: apt-get.8.xml:535 msgid "" "Show user friendly progress information in the terminal window when packages " "are installed, upgraded or removed. For a machine parsable version of this " @@ -1665,22 +1888,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:537 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 -#: apt.conf.5.xml:1200 apt_preferences.5.xml:700 +#: apt-get.8.xml:548 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 +#: apt.conf.5.xml:1221 apt_preferences.5.xml:700 msgid "Files" msgstr "Ficheros" -#. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:547 apt-cache.8.xml:352 apt-key.8.xml:197 apt-mark.8.xml:133 -#: apt-secure.8.xml:193 apt-cdrom.8.xml:154 apt-config.8.xml:111 -#: apt.conf.5.xml:1206 apt_preferences.5.xml:707 sources.list.5.xml:280 -#: apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 -#: apt-ftparchive.1.xml:609 -msgid "See Also" -msgstr "Véase también" - #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:548 +#: apt-get.8.xml:559 #, fuzzy #| msgid "" #| "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " @@ -1695,15 +1909,8 @@ msgstr "" "&apt-config;, &apt-secure;, la guÃa de usuario de APT en &guidesdir;, &apt-" "preferences;, el Cómo de APT." -#. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:553 apt-cache.8.xml:357 apt-mark.8.xml:137 -#: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76 -#: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613 -msgid "Diagnostics" -msgstr "Diagnósticos" - #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:554 +#: apt-get.8.xml:565 msgid "" "<command>apt-get</command> returns zero on normal operation, decimal 100 on " "error." @@ -3551,7 +3758,16 @@ msgstr "" "add-architecture</command>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:181 +#: apt.conf.5.xml:182 +msgid "" +"List of all build profiles enabled for build-dependency resolution, without " +"the \"<literal>profile.</literal>\" namespace prefix. By default this list " +"is empty. The <envar>DEB_BUILD_PROFILES</envar> as used by &dpkg-" +"buildpackage; overrides the list notation." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:190 msgid "" "Default release to install packages from if more than one version is " "available. Contains release name, codename or release version. Examples: " @@ -3565,7 +3781,7 @@ msgstr "" "«5.0*». Consulte también &apt-preferences;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:187 +#: apt.conf.5.xml:196 msgid "" "Ignore held packages; this global option causes the problem resolver to " "ignore held packages in its decision making." @@ -3574,7 +3790,7 @@ msgstr "" "problemas ignore los paquetes retenidos en la toma de decisiones." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:192 +#: apt.conf.5.xml:201 msgid "" "Defaults to on. When turned on the autoclean feature will remove any " "packages which can no longer be downloaded from the cache. If turned off " @@ -3588,7 +3804,7 @@ msgstr "" "mecanismo directo para reinstalarlos." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:200 +#: apt.conf.5.xml:209 msgid "" "Defaults to on, which will cause APT to install essential and important " "packages as soon as possible in an install/upgrade operation, in order to " @@ -3615,7 +3831,7 @@ msgstr "" "del paquete A, ya que no se satisface la dependencia sobre éste." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:212 +#: apt.conf.5.xml:221 msgid "" "The immediate configuration marker is also applied in the potentially " "problematic case of circular dependencies, since a dependency with the " @@ -3644,7 +3860,7 @@ msgstr "" "anteriormente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:225 +#: apt.conf.5.xml:234 msgid "" "Before a big operation like <literal>dist-upgrade</literal> is run with this " "option disabled you should try to explicitly <literal>install</literal> the " @@ -3661,7 +3877,7 @@ msgstr "" "para que asà pueden mejorar y corregir el proceso de actualización." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:236 +#: apt.conf.5.xml:245 msgid "" "Never enable this option unless you <emphasis>really</emphasis> know what " "you are doing. It permits APT to temporarily remove an essential package to " @@ -3682,7 +3898,7 @@ msgstr "" "sobre la que estos paquetes dependen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:248 +#: apt.conf.5.xml:257 msgid "" "APT uses since version 0.7.26 a resizable memory mapped cache file to store " "the available information. <literal>Cache-Start</literal> acts as a hint of " @@ -3719,14 +3935,14 @@ msgstr "" "desactiva el crecimiento automático de la caché." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:264 +#: apt.conf.5.xml:273 msgid "Defines which packages are considered essential build dependencies." msgstr "" "Define los paquetes que se consideran dependencias de construcción " "esenciales." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:268 +#: apt.conf.5.xml:277 msgid "" "The Get subsection controls the &apt-get; tool; please see its documentation " "for more information about the options here." @@ -3735,7 +3951,7 @@ msgstr "" "documentación para más información sobre esta opción." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:273 +#: apt.conf.5.xml:282 msgid "" "The Cache subsection controls the &apt-cache; tool; please see its " "documentation for more information about the options here." @@ -3744,7 +3960,7 @@ msgstr "" "documentación para más información sobre esta opción." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:278 +#: apt.conf.5.xml:287 msgid "" "The CDROM subsection controls the &apt-cdrom; tool; please see its " "documentation for more information about the options here." @@ -3753,12 +3969,12 @@ msgstr "" "documentación para más información sobre esta opción." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:284 +#: apt.conf.5.xml:293 msgid "The Acquire Group" msgstr "El grupo Acquire" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:285 +#: apt.conf.5.xml:294 msgid "" "The <literal>Acquire</literal> group of options controls the download of " "packages as well as the various \"acquire methods\" responsible for the " @@ -3769,7 +3985,7 @@ msgstr "" "sà mismo (consulte también &sources-list;)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:292 +#: apt.conf.5.xml:301 msgid "" "Security related option defaulting to true, as giving a Release file's " "validation an expiration date prevents replay attacks over a long timescale, " @@ -3790,7 +4006,7 @@ msgstr "" "utilizar la opción <literal>Max-ValidTime</literal> a continuación." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:305 +#: apt.conf.5.xml:314 msgid "" "Maximum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -3809,7 +4025,7 @@ msgstr "" "se pueden realizar añadiendo la etiqueta del archivo al nombre de opción." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:317 +#: apt.conf.5.xml:326 msgid "" "Minimum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -3829,7 +4045,7 @@ msgstr "" "y deben utilizar añadiendo la etiqueta del archivo al nombre de opción." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:329 +#: apt.conf.5.xml:338 msgid "" "Try to download deltas called <literal>PDiffs</literal> for indexes (like " "<filename>Packages</filename> files) instead of downloading whole ones. True " @@ -3840,7 +4056,7 @@ msgstr "" "enteros. Su valor predeterminado es «true»." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:332 +#: apt.conf.5.xml:341 msgid "" "Two sub-options to limit the use of PDiffs are also available: " "<literal>FileLimit</literal> can be used to specify a maximum number of " @@ -3858,7 +4074,7 @@ msgstr "" "parches." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:342 +#: apt.conf.5.xml:351 msgid "" "Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</" "literal> or <literal>access</literal> which determines how APT parallelizes " @@ -3873,7 +4089,7 @@ msgstr "" "se abrirá una conexión por cada tipo de URI." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:350 +#: apt.conf.5.xml:359 msgid "" "Number of retries to perform. If this is non-zero APT will retry failed " "files the given number of times." @@ -3882,7 +4098,7 @@ msgstr "" "intentar obtener los ficheros fallidos el número de veces proporcionado." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:355 +#: apt.conf.5.xml:364 msgid "" "Use symlinks for source archives. If set to true then source archives will " "be symlinked when possible instead of copying. True is the default." @@ -3892,7 +4108,7 @@ msgstr "" "«true» de forma predeterminada." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:360 +#: apt.conf.5.xml:369 msgid "" "<literal>http::Proxy</literal> sets the default proxy to use for HTTP URIs. " "It is in the standard form of <literal>http://[[user][:pass]@]host[:port]/</" @@ -3912,7 +4128,7 @@ msgstr "" "opciones anteriores." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:368 +#: apt.conf.5.xml:377 msgid "" "Three settings are provided for cache control with HTTP/1.1 compliant proxy " "caches. <literal>No-Cache</literal> tells the proxy not to use its cached " @@ -3931,7 +4147,7 @@ msgstr "" "impedir que el proxy contamine la caché con ficheros «.deb» (de gran tamaño)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:378 apt.conf.5.xml:466 +#: apt.conf.5.xml:387 apt.conf.5.xml:475 msgid "" "The option <literal>timeout</literal> sets the timeout timer used by the " "method; this value applies to the connection as well as the data timeout." @@ -3941,7 +4157,7 @@ msgstr "" "y a la recepción de datos." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:381 +#: apt.conf.5.xml:390 msgid "" "The setting <literal>Acquire::http::Pipeline-Depth</literal> can be used to " "enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e." @@ -3961,7 +4177,7 @@ msgstr "" "cumplir la especificación HTTP/1.1." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:388 +#: apt.conf.5.xml:397 msgid "" "<literal>Acquire::http::AllowRedirect</literal> controls whether APT will " "follow redirects, which is enabled by default." @@ -3970,7 +4186,7 @@ msgstr "" "redirección; activado por omisión." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:391 +#: apt.conf.5.xml:400 #, fuzzy #| msgid "" #| "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</" @@ -3992,7 +4208,7 @@ msgstr "" "implÃcitamente la descarga simultánea desde varios servidores)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:398 +#: apt.conf.5.xml:407 msgid "" "<literal>Acquire::http::User-Agent</literal> can be used to set a different " "User-Agent for the http download method as some proxies allow access for " @@ -4003,7 +4219,7 @@ msgstr "" "permiten el acceso para clientes que usan un identificador conocido." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:402 +#: apt.conf.5.xml:411 msgid "" "<literal>Acquire::http::Proxy-Auto-Detect</literal> can be used to specify " "an external command to discover the http proxy to use. Apt expects the " @@ -4017,7 +4233,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:420 +#: apt.conf.5.xml:429 msgid "" "The <literal>Cache-control</literal>, <literal>Timeout</literal>, " "<literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> and " @@ -4034,7 +4250,7 @@ msgstr "" "<literal>Pipeline-Depth</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:428 +#: apt.conf.5.xml:437 msgid "" "<literal>CaInfo</literal> suboption specifies place of file that holds info " "about trusted certificates. <literal><host>::CaInfo</literal> is the " @@ -4074,7 +4290,7 @@ msgstr "" "SslForceVersion</literal> es la opción correspondiente para cada servidor." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:449 +#: apt.conf.5.xml:458 msgid "" "<literal>ftp::Proxy</literal> sets the default proxy to use for FTP URIs. " "It is in the standard form of <literal>ftp://[[user][:pass]@]host[:port]/</" @@ -4107,7 +4323,7 @@ msgstr "" "<literal>$(SITE)</literal> y <literal>$(SITE_PORT)</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:469 +#: apt.conf.5.xml:478 msgid "" "Several settings are provided to control passive mode. Generally it is safe " "to leave passive mode on; it works in nearly every environment. However, " @@ -4124,7 +4340,7 @@ msgstr "" "ejemplos)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:476 +#: apt.conf.5.xml:485 msgid "" "It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</" "envar> environment variable to an HTTP URL - see the discussion of the http " @@ -4138,7 +4354,7 @@ msgstr "" "a su poca eficiencia." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:481 +#: apt.conf.5.xml:490 msgid "" "The setting <literal>ForceExtended</literal> controls the use of RFC2428 " "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is " @@ -4154,13 +4370,13 @@ msgstr "" "compatibles con la RFC 2428." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:495 +#: apt.conf.5.xml:504 #, no-wrap msgid "/cdrom/::Mount \"foo\";" msgstr "/cdrom/::Mount \"algo\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:490 +#: apt.conf.5.xml:499 msgid "" "For URIs using the <literal>cdrom</literal> method, the only configurable " "option is the mount point, <literal>cdrom::Mount</literal>, which must be " @@ -4182,7 +4398,7 @@ msgstr "" "especificar órdenes para desmontar mediante UMount." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:503 +#: apt.conf.5.xml:512 msgid "" "For GPGV URIs the only configurable option is <literal>gpgv::Options</" "literal>, which passes additional parameters to gpgv." @@ -4191,13 +4407,13 @@ msgstr "" "Options</literal>, que introduce parámetros adicionales a gpgv." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:514 +#: apt.conf.5.xml:523 #, no-wrap msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";" msgstr "Acquire::CompressionTypes::<replaceable>extensión-del-fichero</replaceable> \"<replaceable>nombre-del-método</replaceable>\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:509 +#: apt.conf.5.xml:518 msgid "" "List of compression types which are understood by the acquire methods. " "Files like <filename>Packages</filename> can be available in various " @@ -4217,19 +4433,19 @@ msgstr "" "\"0\"/>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:519 +#: apt.conf.5.xml:528 #, no-wrap msgid "Acquire::CompressionTypes::Order:: \"gz\";" msgstr "Acquire::CompressionTypes::Order:: \"gz\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:522 +#: apt.conf.5.xml:531 #, no-wrap msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:515 +#: apt.conf.5.xml:524 msgid "" "Also, the <literal>Order</literal> subgroup can be used to define in which " "order the acquire system will try to download the compressed files. The " @@ -4261,13 +4477,13 @@ msgstr "" "explÃcita ya que se añadirá de forma automática." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:529 +#: apt.conf.5.xml:538 #, no-wrap msgid "Dir::Bin::bzip2 \"/bin/bzip2\";" msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:524 +#: apt.conf.5.xml:533 msgid "" "Note that the <literal>Dir::Bin::<replaceable>Methodname</replaceable></" "literal> will be checked at run time. If this option has been set, the " @@ -4292,7 +4508,7 @@ msgstr "" "omite la lista definida, simplemente prefija la lista con este tipo." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:534 +#: apt.conf.5.xml:543 msgid "" "The special type <literal>uncompressed</literal> can be used to give " "uncompressed files a preference, but note that most archives don't provide " @@ -4304,7 +4520,7 @@ msgstr "" "asà que habitualmente esto solo sirve con réplicas locales." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:541 +#: apt.conf.5.xml:550 msgid "" "When downloading <literal>gzip</literal> compressed indexes (Packages, " "Sources, or Translations), keep them gzip compressed locally instead of " @@ -4318,7 +4534,7 @@ msgstr "" "paquetes locales. El valor predeterminado es «false»." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:549 +#: apt.conf.5.xml:558 msgid "" "The Languages subsection controls which <filename>Translation</filename> " "files are downloaded and in which order APT tries to display the description-" @@ -4337,13 +4553,13 @@ msgstr "" "idioma (especialmente para los códigos de idioma largos)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><programlisting> -#: apt.conf.5.xml:566 +#: apt.conf.5.xml:575 #, no-wrap msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" msgstr "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; }" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:554 +#: apt.conf.5.xml:563 msgid "" "The default list includes \"environment\" and \"en\". " "\"<literal>environment</literal>\" has a special meaning here: it will be " @@ -4382,7 +4598,7 @@ msgstr "" "\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:567 +#: apt.conf.5.xml:576 msgid "" "Note: To prevent problems resulting from APT being executed in different " "environments (e.g. by different users or by other programs) all Translation " @@ -4396,22 +4612,22 @@ msgstr "" "implÃcito)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:576 +#: apt.conf.5.xml:585 msgid "When downloading, force to use only the IPv4 protocol." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:582 +#: apt.conf.5.xml:591 msgid "When downloading, force to use only the IPv6 protocol." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:589 +#: apt.conf.5.xml:598 msgid "Directories" msgstr "Directorios" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:591 +#: apt.conf.5.xml:600 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@ -4432,7 +4648,7 @@ msgstr "" "filename> ó <filename>./</filename>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:598 +#: apt.conf.5.xml:607 msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@ -4454,7 +4670,7 @@ msgstr "" "directorio predeterminado está en <literal>Dir::Cache</literal>" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:607 +#: apt.conf.5.xml:616 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -4470,7 +4686,7 @@ msgstr "" "<envar>APT_CONFIG</envar>)." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:613 +#: apt.conf.5.xml:622 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -4481,7 +4697,7 @@ msgstr "" "Al finalizar este proceso carga el fichero de configuración principal." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:617 +#: apt.conf.5.xml:626 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@ -4498,7 +4714,7 @@ msgstr "" "literal> especifican la ubicación de sus respectivos programas." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:625 +#: apt.conf.5.xml:634 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -4519,7 +4735,7 @@ msgstr "" "staging/var/lib/dpkg/status</filename>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:638 +#: apt.conf.5.xml:647 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@ -4537,12 +4753,12 @@ msgstr "" "de expresiones regulares." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:647 +#: apt.conf.5.xml:656 msgid "APT in DSelect" msgstr "APT con DSelect" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:649 +#: apt.conf.5.xml:658 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@ -4553,7 +4769,7 @@ msgstr "" "encuentran en la sección <literal>DSelect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:654 +#: apt.conf.5.xml:663 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@ -4575,7 +4791,7 @@ msgstr "" "realiza esta acción antes de descargar paquetes nuevos." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:668 +#: apt.conf.5.xml:677 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." @@ -4584,7 +4800,7 @@ msgstr "" "la lÃnea de ordenes al ejecutar la fase de instalación." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:673 +#: apt.conf.5.xml:682 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." @@ -4593,7 +4809,7 @@ msgstr "" "la lÃnea de ordenes al ejecutar la fase de actualización." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:678 +#: apt.conf.5.xml:687 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." @@ -4603,12 +4819,12 @@ msgstr "" "preguntará en caso de error." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:684 +#: apt.conf.5.xml:693 msgid "How APT calls &dpkg;" msgstr "Invocación de APT a dpkg" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:685 +#: apt.conf.5.xml:694 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." @@ -4617,7 +4833,7 @@ msgstr "" "se encuentran en la sección <literal>DPkg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:690 +#: apt.conf.5.xml:699 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -4628,7 +4844,7 @@ msgstr "" "introduce a &dpkg; como un sólo argumento." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:696 +#: apt.conf.5.xml:705 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4641,7 +4857,7 @@ msgstr "" "sh</filename>; en caso de fallo, APT cancela la acción." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:703 +#: apt.conf.5.xml:712 #, fuzzy #| msgid "" #| "This is a list of shell commands to run before invoking &dpkg;. Like " @@ -4665,7 +4881,7 @@ msgstr "" "la entrada estándar." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:710 +#: apt.conf.5.xml:719 #, fuzzy #| msgid "" #| "Version 2 of this protocol dumps more information, including the protocol " @@ -4687,7 +4903,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:715 +#: apt.conf.5.xml:724 msgid "" "The version of the protocol to be used for the command " "<literal><replaceable>cmd</replaceable></literal> can be chosen by setting " @@ -4698,7 +4914,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:722 +#: apt.conf.5.xml:731 msgid "" "The file descriptor to be used to send the information can be requested with " "<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</" @@ -4709,7 +4925,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:732 +#: apt.conf.5.xml:741 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." @@ -4718,7 +4934,7 @@ msgstr "" "predeterminado es <filename>/</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:737 +#: apt.conf.5.xml:746 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." @@ -4728,12 +4944,12 @@ msgstr "" "paquetes y a producir todos los binarios." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:742 +#: apt.conf.5.xml:751 msgid "dpkg trigger usage (and related options)" msgstr "Uso del disparador de dpkg (y de las opciones relacionadas)" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:743 +#: apt.conf.5.xml:752 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@ -4760,7 +4976,7 @@ msgstr "" "tiempo (o más) durante la configuración de todos los paquetes." #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:758 +#: apt.conf.5.xml:767 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -4774,7 +4990,7 @@ msgstr "" "DPkg::TriggersPending \"true\";" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:752 +#: apt.conf.5.xml:761 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -4798,7 +5014,7 @@ msgstr "" "type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:765 +#: apt.conf.5.xml:774 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -4821,7 +5037,7 @@ msgstr "" "eliminación." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:773 +#: apt.conf.5.xml:782 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@ -4851,7 +5067,7 @@ msgstr "" "imposibilidad de arrancar el sistema. " #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:788 +#: apt.conf.5.xml:797 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@ -4869,7 +5085,7 @@ msgstr "" "desactivar esta opción en todas las ejecuciones menos la última." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:795 +#: apt.conf.5.xml:804 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@ -4885,7 +5101,7 @@ msgstr "" "los disparadores necesarios para configurar este paquete." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:808 +#: apt.conf.5.xml:817 #, no-wrap msgid "" "OrderList::Score {\n" @@ -4903,7 +5119,7 @@ msgstr "" "};" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:801 +#: apt.conf.5.xml:810 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@ -4928,12 +5144,12 @@ msgstr "" "<placeholder type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:821 +#: apt.conf.5.xml:830 msgid "Periodic and Archives options" msgstr "Las opciones «Periodic» y «Archives»" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:822 +#: apt.conf.5.xml:831 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@ -4947,12 +5163,12 @@ msgstr "" "documentación de estas opciones." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:830 +#: apt.conf.5.xml:839 msgid "Debug options" msgstr "Opciones de depuración" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:832 +#: apt.conf.5.xml:841 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -4969,7 +5185,7 @@ msgstr "" "para un usuario normal, aunque unas cuantas sà son:" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:843 +#: apt.conf.5.xml:852 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@ -4980,7 +5196,7 @@ msgstr "" "purge</literal>." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:851 +#: apt.conf.5.xml:860 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@ -4991,7 +5207,7 @@ msgstr "" "<literal>apt-get -s install</literal>) como un usuario normal." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:860 +#: apt.conf.5.xml:869 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -5003,7 +5219,7 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:868 +#: apt.conf.5.xml:877 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." @@ -5012,14 +5228,14 @@ msgstr "" "statfs en los identificadores de los discos ópticos." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:878 +#: apt.conf.5.xml:887 msgid "A full list of debugging options to apt follows." msgstr "" "A continuación, se muestra la lista completa de las opciones de depuración " "de apt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:887 +#: apt.conf.5.xml:896 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" @@ -5027,26 +5243,26 @@ msgstr "" "<literal>cdrom://</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:898 +#: apt.conf.5.xml:907 msgid "Print information related to downloading packages using FTP." msgstr "" "Muestra la información relacionada con la descarga de paquetes mediante FTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:909 +#: apt.conf.5.xml:918 msgid "Print information related to downloading packages using HTTP." msgstr "" "Muestra la información relacionada con la descarga de paquetes mediante HTTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:920 +#: apt.conf.5.xml:929 msgid "Print information related to downloading packages using HTTPS." msgstr "" "Muestra la información relacionada con la descarga de paquetes mediante " "HTTPS." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:931 +#: apt.conf.5.xml:940 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." @@ -5055,7 +5271,7 @@ msgstr "" "criptográficas mediante <literal>gpg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:942 +#: apt.conf.5.xml:951 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." @@ -5064,14 +5280,14 @@ msgstr "" "paquetes almacenadas en CD-ROM." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:952 +#: apt.conf.5.xml:961 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" "Describe el proceso de resolución de dependencias de compilación en &apt-" "get;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:962 +#: apt.conf.5.xml:971 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." @@ -5080,7 +5296,7 @@ msgstr "" "<literal>apt</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:972 +#: apt.conf.5.xml:981 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -5091,7 +5307,7 @@ msgstr "" "identificador de un CD-ROM." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:983 +#: apt.conf.5.xml:992 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." @@ -5101,14 +5317,14 @@ msgstr "" "a la vez." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:995 +#: apt.conf.5.xml:1004 msgid "Log when items are added to or removed from the global download queue." msgstr "" "Registra los elementos que se añaden o se borran de la cola de descarga " "global." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1005 +#: apt.conf.5.xml:1014 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." @@ -5118,7 +5334,7 @@ msgstr "" "ficheros descargados." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1015 +#: apt.conf.5.xml:1024 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." @@ -5127,7 +5343,7 @@ msgstr "" "lista de Ãndices de paquetes, y los errores relacionados con éstos." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1027 +#: apt.conf.5.xml:1036 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." @@ -5137,7 +5353,7 @@ msgstr "" "Ãndices completos." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1038 +#: apt.conf.5.xml:1047 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" @@ -5145,7 +5361,7 @@ msgstr "" "descargas." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1049 +#: apt.conf.5.xml:1058 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." @@ -5154,7 +5370,7 @@ msgstr "" "de los paquetes y con la eliminación de los paquetes sin usar." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1059 +#: apt.conf.5.xml:1068 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@ -5170,7 +5386,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1073 +#: apt.conf.5.xml:1082 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@ -5201,7 +5417,7 @@ msgstr "" "la sección en la que aparece el paquete." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1094 +#: apt.conf.5.xml:1103 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." @@ -5210,7 +5426,7 @@ msgstr "" "invocó, con los argumentos separados por un espacio." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1105 +#: apt.conf.5.xml:1114 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." @@ -5219,7 +5435,7 @@ msgstr "" "estado y cualquier error encontrado durante el análisis." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1116 +#: apt.conf.5.xml:1125 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." @@ -5228,7 +5444,7 @@ msgstr "" "literal> deberÃa entregar los paquetes a &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1128 +#: apt.conf.5.xml:1137 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" @@ -5236,12 +5452,12 @@ msgstr "" "&dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1139 +#: apt.conf.5.xml:1148 msgid "Output the priority of each package list on startup." msgstr "Muestra la prioridad de cada lista de paquetes al iniciarse." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1149 +#: apt.conf.5.xml:1158 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." @@ -5250,7 +5466,7 @@ msgstr "" "lo que ocurre cuando se encuentra un problema de dependencias complejo)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1160 +#: apt.conf.5.xml:1169 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -5261,7 +5477,7 @@ msgstr "" "misma que la descrita en <literal>Debug::pkgDepCache::Marker</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1172 +#: apt.conf.5.xml:1181 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." @@ -5269,14 +5485,22 @@ msgstr "" "Muestra la información de los proveedores extraÃda de <filename>/etc/apt/" "vendors.list</filename>." +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:1191 +msgid "" +"Display the external commands that are called by apt hooks. This includes e." +"g. the config options <literal>DPkg::{Pre,Post}-Invoke</literal> or " +"<literal>APT::Update::{Pre,Post}-Invoke</literal>." +msgstr "" + #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:1194 apt_preferences.5.xml:547 sources.list.5.xml:239 +#: apt.conf.5.xml:1215 apt_preferences.5.xml:547 sources.list.5.xml:239 #: apt-ftparchive.1.xml:598 msgid "Examples" msgstr "Ejemplos" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1195 +#: apt.conf.5.xml:1216 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -5286,7 +5510,7 @@ msgstr "" #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1207 +#: apt.conf.5.xml:1228 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." @@ -7296,14 +7520,14 @@ msgid "" "template-file and config-script are written to the temporary directory " "specified by the <option>-t</option> or <option>--tempdir</option> " "(<literal>APT::ExtractTemplates::TempDir</literal>) directory, with " -"filenames of the form <filename>package.template.XXXX</filename> and " -"<filename>package.config.XXXX</filename>" +"filenames of the form <filename>package.template.XXXXXX</filename> and " +"<filename>package.config.XXXXXX</filename>" msgstr "" "El fichero de plantilla y el script de configuración se escriben en el " "directorio temporal definido mediante la opción <option>-t</option> o " "<option>--tempdir</option> (<literal>APT::ExtractTemplates::TempDir</" "literal>), con un formato de nombre de fichero <filename>paquete.template." -"XXXX</filename> y <filename>paquete.config.XXXX</filename>" +"XXXXXX</filename> y <filename>paquete.config.XXXXXX</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-extracttemplates.1.xml:60 @@ -8339,125 +8563,6 @@ msgstr "" "<command>apt-ftparchive</command> devuelve cero si no hay ningún error, y el " "valor 100 en caso de error." -#. type: TH -#: apt.8:17 -#, no-wrap -msgid "apt" -msgstr "apt" - -#. type: TH -#: apt.8:17 -#, no-wrap -msgid "16 June 1998" -msgstr "16 de Junio de 1998" - -#. type: TH -#: apt.8:17 -#, no-wrap -msgid "Debian" -msgstr "Debian" - -#. type: SH -#: apt.8:18 -#, no-wrap -msgid "NAME" -msgstr "NOMBRE" - -#. type: Plain text -#: apt.8:20 -msgid "apt - Advanced Package Tool" -msgstr "apt - Herramienta avanzada de paquetes" - -#. type: SH -#: apt.8:20 -#, no-wrap -msgid "SYNOPSIS" -msgstr "SINOPSIS" - -#. type: Plain text -#: apt.8:22 -msgid "B<apt>" -msgstr "B<apt>" - -#. type: SH -#: apt.8:22 -#, no-wrap -msgid "DESCRIPTION" -msgstr "DESCRIPCIÓN" - -#. type: Plain text -#: apt.8:31 -msgid "" -"APT is a management system for software packages. For normal day to day " -"package management there are several frontends available, such as " -"B<aptitude>(8) for the command line or B<synaptic>(8) for the X Window " -"System. Some options are only implemented in B<apt-get>(8) though." -msgstr "" -"APT es un sistema de gestión de paquetes de software. Dispone de varias " -"interfaces para la gestión de paquetes normal del dÃa a dÃa, tales como " -"B<aptitude>(8) para la lÃnea de órdenes o B<synaptic>(8) para el sistema de " -"ventanas de X. Algunas opciones sólo están implementadas en B<apt-get>(8)." - -#. type: SH -#: apt.8:31 -#, no-wrap -msgid "SEE ALSO" -msgstr "VÉASE TAMBIÉN" - -#. type: Plain text -#: apt.8:38 -msgid "" -"B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " -"B<apt_preferences>(5), B<apt-secure>(8)" -msgstr "" -"B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " -"B<apt_preferences>(5), B<apt-secure>(8)" - -#. type: SH -#: apt.8:38 -#, no-wrap -msgid "DIAGNOSTICS" -msgstr "DIAGNÓSTICOS" - -#. type: Plain text -#: apt.8:40 -msgid "apt returns zero on normal operation, decimal 100 on error." -msgstr "" -"apt devuelve cero si no hay ningún error, y el valor 100 en caso de error." - -#. type: SH -#: apt.8:40 -#, no-wrap -msgid "BUGS" -msgstr "FALLOS" - -#. type: Plain text -#: apt.8:42 -msgid "This manpage isn't even started." -msgstr "Esta página de manual ni siquiera está iniciada." - -#. type: Plain text -#: apt.8:51 -msgid "" -"See E<lt>http://bugs.debian.org/aptE<gt>. If you wish to report a bug in " -"B<apt>, please see I</usr/share/doc/debian/bug-reporting.txt> or the " -"B<reportbug>(1) command." -msgstr "" -"Consulte E<lt>http://bugs.debian.org/aptE<gt>. Si desea enviar un informe de " -"error sobre B<apt>, por favor lea I</usr/share/doc/debian/bug-reporting.txt> " -"o use la orden B<reportbug>(1)." - -#. type: SH -#: apt.8:51 -#, no-wrap -msgid "AUTHOR" -msgstr "AUTOR" - -#. type: Plain text -#: apt.8:52 -msgid "apt was written by the APT team E<lt>apt@packages.debian.orgE<gt>." -msgstr "El equipo APT E<lt>apt@packages.debian.orgE<gt> escribió apt." - #. type: <title></title> #: guide.sgml:4 msgid "APT User's Guide" @@ -8792,7 +8897,7 @@ msgstr "" #| "command that caused them to be downloaded again without <tt>-d</tt>." msgid "" "<prgn>apt-get</prgn> has several command line options that are detailed in " -"its man page, <manref section=\"8\" name=\"apt-get\">. The most useful " +"its man page, <manref name=\"apt-get\" section=\"8\">. The most useful " "option is <tt>-d</tt> which does not install the fetched files. If the " "system has to download a large number of package it would be undesired to " "start installing them in case something goes wrong. When <tt>-d</tt> is used " @@ -10009,3 +10114,87 @@ msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade" #: offline.sgml:234 msgid "Which will use the already fetched archives on the disc." msgstr "Esto utiliza los archivos del disco previamente obtenidos." + +#~ msgid "apt" +#~ msgstr "apt" + +#~ msgid "16 June 1998" +#~ msgstr "16 de Junio de 1998" + +#~ msgid "Debian" +#~ msgstr "Debian" + +#~ msgid "NAME" +#~ msgstr "NOMBRE" + +#~ msgid "apt - Advanced Package Tool" +#~ msgstr "apt - Herramienta avanzada de paquetes" + +#~ msgid "SYNOPSIS" +#~ msgstr "SINOPSIS" + +#~ msgid "B<apt>" +#~ msgstr "B<apt>" + +#~ msgid "DESCRIPTION" +#~ msgstr "DESCRIPCIÓN" + +#, fuzzy +#~| msgid "" +#~| "APT is a management system for software packages. For normal day to day " +#~| "package management there are several frontends available, such as " +#~| "B<aptitude>(8) for the command line or B<synaptic>(8) for the X Window " +#~| "System. Some options are only implemented in B<apt-get>(8) though." +#~ msgid "" +#~ "For normal day to day package management there are several frontends " +#~ "available, such as B<aptitude>(8) for the command line or " +#~ "B<synaptic>(8) for the X Window System. Some options are only " +#~ "implemented in B<apt-get>(8) though." +#~ msgstr "" +#~ "APT es un sistema de gestión de paquetes de software. Dispone de varias " +#~ "interfaces para la gestión de paquetes normal del dÃa a dÃa, tales como " +#~ "B<aptitude>(8) para la lÃnea de órdenes o B<synaptic>(8) para el sistema " +#~ "de ventanas de X. Algunas opciones sólo están implementadas en B<apt-" +#~ "get>(8)." + +#~ msgid "SEE ALSO" +#~ msgstr "VÉASE TAMBIÉN" + +#, fuzzy +#~| msgid "" +#~| "B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " +#~| "B<apt_preferences>(5), B<apt-secure>(8)" +#~ msgid "" +#~ "B<apt>(8), B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources." +#~ "list>(5), B<apt_preferences>(5), B<apt-secure>(8)" +#~ msgstr "" +#~ "B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " +#~ "B<apt_preferences>(5), B<apt-secure>(8)" + +#~ msgid "DIAGNOSTICS" +#~ msgstr "DIAGNÓSTICOS" + +#~ msgid "apt returns zero on normal operation, decimal 100 on error." +#~ msgstr "" +#~ "apt devuelve cero si no hay ningún error, y el valor 100 en caso de error." + +#~ msgid "BUGS" +#~ msgstr "FALLOS" + +#~ msgid "This manpage isn't even started." +#~ msgstr "Esta página de manual ni siquiera está iniciada." + +#~ msgid "" +#~ "See E<lt>http://bugs.debian.org/aptE<gt>. If you wish to report a bug in " +#~ "B<apt>, please see I</usr/share/doc/debian/bug-reporting.txt> or the " +#~ "B<reportbug>(1) command." +#~ msgstr "" +#~ "Consulte E<lt>http://bugs.debian.org/aptE<gt>. Si desea enviar un informe " +#~ "de error sobre B<apt>, por favor lea I</usr/share/doc/debian/bug-" +#~ "reporting.txt> o use la orden B<reportbug>(1)." + +#~ msgid "AUTHOR" +#~ msgstr "AUTOR" + +#~ msgid "apt was written by the APT team E<lt>apt@packages.debian.orgE<gt>." +#~ msgstr "El equipo APT E<lt>apt@packages.debian.orgE<gt> escribió apt." diff --git a/doc/po/fr.po b/doc/po/fr.po index 2ae614b56..cabedea51 100644 --- a/doc/po/fr.po +++ b/doc/po/fr.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" -"PO-Revision-Date: 2013-04-09 07:56+0200\n" +"POT-Creation-Date: 2014-04-10 09:49+0200\n" +"PO-Revision-Date: 2014-04-01 14:00+0200\n" "Last-Translator: Christian Perrier <bubulle@debian.org>\n" "Language-Team: French <debian-l10n-french@lists.debian.org>\n" "Language: fr\n" @@ -610,34 +610,266 @@ msgid "" msgstr "<!ENTITY synopsis-keyid \"id_de_clé\">" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 apt-mark.8.xml:28 -#: apt-secure.8.xml:27 apt-cdrom.8.xml:27 apt-config.8.xml:28 +#: apt.8.xml:25 apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 +#: apt-mark.8.xml:28 apt-secure.8.xml:27 apt-cdrom.8.xml:27 +#: apt-config.8.xml:28 msgid "8" msgstr "8" #. type: Content of: <refentry><refmeta><refmiscinfo> -#: apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 apt-mark.8.xml:29 -#: apt-secure.8.xml:28 apt-cdrom.8.xml:28 apt-config.8.xml:29 -#: apt.conf.5.xml:34 apt_preferences.5.xml:28 sources.list.5.xml:29 -#: apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 apt-ftparchive.1.xml:29 +#: apt.8.xml:26 apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 +#: apt-mark.8.xml:29 apt-secure.8.xml:28 apt-cdrom.8.xml:28 +#: apt-config.8.xml:29 apt.conf.5.xml:34 apt_preferences.5.xml:28 +#: sources.list.5.xml:29 apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 +#: apt-ftparchive.1.xml:29 msgid "APT" msgstr "APT" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-get.8.xml:35 -msgid "APT package handling utility -- command-line interface" +#: apt.8.xml:32 +msgid "command-line interface" msgstr "" -"Utilitaire APT pour la gestion des paquets -- interface en ligne de commande." #. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 apt-mark.8.xml:40 -#: apt-secure.8.xml:52 apt-cdrom.8.xml:39 apt-config.8.xml:40 -#: apt.conf.5.xml:43 apt_preferences.5.xml:38 sources.list.5.xml:38 -#: apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 apt-ftparchive.1.xml:40 +#: apt.8.xml:37 apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 +#: apt-mark.8.xml:40 apt-secure.8.xml:52 apt-cdrom.8.xml:39 +#: apt-config.8.xml:40 apt.conf.5.xml:43 apt_preferences.5.xml:38 +#: sources.list.5.xml:38 apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 +#: apt-ftparchive.1.xml:40 msgid "Description" msgstr "Description" #. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:38 +msgid "" +"<command>apt</command> (Advanced Package Tool) is the command-line tool for " +"handling packages. It provides a commandline interface for the package " +"management of the system. See also &apt-get; and &apt-cache; for more low-" +"level command options." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:47 +msgid "" +"<literal>list</literal> is used to display a list of packages. It supports " +"shell pattern for matching package names and the following options: " +"<option>--installed</option>, <option>--upgradable</option>, <option>--all-" +"versions</option> are supported." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:58 +msgid "" +"<literal>search</literal> searches for the given term(s) and display " +"matching packages." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:64 +#, fuzzy +#| msgid "" +#| "<literal>rdepends</literal> shows a listing of each reverse dependency a " +#| "package has." +msgid "" +"<literal>show</literal> shows the package information for the given " +"package(s)." +msgstr "" +"La commande <literal>rdepends</literal> affiche la liste de toutes les " +"dépendances inverses d'un paquet." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:71 +msgid "" +"<literal>install</literal> is followed by one or more package names desired " +"for installation or upgrading." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:75 apt-get.8.xml:118 +msgid "" +"A specific version of a package can be selected for installation by " +"following the package name with an equals and the version of the package to " +"select. This will cause that version to be located and selected for install. " +"Alternatively a specific distribution can be selected by following the " +"package name with a slash and the version of the distribution or the Archive " +"name (stable, testing, unstable)." +msgstr "" +"On peut choisir d'installer une version particulière d'un paquet en faisant " +"suivre son nom par un signe égal et par la version. Cette version sera " +"recherchée et l'installation sera demandée. On peut aussi choisir une " +"distribution particulière en faisant suivre le nom du paquet par une barre " +"oblique et par le nom de la distribution ou de l'archive (stable, testing, " +"unstable)." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:85 apt-get.8.xml:153 +msgid "" +"<literal>remove</literal> is identical to <literal>install</literal> except " +"that packages are removed instead of installed. Note that removing a package " +"leaves its configuration files on the system. If a plus sign is appended to " +"the package name (with no intervening space), the identified package will be " +"installed instead of removed." +msgstr "" +"La commande <literal>remove</literal> est identique à la commande " +"<literal>install</literal>, les paquets étant alors supprimés et non " +"installés. Veuillez noter que la suppression d'un paquet en laisse les " +"fichiers de configuration sur le système. Quand un signe plus est accolé " +"(sans espace intermédiaire) au nom du paquet, le paquet est installé au lieu " +"d'être supprimé." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:93 +msgid "" +"<literal>edit-sources</literal> lets you edit your sources.list file and " +"provides basic sanity checks." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:99 +#, fuzzy +#| msgid "" +#| "<literal>showhold</literal> is used to print a list of packages on hold " +#| "in the same way as for the other show commands." +msgid "" +"<literal>update</literal> is used to resynchronize the package index files " +"from their sources." +msgstr "" +"<literal>showhold</literal> permet d'afficher la liste des paquets conservés " +"de manière analogue aux commandes de même type." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:105 +msgid "" +"<literal>upgrade</literal> is used to install the newest versions of all " +"packages currently installed on the system from the sources enumerated in " +"<filename>/etc/apt/sources.list</filename>. New package will be installed, " +"but existing package will never removed." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:114 +msgid "" +"<literal>full-upgrade</literal> performs the function of upgrade but may " +"also remove installed packages if that is required in order to resolve a " +"package conflict." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:124 apt-get.8.xml:257 apt-cache.8.xml:250 apt-mark.8.xml:110 +#: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50 +#: apt-ftparchive.1.xml:506 +msgid "options" +msgstr "options" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:134 +msgid "Script usage" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:136 +msgid "" +"The &apt; commandline is designed as a end-user tool and it may change the " +"output between versions. While it tries to not break backward compatibility " +"there is no guarantee for it either. All features of &apt; are available in " +"&apt-cache; and &apt-get; via APT options. Please prefer using these " +"commands in your scripts." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:144 +msgid "Differences to &apt-get;" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:145 +msgid "" +"The <command>apt</command> command is meant to be pleasant for end users and " +"does not need to be backward compatible like &apt-get;. Therefore some " +"options are different:" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:151 +#, fuzzy +#| msgid "the <literal>Package:</literal> line" +msgid "The option <literal>DPkgPM::Progress-Fancy</literal> is enabled." +msgstr "la ligne <literal>Package:</literal>" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:155 +#, fuzzy +#| msgid "the <literal>Component:</literal> line" +msgid "The option <literal>APT::Color</literal> is enabled." +msgstr "La ligne <literal>Component:</literal>" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:159 +msgid "" +"A new <literal>list</literal> command is available similar to <literal>dpkg " +"--list</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:164 +#, fuzzy +#| msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" +msgid "" +"The option <literal>upgrade</literal> has <literal>--with-new-pkgs</literal> " +"enabled by default." +msgstr "La ligne <literal>Archive:</literal> ou <literal>Suite:</literal>" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:174 apt-get.8.xml:558 apt-cache.8.xml:352 apt-key.8.xml:197 +#: apt-mark.8.xml:133 apt-secure.8.xml:193 apt-cdrom.8.xml:154 +#: apt-config.8.xml:111 apt.conf.5.xml:1227 apt_preferences.5.xml:707 +#: sources.list.5.xml:280 apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 +#: apt-ftparchive.1.xml:609 +msgid "See Also" +msgstr "Voir aussi" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:175 +#, fuzzy +#| msgid "" +#| "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " +#| "&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-" +#| "preferences;, the APT Howto." +msgid "" +"&apt-get;, &apt-cache;, &sources-list;, &apt-conf;, &apt-config;, The APT " +"User's guide in &guidesdir;, &apt-preferences;, the APT Howto." +msgstr "" +"&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " +"&apt-config;, le guide d'APT dans &guidesdir;, &apt-preferences;, le " +"« HOWTO » d'APT." + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:180 apt-get.8.xml:564 apt-cache.8.xml:357 apt-mark.8.xml:137 +#: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76 +#: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613 +msgid "Diagnostics" +msgstr "Diagnostics" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:181 +#, fuzzy +#| msgid "" +#| "<command>apt-get</command> returns zero on normal operation, decimal 100 " +#| "on error." +msgid "" +"<command>apt</command> returns zero on normal operation, decimal 100 on " +"error." +msgstr "" +"<command>apt-get</command> renvoie zéro après une opération normale, le " +"décimal 100 en cas d'erreur." + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-get.8.xml:35 +msgid "APT package handling utility -- command-line interface" +msgstr "" +"Utilitaire APT pour la gestion des paquets -- interface en ligne de commande." + +#. type: Content of: <refentry><refsect1><para> #: apt-get.8.xml:41 #, fuzzy #| msgid "" @@ -789,23 +1021,6 @@ msgstr "" "prises par le système de résolution des conflits d'apt-get." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:118 -msgid "" -"A specific version of a package can be selected for installation by " -"following the package name with an equals and the version of the package to " -"select. This will cause that version to be located and selected for install. " -"Alternatively a specific distribution can be selected by following the " -"package name with a slash and the version of the distribution or the Archive " -"name (stable, testing, unstable)." -msgstr "" -"On peut choisir d'installer une version particulière d'un paquet en faisant " -"suivre son nom par un signe égal et par la version. Cette version sera " -"recherchée et l'installation sera demandée. On peut aussi choisir une " -"distribution particulière en faisant suivre le nom du paquet par une barre " -"oblique et par le nom de la distribution ou de l'archive (stable, testing, " -"unstable)." - -#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:125 msgid "" "Both of the version selection mechanisms can downgrade packages and must be " @@ -866,22 +1081,6 @@ msgstr "" "d'utiliser une expression plus précise." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:153 -msgid "" -"<literal>remove</literal> is identical to <literal>install</literal> except " -"that packages are removed instead of installed. Note that removing a package " -"leaves its configuration files on the system. If a plus sign is appended to " -"the package name (with no intervening space), the identified package will be " -"installed instead of removed." -msgstr "" -"La commande <literal>remove</literal> est identique à la commande " -"<literal>install</literal>, les paquets étant alors supprimés et non " -"installés. Veuillez noter que la suppression d'un paquet en laisse les " -"fichiers de configuration sur le système. Quand un signe plus est accolé " -"(sans espace intermédiaire) au nom du paquet, le paquet est installé au lieu " -"d'être supprimé." - -#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:161 msgid "" "<literal>purge</literal> is identical to <literal>remove</literal> except " @@ -1081,13 +1280,6 @@ msgstr "" "il est possible d'utiliser les mêmes options que pour la commande " "<option>install</option>." -#. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:257 apt-cache.8.xml:250 apt-mark.8.xml:110 -#: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50 -#: apt-ftparchive.1.xml:506 -msgid "options" -msgstr "options" - #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:262 msgid "" @@ -1304,13 +1496,21 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:370 +#, fuzzy +#| msgid "" +#| "This option controls the architecture packages are built for by " +#| "<command>apt-get source --compile</command> and how cross-" +#| "builddependencies are satisfied. By default is it not set which means " +#| "that the host architecture is the same as the build architecture (which " +#| "is defined by <literal>APT::Architecture</literal>). Configuration Item: " +#| "<literal>APT::Get::Host-Architecture</literal>" msgid "" "This option controls the architecture packages are built for by <command>apt-" "get source --compile</command> and how cross-builddependencies are " "satisfied. By default is it not set which means that the host architecture " "is the same as the build architecture (which is defined by <literal>APT::" "Architecture</literal>). Configuration Item: <literal>APT::Get::Host-" -"Architecture</literal>" +"Architecture</literal>." msgstr "" "Cette option contrôle comment les paquets d'architectures sont construits " "par <command>apt-get source --compile</command> et comment les dépendances " @@ -1322,6 +1522,31 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:380 +#, fuzzy +#| msgid "" +#| "This option controls the architecture packages are built for by " +#| "<command>apt-get source --compile</command> and how cross-" +#| "builddependencies are satisfied. By default is it not set which means " +#| "that the host architecture is the same as the build architecture (which " +#| "is defined by <literal>APT::Architecture</literal>). Configuration Item: " +#| "<literal>APT::Get::Host-Architecture</literal>" +msgid "" +"This option controls the activated build profiles for which a source package " +"is built by <command>apt-get source --compile</command> and how build " +"dependencies are satisfied. By default no build profile is active. More " +"than one build profile can be activated at a time by concatenating them with " +"a comma. Configuration Item: <literal>APT::Build-Profiles</literal>." +msgstr "" +"Cette option contrôle comment les paquets d'architectures sont construits " +"par <command>apt-get source --compile</command> et comment les dépendances " +"de construction transverses sont respectées. Elle n'est pas positionnée par " +"défaut ce qui signifie que l'architecture hôte est la même que " +"l'architecture de construction (définie par <literal>APT::Architecture</" +"literal>). Élément de configuration : <literal>APT::Get::Host-Architecture</" +"literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:391 msgid "" "Compile source packages after downloading them. Configuration Item: " "<literal>APT::Get::Compile</literal>." @@ -1330,7 +1555,7 @@ msgstr "" "configuration : <literal>APT::Get::Compile</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:385 +#: apt-get.8.xml:396 msgid "" "Ignore package holds; this causes <command>apt-get</command> to ignore a " "hold placed on a package. This may be useful in conjunction with " @@ -1344,7 +1569,7 @@ msgstr "" "<literal>APT::Ignore-Hold</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:392 +#: apt-get.8.xml:403 msgid "" "Allow installing new packages when used in conjunction with " "<literal>upgrade</literal>. This is useful if the update of a installed " @@ -1356,7 +1581,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:404 +#: apt-get.8.xml:415 msgid "" "Do not upgrade packages; when used in conjunction with <literal>install</" "literal>, <literal>no-upgrade</literal> will prevent packages on the command " @@ -1369,7 +1594,7 @@ msgstr "" "Upgrade</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:411 +#: apt-get.8.xml:422 msgid "" "Do not install new packages; when used in conjunction with <literal>install</" "literal>, <literal>only-upgrade</literal> will install upgrades for already " @@ -1382,7 +1607,7 @@ msgstr "" "configuration : <literal>APT::Get::Only-Upgrade</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:419 +#: apt-get.8.xml:430 msgid "" "Force yes; this is a dangerous option that will cause apt to continue " "without prompting if it is doing something potentially harmful. It should " @@ -1398,7 +1623,7 @@ msgstr "" "yes</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:427 +#: apt-get.8.xml:438 msgid "" "Instead of fetching the files to install their URIs are printed. Each URI " "will have the path, the destination file name, the size and the expected MD5 " @@ -1420,7 +1645,7 @@ msgstr "" "<literal>APT::Get::Print-URIs</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:438 +#: apt-get.8.xml:449 msgid "" "Use purge instead of remove for anything that would be removed. An asterisk " "(\"*\") will be displayed next to packages which are scheduled to be purged. " @@ -1434,7 +1659,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:446 +#: apt-get.8.xml:457 msgid "" "Re-install packages that are already installed and at the newest version. " "Configuration Item: <literal>APT::Get::ReInstall</literal>." @@ -1443,7 +1668,7 @@ msgstr "" "Élément de configuration : <literal>APT::Get::ReInstall</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:451 +#: apt-get.8.xml:462 msgid "" "This option is on by default; use <literal>--no-list-cleanup</literal> to " "turn it off. When it is on, <command>apt-get</command> will automatically " @@ -1461,7 +1686,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:461 +#: apt-get.8.xml:472 msgid "" "This option controls the default input to the policy engine; it creates a " "default pin at priority 990 using the specified release string. This " @@ -1483,7 +1708,7 @@ msgstr "" "Release</literal>. Voyez aussi la page de manuel d'&apt-preferences;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:476 +#: apt-get.8.xml:487 msgid "" "Only perform operations that are 'trivial'. Logically this can be considered " "related to <option>--assume-yes</option>; where <option>--assume-yes</" @@ -1497,7 +1722,7 @@ msgstr "" "Get::Trivial-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:483 +#: apt-get.8.xml:494 msgid "" "If any packages are to be removed apt-get immediately aborts without " "prompting. Configuration Item: <literal>APT::Get::Remove</literal>." @@ -1507,7 +1732,7 @@ msgstr "" "Remove</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:489 +#: apt-get.8.xml:500 msgid "" "If the command is either <literal>install</literal> or <literal>remove</" "literal>, then this option acts like running the <literal>autoremove</" @@ -1520,7 +1745,7 @@ msgstr "" "inutilisés. Élément de configuration : <literal>APT::Get::Upgrade</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:496 +#: apt-get.8.xml:507 msgid "" "Only has meaning for the <literal>source</literal> and <literal>build-dep</" "literal> commands. Indicates that the given source names are not to be " @@ -1540,7 +1765,7 @@ msgstr "" "literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:507 +#: apt-get.8.xml:518 msgid "" "Download only the diff, dsc, or tar file of a source archive. Configuration " "Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</" @@ -1552,7 +1777,7 @@ msgstr "" "literal>, " #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:513 +#: apt-get.8.xml:524 msgid "" "Only process architecture-dependent build-dependencies. Configuration Item: " "<literal>APT::Get::Arch-Only</literal>." @@ -1562,7 +1787,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:518 +#: apt-get.8.xml:529 msgid "" "Ignore if packages can't be authenticated and don't prompt about it. This " "is useful for tools like pbuilder. Configuration Item: <literal>APT::Get::" @@ -1574,7 +1799,7 @@ msgstr "" "AllowUnauthenticated</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:524 +#: apt-get.8.xml:535 msgid "" "Show user friendly progress information in the terminal window when packages " "are installed, upgraded or removed. For a machine parsable version of this " @@ -1584,22 +1809,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:537 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 -#: apt.conf.5.xml:1200 apt_preferences.5.xml:700 +#: apt-get.8.xml:548 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 +#: apt.conf.5.xml:1221 apt_preferences.5.xml:700 msgid "Files" msgstr "Fichiers" -#. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:547 apt-cache.8.xml:352 apt-key.8.xml:197 apt-mark.8.xml:133 -#: apt-secure.8.xml:193 apt-cdrom.8.xml:154 apt-config.8.xml:111 -#: apt.conf.5.xml:1206 apt_preferences.5.xml:707 sources.list.5.xml:280 -#: apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 -#: apt-ftparchive.1.xml:609 -msgid "See Also" -msgstr "Voir aussi" - #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:548 +#: apt-get.8.xml:559 #, fuzzy #| msgid "" #| "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " @@ -1614,15 +1830,8 @@ msgstr "" "&apt-config;, le guide d'APT dans &guidesdir;, &apt-preferences;, le " "« HOWTO » d'APT." -#. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:553 apt-cache.8.xml:357 apt-mark.8.xml:137 -#: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76 -#: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613 -msgid "Diagnostics" -msgstr "Diagnostics" - #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:554 +#: apt-get.8.xml:565 msgid "" "<command>apt-get</command> returns zero on normal operation, decimal 100 on " "error." @@ -3481,7 +3690,16 @@ msgstr "" "sont enregistrées avec <command>dpkg --add-architecture</command>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:181 +#: apt.conf.5.xml:182 +msgid "" +"List of all build profiles enabled for build-dependency resolution, without " +"the \"<literal>profile.</literal>\" namespace prefix. By default this list " +"is empty. The <envar>DEB_BUILD_PROFILES</envar> as used by &dpkg-" +"buildpackage; overrides the list notation." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:190 msgid "" "Default release to install packages from if more than one version is " "available. Contains release name, codename or release version. Examples: " @@ -3495,7 +3713,7 @@ msgstr "" "&apt-preferences;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:187 +#: apt.conf.5.xml:196 msgid "" "Ignore held packages; this global option causes the problem resolver to " "ignore held packages in its decision making." @@ -3505,7 +3723,7 @@ msgstr "" "décision." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:192 +#: apt.conf.5.xml:201 msgid "" "Defaults to on. When turned on the autoclean feature will remove any " "packages which can no longer be downloaded from the cache. If turned off " @@ -3519,7 +3737,7 @@ msgstr "" "direct pour les réinstaller." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:200 +#: apt.conf.5.xml:209 msgid "" "Defaults to on, which will cause APT to install essential and important " "packages as soon as possible in an install/upgrade operation, in order to " @@ -3546,7 +3764,7 @@ msgstr "" "dépendances ne sont pas satisfaites." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:212 +#: apt.conf.5.xml:221 msgid "" "The immediate configuration marker is also applied in the potentially " "problematic case of circular dependencies, since a dependency with the " @@ -3575,7 +3793,7 @@ msgstr "" "le seul qu'elle permet d'éviter." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:225 +#: apt.conf.5.xml:234 msgid "" "Before a big operation like <literal>dist-upgrade</literal> is run with this " "option disabled you should try to explicitly <literal>install</literal> the " @@ -3593,7 +3811,7 @@ msgstr "" "corriger les processus de mise à jour." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:236 +#: apt.conf.5.xml:245 msgid "" "Never enable this option unless you <emphasis>really</emphasis> know what " "you are doing. It permits APT to temporarily remove an essential package to " @@ -3615,7 +3833,7 @@ msgstr "" "tous les paquets dont ces paquets dépendent." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:248 +#: apt.conf.5.xml:257 msgid "" "APT uses since version 0.7.26 a resizable memory mapped cache file to store " "the available information. <literal>Cache-Start</literal> acts as a hint of " @@ -3655,14 +3873,14 @@ msgstr "" "l'augmentation automatique de la taille du cache est désactivée." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:264 +#: apt.conf.5.xml:273 msgid "Defines which packages are considered essential build dependencies." msgstr "" "Cette option définit les paquets qui sont considérés comme faisant partie " "des dépendances essentielles pour la construction de paquets." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:268 +#: apt.conf.5.xml:277 msgid "" "The Get subsection controls the &apt-get; tool; please see its documentation " "for more information about the options here." @@ -3672,7 +3890,7 @@ msgstr "" "question." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:273 +#: apt.conf.5.xml:282 msgid "" "The Cache subsection controls the &apt-cache; tool; please see its " "documentation for more information about the options here." @@ -3682,7 +3900,7 @@ msgstr "" "options en question." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:278 +#: apt.conf.5.xml:287 msgid "" "The CDROM subsection controls the &apt-cdrom; tool; please see its " "documentation for more information about the options here." @@ -3692,12 +3910,12 @@ msgstr "" "options en question." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:284 +#: apt.conf.5.xml:293 msgid "The Acquire Group" msgstr "Le groupe Acquire" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:285 +#: apt.conf.5.xml:294 msgid "" "The <literal>Acquire</literal> group of options controls the download of " "packages as well as the various \"acquire methods\" responsible for the " @@ -3708,7 +3926,7 @@ msgstr "" "effectuent ce téléchargement (voir aussi &sources-list;)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:292 +#: apt.conf.5.xml:301 msgid "" "Security related option defaulting to true, as giving a Release file's " "validation an expiration date prevents replay attacks over a long timescale, " @@ -3729,7 +3947,7 @@ msgstr "" "alors utilisée." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:305 +#: apt.conf.5.xml:314 msgid "" "Maximum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -3748,7 +3966,7 @@ msgstr "" "l'option." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:317 +#: apt.conf.5.xml:326 msgid "" "Minimum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -3768,7 +3986,7 @@ msgstr "" "nom de l'option." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:329 +#: apt.conf.5.xml:338 msgid "" "Try to download deltas called <literal>PDiffs</literal> for indexes (like " "<filename>Packages</filename> files) instead of downloading whole ones. True " @@ -3779,7 +3997,7 @@ msgstr "" "filename>), plutôt que de les télécharger entièrement. Par défaut à « true »." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:332 +#: apt.conf.5.xml:341 msgid "" "Two sub-options to limit the use of PDiffs are also available: " "<literal>FileLimit</literal> can be used to specify a maximum number of " @@ -3798,7 +4016,7 @@ msgstr "" "fichiers de différences." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:342 +#: apt.conf.5.xml:351 msgid "" "Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</" "literal> or <literal>access</literal> which determines how APT parallelizes " @@ -3814,7 +4032,7 @@ msgstr "" "initiée." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:350 +#: apt.conf.5.xml:359 msgid "" "Number of retries to perform. If this is non-zero APT will retry failed " "files the given number of times." @@ -3824,7 +4042,7 @@ msgstr "" "échoué." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:355 +#: apt.conf.5.xml:364 msgid "" "Use symlinks for source archives. If set to true then source archives will " "be symlinked when possible instead of copying. True is the default." @@ -3834,7 +4052,7 @@ msgstr "" "archives de sources au lieu de les copier. Par défaut à « true »." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:360 +#: apt.conf.5.xml:369 msgid "" "<literal>http::Proxy</literal> sets the default proxy to use for HTTP URIs. " "It is in the standard form of <literal>http://[[user][:pass]@]host[:port]/</" @@ -3855,7 +4073,7 @@ msgstr "" "options de mandataire HTTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:368 +#: apt.conf.5.xml:377 msgid "" "Three settings are provided for cache control with HTTP/1.1 compliant proxy " "caches. <literal>No-Cache</literal> tells the proxy not to use its cached " @@ -3875,7 +4093,7 @@ msgstr "" "fichiers .deb très grands." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:378 apt.conf.5.xml:466 +#: apt.conf.5.xml:387 apt.conf.5.xml:475 msgid "" "The option <literal>timeout</literal> sets the timeout timer used by the " "method; this value applies to the connection as well as the data timeout." @@ -3885,7 +4103,7 @@ msgstr "" "connexion qu'aux données." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:381 +#: apt.conf.5.xml:390 msgid "" "The setting <literal>Acquire::http::Pipeline-Depth</literal> can be used to " "enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e." @@ -3905,7 +4123,7 @@ msgstr "" "qui ne respectent pas la norme HTTP/1.1." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:388 +#: apt.conf.5.xml:397 msgid "" "<literal>Acquire::http::AllowRedirect</literal> controls whether APT will " "follow redirects, which is enabled by default." @@ -3914,7 +4132,7 @@ msgstr "" "suive les redirections. Ce réglage est activé par défaut." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:391 +#: apt.conf.5.xml:400 #, fuzzy #| msgid "" #| "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</" @@ -3936,7 +4154,7 @@ msgstr "" "implicitement le téléchargement simultané depuis plusieurs serveurs." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:398 +#: apt.conf.5.xml:407 msgid "" "<literal>Acquire::http::User-Agent</literal> can be used to set a different " "User-Agent for the http download method as some proxies allow access for " @@ -3948,7 +4166,7 @@ msgstr "" "n'autorisent l'accès qu'aux client s'identifiant de manière spécifique.." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:402 +#: apt.conf.5.xml:411 msgid "" "<literal>Acquire::http::Proxy-Auto-Detect</literal> can be used to specify " "an external command to discover the http proxy to use. Apt expects the " @@ -3962,7 +4180,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:420 +#: apt.conf.5.xml:429 msgid "" "The <literal>Cache-control</literal>, <literal>Timeout</literal>, " "<literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> and " @@ -3979,7 +4197,7 @@ msgstr "" "literal> n'est pas encore gérée." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:428 +#: apt.conf.5.xml:437 msgid "" "<literal>CaInfo</literal> suboption specifies place of file that holds info " "about trusted certificates. <literal><host>::CaInfo</literal> is the " @@ -4012,7 +4230,7 @@ msgstr "" "<literal>TLSv1</literal> ou <literal>SSLv3</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:449 +#: apt.conf.5.xml:458 msgid "" "<literal>ftp::Proxy</literal> sets the default proxy to use for FTP URIs. " "It is in the standard form of <literal>ftp://[[user][:pass]@]host[:port]/</" @@ -4048,7 +4266,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:469 +#: apt.conf.5.xml:478 msgid "" "Several settings are provided to control passive mode. Generally it is safe " "to leave passive mode on; it works in nearly every environment. However, " @@ -4065,7 +4283,7 @@ msgstr "" "modèle de fichier de configuration)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:476 +#: apt.conf.5.xml:485 msgid "" "It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</" "envar> environment variable to an HTTP URL - see the discussion of the http " @@ -4080,7 +4298,7 @@ msgstr "" "efficacité de cette méthode." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:481 +#: apt.conf.5.xml:490 msgid "" "The setting <literal>ForceExtended</literal> controls the use of RFC2428 " "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is " @@ -4096,13 +4314,13 @@ msgstr "" "des serveurs FTP ne suivent pas la RFC 2428." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:495 +#: apt.conf.5.xml:504 #, no-wrap msgid "/cdrom/::Mount \"foo\";" msgstr "/cdrom/::Mount \"foo\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:490 +#: apt.conf.5.xml:499 msgid "" "For URIs using the <literal>cdrom</literal> method, the only configurable " "option is the mount point, <literal>cdrom::Mount</literal>, which must be " @@ -4125,7 +4343,7 @@ msgstr "" "<literal>UMount</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:503 +#: apt.conf.5.xml:512 msgid "" "For GPGV URIs the only configurable option is <literal>gpgv::Options</" "literal>, which passes additional parameters to gpgv." @@ -4134,13 +4352,13 @@ msgstr "" "permet de passer des paramètres à gpgv" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:514 +#: apt.conf.5.xml:523 #, no-wrap msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";" msgstr "Acquire::CompressionTypes::<replaceable>ExtensionFichier</replaceable> \"<replaceable>NomMethode</replaceable>\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:509 +#: apt.conf.5.xml:518 msgid "" "List of compression types which are understood by the acquire methods. " "Files like <filename>Packages</filename> can be available in various " @@ -4160,19 +4378,19 @@ msgstr "" "type=\"synopsis\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:519 +#: apt.conf.5.xml:528 #, no-wrap msgid "Acquire::CompressionTypes::Order:: \"gz\";" msgstr "Acquire::CompressionTypes::Order:: \"gz\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:522 +#: apt.conf.5.xml:531 #, no-wrap msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:515 +#: apt.conf.5.xml:524 msgid "" "Also, the <literal>Order</literal> subgroup can be used to define in which " "order the acquire system will try to download the compressed files. The " @@ -4204,13 +4422,13 @@ msgstr "" "<literal>bz2</literal> à liste car il sera ajouté automatiquement." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:529 +#: apt.conf.5.xml:538 #, no-wrap msgid "Dir::Bin::bzip2 \"/bin/bzip2\";" msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:524 +#: apt.conf.5.xml:533 msgid "" "Note that the <literal>Dir::Bin::<replaceable>Methodname</replaceable></" "literal> will be checked at run time. If this option has been set, the " @@ -4237,7 +4455,7 @@ msgstr "" "question." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:534 +#: apt.conf.5.xml:543 msgid "" "The special type <literal>uncompressed</literal> can be used to give " "uncompressed files a preference, but note that most archives don't provide " @@ -4249,7 +4467,7 @@ msgstr "" "surtout destiné aux miroirs locaux." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:541 +#: apt.conf.5.xml:550 msgid "" "When downloading <literal>gzip</literal> compressed indexes (Packages, " "Sources, or Translations), keep them gzip compressed locally instead of " @@ -4264,7 +4482,7 @@ msgstr "" "(« False »)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:549 +#: apt.conf.5.xml:558 msgid "" "The Languages subsection controls which <filename>Translation</filename> " "files are downloaded and in which order APT tries to display the description-" @@ -4284,13 +4502,13 @@ msgstr "" "langues étant particulièrement rares." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><programlisting> -#: apt.conf.5.xml:566 +#: apt.conf.5.xml:575 #, no-wrap msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" msgstr "Acquire::Languages { \"environment\"; \"fr\"; \"en\"; \"none\"; \"de\"; };" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:554 +#: apt.conf.5.xml:563 msgid "" "The default list includes \"environment\" and \"en\". " "\"<literal>environment</literal>\" has a special meaning here: it will be " @@ -4330,7 +4548,7 @@ msgstr "" "alors « de, fr, en ». <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:567 +#: apt.conf.5.xml:576 msgid "" "Note: To prevent problems resulting from APT being executed in different " "environments (e.g. by different users or by other programs) all Translation " @@ -4344,22 +4562,22 @@ msgstr "" "(après un « <literal>none</literal> » implicite)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:576 +#: apt.conf.5.xml:585 msgid "When downloading, force to use only the IPv4 protocol." msgstr "Utilisation imposée du protocole IPv4 lors des téléchargements." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:582 +#: apt.conf.5.xml:591 msgid "When downloading, force to use only the IPv6 protocol." msgstr "Utilisation imposée du protocole IPv6 lors des téléchargements." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:589 +#: apt.conf.5.xml:598 msgid "Directories" msgstr "Les répertoires" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:591 +#: apt.conf.5.xml:600 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@ -4379,7 +4597,7 @@ msgstr "" "<filename>./</filename>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:598 +#: apt.conf.5.xml:607 msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@ -4402,7 +4620,7 @@ msgstr "" "Cache</literal>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:607 +#: apt.conf.5.xml:616 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -4417,7 +4635,7 @@ msgstr "" "fichier de configuration indiqué par la variable <envar>APT_CONFIG</envar>)." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:613 +#: apt.conf.5.xml:622 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -4428,7 +4646,7 @@ msgstr "" "configuration est chargé." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:617 +#: apt.conf.5.xml:626 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@ -4446,7 +4664,7 @@ msgstr "" "programmes correspondants." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:625 +#: apt.conf.5.xml:634 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -4468,7 +4686,7 @@ msgstr "" "staging/var/lib/dpkg/status</filename>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:638 +#: apt.conf.5.xml:647 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@ -4486,12 +4704,12 @@ msgstr "" "est possible d'utiliser la syntaxe des expressions rationnelles." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:647 +#: apt.conf.5.xml:656 msgid "APT in DSelect" msgstr "APT et DSelect" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:649 +#: apt.conf.5.xml:658 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@ -4502,7 +4720,7 @@ msgstr "" "<literal>DSelect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:654 +#: apt.conf.5.xml:663 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@ -4525,7 +4743,7 @@ msgstr "" "avant de récupérer de nouveaux paquets." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:668 +#: apt.conf.5.xml:677 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." @@ -4534,7 +4752,7 @@ msgstr "" "&apt-get; lors de la phase d'installation." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:673 +#: apt.conf.5.xml:682 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." @@ -4543,7 +4761,7 @@ msgstr "" "&apt-get; lors de la phase de mise à jour." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:678 +#: apt.conf.5.xml:687 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." @@ -4553,12 +4771,12 @@ msgstr "" "d'erreur que l'on propose à l'utilisateur d'intervenir." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:684 +#: apt.conf.5.xml:693 msgid "How APT calls &dpkg;" msgstr "Méthode d'appel de &dpkg; par APT" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:685 +#: apt.conf.5.xml:694 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." @@ -4567,7 +4785,7 @@ msgstr "" "&dpkg; : elles figurent dans la section <literal>DPkg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:690 +#: apt.conf.5.xml:699 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -4578,7 +4796,7 @@ msgstr "" "est passé comme un seul paramètre à &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:696 +#: apt.conf.5.xml:705 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4591,7 +4809,7 @@ msgstr "" "<filename>/bin/sh</filename> : APT s'arrête dès que l'une d'elles échoue." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:703 +#: apt.conf.5.xml:712 #, fuzzy #| msgid "" #| "This is a list of shell commands to run before invoking &dpkg;. Like " @@ -4615,7 +4833,7 @@ msgstr "" "qu'il va installer, à raison d'un par ligne." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:710 +#: apt.conf.5.xml:719 #, fuzzy #| msgid "" #| "Version 2 of this protocol dumps more information, including the protocol " @@ -4637,7 +4855,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:715 +#: apt.conf.5.xml:724 msgid "" "The version of the protocol to be used for the command " "<literal><replaceable>cmd</replaceable></literal> can be chosen by setting " @@ -4648,7 +4866,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:722 +#: apt.conf.5.xml:731 msgid "" "The file descriptor to be used to send the information can be requested with " "<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</" @@ -4659,7 +4877,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:732 +#: apt.conf.5.xml:741 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." @@ -4668,7 +4886,7 @@ msgstr "" "le répertoire <filename>/</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:737 +#: apt.conf.5.xml:746 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." @@ -4678,14 +4896,14 @@ msgstr "" "créés." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:742 +#: apt.conf.5.xml:751 msgid "dpkg trigger usage (and related options)" msgstr "" "utilisation des actions différées (« triggers ») de dpkg (et options " "associées)" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:743 +#: apt.conf.5.xml:752 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@ -4712,7 +4930,7 @@ msgstr "" "pendant la configuration des paquets." #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:758 +#: apt.conf.5.xml:767 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -4726,7 +4944,7 @@ msgstr "" "DPkg::TriggersPending \"true\";" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:752 +#: apt.conf.5.xml:761 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -4750,7 +4968,7 @@ msgstr "" "<placeholder type=\"literallayout\" id=\"0\"/>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:765 +#: apt.conf.5.xml:774 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -4773,7 +4991,7 @@ msgstr "" "options « unpack » et « remove »." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:773 +#: apt.conf.5.xml:782 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@ -4803,7 +5021,7 @@ msgstr "" "configuré et donc éventuellement non amorçable." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:788 +#: apt.conf.5.xml:797 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@ -4822,7 +5040,7 @@ msgstr "" "peut conserver l'option active." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:795 +#: apt.conf.5.xml:804 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@ -4840,7 +5058,7 @@ msgstr "" "celles concernant le paquet en cours de traitement." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:808 +#: apt.conf.5.xml:817 #, no-wrap msgid "" "OrderList::Score {\n" @@ -4858,7 +5076,7 @@ msgstr "" "};" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:801 +#: apt.conf.5.xml:810 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@ -4884,12 +5102,12 @@ msgstr "" "id=\"0\"/>" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:821 +#: apt.conf.5.xml:830 msgid "Periodic and Archives options" msgstr "Options « Periodic » et « Archive »" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:822 +#: apt.conf.5.xml:831 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@ -4901,12 +5119,12 @@ msgstr "" "script <literal>/etc/cron.daily/apt</literal>, lancé quotidiennement." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:830 +#: apt.conf.5.xml:839 msgid "Debug options" msgstr "Les options de débogage" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:832 +#: apt.conf.5.xml:841 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -4924,7 +5142,7 @@ msgstr "" "peuvent tout de même être utiles :" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:843 +#: apt.conf.5.xml:852 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@ -4935,7 +5153,7 @@ msgstr "" "upgrade, upgrade, install, remove et purge</literal>." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:851 +#: apt.conf.5.xml:860 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@ -4947,7 +5165,7 @@ msgstr "" "superutilisateur." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:860 +#: apt.conf.5.xml:869 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -4959,7 +5177,7 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:868 +#: apt.conf.5.xml:877 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." @@ -4968,12 +5186,12 @@ msgstr "" "type statfs dans les identifiants de CD." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:878 +#: apt.conf.5.xml:887 msgid "A full list of debugging options to apt follows." msgstr "Liste complète des options de débogage de APT :" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:887 +#: apt.conf.5.xml:896 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" @@ -4981,24 +5199,24 @@ msgstr "" "literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:898 +#: apt.conf.5.xml:907 msgid "Print information related to downloading packages using FTP." msgstr "" "Affiche les informations concernant le téléchargement de paquets par FTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:909 +#: apt.conf.5.xml:918 msgid "Print information related to downloading packages using HTTP." msgstr "" "Affiche les informations concernant le téléchargement de paquets par HTTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:920 +#: apt.conf.5.xml:929 msgid "Print information related to downloading packages using HTTPS." msgstr "Print information related to downloading packages using HTTPS." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:931 +#: apt.conf.5.xml:940 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." @@ -5007,7 +5225,7 @@ msgstr "" "cryptographiques avec <literal>gpg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:942 +#: apt.conf.5.xml:951 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." @@ -5016,14 +5234,14 @@ msgstr "" "stockées sur CD." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:952 +#: apt.conf.5.xml:961 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" "Décrit le processus de résolution des dépendances pour la construction de " "paquets source ( « build-dependencies » ) par &apt-get;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:962 +#: apt.conf.5.xml:971 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." @@ -5032,7 +5250,7 @@ msgstr "" "librairies d'<literal>apt</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:972 +#: apt.conf.5.xml:981 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -5043,7 +5261,7 @@ msgstr "" "utilisés sur le système de fichier du CD." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:983 +#: apt.conf.5.xml:992 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." @@ -5053,14 +5271,14 @@ msgstr "" "temps." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:995 +#: apt.conf.5.xml:1004 msgid "Log when items are added to or removed from the global download queue." msgstr "" "Trace les ajouts et suppressions d'éléments de la queue globale de " "téléchargement." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1005 +#: apt.conf.5.xml:1014 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." @@ -5070,7 +5288,7 @@ msgstr "" "éventuelles." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1015 +#: apt.conf.5.xml:1024 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." @@ -5080,7 +5298,7 @@ msgstr "" "éventuelles." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1027 +#: apt.conf.5.xml:1036 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." @@ -5090,7 +5308,7 @@ msgstr "" "place des fichiers complets." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1038 +#: apt.conf.5.xml:1047 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" @@ -5098,7 +5316,7 @@ msgstr "" "effectivement des téléchargements." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1049 +#: apt.conf.5.xml:1058 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." @@ -5107,7 +5325,7 @@ msgstr "" "automatiquement, et la suppression des paquets inutiles." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1059 +#: apt.conf.5.xml:1068 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@ -5122,7 +5340,7 @@ msgstr "" "de APT ; voir <literal>Debug::pkgProblemResolver</literal> pour ce dernier." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1073 +#: apt.conf.5.xml:1082 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@ -5158,7 +5376,7 @@ msgstr "" "de APT ; voir <literal>Debug::pkgProblemResolver</literal> pour ce dernier." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1094 +#: apt.conf.5.xml:1103 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." @@ -5167,7 +5385,7 @@ msgstr "" "paramètres sont séparés par des espaces." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1105 +#: apt.conf.5.xml:1114 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." @@ -5177,7 +5395,7 @@ msgstr "" "fichier." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1116 +#: apt.conf.5.xml:1125 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." @@ -5186,18 +5404,18 @@ msgstr "" "<literal>apt</literal> passe les paquets à &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1128 +#: apt.conf.5.xml:1137 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "Affiche le détail des opérations liées à l'invocation de &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1139 +#: apt.conf.5.xml:1148 msgid "Output the priority of each package list on startup." msgstr "Affiche, au lancement, la priorité de chaque liste de paquets." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1149 +#: apt.conf.5.xml:1158 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." @@ -5206,7 +5424,7 @@ msgstr "" "concerne que les cas où un problème de dépendances complexe se présente)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1160 +#: apt.conf.5.xml:1169 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -5217,7 +5435,7 @@ msgstr "" "est décrite dans <literal>Debug::pkgDepCache::Marker</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1172 +#: apt.conf.5.xml:1181 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." @@ -5225,14 +5443,22 @@ msgstr "" "Affiche les fournisseurs déclarés dans le fichier <filename>/etc/apt/vendors." "list</filename>." +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:1191 +msgid "" +"Display the external commands that are called by apt hooks. This includes e." +"g. the config options <literal>DPkg::{Pre,Post}-Invoke</literal> or " +"<literal>APT::Update::{Pre,Post}-Invoke</literal>." +msgstr "" + #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:1194 apt_preferences.5.xml:547 sources.list.5.xml:239 +#: apt.conf.5.xml:1215 apt_preferences.5.xml:547 sources.list.5.xml:239 #: apt-ftparchive.1.xml:598 msgid "Examples" msgstr "Exemples" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1195 +#: apt.conf.5.xml:1216 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -5242,7 +5468,7 @@ msgstr "" #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1207 +#: apt.conf.5.xml:1228 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." @@ -7244,14 +7470,14 @@ msgid "" "template-file and config-script are written to the temporary directory " "specified by the <option>-t</option> or <option>--tempdir</option> " "(<literal>APT::ExtractTemplates::TempDir</literal>) directory, with " -"filenames of the form <filename>package.template.XXXX</filename> and " -"<filename>package.config.XXXX</filename>" +"filenames of the form <filename>package.template.XXXXXX</filename> and " +"<filename>package.config.XXXXXX</filename>" msgstr "" "Les scripts et guides de configuration sont écrits dans le répertoire " "temporaire indiqué par l'option <option>-t</option> ou <option>--tempdir</" "option> (<literal>APT::ExtractTemplates::TempDir</literal>) ; les noms de " -"fichier sont de la forme <filename>package.template.XXXX</filename> ou " -"<filename>package.config.XXXX</filename>." +"fichier sont de la forme <filename>package.template.XXXXXX</filename> ou " +"<filename>package.config.XXXXXX</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-extracttemplates.1.xml:60 @@ -8280,128 +8506,6 @@ msgstr "" "<command>apt-ftparchive</command> retourne zéro si tout se passe bien, le " "nombre 100 en cas d'erreur." -#. type: TH -#: apt.8:17 -#, no-wrap -msgid "apt" -msgstr "apt" - -#. type: TH -#: apt.8:17 -#, no-wrap -msgid "16 June 1998" -msgstr "16 Juin 1998" - -#. type: TH -#: apt.8:17 -#, no-wrap -msgid "Debian" -msgstr "Debian" - -#. type: SH -#: apt.8:18 -#, no-wrap -msgid "NAME" -msgstr "NOM" - -#. type: Plain text -#: apt.8:20 -msgid "apt - Advanced Package Tool" -msgstr "apt - Outil complet de gestion de paquets" - -#. type: SH -#: apt.8:20 -#, no-wrap -msgid "SYNOPSIS" -msgstr "RÉSUMÉ" - -#. type: Plain text -#: apt.8:22 -msgid "B<apt>" -msgstr "B<apt>" - -#. type: SH -#: apt.8:22 -#, no-wrap -msgid "DESCRIPTION" -msgstr "DESCRIPTION" - -#. type: Plain text -#: apt.8:31 -msgid "" -"APT is a management system for software packages. For normal day to day " -"package management there are several frontends available, such as " -"B<aptitude>(8) for the command line or B<synaptic>(8) for the X Window " -"System. Some options are only implemented in B<apt-get>(8) though." -msgstr "" -"APT est un système de gestion de paquets logiciels. Pour la gestion au " -"quotidien des paquets, il existe plusieurs frontaux comme B<aptitude>(9) en " -"ligne de commande ou B<synaptic>(8) pour X Window. Cependant, certaines " -"options ne sont disponibles que dans B<apt-get>(8)." - -#. type: SH -#: apt.8:31 -#, no-wrap -msgid "SEE ALSO" -msgstr "VOIR AUSSI" - -#. type: Plain text -#: apt.8:38 -msgid "" -"B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " -"B<apt_preferences>(5), B<apt-secure>(8)" -msgstr "" -"B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " -"B<apt_preferences>(5), B<apt-secure>(8)" - -#. type: SH -#: apt.8:38 -#, no-wrap -msgid "DIAGNOSTICS" -msgstr "DIAGNOSTICS" - -#. type: Plain text -#: apt.8:40 -msgid "apt returns zero on normal operation, decimal 100 on error." -msgstr "" -"apt renvoie zéro après une opération normale et la valeur décimale 100 en " -"cas d'erreur." - -#. type: SH -#: apt.8:40 -#, no-wrap -msgid "BUGS" -msgstr "BOGUES" - -#. type: Plain text -#: apt.8:42 -msgid "This manpage isn't even started." -msgstr "Cette page de manuel n'a même pas commencé à être rédigée." - -#. type: Plain text -#: apt.8:51 -msgid "" -"See E<lt>http://bugs.debian.org/aptE<gt>. If you wish to report a bug in " -"B<apt>, please see I</usr/share/doc/debian/bug-reporting.txt> or the " -"B<reportbug>(1) command." -msgstr "" -"Voir E<lt>http://bugs.debian.org/aptE<gt>. Si vous souhaitez signaler un " -"bogue dans B<apt>, veuillez lire I</usr/share/doc/debian/bug-reporting.txt> " -"ou utiliser la commande B<reportbug>(1)." - -#. type: SH -#: apt.8:51 -#, no-wrap -msgid "AUTHOR" -msgstr "AUTEURS" - -#. type: Plain text -#: apt.8:52 -msgid "apt was written by the APT team E<lt>apt@packages.debian.orgE<gt>." -msgstr "" -"apt a été écrit par l'équipe de développement APT E<lt>apt@packages.debian." -"orgE<gt>." - #. type: <title></title> #: guide.sgml:4 msgid "APT User's Guide" @@ -8753,7 +8857,7 @@ msgstr "" #| "command that caused them to be downloaded again without <tt>-d</tt>." msgid "" "<prgn>apt-get</prgn> has several command line options that are detailed in " -"its man page, <manref section=\"8\" name=\"apt-get\">. The most useful " +"its man page, <manref name=\"apt-get\" section=\"8\">. The most useful " "option is <tt>-d</tt> which does not install the fetched files. If the " "system has to download a large number of package it would be undesired to " "start installing them in case something goes wrong. When <tt>-d</tt> is used " @@ -9993,6 +10097,92 @@ msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade" msgid "Which will use the already fetched archives on the disc." msgstr "Cette commande utilisera les fichiers récupérés sur le disque." +#~ msgid "apt" +#~ msgstr "apt" + +#~ msgid "16 June 1998" +#~ msgstr "16 Juin 1998" + +#~ msgid "Debian" +#~ msgstr "Debian" + +#~ msgid "NAME" +#~ msgstr "NOM" + +#~ msgid "apt - Advanced Package Tool" +#~ msgstr "apt - Outil complet de gestion de paquets" + +#~ msgid "SYNOPSIS" +#~ msgstr "RÉSUMÉ" + +#~ msgid "B<apt>" +#~ msgstr "B<apt>" + +#~ msgid "DESCRIPTION" +#~ msgstr "DESCRIPTION" + +#, fuzzy +#~| msgid "" +#~| "APT is a management system for software packages. For normal day to day " +#~| "package management there are several frontends available, such as " +#~| "B<aptitude>(8) for the command line or B<synaptic>(8) for the X Window " +#~| "System. Some options are only implemented in B<apt-get>(8) though." +#~ msgid "" +#~ "For normal day to day package management there are several frontends " +#~ "available, such as B<aptitude>(8) for the command line or " +#~ "B<synaptic>(8) for the X Window System. Some options are only " +#~ "implemented in B<apt-get>(8) though." +#~ msgstr "" +#~ "APT est un système de gestion de paquets logiciels. Pour la gestion au " +#~ "quotidien des paquets, il existe plusieurs frontaux comme B<aptitude>(9) " +#~ "en ligne de commande ou B<synaptic>(8) pour X Window. Cependant, " +#~ "certaines options ne sont disponibles que dans B<apt-get>(8)." + +#~ msgid "SEE ALSO" +#~ msgstr "VOIR AUSSI" + +#, fuzzy +#~| msgid "" +#~| "B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " +#~| "B<apt_preferences>(5), B<apt-secure>(8)" +#~ msgid "" +#~ "B<apt>(8), B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources." +#~ "list>(5), B<apt_preferences>(5), B<apt-secure>(8)" +#~ msgstr "" +#~ "B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " +#~ "B<apt_preferences>(5), B<apt-secure>(8)" + +#~ msgid "DIAGNOSTICS" +#~ msgstr "DIAGNOSTICS" + +#~ msgid "apt returns zero on normal operation, decimal 100 on error." +#~ msgstr "" +#~ "apt renvoie zéro après une opération normale et la valeur décimale 100 en " +#~ "cas d'erreur." + +#~ msgid "BUGS" +#~ msgstr "BOGUES" + +#~ msgid "This manpage isn't even started." +#~ msgstr "Cette page de manuel n'a même pas commencé à être rédigée." + +#~ msgid "" +#~ "See E<lt>http://bugs.debian.org/aptE<gt>. If you wish to report a bug in " +#~ "B<apt>, please see I</usr/share/doc/debian/bug-reporting.txt> or the " +#~ "B<reportbug>(1) command." +#~ msgstr "" +#~ "Voir E<lt>http://bugs.debian.org/aptE<gt>. Si vous souhaitez signaler un " +#~ "bogue dans B<apt>, veuillez lire I</usr/share/doc/debian/bug-reporting." +#~ "txt> ou utiliser la commande B<reportbug>(1)." + +#~ msgid "AUTHOR" +#~ msgstr "AUTEURS" + +#~ msgid "apt was written by the APT team E<lt>apt@packages.debian.orgE<gt>." +#~ msgstr "" +#~ "apt a été écrit par l'équipe de développement APT E<lt>apt@packages." +#~ "debian.orgE<gt>." + #~ msgid "Package resource list for APT" #~ msgstr "Liste des sources de paquets" diff --git a/doc/po/it.po b/doc/po/it.po index 1050cee57..afef7d860 100644 --- a/doc/po/it.po +++ b/doc/po/it.po @@ -5,14 +5,13 @@ # Eugenia Franzoni, 2000 # Hugh Hartmann, 2000-2012 # Gabriele Stilli, 2012 -# Beatrice Torracca, 2012 -# Beatrice Torracca <beatricet@libero.it>, 2012. +# Beatrice Torracca <beatricet@libero.it>, 2012, 2014. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" -"PO-Revision-Date: 2012-12-23 18:04+0200\n" +"POT-Creation-Date: 2014-04-10 09:49+0200\n" +"PO-Revision-Date: 2014-04-01 14:00+0200\n" "Last-Translator: Beatrice Torracca <beatricet@libero.it>\n" "Language-Team: Italian <debian-l10n-italian@lists.debian.org>\n" "Language: it\n" @@ -663,41 +662,267 @@ msgstr "" "473041FA --> <!ENTITY synopsis-keyid \"IDchiave\">" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 apt-mark.8.xml:28 -#: apt-secure.8.xml:27 apt-cdrom.8.xml:27 apt-config.8.xml:28 +#: apt.8.xml:25 apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 +#: apt-mark.8.xml:28 apt-secure.8.xml:27 apt-cdrom.8.xml:27 +#: apt-config.8.xml:28 msgid "8" msgstr "8" #. type: Content of: <refentry><refmeta><refmiscinfo> -#: apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 apt-mark.8.xml:29 -#: apt-secure.8.xml:28 apt-cdrom.8.xml:28 apt-config.8.xml:29 -#: apt.conf.5.xml:34 apt_preferences.5.xml:28 sources.list.5.xml:29 -#: apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 apt-ftparchive.1.xml:29 +#: apt.8.xml:26 apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 +#: apt-mark.8.xml:29 apt-secure.8.xml:28 apt-cdrom.8.xml:28 +#: apt-config.8.xml:29 apt.conf.5.xml:34 apt_preferences.5.xml:28 +#: sources.list.5.xml:29 apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 +#: apt-ftparchive.1.xml:29 msgid "APT" msgstr "APT" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-get.8.xml:35 -msgid "APT package handling utility -- command-line interface" +#: apt.8.xml:32 +msgid "command-line interface" msgstr "" -"strumento APT per la gestione dei pacchetti, interfaccia a riga di comando" #. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 apt-mark.8.xml:40 -#: apt-secure.8.xml:52 apt-cdrom.8.xml:39 apt-config.8.xml:40 -#: apt.conf.5.xml:43 apt_preferences.5.xml:38 sources.list.5.xml:38 -#: apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 apt-ftparchive.1.xml:40 +#: apt.8.xml:37 apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 +#: apt-mark.8.xml:40 apt-secure.8.xml:52 apt-cdrom.8.xml:39 +#: apt-config.8.xml:40 apt.conf.5.xml:43 apt_preferences.5.xml:38 +#: sources.list.5.xml:38 apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 +#: apt-ftparchive.1.xml:40 msgid "Description" msgstr "Descrizione" #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:41 +#: apt.8.xml:38 +msgid "" +"<command>apt</command> (Advanced Package Tool) is the command-line tool for " +"handling packages. It provides a commandline interface for the package " +"management of the system. See also &apt-get; and &apt-cache; for more low-" +"level command options." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:47 +msgid "" +"<literal>list</literal> is used to display a list of packages. It supports " +"shell pattern for matching package names and the following options: " +"<option>--installed</option>, <option>--upgradable</option>, <option>--all-" +"versions</option> are supported." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:58 +msgid "" +"<literal>search</literal> searches for the given term(s) and display " +"matching packages." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:64 +#, fuzzy +#| msgid "" +#| "<literal>rdepends</literal> shows a listing of each reverse dependency a " +#| "package has." +msgid "" +"<literal>show</literal> shows the package information for the given " +"package(s)." +msgstr "" +"<literal>rdepends</literal> mostra un elenco di tutte le dipendenze inverse " +"di un pacchetto." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:71 +msgid "" +"<literal>install</literal> is followed by one or more package names desired " +"for installation or upgrading." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:75 apt-get.8.xml:118 +msgid "" +"A specific version of a package can be selected for installation by " +"following the package name with an equals and the version of the package to " +"select. This will cause that version to be located and selected for install. " +"Alternatively a specific distribution can be selected by following the " +"package name with a slash and the version of the distribution or the Archive " +"name (stable, testing, unstable)." +msgstr "" +"È possibile selezionare una versione specifica di un pacchetto per " +"l'installazione scrivendo dopo il nome del pacchetto un segno di uguale e la " +"versione del pacchetto da selezionare. Ciò farà sì che venga localizzata e " +"selezionata per l'installazione quella versione. In alternativa può essere " +"selezionata una distribuzione specifica scrivendo dopo il nome del pacchetto " +"una sbarra («/») e la versione della distribuzione o il nome dell'archivio " +"(stable, testing, unstable)." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:85 apt-get.8.xml:153 +msgid "" +"<literal>remove</literal> is identical to <literal>install</literal> except " +"that packages are removed instead of installed. Note that removing a package " +"leaves its configuration files on the system. If a plus sign is appended to " +"the package name (with no intervening space), the identified package will be " +"installed instead of removed." +msgstr "" +"<literal>remove</literal> è identico a <literal>install</literal> tranne per " +"il fatto che i pacchetti sono rimossi invece che installati. Notare che la " +"rimozione di un pacchetto lascia i suoi file di configurazione nel sistema. " +"Se viene aggiunto un segno più in fondo al nome del pacchetto (senza spazi " +"in mezzo), il pacchetto specificato viene installato invece che rimosso." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:93 +msgid "" +"<literal>edit-sources</literal> lets you edit your sources.list file and " +"provides basic sanity checks." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:99 +#, fuzzy +#| msgid "" +#| "<literal>showhold</literal> is used to print a list of packages on hold " +#| "in the same way as for the other show commands." +msgid "" +"<literal>update</literal> is used to resynchronize the package index files " +"from their sources." +msgstr "" +"<literal>showhold</literal> viene usato per stampare un elenco di pacchetti " +"bloccati in modo uguale a ciò che fanno gli altri comandi «show»." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:105 +msgid "" +"<literal>upgrade</literal> is used to install the newest versions of all " +"packages currently installed on the system from the sources enumerated in " +"<filename>/etc/apt/sources.list</filename>. New package will be installed, " +"but existing package will never removed." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:114 +msgid "" +"<literal>full-upgrade</literal> performs the function of upgrade but may " +"also remove installed packages if that is required in order to resolve a " +"package conflict." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:124 apt-get.8.xml:257 apt-cache.8.xml:250 apt-mark.8.xml:110 +#: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50 +#: apt-ftparchive.1.xml:506 +msgid "options" +msgstr "opzioni" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:134 +msgid "Script usage" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:136 +msgid "" +"The &apt; commandline is designed as a end-user tool and it may change the " +"output between versions. While it tries to not break backward compatibility " +"there is no guarantee for it either. All features of &apt; are available in " +"&apt-cache; and &apt-get; via APT options. Please prefer using these " +"commands in your scripts." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:144 +msgid "Differences to &apt-get;" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:145 +msgid "" +"The <command>apt</command> command is meant to be pleasant for end users and " +"does not need to be backward compatible like &apt-get;. Therefore some " +"options are different:" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:151 +#, fuzzy +#| msgid "the <literal>Package:</literal> line" +msgid "The option <literal>DPkgPM::Progress-Fancy</literal> is enabled." +msgstr "la riga <literal>Package:</literal>" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:155 +#, fuzzy +#| msgid "the <literal>Component:</literal> line" +msgid "The option <literal>APT::Color</literal> is enabled." +msgstr "la riga<literal>Component:</literal>" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:159 +msgid "" +"A new <literal>list</literal> command is available similar to <literal>dpkg " +"--list</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:164 +#, fuzzy +#| msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" +msgid "" +"The option <literal>upgrade</literal> has <literal>--with-new-pkgs</literal> " +"enabled by default." +msgstr "la riga <literal>Archive:</literal> o <literal>Suite:</literal>" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:174 apt-get.8.xml:558 apt-cache.8.xml:352 apt-key.8.xml:197 +#: apt-mark.8.xml:133 apt-secure.8.xml:193 apt-cdrom.8.xml:154 +#: apt-config.8.xml:111 apt.conf.5.xml:1227 apt_preferences.5.xml:707 +#: sources.list.5.xml:280 apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 +#: apt-ftparchive.1.xml:609 +msgid "See Also" +msgstr "Vedere anche" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:175 #, fuzzy #| msgid "" -#| "<command>apt-get</command> is the command-line tool for handling " -#| "packages, and may be considered the user's \"back-end\" to other tools " -#| "using the APT library. Several \"front-end\" interfaces exist, such as " -#| "&dselect;, &aptitude;, &synaptic; and &wajig;." +#| "&apt-cache;, &apt-cdrom;, &dpkg;, &sources-list;, &apt-conf;, &apt-" +#| "config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-" +#| "preferences;, the APT Howto." +msgid "" +"&apt-get;, &apt-cache;, &sources-list;, &apt-conf;, &apt-config;, The APT " +"User's guide in &guidesdir;, &apt-preferences;, the APT Howto." +msgstr "" +"&apt-cache;, &apt-cdrom;, &dpkg;, &sources-list;, &apt-conf;, &apt-config;, " +"&apt-secure;, la guida dell'utente di APT in &guidesdir;, &apt-preferences;, " +"l'APT Howto." + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:180 apt-get.8.xml:564 apt-cache.8.xml:357 apt-mark.8.xml:137 +#: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76 +#: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613 +msgid "Diagnostics" +msgstr "Diagnostica" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:181 +#, fuzzy +#| msgid "" +#| "<command>apt-get</command> returns zero on normal operation, decimal 100 " +#| "on error." +msgid "" +"<command>apt</command> returns zero on normal operation, decimal 100 on " +"error." +msgstr "" +"<command>apt-get</command> restituisce zero in caso di funzionamento normale " +"e il valore decimale 100 in caso di errore." + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-get.8.xml:35 +msgid "APT package handling utility -- command-line interface" +msgstr "" +"strumento APT per la gestione dei pacchetti, interfaccia a riga di comando" + +#. type: Content of: <refentry><refsect1><para> +#: apt-get.8.xml:41 msgid "" "<command>apt-get</command> is the command-line tool for handling packages, " "and may be considered the user's \"back-end\" to other tools using the APT " @@ -707,7 +932,7 @@ msgstr "" "<command>apt-get</command> è lo strumento a riga di comando per gestire " "pacchetti e può essere considerato il «backend» dell'utente per altri " "strumenti che usano la libreria APT. Esistono diversi «frontend» per " -"interfaccia, come &dselect;, &aptitude;, &synaptic; e &wajig;." +"interfaccia, come &aptitude;, &synaptic; e &wajig;." #. type: Content of: <refentry><refsect1><para> #: apt-get.8.xml:46 apt-cache.8.xml:46 apt-cdrom.8.xml:53 apt-config.8.xml:46 @@ -842,24 +1067,6 @@ msgstr "" "conflitti di apt-get." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:118 -msgid "" -"A specific version of a package can be selected for installation by " -"following the package name with an equals and the version of the package to " -"select. This will cause that version to be located and selected for install. " -"Alternatively a specific distribution can be selected by following the " -"package name with a slash and the version of the distribution or the Archive " -"name (stable, testing, unstable)." -msgstr "" -"È possibile selezionare una versione specifica di un pacchetto per " -"l'installazione scrivendo dopo il nome del pacchetto un segno di uguale e la " -"versione del pacchetto da selezionare. Ciò farà sì che venga localizzata e " -"selezionata per l'installazione quella versione. In alternativa può essere " -"selezionata una distribuzione specifica scrivendo dopo il nome del pacchetto " -"una sbarra («/») e la versione della distribuzione o il nome dell'archivio " -"(stable, testing, unstable)." - -#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:125 msgid "" "Both of the version selection mechanisms can downgrade packages and must be " @@ -918,21 +1125,6 @@ msgstr "" "o «$», oppure creare un'espressione regolare più specifica." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:153 -msgid "" -"<literal>remove</literal> is identical to <literal>install</literal> except " -"that packages are removed instead of installed. Note that removing a package " -"leaves its configuration files on the system. If a plus sign is appended to " -"the package name (with no intervening space), the identified package will be " -"installed instead of removed." -msgstr "" -"<literal>remove</literal> è identico a <literal>install</literal> tranne per " -"il fatto che i pacchetti sono rimossi invece che installati. Notare che la " -"rimozione di un pacchetto lascia i suoi file di configurazione nel sistema. " -"Se viene aggiunto un segno più in fondo al nome del pacchetto (senza spazi " -"in mezzo), il pacchetto specificato viene installato invece che rimosso." - -#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:161 msgid "" "<literal>purge</literal> is identical to <literal>remove</literal> except " @@ -1056,15 +1248,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:217 -#, fuzzy -#| msgid "" -#| "<literal>clean</literal> clears out the local repository of retrieved " -#| "package files. It removes everything but the lock file from " -#| "<filename>&cachedir;/archives/</filename> and <filename>&cachedir;/" -#| "archives/partial/</filename>. When APT is used as a &dselect; method, " -#| "<literal>clean</literal> is run automatically. Those who do not use " -#| "dselect will likely want to run <literal>apt-get clean</literal> from " -#| "time to time to free up disk space." msgid "" "<literal>clean</literal> clears out the local repository of retrieved " "package files. It removes everything but the lock file from " @@ -1074,10 +1257,7 @@ msgstr "" "<literal>clean</literal> ripulisce il repository locale dei file di " "pacchetto recuperati. Rimuove tutto da <filename>&cachedir;/archives/</" "filename> e <filename>&cachedir;/archives/partial/</filename>, tranne il " -"file di lock. Quando APT viene usato come metodo per &dselect;, " -"<literal>clean</literal> viene eseguito automaticamente. Chi non usa dselect " -"probabilmente è bene che usi <literal>apt-get clean</literal> di quando in " -"quando per liberare spazio su disco." +"file di lock." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:224 @@ -1132,13 +1312,6 @@ msgstr "" "per la versione che è installata. Tuttavia si possono specificare le stesse " "opzioni del comando <option>install</option>." -#. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:257 apt-cache.8.xml:250 apt-mark.8.xml:110 -#: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50 -#: apt-ftparchive.1.xml:506 -msgid "options" -msgstr "opzioni" - #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:262 msgid "" @@ -1170,19 +1343,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:277 -#, fuzzy -#| msgid "" -#| "Fix; attempt to correct a system with broken dependencies in place. This " -#| "option, when used with install/remove, can omit any packages to permit " -#| "APT to deduce a likely solution. If packages are specified, these have to " -#| "completely correct the problem. The option is sometimes necessary when " -#| "running APT for the first time; APT itself does not allow broken package " -#| "dependencies to exist on a system. It is possible that a system's " -#| "dependency structure can be so corrupt as to require manual intervention " -#| "(which usually means using &dselect; or <command>dpkg --remove</command> " -#| "to eliminate some of the offending packages). Use of this option together " -#| "with <option>-m</option> may produce an error in some situations. " -#| "Configuration Item: <literal>APT::Get::Fix-Broken</literal>." msgid "" "Fix; attempt to correct a system with broken dependencies in place. This " "option, when used with install/remove, can omit any packages to permit APT " @@ -1204,10 +1364,10 @@ msgstr "" "volta; APT stesso non permette l'esistenza di pacchetti con dipendenze non " "soddisfatte in un sistema. È possibile che la struttura di dipendenze di un " "sistema sia corrotta a tal punto da richiedere un intervento manuale (il che " -"di solito significa usare &dselect; o <command>dpkg --remove</command> per " -"eliminare alcuni dei pacchetti che creano problemi). L'uso di questa opzione " -"insieme a <option>-m</option> può in alcune situazioni produrre un errore. " -"Voce di configurazione: <literal>APT::Get::Fix-Broken</literal>." +"di solito significa usare <command>dpkg --remove</command> per eliminare " +"alcuni dei pacchetti che creano problemi). L'uso di questa opzione insieme a " +"<option>-m</option> può in alcune situazioni produrre un errore. Voce di " +"configurazione: <literal>APT::Get::Fix-Broken</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:292 @@ -1359,7 +1519,7 @@ msgid "" "satisfied. By default is it not set which means that the host architecture " "is the same as the build architecture (which is defined by <literal>APT::" "Architecture</literal>). Configuration Item: <literal>APT::Get::Host-" -"Architecture</literal>" +"Architecture</literal>." msgstr "" "Questa opzione controlla l'architettura per la quale <command>apt-get source " "--compile</command> compila i pacchetti e come le dipendenze di compilazione " @@ -1371,6 +1531,22 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:380 msgid "" +"This option controls the activated build profiles for which a source package " +"is built by <command>apt-get source --compile</command> and how build " +"dependencies are satisfied. By default no build profile is active. More " +"than one build profile can be activated at a time by concatenating them with " +"a comma. Configuration Item: <literal>APT::Build-Profiles</literal>." +msgstr "" +"Questa opzione controlla i profili di compilazione attivi per i quali " +"<command>apt-get source --compile</command> compila un pacchetto sorgente e " +"come le dipendenze di compilazione sono soddisfatte. In modo predefinito non " +"è attivo alcun profilo di compilazione. Più profili di compilazione possono " +"essere attivati contemporaneamente concatenandoli con una virgola. Voce di " +"configurazione: <literal>APT::Build-Profiles</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:391 +msgid "" "Compile source packages after downloading them. Configuration Item: " "<literal>APT::Get::Compile</literal>." msgstr "" @@ -1378,7 +1554,7 @@ msgstr "" "<literal>APT::Get::Compile</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:385 +#: apt-get.8.xml:396 msgid "" "Ignore package holds; this causes <command>apt-get</command> to ignore a " "hold placed on a package. This may be useful in conjunction with " @@ -1391,7 +1567,7 @@ msgstr "" "non desiderati. Voce di configurazione: <literal>APT::Ignore-Hold</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:392 +#: apt-get.8.xml:403 msgid "" "Allow installing new packages when used in conjunction with " "<literal>upgrade</literal>. This is useful if the update of a installed " @@ -1401,9 +1577,16 @@ msgid "" "will never remove packages, only allow adding new ones. Configuration Item: " "<literal>APT::Get::Upgrade-Allow-New</literal>." msgstr "" +"Permette l'installazione di nuovi pacchetti quando usato insieme a " +"<literal>upgrade</literal>. Ciò è utile se l'aggiornamento di un pacchetto " +"installato richiede l'installazione di nuove dipendenze. Invece di bloccare " +"il pacchetto <literal>upgrade</literal> aggiornerà il pacchetto e installerà " +"le nuove dipendenze. Notare che <literal>upgrade</literal> con questa " +"opzione non rimuoverà mai pacchetti, permetterà solo l'aggiunta di nuovi. " +"Voce di configurazione: <literal>APT::Get::Upgrade-Allow-New</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:404 +#: apt-get.8.xml:415 msgid "" "Do not upgrade packages; when used in conjunction with <literal>install</" "literal>, <literal>no-upgrade</literal> will prevent packages on the command " @@ -1416,7 +1599,7 @@ msgstr "" "configurazione: <literal>APT::Get::Upgrade</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:411 +#: apt-get.8.xml:422 msgid "" "Do not install new packages; when used in conjunction with <literal>install</" "literal>, <literal>only-upgrade</literal> will install upgrades for already " @@ -1430,7 +1613,7 @@ msgstr "" "Upgrade</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:419 +#: apt-get.8.xml:430 msgid "" "Force yes; this is a dangerous option that will cause apt to continue " "without prompting if it is doing something potentially harmful. It should " @@ -1446,7 +1629,7 @@ msgstr "" "yes</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:427 +#: apt-get.8.xml:438 msgid "" "Instead of fetching the files to install their URIs are printed. Each URI " "will have the path, the destination file name, the size and the expected MD5 " @@ -1467,7 +1650,7 @@ msgstr "" "configurazione: <literal>APT::Get::Print-URIs</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:438 +#: apt-get.8.xml:449 msgid "" "Use purge instead of remove for anything that would be removed. An asterisk " "(\"*\") will be displayed next to packages which are scheduled to be purged. " @@ -1480,7 +1663,7 @@ msgstr "" "option>. Voce di configurazione: <literal>APT::Get::Purge</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:446 +#: apt-get.8.xml:457 msgid "" "Re-install packages that are already installed and at the newest version. " "Configuration Item: <literal>APT::Get::ReInstall</literal>." @@ -1489,7 +1672,7 @@ msgstr "" "configurazione: <literal>APT::Get::ReInstall</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:451 +#: apt-get.8.xml:462 msgid "" "This option is on by default; use <literal>--no-list-cleanup</literal> to " "turn it off. When it is on, <command>apt-get</command> will automatically " @@ -1506,7 +1689,7 @@ msgstr "" "fonti. Voce di configurazione: <literal>APT::Get::List-Cleanup</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:461 +#: apt-get.8.xml:472 msgid "" "This option controls the default input to the policy engine; it creates a " "default pin at priority 990 using the specified release string. This " @@ -1530,7 +1713,7 @@ msgstr "" "pagina di manuale di &apt-preferences;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:476 +#: apt-get.8.xml:487 msgid "" "Only perform operations that are 'trivial'. Logically this can be considered " "related to <option>--assume-yes</option>; where <option>--assume-yes</" @@ -1544,7 +1727,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:483 +#: apt-get.8.xml:494 msgid "" "If any packages are to be removed apt-get immediately aborts without " "prompting. Configuration Item: <literal>APT::Get::Remove</literal>." @@ -1554,7 +1737,7 @@ msgstr "" "Get::Remove</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:489 +#: apt-get.8.xml:500 msgid "" "If the command is either <literal>install</literal> or <literal>remove</" "literal>, then this option acts like running the <literal>autoremove</" @@ -1568,7 +1751,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:496 +#: apt-get.8.xml:507 msgid "" "Only has meaning for the <literal>source</literal> and <literal>build-dep</" "literal> commands. Indicates that the given source names are not to be " @@ -1587,7 +1770,7 @@ msgstr "" "configurazione: <literal>APT::Get::Only-Source</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:507 +#: apt-get.8.xml:518 msgid "" "Download only the diff, dsc, or tar file of a source archive. Configuration " "Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</" @@ -1598,7 +1781,7 @@ msgstr "" "Dsc-Only</literal> e <literal>APT::Get::Tar-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:513 +#: apt-get.8.xml:524 msgid "" "Only process architecture-dependent build-dependencies. Configuration Item: " "<literal>APT::Get::Arch-Only</literal>." @@ -1607,7 +1790,7 @@ msgstr "" "Voce di configurazione: <literal>APT::Get::Arch-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:518 +#: apt-get.8.xml:529 msgid "" "Ignore if packages can't be authenticated and don't prompt about it. This " "is useful for tools like pbuilder. Configuration Item: <literal>APT::Get::" @@ -1618,7 +1801,7 @@ msgstr "" "configurazione: <literal>APT::Get::AllowUnauthenticated</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:524 +#: apt-get.8.xml:535 msgid "" "Show user friendly progress information in the terminal window when packages " "are installed, upgraded or removed. For a machine parsable version of this " @@ -1626,47 +1809,32 @@ msgid "" "Item: <literal>DpkgPM::Progress</literal> and <literal>Dpkg::Progress-Fancy</" "literal>." msgstr "" +"Mostra informazioni sul progresso facili da leggere nella finestra del " +"terminale quando i pacchetti sono installati, aggiornati o rimossi. Per una " +"versione analizzabile da macchina di questi dati, vedere README.progress-" +"reporting nella directory della documentazione di apt. Voce di " +"configurazione: <literal>DpkgPM::Progress</literal> e <literal>Dpkg::" +"Progress-Fancy</literal>." #. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:537 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 -#: apt.conf.5.xml:1200 apt_preferences.5.xml:700 +#: apt-get.8.xml:548 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 +#: apt.conf.5.xml:1221 apt_preferences.5.xml:700 msgid "Files" msgstr "File" -#. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:547 apt-cache.8.xml:352 apt-key.8.xml:197 apt-mark.8.xml:133 -#: apt-secure.8.xml:193 apt-cdrom.8.xml:154 apt-config.8.xml:111 -#: apt.conf.5.xml:1206 apt_preferences.5.xml:707 sources.list.5.xml:280 -#: apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 -#: apt-ftparchive.1.xml:609 -msgid "See Also" -msgstr "Vedere anche" - #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:548 -#, fuzzy -#| msgid "" -#| "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " -#| "&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-" -#| "preferences;, the APT Howto." +#: apt-get.8.xml:559 msgid "" "&apt-cache;, &apt-cdrom;, &dpkg;, &sources-list;, &apt-conf;, &apt-config;, " "&apt-secure;, The APT User's guide in &guidesdir;, &apt-preferences;, the " "APT Howto." msgstr "" -"&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " -"&apt-config;, &apt-secure;, la Guida dell'utente di APT in &guidesdir;, &apt-" -"preferences;, l'APT Howto." - -#. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:553 apt-cache.8.xml:357 apt-mark.8.xml:137 -#: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76 -#: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613 -msgid "Diagnostics" -msgstr "Diagnostica" +"&apt-cache;, &apt-cdrom;, &dpkg;, &sources-list;, &apt-conf;, &apt-config;, " +"&apt-secure;, la guida dell'utente di APT in &guidesdir;, &apt-preferences;, " +"l'APT Howto." #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:554 +#: apt-get.8.xml:565 msgid "" "<command>apt-get</command> returns zero on normal operation, decimal 100 on " "error." @@ -2961,20 +3129,14 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cdrom.8.xml:87 -#, fuzzy -#| msgid "" -#| "Mount point; specify the location to mount the CD-ROM. This mount point " -#| "must be listed in <filename>/etc/fstab</filename> and properly " -#| "configured. Configuration Item: <literal>Acquire::cdrom::mount</literal>." msgid "" "Do not try to auto-detect the CD-ROM path. Usually combined with the " "<option>--cdrom</option> option. Configuration Item: <literal>Acquire::" "cdrom::AutoDetect</literal>." msgstr "" -"Punto di mount; specifica la posizione in cui montare il CD-ROM. Questo " -"punto di mount deve essere elencato nel file <filename>/etc/fstab</filename> " -"e configurato correttamente. Voce di configurazione: <literal>Acquire::" -"cdrom::mount</literal>." +"Non cercare di rilevare automaticamente il percorso del CD-ROM. Solitamente " +"usato insieme all'opzione <option>--cdrom</option>. Voce di configurazione: " +"<literal>Acquire::cdrom::AutoDetect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cdrom.8.xml:95 @@ -3519,7 +3681,21 @@ msgstr "" "quando sono registrate con <command>dpkg --add-architecture</command>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:181 +#: apt.conf.5.xml:182 +msgid "" +"List of all build profiles enabled for build-dependency resolution, without " +"the \"<literal>profile.</literal>\" namespace prefix. By default this list " +"is empty. The <envar>DEB_BUILD_PROFILES</envar> as used by &dpkg-" +"buildpackage; overrides the list notation." +msgstr "" +"Elenco dei profili di compilazione abilitati per la risoluzione delle " +"dipendenze di compilazione, senza il prefisso dello spazio dei nomi " +"«<literal>profile.</literal>». In modo predefinito questa lista è vuota. " +"<envar>DEB_BUILD_PROFILES</envar>, come usata da &dpkg-buildpackage; ha la " +"precedenza sulla notazione della lista." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:190 msgid "" "Default release to install packages from if more than one version is " "available. Contains release name, codename or release version. Examples: " @@ -3533,7 +3709,7 @@ msgstr "" "preferences;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:187 +#: apt.conf.5.xml:196 msgid "" "Ignore held packages; this global option causes the problem resolver to " "ignore held packages in its decision making." @@ -3542,7 +3718,7 @@ msgstr "" "di problemi ignori i pacchetti bloccati nel suo processo decisionale." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:192 +#: apt.conf.5.xml:201 msgid "" "Defaults to on. When turned on the autoclean feature will remove any " "packages which can no longer be downloaded from the cache. If turned off " @@ -3556,7 +3732,7 @@ msgstr "" "reinstallarli." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:200 +#: apt.conf.5.xml:209 msgid "" "Defaults to on, which will cause APT to install essential and important " "packages as soon as possible in an install/upgrade operation, in order to " @@ -3583,7 +3759,7 @@ msgstr "" "che dipende da A, dato che la dipendenza da A non è più soddisfatta." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:212 +#: apt.conf.5.xml:221 msgid "" "The immediate configuration marker is also applied in the potentially " "problematic case of circular dependencies, since a dependency with the " @@ -3613,7 +3789,7 @@ msgstr "" "l'unico problema che può aiutare a prevenire." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:225 +#: apt.conf.5.xml:234 msgid "" "Before a big operation like <literal>dist-upgrade</literal> is run with this " "option disabled you should try to explicitly <literal>install</literal> the " @@ -3631,7 +3807,7 @@ msgstr "" "il processo di aggiornamento." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:236 +#: apt.conf.5.xml:245 msgid "" "Never enable this option unless you <emphasis>really</emphasis> know what " "you are doing. It permits APT to temporarily remove an essential package to " @@ -3652,7 +3828,7 @@ msgstr "" "<command>dash</command> o qualsiasi altro da cui dipendono tali pacchetti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:248 +#: apt.conf.5.xml:257 msgid "" "APT uses since version 0.7.26 a resizable memory mapped cache file to store " "the available information. <literal>Cache-Start</literal> acts as a hint of " @@ -3690,14 +3866,14 @@ msgstr "" "della cache è disabilitata." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:264 +#: apt.conf.5.xml:273 msgid "Defines which packages are considered essential build dependencies." msgstr "" "Definisce quali pacchetti sono considerati dipendenze di compilazione " "essenziali." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:268 +#: apt.conf.5.xml:277 msgid "" "The Get subsection controls the &apt-get; tool; please see its documentation " "for more information about the options here." @@ -3706,7 +3882,7 @@ msgstr "" "documentazione per maggiori informazioni su queste opzioni." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:273 +#: apt.conf.5.xml:282 msgid "" "The Cache subsection controls the &apt-cache; tool; please see its " "documentation for more information about the options here." @@ -3715,7 +3891,7 @@ msgstr "" "documentazione per maggiori informazioni su queste opzioni." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:278 +#: apt.conf.5.xml:287 msgid "" "The CDROM subsection controls the &apt-cdrom; tool; please see its " "documentation for more information about the options here." @@ -3724,12 +3900,12 @@ msgstr "" "documentazione per maggiori informazioni su queste opzioni." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:284 +#: apt.conf.5.xml:293 msgid "The Acquire Group" msgstr "Il gruppo Acquire" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:285 +#: apt.conf.5.xml:294 msgid "" "The <literal>Acquire</literal> group of options controls the download of " "packages as well as the various \"acquire methods\" responsible for the " @@ -3740,7 +3916,7 @@ msgstr "" "scaricamento stesso (vedere anche &sources-list;)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:292 +#: apt.conf.5.xml:301 msgid "" "Security related option defaulting to true, as giving a Release file's " "validation an expiration date prevents replay attacks over a long timescale, " @@ -3762,7 +3938,7 @@ msgstr "" "ValidTime</literal> seguente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:305 +#: apt.conf.5.xml:314 msgid "" "Maximum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -3782,7 +3958,7 @@ msgstr "" "dell'archivio in fondo al nome dell'opzione." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:317 +#: apt.conf.5.xml:326 msgid "" "Minimum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -3802,7 +3978,7 @@ msgstr "" "archivio aggiungendo l'etichetta dell'archivio in fondo al nome dell'opzione." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:329 +#: apt.conf.5.xml:338 msgid "" "Try to download deltas called <literal>PDiffs</literal> for indexes (like " "<filename>Packages</filename> files) instead of downloading whole ones. True " @@ -3813,7 +3989,7 @@ msgstr "" "interamente i nuovi. Attiva in modo predefinito." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:332 +#: apt.conf.5.xml:341 msgid "" "Two sub-options to limit the use of PDiffs are also available: " "<literal>FileLimit</literal> can be used to specify a maximum number of " @@ -3831,7 +4007,7 @@ msgstr "" "completo invece delle patch." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:342 +#: apt.conf.5.xml:351 msgid "" "Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</" "literal> or <literal>access</literal> which determines how APT parallelizes " @@ -3846,7 +4022,7 @@ msgstr "" "literal> significa che viene aperta una connessione per ogni tipo di URI." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:350 +#: apt.conf.5.xml:359 msgid "" "Number of retries to perform. If this is non-zero APT will retry failed " "files the given number of times." @@ -3856,7 +4032,7 @@ msgstr "" "ha avuto successo." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:355 +#: apt.conf.5.xml:364 msgid "" "Use symlinks for source archives. If set to true then source archives will " "be symlinked when possible instead of copying. True is the default." @@ -3867,7 +4043,7 @@ msgstr "" "vero." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:360 +#: apt.conf.5.xml:369 msgid "" "<literal>http::Proxy</literal> sets the default proxy to use for HTTP URIs. " "It is in the standard form of <literal>http://[[user][:pass]@]host[:port]/</" @@ -3886,7 +4062,7 @@ msgstr "" "la variabile d'ambiente <envar>http_proxy</envar>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:368 +#: apt.conf.5.xml:377 msgid "" "Three settings are provided for cache control with HTTP/1.1 compliant proxy " "caches. <literal>No-Cache</literal> tells the proxy not to use its cached " @@ -3906,7 +4082,7 @@ msgstr "" "file .deb." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:378 apt.conf.5.xml:466 +#: apt.conf.5.xml:387 apt.conf.5.xml:475 msgid "" "The option <literal>timeout</literal> sets the timeout timer used by the " "method; this value applies to the connection as well as the data timeout." @@ -3916,7 +4092,7 @@ msgstr "" "quello per i dati." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:381 +#: apt.conf.5.xml:390 msgid "" "The setting <literal>Acquire::http::Pipeline-Depth</literal> can be used to " "enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e." @@ -3936,7 +4112,7 @@ msgstr "" "con la specifica HTTP/1.1." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:388 +#: apt.conf.5.xml:397 msgid "" "<literal>Acquire::http::AllowRedirect</literal> controls whether APT will " "follow redirects, which is enabled by default." @@ -3945,14 +4121,7 @@ msgstr "" "meno le ridirezioni che sono abilitate in modo predefinito." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:391 -#, fuzzy -#| msgid "" -#| "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</" -#| "literal> which accepts integer values in kilobytes. The default value is " -#| "0 which deactivates the limit and tries to use all available bandwidth " -#| "(note that this option implicitly disables downloading from multiple " -#| "servers at the same time.)" +#: apt.conf.5.xml:400 msgid "" "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</" "literal> which accepts integer values in kilobytes per second. The default " @@ -3961,13 +4130,13 @@ msgid "" "multiple servers at the same time." msgstr "" "La quantità di banda utilizzata può essere limitata con <literal>Acquire::" -"http::Dl-Limit</literal> che accetta valori interi in kilobyte. Il valore " -"predefinito è 0 che disattiva il limite e cerca di usare tutta la banda " -"disponibile (notare che questa opzione implicitamente disabilita lo " -"scaricamento da più server contemporaneamente)." +"http::Dl-Limit</literal> che accetta valori interi in kilobyte al secondo. " +"Il valore predefinito è 0 che disattiva il limite e cerca di usare tutta la " +"banda disponibile. Notare che questa opzione implicitamente disabilita lo " +"scaricamento da più server contemporaneamente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:398 +#: apt.conf.5.xml:407 msgid "" "<literal>Acquire::http::User-Agent</literal> can be used to set a different " "User-Agent for the http download method as some proxies allow access for " @@ -3979,7 +4148,7 @@ msgstr "" "conosciuto." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:402 +#: apt.conf.5.xml:411 msgid "" "<literal>Acquire::http::Proxy-Auto-Detect</literal> can be used to specify " "an external command to discover the http proxy to use. Apt expects the " @@ -3991,9 +4160,18 @@ msgid "" "takes precedence over the legacy option name <literal>ProxyAutoDetect</" "literal>." msgstr "" +"<literal>Acquire::http::Proxy-Auto-Detect</literal> può essere usato per " +"specificare un comando esterno per rilevare il proxy http da usare. Apt si " +"aspetta che il comando produca in output il proxy sullo stdout nello stile " +"<literal>http://proxy:porta/</literal>. Questo avrà la precedenza sul " +"generico <literal>Acquire::http::Proxy</literal>, ma non su qualsiasi " +"configurazione specifica di host proxy impostata con <literal>Acquire::http::" +"Proxy::$HOST</literal>. Vedere il pacchetto &squid-deb-proxy-client; per un " +"esempio di implementazione che usa avahi. Questa opzione ha la precedenza " +"sull'opzione col nome obsoleto <literal>ProxyAutoDetect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:420 +#: apt.conf.5.xml:429 msgid "" "The <literal>Cache-control</literal>, <literal>Timeout</literal>, " "<literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> and " @@ -4010,7 +4188,7 @@ msgstr "" "<literal>Pipeline-Depth</literal> non è ancora supportata." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:428 +#: apt.conf.5.xml:437 msgid "" "<literal>CaInfo</literal> suboption specifies place of file that holds info " "about trusted certificates. <literal><host>::CaInfo</literal> is the " @@ -4051,7 +4229,7 @@ msgstr "" "literal> è la corrispondente opzione specifica per ciascun host." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:449 +#: apt.conf.5.xml:458 msgid "" "<literal>ftp::Proxy</literal> sets the default proxy to use for FTP URIs. " "It is in the standard form of <literal>ftp://[[user][:pass]@]host[:port]/</" @@ -4085,7 +4263,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:469 +#: apt.conf.5.xml:478 msgid "" "Several settings are provided to control passive mode. Generally it is safe " "to leave passive mode on; it works in nearly every environment. However, " @@ -4101,7 +4279,7 @@ msgstr "" "uno specifico host (vedere il file di configurazione d'esempio)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:476 +#: apt.conf.5.xml:485 msgid "" "It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</" "envar> environment variable to an HTTP URL - see the discussion of the http " @@ -4115,7 +4293,7 @@ msgstr "" "a causa della sua bassa efficienza." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:481 +#: apt.conf.5.xml:490 msgid "" "The setting <literal>ForceExtended</literal> controls the use of RFC2428 " "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is " @@ -4131,13 +4309,13 @@ msgstr "" "parte dei server FTP non supporta la RFC 2428." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:495 +#: apt.conf.5.xml:504 #, no-wrap msgid "/cdrom/::Mount \"foo\";" msgstr "/cdrom/::Mount \"pippo\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:490 +#: apt.conf.5.xml:499 msgid "" "For URIs using the <literal>cdrom</literal> method, the only configurable " "option is the mount point, <literal>cdrom::Mount</literal>, which must be " @@ -4159,7 +4337,7 @@ msgstr "" "comandi per lo smontaggio possono essere specificati usando UMount." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:503 +#: apt.conf.5.xml:512 msgid "" "For GPGV URIs the only configurable option is <literal>gpgv::Options</" "literal>, which passes additional parameters to gpgv." @@ -4168,13 +4346,13 @@ msgstr "" "literal>, che passa parametri aggiuntivi a gpgv." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:514 +#: apt.conf.5.xml:523 #, no-wrap msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";" msgstr "Acquire::CompressionTypes::<replaceable>EstensioneFile</replaceable> \"<replaceable>NomeMetodo</replaceable>\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:509 +#: apt.conf.5.xml:518 msgid "" "List of compression types which are understood by the acquire methods. " "Files like <filename>Packages</filename> can be available in various " @@ -4193,19 +4371,19 @@ msgstr "" "metodo usato. La sintassi è: <placeholder type=\"synopsis\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:519 +#: apt.conf.5.xml:528 #, no-wrap msgid "Acquire::CompressionTypes::Order:: \"gz\";" msgstr "Acquire::CompressionTypes::Order:: \"gz\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:522 +#: apt.conf.5.xml:531 #, no-wrap msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:515 +#: apt.conf.5.xml:524 msgid "" "Also, the <literal>Order</literal> subgroup can be used to define in which " "order the acquire system will try to download the compressed files. The " @@ -4236,13 +4414,13 @@ msgstr "" "all'elenco, dato che verrà aggiunto automaticamente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:529 +#: apt.conf.5.xml:538 #, no-wrap msgid "Dir::Bin::bzip2 \"/bin/bzip2\";" msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:524 +#: apt.conf.5.xml:533 msgid "" "Note that the <literal>Dir::Bin::<replaceable>Methodname</replaceable></" "literal> will be checked at run time. If this option has been set, the " @@ -4268,7 +4446,7 @@ msgstr "" "definito; aggiunge solamente il tipo indicato all'inizio dell'elenco." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:534 +#: apt.conf.5.xml:543 msgid "" "The special type <literal>uncompressed</literal> can be used to give " "uncompressed files a preference, but note that most archives don't provide " @@ -4280,7 +4458,7 @@ msgstr "" "soprattutto per i mirror locali." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:541 +#: apt.conf.5.xml:550 msgid "" "When downloading <literal>gzip</literal> compressed indexes (Packages, " "Sources, or Translations), keep them gzip compressed locally instead of " @@ -4294,7 +4472,7 @@ msgstr "" "modo predefinito è disabilitato." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:549 +#: apt.conf.5.xml:558 msgid "" "The Languages subsection controls which <filename>Translation</filename> " "files are downloaded and in which order APT tries to display the description-" @@ -4313,13 +4491,13 @@ msgstr "" "codici di lingua lunghi sono particolarmente rari." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><programlisting> -#: apt.conf.5.xml:566 +#: apt.conf.5.xml:575 #, no-wrap msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" msgstr "Acquire::Languages { \"environment\"; \"it\"; \"en\"; \"none\"; \"fr\"; };" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:554 +#: apt.conf.5.xml:563 msgid "" "The default list includes \"environment\" and \"en\". " "\"<literal>environment</literal>\" has a special meaning here: it will be " @@ -4358,7 +4536,7 @@ msgstr "" "<placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:567 +#: apt.conf.5.xml:576 msgid "" "Note: To prevent problems resulting from APT being executed in different " "environments (e.g. by different users or by other programs) all Translation " @@ -4372,22 +4550,22 @@ msgstr "" "implicito)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:576 +#: apt.conf.5.xml:585 msgid "When downloading, force to use only the IPv4 protocol." -msgstr "" +msgstr "Durante gli scaricamenti, forza l'uso del solo protocollo IPv4." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:582 +#: apt.conf.5.xml:591 msgid "When downloading, force to use only the IPv6 protocol." -msgstr "" +msgstr "Durante gli scaricamenti, forza l'uso del solo protocollo IPv6." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:589 +#: apt.conf.5.xml:598 msgid "Directories" msgstr "Directory" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:591 +#: apt.conf.5.xml:600 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@ -4407,7 +4585,7 @@ msgstr "" "<filename>/</filename> o <filename>./</filename>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:598 +#: apt.conf.5.xml:607 msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@ -4429,7 +4607,7 @@ msgstr "" "la directory predefinita è contenuta in <literal>Dir::Cache</literal>" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:607 +#: apt.conf.5.xml:616 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -4444,7 +4622,7 @@ msgstr "" "configurazione specificato da <envar>APT_CONFIG</envar>)." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:613 +#: apt.conf.5.xml:622 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -4455,7 +4633,7 @@ msgstr "" "termine viene caricato il file di configurazione principale." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:617 +#: apt.conf.5.xml:626 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@ -4472,7 +4650,7 @@ msgstr "" "specificano la posizione dei rispettivi programmi." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:625 +#: apt.conf.5.xml:634 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -4493,7 +4671,7 @@ msgstr "" "staging/var/lib/dpkg/status</filename>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:638 +#: apt.conf.5.xml:647 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@ -4511,12 +4689,12 @@ msgstr "" "questi modelli possono usare una sintassi con espressioni regolari." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:647 +#: apt.conf.5.xml:656 msgid "APT in DSelect" msgstr "APT in DSelect" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:649 +#: apt.conf.5.xml:658 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@ -4527,7 +4705,7 @@ msgstr "" "sezione <literal>DSelect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:654 +#: apt.conf.5.xml:663 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@ -4549,7 +4727,7 @@ msgstr "" "scaricare i nuovi pacchetti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:668 +#: apt.conf.5.xml:677 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." @@ -4559,7 +4737,7 @@ msgstr "" "installazione." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:673 +#: apt.conf.5.xml:682 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." @@ -4569,7 +4747,7 @@ msgstr "" "aggiornamento." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:678 +#: apt.conf.5.xml:687 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." @@ -4579,12 +4757,12 @@ msgstr "" "solo in caso di errore." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:684 +#: apt.conf.5.xml:693 msgid "How APT calls &dpkg;" msgstr "Come APT invoca &dpkg;" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:685 +#: apt.conf.5.xml:694 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." @@ -4593,7 +4771,7 @@ msgstr "" "&dpkg;; sono nella sezione <literal>DPkg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:690 +#: apt.conf.5.xml:699 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -4604,7 +4782,7 @@ msgstr "" "passata a &dpkg; come un singolo argomento." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:696 +#: apt.conf.5.xml:705 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4617,14 +4795,7 @@ msgstr "" "bin/sh</filename>; se qualcuno dei comandi fallisce APT terminerà annullando." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:703 -#, fuzzy -#| msgid "" -#| "This is a list of shell commands to run before invoking &dpkg;. Like " -#| "<literal>options</literal> this must be specified in list notation. The " -#| "commands are invoked in order using <filename>/bin/sh</filename>; should " -#| "any fail APT will abort. APT will pass the filenames of all .deb files it " -#| "is going to install to the commands, one per line on standard input." +#: apt.conf.5.xml:712 msgid "" "This is a list of shell commands to run before invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4638,17 +4809,11 @@ msgstr "" "le liste. I comandi sono invocati in ordine usando <filename>/bin/sh</" "filename>; se qualcuno dei comandi fallisce APT terminerà annullando. APT " "passa i nomi di file di tutti i file .deb che sta per installare ai comandi, " -"uno per riga, sullo standard input." +"uno per riga sul descrittore di file richiesto, usando in modo predefinito " +"lo standard input." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:710 -#, fuzzy -#| msgid "" -#| "Version 2 of this protocol dumps more information, including the protocol " -#| "version, the APT configuration space and the packages, files and versions " -#| "being changed. Version 2 is enabled by setting <literal>DPkg::Tools::" -#| "options::cmd::Version</literal> to 2. <literal>cmd</literal> is a command " -#| "given to <literal>Pre-Install-Pkgs</literal>." +#: apt.conf.5.xml:719 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@ -4657,13 +4822,12 @@ msgid "" msgstr "" "La versione 2 di questo protocollo fa il dump di più informazioni, inclusi " "la versione del protocollo, lo spazio di configurazione di APT, e i " -"pacchetti, file e versioni che vengono modificati. La versione 2 viene " -"abilitata impostando <literal>DPkg::Tools::options::cmd::Version</literal> a " -"2. <literal>cmd</literal> è un comando passato a <literal>Pre-Install-Pkgs</" -"literal>." +"pacchetti, file e versioni che vengono modificati. La versione 3 aggiunge " +"l'architettura e il contrassegno <literal>MultiArch</literal> per ciascuna " +"versione di cui viene fatto il dump." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:715 +#: apt.conf.5.xml:724 msgid "" "The version of the protocol to be used for the command " "<literal><replaceable>cmd</replaceable></literal> can be chosen by setting " @@ -4672,9 +4836,15 @@ msgid "" "the requested version it will send the information in the highest version it " "has support for instead." msgstr "" +"La versione del protocollo da usare per il comando " +"<literal><replaceable>cmd</replaceable></literal> può essere scelta " +"impostando in modo appropriato <literal>DPkg::Tools::options::" +"<replaceable>cmd</replaceable>::Version</literal>, il cui valore predefinito " +"è la versione 1. Se APT non supporta la versione richiesta invierà invece " +"l'informazione nella versione più alta per cui ha il supporto." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:722 +#: apt.conf.5.xml:731 msgid "" "The file descriptor to be used to send the information can be requested with " "<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</" @@ -4683,9 +4853,16 @@ msgid "" "looking for the environment variable <envar>APT_HOOK_INFO_FD</envar> which " "contains the number of the used file descriptor as a confirmation." msgstr "" +"Il descrittore di file da usare per inviare le informazioni può essere " +"richiesto con <literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::" +"InfoFD</literal> che è in modo predefinito <literal>0</literal> per lo " +"standard input ed è disponibile a partire dalla versione 0.9.11. Il supporto " +"per l'opzione può essere controllato guardando la variabile d'ambiente " +"<envar>APT_HOOK_INFO_FD</envar> che contiene il numero del descrittore di " +"file usato per conferma." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:732 +#: apt.conf.5.xml:741 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." @@ -4694,7 +4871,7 @@ msgstr "" "valore predefinito è <filename>/</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:737 +#: apt.conf.5.xml:746 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." @@ -4704,12 +4881,12 @@ msgstr "" "binari." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:742 +#: apt.conf.5.xml:751 msgid "dpkg trigger usage (and related options)" msgstr "Uso dei trigger di dpkg (e relative opzioni)" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:743 +#: apt.conf.5.xml:752 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@ -4737,7 +4914,7 @@ msgstr "" "pacchetti." #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:758 +#: apt.conf.5.xml:767 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -4751,7 +4928,7 @@ msgstr "" "DPkg::TriggersPending \"true\";" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:752 +#: apt.conf.5.xml:761 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -4775,7 +4952,7 @@ msgstr "" "\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:765 +#: apt.conf.5.xml:774 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -4797,7 +4974,7 @@ msgstr "" "questa opzione anche alle chiamate per lo spacchettamento e la rimozione." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:773 +#: apt.conf.5.xml:782 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@ -4827,7 +5004,7 @@ msgstr "" "potrebbe finire in uno stato non configurato e potenzialmente non avviabile." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:788 +#: apt.conf.5.xml:797 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@ -4845,7 +5022,7 @@ msgstr "" "si può disattivare questa opzione in tutte le esecuzioni tranne l'ultima." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:795 +#: apt.conf.5.xml:804 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@ -4861,7 +5038,7 @@ msgstr "" "necessari per configurare il pacchetto in questione." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:808 +#: apt.conf.5.xml:817 #, no-wrap msgid "" "OrderList::Score {\n" @@ -4879,7 +5056,7 @@ msgstr "" "};" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:801 +#: apt.conf.5.xml:810 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@ -4904,12 +5081,12 @@ msgstr "" "con i loro valori predefiniti. <placeholder type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:821 +#: apt.conf.5.xml:830 msgid "Periodic and Archives options" msgstr "Opzioni Periodic e Archives" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:822 +#: apt.conf.5.xml:831 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@ -4923,12 +5100,12 @@ msgstr "" "all'inizio dello script." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:830 +#: apt.conf.5.xml:839 msgid "Debug options" msgstr "Opzioni di debug" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:832 +#: apt.conf.5.xml:841 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -4946,7 +5123,7 @@ msgstr "" "esserlo:" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:843 +#: apt.conf.5.xml:852 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@ -4957,7 +5134,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:851 +#: apt.conf.5.xml:860 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@ -4968,7 +5145,7 @@ msgstr "" "install</literal>) come utente non root." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:860 +#: apt.conf.5.xml:869 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -4980,7 +5157,7 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:868 +#: apt.conf.5.xml:877 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." @@ -4989,37 +5166,37 @@ msgstr "" "negli ID dei CD-ROM." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:878 +#: apt.conf.5.xml:887 msgid "A full list of debugging options to apt follows." msgstr "Segue un elenco completo delle opzioni di debug per apt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:887 +#: apt.conf.5.xml:896 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" "Stampa informazioni relative all'accesso a fonti <literal>cdrom://</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:898 +#: apt.conf.5.xml:907 msgid "Print information related to downloading packages using FTP." msgstr "" "Stampa informazioni relative allo scaricamento dei pacchetti usando FTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:909 +#: apt.conf.5.xml:918 msgid "Print information related to downloading packages using HTTP." msgstr "" "Stampa informazioni relative allo scaricamento dei pacchetti usando HTTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:920 +#: apt.conf.5.xml:929 msgid "Print information related to downloading packages using HTTPS." msgstr "" "Stampa informazioni relative allo scaricamento dei pacchetti usando HTTPS." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:931 +#: apt.conf.5.xml:940 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." @@ -5028,7 +5205,7 @@ msgstr "" "usando <literal>gpg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:942 +#: apt.conf.5.xml:951 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." @@ -5037,14 +5214,14 @@ msgstr "" "pacchetti memorizzati su CD-ROM." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:952 +#: apt.conf.5.xml:961 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" "Descrive il processo di risoluzione delle dipendenze di compilazione in &apt-" "get;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:962 +#: apt.conf.5.xml:971 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." @@ -5053,7 +5230,7 @@ msgstr "" "<literal>apt</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:972 +#: apt.conf.5.xml:981 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -5064,7 +5241,7 @@ msgstr "" "system del CD-ROM." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:983 +#: apt.conf.5.xml:992 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." @@ -5074,14 +5251,14 @@ msgstr "" "contemporaneamente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:995 +#: apt.conf.5.xml:1004 msgid "Log when items are added to or removed from the global download queue." msgstr "" "Registra nel log quando vengono aggiunte o rimosse voci dalla coda globale " "degli scaricamenti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1005 +#: apt.conf.5.xml:1014 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." @@ -5090,7 +5267,7 @@ msgstr "" "codici di controllo e delle firme di cifratura dei file scaricati." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1015 +#: apt.conf.5.xml:1024 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." @@ -5100,7 +5277,7 @@ msgstr "" "diff." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1027 +#: apt.conf.5.xml:1036 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." @@ -5110,7 +5287,7 @@ msgstr "" "invece degli indici completi." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1038 +#: apt.conf.5.xml:1047 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" @@ -5118,7 +5295,7 @@ msgstr "" "realmente gli scaricamenti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1049 +#: apt.conf.5.xml:1058 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." @@ -5127,7 +5304,7 @@ msgstr "" "installato dei pacchetti e alla rimozione dei pacchetti non utilizzati." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1059 +#: apt.conf.5.xml:1068 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@ -5143,7 +5320,7 @@ msgstr "" "pkgProblemResolver</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1073 +#: apt.conf.5.xml:1082 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@ -5175,7 +5352,7 @@ msgstr "" "sezione in cui compare il pacchetto." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1094 +#: apt.conf.5.xml:1103 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." @@ -5184,7 +5361,7 @@ msgstr "" "gli argomenti separati da un singolo carattere di spazio." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1105 +#: apt.conf.5.xml:1114 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." @@ -5193,7 +5370,7 @@ msgstr "" "di stato ed ogni errore incontrato durante la sua analisi." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1116 +#: apt.conf.5.xml:1125 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." @@ -5202,7 +5379,7 @@ msgstr "" "literal> deve passare i pacchetti a &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1128 +#: apt.conf.5.xml:1137 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" @@ -5210,12 +5387,12 @@ msgstr "" "nell'invocazione di &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1139 +#: apt.conf.5.xml:1148 msgid "Output the priority of each package list on startup." msgstr "Produce in output la priorità di ogni elenco di pacchetti all'avvio." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1149 +#: apt.conf.5.xml:1158 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." @@ -5225,7 +5402,7 @@ msgstr "" "dipendenze)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1160 +#: apt.conf.5.xml:1169 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -5236,7 +5413,7 @@ msgstr "" "la stessa descritta in <literal>Debug::pkgDepCache::Marker</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1172 +#: apt.conf.5.xml:1181 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." @@ -5244,14 +5421,22 @@ msgstr "" "Stampa informazioni sui fornitori lette da <filename>/etc/apt/vendors.list</" "filename>." +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:1191 +msgid "" +"Display the external commands that are called by apt hooks. This includes e." +"g. the config options <literal>DPkg::{Pre,Post}-Invoke</literal> or " +"<literal>APT::Update::{Pre,Post}-Invoke</literal>." +msgstr "" + #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:1194 apt_preferences.5.xml:547 sources.list.5.xml:239 +#: apt.conf.5.xml:1215 apt_preferences.5.xml:547 sources.list.5.xml:239 #: apt-ftparchive.1.xml:598 msgid "Examples" msgstr "Esempi" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1195 +#: apt.conf.5.xml:1216 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -5261,7 +5446,7 @@ msgstr "" #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1207 +#: apt.conf.5.xml:1228 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." @@ -6743,10 +6928,9 @@ msgstr "" #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:82 -#, fuzzy, no-wrap -#| msgid "deb [ options ] uri distribution [component1] [component2] [...]" +#, no-wrap msgid "deb [ options ] uri suite [component1] [component2] [...]" -msgstr "deb [ opzioni ] uri distribuzione [componente1] [componente2] [...]" +msgstr "deb [ opzioni ] uri suite [componente1] [componente2] [...]" #. type: Content of: <refentry><refsect1><para><literallayout> #: sources.list.5.xml:86 @@ -6770,6 +6954,23 @@ msgid "" " [option1]: [option1-value]\n" " " msgstr "" +" Types: deb deb-src\n" +" URIs: http://example.com\n" +" Suites: stable testing\n" +" Sections: componente1 componente2\n" +" Description: breve\n" +" lunga lunga lunga\n" +" [opzione1]: [valore-opzione1]\n" +"\n" +" Types: deb\n" +" URIs: http://another.example.com\n" +" Suites: experimental\n" +" Sections: componente1 componente2\n" +" Enabled: no\n" +" Description:breve\n" +" lunga lunga lunga\n" +" [opzione1]: [valore-opzione1]\n" +" " #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:84 @@ -6777,19 +6978,11 @@ msgid "" "Alternatively a rfc822 style format is also supported: <placeholder type=" "\"literallayout\" id=\"0\"/>" msgstr "" +"In alternativa è gestito anche un formato in stile rfc822: <placeholder type=" +"\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:105 -#, fuzzy -#| msgid "" -#| "The URI for the <literal>deb</literal> type must specify the base of the " -#| "Debian distribution, from which APT will find the information it needs. " -#| "<literal>distribution</literal> can specify an exact path, in which case " -#| "the components must be omitted and <literal>distribution</literal> must " -#| "end with a slash (<literal>/</literal>). This is useful for the case when " -#| "only a particular sub-section of the archive denoted by the URI is of " -#| "interest. If <literal>distribution</literal> does not specify an exact " -#| "path, at least one <literal>component</literal> must be present." msgid "" "The URI for the <literal>deb</literal> type must specify the base of the " "Debian distribution, from which APT will find the information it needs. " @@ -6801,26 +6994,16 @@ msgid "" "<literal>component</literal> must be present." msgstr "" "L'URI per il tipo <literal>deb</literal> deve specificare la base della " -"distribuzione Debian, dalla quale APT troverà le informazioni necessarie. " -"<literal>distribuzione</literal> può specificare un percorso esatto, nel " -"qual caso le componenti devono essere omesse e <literal>distribuzione</" -"literal> deve terminare con una sbarra (<literal>/</literal>). Questo è " -"utile nel caso in cui si è interessati solo a una particolare sottosezione " -"dell'archivio indicata dall'URI. Se <literal>distribuzione</literal> non " -"specifica un percorso esatto, deve essere presente almeno una " -"<literal>componente</literal>." +"distribuzione Debian, dalla quale APT troverà le informazioni di cui ha " +"bisogno. <literal>suite</literal> può specificare un percorso esatto, nel " +"qual caso le componenti devono essere omesse e <literal>suite</literal> deve " +"terminare con una sbarra (<literal>/</literal>). Questo è utile nel caso in " +"cui si è interessati solo a una particolare sottosezione dell'archivio " +"indicata dall'URI. Se <literal>suite</literal> non specifica un percorso " +"esatto, deve essere presente almeno una <literal>componente</literal>." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:114 -#, fuzzy -#| msgid "" -#| "<literal>distribution</literal> may also contain a variable, <literal>" -#| "$(ARCH)</literal> which expands to the Debian architecture (such as " -#| "<literal>amd64</literal> or <literal>armel</literal>) used on the system. " -#| "This permits architecture-independent <filename>sources.list</filename> " -#| "files to be used. In general this is only of interest when specifying an " -#| "exact path, <literal>APT</literal> will automatically generate a URI with " -#| "the current architecture otherwise." msgid "" "<literal>suite</literal> may also contain a variable, <literal>$(ARCH)</" "literal> which expands to the Debian architecture (such as <literal>amd64</" @@ -6830,29 +7013,16 @@ msgid "" "<literal>APT</literal> will automatically generate a URI with the current " "architecture otherwise." msgstr "" -"<literal>distribuzione</literal> può anche contenere una variabile <literal>" -"$(ARCH)</literal> che viene espansa nell'architettura Debian (come " -"<literal>amd64</literal> o <literal>armel</literal>) usata nel sistema. Ciò " -"consente di utilizzare file <filename>sources.list</filename> indipendenti " +"<literal>suite</literal> può anche contenere una variabile <literal>$(ARCH)</" +"literal> che viene espansa nell'architettura Debian (come <literal>amd64</" +"literal> o <literal>armel</literal>) usata nel sistema. Ciò consente di " +"utilizzare file <filename>sources.list</filename> indipendenti " "dall'architettura. In generale questo è interessante solo quando viene " "specificato un percorso esatto, altrimenti <literal>APT</literal> genera " "automaticamente un URI con l'architettura corrente." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:122 -#, fuzzy -#| msgid "" -#| "Since only one distribution can be specified per line it may be necessary " -#| "to have multiple lines for the same URI, if a subset of all available " -#| "distributions or components at that location is desired. APT will sort " -#| "the URI list after it has generated a complete set internally, and will " -#| "collapse multiple references to the same Internet host, for instance, " -#| "into a single connection, so that it does not inefficiently establish an " -#| "FTP connection, close it, do something else, and then re-establish a " -#| "connection to that same host. This feature is useful for accessing busy " -#| "FTP sites with limits on the number of simultaneous anonymous users. APT " -#| "also parallelizes connections to different hosts to more effectively deal " -#| "with sites with low bandwidth." msgid "" "In the traditional style sources.list format since only one distribution can " "be specified per line it may be necessary to have multiple lines for the " @@ -6866,17 +7036,18 @@ msgid "" "users. APT also parallelizes connections to different hosts to more " "effectively deal with sites with low bandwidth." msgstr "" -"Dato che può essere specificata solo una distribuzione per riga, può essere " -"necessario avere più righe per lo stesso URI, se si desidera un sottoinsieme " -"di tutte le distribuzioni o componenti disponibili in quella posizione. APT " -"ordinerà la lista degli URI dopo aver generato internamente un insieme " -"completo, e riunirà i riferimenti multipli, per esempio al medesimo host " -"Internet in una singola connessione; in questo modo non stabilisce in modo " -"inefficiente una connessione FTP per poi chiuderla, fare qualcos'altro e " -"quindi ristabilire una connessione con il medesimo host. Questa funzionalità " -"è utile per accedere a siti FTP molto impegnati con un limite al numero di " -"accessi anonimi contemporanei. APT inoltre parallelizza le connessioni a " -"host differenti, per gestire in maniera più efficiente i siti con scarsa " +"Dato che, nel formato di sources.list in stile tradizionale, può essere " +"specificata solo una distribuzione per riga, può essere necessario avere più " +"righe per lo stesso URI, se si desidera un sottoinsieme di tutte le " +"distribuzioni o componenti disponibili in quella posizione. APT ordinerà la " +"lista degli URI dopo aver generato internamente un insieme completo, e " +"riunirà i riferimenti multipli, per esempio al medesimo host Internet in una " +"singola connessione; in questo modo non stabilisce in modo inefficiente una " +"connessione FTP per poi chiuderla, fare qualcos'altro e quindi ristabilire " +"una connessione con il medesimo host. Questa funzionalità è utile per " +"accedere a siti FTP molto impegnati con un limite al numero di accessi " +"anonimi contemporanei. APT inoltre parallelizza le connessioni a host " +"differenti, per gestire in maniera più efficiente i siti con scarsa " "larghezza di banda." #. type: Content of: <refentry><refsect1><para> @@ -6913,24 +7084,17 @@ msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> #: sources.list.5.xml:146 -#, fuzzy -#| msgid "" -#| "<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</" -#| "replaceable>,…</literal> can be used to specify for which architectures " -#| "information should be downloaded. If this option is not set all " -#| "architectures defined by the <literal>APT::Architectures</literal> option " -#| "will be downloaded." msgid "" "<literal>arch+=<replaceable>arch1</replaceable>,<replaceable>arch2</" "replaceable>,…</literal> and <literal>arch-=<replaceable>arch1</replaceable>," "<replaceable>arch2</replaceable>,…</literal> which can be used to add/remove " "architectures from the set which will be downloaded." msgstr "" -"<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</" -"replaceable>,…</literal> può essere usato per specificare le architetture " -"per le quali scaricare le informazioni. Se questa opzione non è impostata " -"verranno scaricate tutte le architetture definite dall'opzione <literal>APT::" -"Architectures</literal>." +"<literal>arch+=<replaceable>arch1</replaceable>,<replaceable>arch2</" +"replaceable>,…</literal> e <literal>arch-=<replaceable>arch1</replaceable>," +"<replaceable>arch2</replaceable>,…</literal> possono essere usati per " +"aggiungere e rimuovere architetture dall'insieme di quelle che verranno " +"scaricate." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> #: sources.list.5.xml:149 @@ -7277,14 +7441,14 @@ msgid "" "template-file and config-script are written to the temporary directory " "specified by the <option>-t</option> or <option>--tempdir</option> " "(<literal>APT::ExtractTemplates::TempDir</literal>) directory, with " -"filenames of the form <filename>package.template.XXXX</filename> and " -"<filename>package.config.XXXX</filename>" +"filenames of the form <filename>package.template.XXXXXX</filename> and " +"<filename>package.config.XXXXXX</filename>" msgstr "" "file-template e script-di-configurazione sono scritti nella directory " "temporanea specificata da <option>-t</option> o <option>--tempdir</option> " "(<literal>APT::ExtractTemplates::TempDir</literal>), con i nomi dei file " -"nella forma <filename>pacchetto.template.XXXX</filename> e " -"<filename>pacchetto.config.XXXX</filename>" +"nella forma <filename>pacchetto.template.XXXXXX</filename> e " +"<filename>pacchetto.config.XXXXXX</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-extracttemplates.1.xml:60 @@ -8308,126 +8472,6 @@ msgstr "" "<command>apt-ftparchive</command> restituisce zero in caso di funzionamento " "normale e il valore decimale 100 in caso di errore." -#. type: TH -#: apt.8:17 -#, no-wrap -msgid "apt" -msgstr "apt" - -#. type: TH -#: apt.8:17 -#, no-wrap -msgid "16 June 1998" -msgstr "16 giugno 1998" - -#. type: TH -#: apt.8:17 -#, no-wrap -msgid "Debian" -msgstr "Debian" - -#. type: SH -#: apt.8:18 -#, no-wrap -msgid "NAME" -msgstr "NOME" - -#. type: Plain text -#: apt.8:20 -msgid "apt - Advanced Package Tool" -msgstr "apt - Advanced Package Tool (strumento avanzato per i pacchetti)" - -#. type: SH -#: apt.8:20 -#, no-wrap -msgid "SYNOPSIS" -msgstr "SINTASSI" - -#. type: Plain text -#: apt.8:22 -msgid "B<apt>" -msgstr "B<apt>" - -#. type: SH -#: apt.8:22 -#, no-wrap -msgid "DESCRIPTION" -msgstr "DESCRIZIONE" - -#. type: Plain text -#: apt.8:31 -msgid "" -"APT is a management system for software packages. For normal day to day " -"package management there are several frontends available, such as " -"B<aptitude>(8) for the command line or B<synaptic>(8) for the X Window " -"System. Some options are only implemented in B<apt-get>(8) though." -msgstr "" -"APT è un sistema di gestione per i pacchetti software. Per la normale " -"gestione quotidiana dei pacchetti sono disponibili diverse interfacce, quali " -"B<aptitude>(8) per la riga di comando o B<synaptic>(8) per il sistema X " -"Window. Comunque alcune opzioni sono implementate solo in B<apt-get>(8)." - -#. type: SH -#: apt.8:31 -#, no-wrap -msgid "SEE ALSO" -msgstr "VEDERE ANCHE" - -#. type: Plain text -#: apt.8:38 -msgid "" -"B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " -"B<apt_preferences>(5), B<apt-secure>(8)" -msgstr "" -"B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " -"B<apt_preferences>(5), B<apt-secure>(8)" - -#. type: SH -#: apt.8:38 -#, no-wrap -msgid "DIAGNOSTICS" -msgstr "DIAGNOSTICA" - -#. type: Plain text -#: apt.8:40 -msgid "apt returns zero on normal operation, decimal 100 on error." -msgstr "" -"apt restituisce zero in caso di funzionamento normale e il valore decimale " -"100 in caso di errore." - -#. type: SH -#: apt.8:40 -#, no-wrap -msgid "BUGS" -msgstr "BUG" - -#. type: Plain text -#: apt.8:42 -msgid "This manpage isn't even started." -msgstr "Questa pagina di manuale non è neanche stata iniziata." - -#. type: Plain text -#: apt.8:51 -msgid "" -"See E<lt>http://bugs.debian.org/aptE<gt>. If you wish to report a bug in " -"B<apt>, please see I</usr/share/doc/debian/bug-reporting.txt> or the " -"B<reportbug>(1) command." -msgstr "" -"Vedere E<lt>http://bugs.debian.org/aptE<gt>. Per segnalare un bug in B<apt>, " -"vedere I</usr/share/doc/debian/bug-reporting.txt> o il comando " -"B<reportbug>(1)." - -#. type: SH -#: apt.8:51 -#, no-wrap -msgid "AUTHOR" -msgstr "AUTORE" - -#. type: Plain text -#: apt.8:52 -msgid "apt was written by the APT team E<lt>apt@packages.debian.orgE<gt>." -msgstr "apt è stato scritto dal Team APT E<lt>apt@packages.debian.orgE<gt>." - #. type: <title></title> #: guide.sgml:4 msgid "APT User's Guide" @@ -8766,7 +8810,7 @@ msgstr "" #| "command that caused them to be downloaded again without <tt>-d</tt>." msgid "" "<prgn>apt-get</prgn> has several command line options that are detailed in " -"its man page, <manref section=\"8\" name=\"apt-get\">. The most useful " +"its man page, <manref name=\"apt-get\" section=\"8\">. The most useful " "option is <tt>-d</tt> which does not install the fetched files. If the " "system has to download a large number of package it would be undesired to " "start installing them in case something goes wrong. When <tt>-d</tt> is used " @@ -9992,6 +10036,91 @@ msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade" msgid "Which will use the already fetched archives on the disc." msgstr "che userà gli archivi già scaricati e presenti sul disco." +#~ msgid "apt" +#~ msgstr "apt" + +#~ msgid "16 June 1998" +#~ msgstr "16 giugno 1998" + +#~ msgid "Debian" +#~ msgstr "Debian" + +#~ msgid "NAME" +#~ msgstr "NOME" + +#~ msgid "apt - Advanced Package Tool" +#~ msgstr "apt - Advanced Package Tool (strumento avanzato per i pacchetti)" + +#~ msgid "SYNOPSIS" +#~ msgstr "SINTASSI" + +#~ msgid "B<apt>" +#~ msgstr "B<apt>" + +#~ msgid "DESCRIPTION" +#~ msgstr "DESCRIZIONE" + +#, fuzzy +#~| msgid "" +#~| "APT is a management system for software packages. For normal day to day " +#~| "package management there are several frontends available, such as " +#~| "B<aptitude>(8) for the command line or B<synaptic>(8) for the X Window " +#~| "System. Some options are only implemented in B<apt-get>(8) though." +#~ msgid "" +#~ "For normal day to day package management there are several frontends " +#~ "available, such as B<aptitude>(8) for the command line or " +#~ "B<synaptic>(8) for the X Window System. Some options are only " +#~ "implemented in B<apt-get>(8) though." +#~ msgstr "" +#~ "APT è un sistema di gestione per i pacchetti software. Per la normale " +#~ "gestione quotidiana dei pacchetti sono disponibili diverse interfacce, " +#~ "quali B<aptitude>(8) per la riga di comando o B<synaptic>(8) per il " +#~ "sistema X Window. Comunque alcune opzioni sono implementate solo in B<apt-" +#~ "get>(8)." + +#~ msgid "SEE ALSO" +#~ msgstr "VEDERE ANCHE" + +#, fuzzy +#~| msgid "" +#~| "B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " +#~| "B<apt_preferences>(5), B<apt-secure>(8)" +#~ msgid "" +#~ "B<apt>(8), B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources." +#~ "list>(5), B<apt_preferences>(5), B<apt-secure>(8)" +#~ msgstr "" +#~ "B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " +#~ "B<apt_preferences>(5), B<apt-secure>(8)" + +#~ msgid "DIAGNOSTICS" +#~ msgstr "DIAGNOSTICA" + +#~ msgid "apt returns zero on normal operation, decimal 100 on error." +#~ msgstr "" +#~ "apt restituisce zero in caso di funzionamento normale e il valore " +#~ "decimale 100 in caso di errore." + +#~ msgid "BUGS" +#~ msgstr "BUG" + +#~ msgid "This manpage isn't even started." +#~ msgstr "Questa pagina di manuale non è neanche stata iniziata." + +#~ msgid "" +#~ "See E<lt>http://bugs.debian.org/aptE<gt>. If you wish to report a bug in " +#~ "B<apt>, please see I</usr/share/doc/debian/bug-reporting.txt> or the " +#~ "B<reportbug>(1) command." +#~ msgstr "" +#~ "Vedere E<lt>http://bugs.debian.org/aptE<gt>. Per segnalare un bug in " +#~ "B<apt>, vedere I</usr/share/doc/debian/bug-reporting.txt> o il comando " +#~ "B<reportbug>(1)." + +#~ msgid "AUTHOR" +#~ msgstr "AUTORE" + +#~ msgid "apt was written by the APT team E<lt>apt@packages.debian.orgE<gt>." +#~ msgstr "apt è stato scritto dal Team APT E<lt>apt@packages.debian.orgE<gt>." + #~ msgid "Debian GNU/Linux" #~ msgstr "Debian GNU/Linux" diff --git a/doc/po/ja.po b/doc/po/ja.po index 99c2ea2c3..36564102f 100644 --- a/doc/po/ja.po +++ b/doc/po/ja.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.25.3\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" -"PO-Revision-Date: 2012-08-08 07:58+0900\n" +"POT-Creation-Date: 2014-04-10 09:49+0200\n" +"PO-Revision-Date: 2014-04-01 14:00+0200\n" "Last-Translator: KURASAWA Nozomu <nabetaro@debian.or.jp>\n" "Language-Team: Debian Japanese List <debian-japanese@lists.debian.org>\n" "Language: \n" @@ -657,33 +657,263 @@ msgstr "" "473041FA --> <!ENTITY synopsis-keyid \"ã‚ーID\">" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 apt-mark.8.xml:28 -#: apt-secure.8.xml:27 apt-cdrom.8.xml:27 apt-config.8.xml:28 +#: apt.8.xml:25 apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 +#: apt-mark.8.xml:28 apt-secure.8.xml:27 apt-cdrom.8.xml:27 +#: apt-config.8.xml:28 msgid "8" msgstr "8" #. type: Content of: <refentry><refmeta><refmiscinfo> -#: apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 apt-mark.8.xml:29 -#: apt-secure.8.xml:28 apt-cdrom.8.xml:28 apt-config.8.xml:29 -#: apt.conf.5.xml:34 apt_preferences.5.xml:28 sources.list.5.xml:29 -#: apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 apt-ftparchive.1.xml:29 +#: apt.8.xml:26 apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 +#: apt-mark.8.xml:29 apt-secure.8.xml:28 apt-cdrom.8.xml:28 +#: apt-config.8.xml:29 apt.conf.5.xml:34 apt_preferences.5.xml:28 +#: sources.list.5.xml:29 apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 +#: apt-ftparchive.1.xml:29 msgid "APT" msgstr "APT" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-get.8.xml:35 -msgid "APT package handling utility -- command-line interface" -msgstr "APT パッケージæ“作ユーティリティ -- コマンドラインインターフェース" +#: apt.8.xml:32 +msgid "command-line interface" +msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 apt-mark.8.xml:40 -#: apt-secure.8.xml:52 apt-cdrom.8.xml:39 apt-config.8.xml:40 -#: apt.conf.5.xml:43 apt_preferences.5.xml:38 sources.list.5.xml:38 -#: apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 apt-ftparchive.1.xml:40 +#: apt.8.xml:37 apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 +#: apt-mark.8.xml:40 apt-secure.8.xml:52 apt-cdrom.8.xml:39 +#: apt-config.8.xml:40 apt.conf.5.xml:43 apt_preferences.5.xml:38 +#: sources.list.5.xml:38 apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 +#: apt-ftparchive.1.xml:40 msgid "Description" msgstr "説明" #. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:38 +msgid "" +"<command>apt</command> (Advanced Package Tool) is the command-line tool for " +"handling packages. It provides a commandline interface for the package " +"management of the system. See also &apt-get; and &apt-cache; for more low-" +"level command options." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:47 +msgid "" +"<literal>list</literal> is used to display a list of packages. It supports " +"shell pattern for matching package names and the following options: " +"<option>--installed</option>, <option>--upgradable</option>, <option>--all-" +"versions</option> are supported." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:58 +msgid "" +"<literal>search</literal> searches for the given term(s) and display " +"matching packages." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:64 +#, fuzzy +#| msgid "" +#| "<literal>rdepends</literal> shows a listing of each reverse dependency a " +#| "package has." +msgid "" +"<literal>show</literal> shows the package information for the given " +"package(s)." +msgstr "" +"<literal>rdepends</literal> ã¯ã€ãƒ‘ãƒƒã‚±ãƒ¼ã‚¸ãŒæŒã¤è¢«ä¾å˜é–¢ä¿‚を一覧表示ã—ã¾ã™ã€‚" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:71 +msgid "" +"<literal>install</literal> is followed by one or more package names desired " +"for installation or upgrading." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:75 apt-get.8.xml:118 +msgid "" +"A specific version of a package can be selected for installation by " +"following the package name with an equals and the version of the package to " +"select. This will cause that version to be located and selected for install. " +"Alternatively a specific distribution can be selected by following the " +"package name with a slash and the version of the distribution or the Archive " +"name (stable, testing, unstable)." +msgstr "" +"パッケージã«ã‚¤ã‚³ãƒ¼ãƒ«è¨˜å·ã¨ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‚’ç¶šã‘ã‚‹ã“ã¨ã§ã€é¸æŠžã—ãŸãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®ãƒ‘ッ" +"ケージをインストールã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ã¤ã¾ã‚Šã€æŒ‡å®šã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®ãƒ‘ッケージ" +"をインストールã™ã‚‹ã‚ˆã†ã«é¸æŠžã™ã‚‹ã€ã¨ã„ã†ã“ã¨ã§ã™ã€‚åˆ¥ã®æ–¹æ³•ã¨ã—ã¦ã¯ã€ãƒ‡ã‚£ã‚¹ãƒˆ" +"リビューションを特定ã™ã‚‹ã®ã«ã€ãƒ‘ッケージåã«ç¶šã‘ã¦ã€ã‚¹ãƒ©ãƒƒã‚·ãƒ¥ã¨ãƒ‡ã‚£ã‚¹ãƒˆãƒª" +"ビューションã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‚„アーカイブå (stable, testing, unstable) を記述ã§ã" +"ã¾ã™ã€‚" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:85 apt-get.8.xml:153 +msgid "" +"<literal>remove</literal> is identical to <literal>install</literal> except " +"that packages are removed instead of installed. Note that removing a package " +"leaves its configuration files on the system. If a plus sign is appended to " +"the package name (with no intervening space), the identified package will be " +"installed instead of removed." +msgstr "" +"<literal>remove</literal> ã¯ã€ãƒ‘ッケージãŒå‰Šé™¤ã•れるã“ã¨ã‚’除ãã€" +"<literal>install</literal> ã¨åŒæ§˜ã§ã™ã€‚削除ã•れãŸãƒ‘ッケージã®è¨å®šãƒ•ァイルã¯ã€" +"ã‚·ã‚¹ãƒ†ãƒ ã«æ®‹ã£ãŸã¾ã¾ã«ãªã‚‹ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„。プラス記å·ãŒãƒ‘ッケージåã« " +"(é–“ã«ç©ºç™½ã‚’å«ã¾ãšã«) ä»˜åŠ ã•れるã¨ã€è˜åˆ¥ã•れãŸãƒ‘ッケージをã€å‰Šé™¤ã§ã¯ãªãインス" +"トールã—ã¾ã™ã€‚" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:93 +msgid "" +"<literal>edit-sources</literal> lets you edit your sources.list file and " +"provides basic sanity checks." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:99 +#, fuzzy +#| msgid "" +#| "<literal>showhold</literal> is used to print a list of packages on hold " +#| "in the same way as for the other show commands." +msgid "" +"<literal>update</literal> is used to resynchronize the package index files " +"from their sources." +msgstr "" +"<literal>showhold</literal> ã¯ã€ä»–ã® show コマンドã¨åŒæ§˜ã«ã€ä¿ç•™ã•れã¦ã„ã‚‹" +"パッケージを出力ã—ã¾ã™ã€‚" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:105 +msgid "" +"<literal>upgrade</literal> is used to install the newest versions of all " +"packages currently installed on the system from the sources enumerated in " +"<filename>/etc/apt/sources.list</filename>. New package will be installed, " +"but existing package will never removed." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:114 +msgid "" +"<literal>full-upgrade</literal> performs the function of upgrade but may " +"also remove installed packages if that is required in order to resolve a " +"package conflict." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:124 apt-get.8.xml:257 apt-cache.8.xml:250 apt-mark.8.xml:110 +#: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50 +#: apt-ftparchive.1.xml:506 +msgid "options" +msgstr "オプション" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:134 +msgid "Script usage" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:136 +msgid "" +"The &apt; commandline is designed as a end-user tool and it may change the " +"output between versions. While it tries to not break backward compatibility " +"there is no guarantee for it either. All features of &apt; are available in " +"&apt-cache; and &apt-get; via APT options. Please prefer using these " +"commands in your scripts." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:144 +msgid "Differences to &apt-get;" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:145 +msgid "" +"The <command>apt</command> command is meant to be pleasant for end users and " +"does not need to be backward compatible like &apt-get;. Therefore some " +"options are different:" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:151 +#, fuzzy +#| msgid "the <literal>Package:</literal> line" +msgid "The option <literal>DPkgPM::Progress-Fancy</literal> is enabled." +msgstr "<literal>Package:</literal> 行" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:155 +#, fuzzy +#| msgid "the <literal>Component:</literal> line" +msgid "The option <literal>APT::Color</literal> is enabled." +msgstr "<literal>Component:</literal> 行" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:159 +msgid "" +"A new <literal>list</literal> command is available similar to <literal>dpkg " +"--list</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:164 +#, fuzzy +#| msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" +msgid "" +"The option <literal>upgrade</literal> has <literal>--with-new-pkgs</literal> " +"enabled by default." +msgstr "<literal>Archive:</literal> 行や <literal>Suite:</literal> 行" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:174 apt-get.8.xml:558 apt-cache.8.xml:352 apt-key.8.xml:197 +#: apt-mark.8.xml:133 apt-secure.8.xml:193 apt-cdrom.8.xml:154 +#: apt-config.8.xml:111 apt.conf.5.xml:1227 apt_preferences.5.xml:707 +#: sources.list.5.xml:280 apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 +#: apt-ftparchive.1.xml:609 +msgid "See Also" +msgstr "é–¢é€£é …ç›®" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:175 +#, fuzzy +#| msgid "" +#| "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " +#| "&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-" +#| "preferences;, the APT Howto." +msgid "" +"&apt-get;, &apt-cache;, &sources-list;, &apt-conf;, &apt-config;, The APT " +"User's guide in &guidesdir;, &apt-preferences;, the APT Howto." +msgstr "" +"&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " +"&apt-config;, &apt-secure;, &guidesdir; ã«ã‚ã‚‹ APT ユーザガイド, &apt-" +"preferences;, APT Howto" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:180 apt-get.8.xml:564 apt-cache.8.xml:357 apt-mark.8.xml:137 +#: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76 +#: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613 +msgid "Diagnostics" +msgstr "診æ–メッセージ" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:181 +#, fuzzy +#| msgid "" +#| "<command>apt-get</command> returns zero on normal operation, decimal 100 " +#| "on error." +msgid "" +"<command>apt</command> returns zero on normal operation, decimal 100 on " +"error." +msgstr "" +"<command>apt-get</command> ã¯æ£å¸¸çµ‚了時㫠0 ã‚’è¿”ã—ã¾ã™ã€‚エラー時ã«ã¯å進㮠" +"100 ã‚’è¿”ã—ã¾ã™ã€‚" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-get.8.xml:35 +msgid "APT package handling utility -- command-line interface" +msgstr "APT パッケージæ“作ユーティリティ -- コマンドラインインターフェース" + +#. type: Content of: <refentry><refsect1><para> #: apt-get.8.xml:41 #, fuzzy #| msgid "" @@ -828,23 +1058,6 @@ msgstr "" "æ–を上書ãã™ã‚‹ã®ã«åˆ©ç”¨ã•れるå¯èƒ½æ€§ãŒã‚りã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:118 -msgid "" -"A specific version of a package can be selected for installation by " -"following the package name with an equals and the version of the package to " -"select. This will cause that version to be located and selected for install. " -"Alternatively a specific distribution can be selected by following the " -"package name with a slash and the version of the distribution or the Archive " -"name (stable, testing, unstable)." -msgstr "" -"パッケージã«ã‚¤ã‚³ãƒ¼ãƒ«è¨˜å·ã¨ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‚’ç¶šã‘ã‚‹ã“ã¨ã§ã€é¸æŠžã—ãŸãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®ãƒ‘ッ" -"ケージをインストールã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ã¤ã¾ã‚Šã€æŒ‡å®šã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®ãƒ‘ッケージ" -"をインストールã™ã‚‹ã‚ˆã†ã«é¸æŠžã™ã‚‹ã€ã¨ã„ã†ã“ã¨ã§ã™ã€‚åˆ¥ã®æ–¹æ³•ã¨ã—ã¦ã¯ã€ãƒ‡ã‚£ã‚¹ãƒˆ" -"リビューションを特定ã™ã‚‹ã®ã«ã€ãƒ‘ッケージåã«ç¶šã‘ã¦ã€ã‚¹ãƒ©ãƒƒã‚·ãƒ¥ã¨ãƒ‡ã‚£ã‚¹ãƒˆãƒª" -"ビューションã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‚„アーカイブå (stable, testing, unstable) を記述ã§ã" -"ã¾ã™ã€‚" - -#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:125 msgid "" "Both of the version selection mechanisms can downgrade packages and must be " @@ -899,21 +1112,6 @@ msgstr "" "ã°ã€'^' ã‚„ '$' を付ã‘ã‚‹ã‹ã€ã‚‚ã£ã¨è©³ã—ã„æ£è¦è¡¨ç¾ã‚’指定ã—ã¦ãã ã•ã„。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:153 -msgid "" -"<literal>remove</literal> is identical to <literal>install</literal> except " -"that packages are removed instead of installed. Note that removing a package " -"leaves its configuration files on the system. If a plus sign is appended to " -"the package name (with no intervening space), the identified package will be " -"installed instead of removed." -msgstr "" -"<literal>remove</literal> ã¯ã€ãƒ‘ッケージãŒå‰Šé™¤ã•れるã“ã¨ã‚’除ãã€" -"<literal>install</literal> ã¨åŒæ§˜ã§ã™ã€‚削除ã•れãŸãƒ‘ッケージã®è¨å®šãƒ•ァイルã¯ã€" -"ã‚·ã‚¹ãƒ†ãƒ ã«æ®‹ã£ãŸã¾ã¾ã«ãªã‚‹ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„。プラス記å·ãŒãƒ‘ッケージåã« " -"(é–“ã«ç©ºç™½ã‚’å«ã¾ãšã«) ä»˜åŠ ã•れるã¨ã€è˜åˆ¥ã•れãŸãƒ‘ッケージをã€å‰Šé™¤ã§ã¯ãªãインス" -"トールã—ã¾ã™ã€‚" - -#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:161 msgid "" "<literal>purge</literal> is identical to <literal>remove</literal> except " @@ -1104,13 +1302,6 @@ msgstr "" "ストールã•れるãƒãƒ¼ã‚¸ãƒ§ãƒ³ã® changelog を表示ã—ã¾ã™ãŒã€<option>install</" "option> コマンドã¨åŒã˜ã‚ªãƒ—ションを使用ã§ãã¾ã™ã€‚" -#. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:257 apt-cache.8.xml:250 apt-mark.8.xml:110 -#: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50 -#: apt-ftparchive.1.xml:506 -msgid "options" -msgstr "オプション" - #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:262 msgid "" @@ -1311,13 +1502,21 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:370 +#, fuzzy +#| msgid "" +#| "This option controls the architecture packages are built for by " +#| "<command>apt-get source --compile</command> and how cross-" +#| "builddependencies are satisfied. By default is it not set which means " +#| "that the host architecture is the same as the build architecture (which " +#| "is defined by <literal>APT::Architecture</literal>). Configuration Item: " +#| "<literal>APT::Get::Host-Architecture</literal>" msgid "" "This option controls the architecture packages are built for by <command>apt-" "get source --compile</command> and how cross-builddependencies are " "satisfied. By default is it not set which means that the host architecture " "is the same as the build architecture (which is defined by <literal>APT::" "Architecture</literal>). Configuration Item: <literal>APT::Get::Host-" -"Architecture</literal>" +"Architecture</literal>." msgstr "" "ã“ã®ã‚ªãƒ—ションã¯ã€<command>apt-get source --compile</command> ã§æ§‹ç¯‰ã™ã‚‹ãƒ‘ッ" "ケージã®ã‚¢ãƒ¼ã‚テクãƒãƒ£ã‚„ã€ã©ã®ã‚ˆã†ã«ã‚¯ãƒã‚¹ä¾å˜é–¢ä¿‚を解決ã™ã‚‹ã‹ã‚’制御ã—ã¾ã™ã€‚" @@ -1327,6 +1526,29 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:380 +#, fuzzy +#| msgid "" +#| "This option controls the architecture packages are built for by " +#| "<command>apt-get source --compile</command> and how cross-" +#| "builddependencies are satisfied. By default is it not set which means " +#| "that the host architecture is the same as the build architecture (which " +#| "is defined by <literal>APT::Architecture</literal>). Configuration Item: " +#| "<literal>APT::Get::Host-Architecture</literal>" +msgid "" +"This option controls the activated build profiles for which a source package " +"is built by <command>apt-get source --compile</command> and how build " +"dependencies are satisfied. By default no build profile is active. More " +"than one build profile can be activated at a time by concatenating them with " +"a comma. Configuration Item: <literal>APT::Build-Profiles</literal>." +msgstr "" +"ã“ã®ã‚ªãƒ—ションã¯ã€<command>apt-get source --compile</command> ã§æ§‹ç¯‰ã™ã‚‹ãƒ‘ッ" +"ケージã®ã‚¢ãƒ¼ã‚テクãƒãƒ£ã‚„ã€ã©ã®ã‚ˆã†ã«ã‚¯ãƒã‚¹ä¾å˜é–¢ä¿‚を解決ã™ã‚‹ã‹ã‚’制御ã—ã¾ã™ã€‚" +"デフォルトã§ã¯æœªå®šç¾©ã§ã€ã“れã¯ãƒ›ã‚¹ãƒˆã‚¢ãƒ¼ã‚テクãƒãƒ£ã¯ã€(<literal>APT::" +"Architecture</literal> ã§å®šç¾©ã—ãŸ) ビルドアーã‚テクãƒãƒ£ã¨åŒã˜ã¨ã„ã†æ„味ã«ãªã‚Š" +"ã¾ã™ã€‚è¨å®šé …ç›®: <literal>APT::Get::Host-Architecture</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:391 msgid "" "Compile source packages after downloading them. Configuration Item: " "<literal>APT::Get::Compile</literal>." @@ -1335,7 +1557,7 @@ msgstr "" "Get::Compile</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:385 +#: apt-get.8.xml:396 msgid "" "Ignore package holds; this causes <command>apt-get</command> to ignore a " "hold placed on a package. This may be useful in conjunction with " @@ -1348,7 +1570,7 @@ msgstr "" "literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:392 +#: apt-get.8.xml:403 msgid "" "Allow installing new packages when used in conjunction with " "<literal>upgrade</literal>. This is useful if the update of a installed " @@ -1360,7 +1582,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:404 +#: apt-get.8.xml:415 msgid "" "Do not upgrade packages; when used in conjunction with <literal>install</" "literal>, <literal>no-upgrade</literal> will prevent packages on the command " @@ -1373,7 +1595,7 @@ msgstr "" "Upgrade</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:411 +#: apt-get.8.xml:422 msgid "" "Do not install new packages; when used in conjunction with <literal>install</" "literal>, <literal>only-upgrade</literal> will install upgrades for already " @@ -1386,7 +1608,7 @@ msgstr "" "å®šé …ç›®: <literal>APT::Get::Only-Upgrade</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:419 +#: apt-get.8.xml:430 msgid "" "Force yes; this is a dangerous option that will cause apt to continue " "without prompting if it is doing something potentially harmful. It should " @@ -1400,7 +1622,7 @@ msgstr "" "ã‚“! è¨å®šé …ç›®: <literal>APT::Get::force-yes</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:427 +#: apt-get.8.xml:438 msgid "" "Instead of fetching the files to install their URIs are printed. Each URI " "will have the path, the destination file name, the size and the expected MD5 " @@ -1421,7 +1643,7 @@ msgstr "" "Print-URIs</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:438 +#: apt-get.8.xml:449 msgid "" "Use purge instead of remove for anything that would be removed. An asterisk " "(\"*\") will be displayed next to packages which are scheduled to be purged. " @@ -1434,7 +1656,7 @@ msgstr "" "<literal>APT::Get::Purge</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:446 +#: apt-get.8.xml:457 msgid "" "Re-install packages that are already installed and at the newest version. " "Configuration Item: <literal>APT::Get::ReInstall</literal>." @@ -1443,7 +1665,7 @@ msgstr "" "å®šé …ç›®: <literal>APT::Get::ReInstall</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:451 +#: apt-get.8.xml:462 msgid "" "This option is on by default; use <literal>--no-list-cleanup</literal> to " "turn it off. When it is on, <command>apt-get</command> will automatically " @@ -1459,7 +1681,7 @@ msgstr "" "ã™ã‚‹æ™‚ãらã„ã§ã—ょã†ã€‚è¨å®šé …ç›®: <literal>APT::Get::List-Cleanup</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:461 +#: apt-get.8.xml:472 msgid "" "This option controls the default input to the policy engine; it creates a " "default pin at priority 990 using the specified release string. This " @@ -1482,7 +1704,7 @@ msgstr "" "ã•ã„。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:476 +#: apt-get.8.xml:487 msgid "" "Only perform operations that are 'trivial'. Logically this can be considered " "related to <option>--assume-yes</option>; where <option>--assume-yes</" @@ -1495,7 +1717,7 @@ msgstr "" "ç›®: <literal>APT::Get::Trivial-Only</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:483 +#: apt-get.8.xml:494 msgid "" "If any packages are to be removed apt-get immediately aborts without " "prompting. Configuration Item: <literal>APT::Get::Remove</literal>." @@ -1504,7 +1726,7 @@ msgstr "" "é …ç›®: <literal>APT::Get::Remove</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:489 +#: apt-get.8.xml:500 msgid "" "If the command is either <literal>install</literal> or <literal>remove</" "literal>, then this option acts like running the <literal>autoremove</" @@ -1517,7 +1739,7 @@ msgstr "" "<literal>APT::Get::AutomaticRemove</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:496 +#: apt-get.8.xml:507 msgid "" "Only has meaning for the <literal>source</literal> and <literal>build-dep</" "literal> commands. Indicates that the given source names are not to be " @@ -1535,7 +1757,7 @@ msgstr "" "literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:507 +#: apt-get.8.xml:518 msgid "" "Download only the diff, dsc, or tar file of a source archive. Configuration " "Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</" @@ -1546,7 +1768,7 @@ msgstr "" "<literal>APT::Get::Dsc-Only</literal>, <literal>APT::Get::Tar-Only</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:513 +#: apt-get.8.xml:524 msgid "" "Only process architecture-dependent build-dependencies. Configuration Item: " "<literal>APT::Get::Arch-Only</literal>." @@ -1555,7 +1777,7 @@ msgstr "" "<literal>APT::Get::Arch-Only</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:518 +#: apt-get.8.xml:529 msgid "" "Ignore if packages can't be authenticated and don't prompt about it. This " "is useful for tools like pbuilder. Configuration Item: <literal>APT::Get::" @@ -1566,7 +1788,7 @@ msgstr "" "literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:524 +#: apt-get.8.xml:535 msgid "" "Show user friendly progress information in the terminal window when packages " "are installed, upgraded or removed. For a machine parsable version of this " @@ -1576,22 +1798,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:537 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 -#: apt.conf.5.xml:1200 apt_preferences.5.xml:700 +#: apt-get.8.xml:548 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 +#: apt.conf.5.xml:1221 apt_preferences.5.xml:700 msgid "Files" msgstr "ファイル" -#. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:547 apt-cache.8.xml:352 apt-key.8.xml:197 apt-mark.8.xml:133 -#: apt-secure.8.xml:193 apt-cdrom.8.xml:154 apt-config.8.xml:111 -#: apt.conf.5.xml:1206 apt_preferences.5.xml:707 sources.list.5.xml:280 -#: apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 -#: apt-ftparchive.1.xml:609 -msgid "See Also" -msgstr "é–¢é€£é …ç›®" - #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:548 +#: apt-get.8.xml:559 #, fuzzy #| msgid "" #| "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " @@ -1606,15 +1819,8 @@ msgstr "" "&apt-config;, &apt-secure;, &guidesdir; ã«ã‚ã‚‹ APT ユーザガイド, &apt-" "preferences;, APT Howto" -#. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:553 apt-cache.8.xml:357 apt-mark.8.xml:137 -#: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76 -#: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613 -msgid "Diagnostics" -msgstr "診æ–メッセージ" - #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:554 +#: apt-get.8.xml:565 msgid "" "<command>apt-get</command> returns zero on normal operation, decimal 100 on " "error." @@ -3387,7 +3593,16 @@ msgstr "" "åŠ ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:181 +#: apt.conf.5.xml:182 +msgid "" +"List of all build profiles enabled for build-dependency resolution, without " +"the \"<literal>profile.</literal>\" namespace prefix. By default this list " +"is empty. The <envar>DEB_BUILD_PROFILES</envar> as used by &dpkg-" +"buildpackage; overrides the list notation." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:190 msgid "" "Default release to install packages from if more than one version is " "available. Contains release name, codename or release version. Examples: " @@ -3400,7 +3615,7 @@ msgstr "" "'4.0', '5.0*' ã¨ãªã‚Šã¾ã™ã€‚&apt-preferences; ã‚‚å‚ç…§ã—ã¦ãã ã•ã„。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:187 +#: apt.conf.5.xml:196 msgid "" "Ignore held packages; this global option causes the problem resolver to " "ignore held packages in its decision making." @@ -3409,7 +3624,7 @@ msgstr "" "パッケージを無視ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:192 +#: apt.conf.5.xml:201 msgid "" "Defaults to on. When turned on the autoclean feature will remove any " "packages which can no longer be downloaded from the cache. If turned off " @@ -3423,7 +3638,7 @@ msgstr "" "注æ„ã—ã¦ãã ã•ã„。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:200 +#: apt.conf.5.xml:209 msgid "" "Defaults to on, which will cause APT to install essential and important " "packages as soon as possible in an install/upgrade operation, in order to " @@ -3447,7 +3662,7 @@ msgstr "" "ãªã‚Šã€A ã¸ã®ä¾å˜é–¢ä¿‚ã¯ã€ã‚‚ã†æº€ãŸã›ã¾ã›ã‚“。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:212 +#: apt.conf.5.xml:221 msgid "" "The immediate configuration marker is also applied in the potentially " "problematic case of circular dependencies, since a dependency with the " @@ -3472,7 +3687,7 @@ msgstr "" "è¿°ã®ã‚·ãƒŠãƒªã‚ªã‚’解決ã™ã‚‹æ–¹æ³•ã®ã€1ã¤ã«ã—ã‹ã™ãŽãªã„ã®ã§ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:225 +#: apt.conf.5.xml:234 msgid "" "Before a big operation like <literal>dist-upgrade</literal> is run with this " "option disabled you should try to explicitly <literal>install</literal> the " @@ -3488,7 +3703,7 @@ msgstr "" "ã‚‚å ±å‘Šã—ã¦ã„ãŸã ããŸã„ã§ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:236 +#: apt.conf.5.xml:245 msgid "" "Never enable this option unless you <emphasis>really</emphasis> know what " "you are doing. It permits APT to temporarily remove an essential package to " @@ -3509,7 +3724,7 @@ msgstr "" "ãれらãŒä¾å˜ã—ã¦ã„るパッケージ以外ã®ä¸å¯æ¬ パッケージã§å‹•作ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:248 +#: apt.conf.5.xml:257 msgid "" "APT uses since version 0.7.26 a resizable memory mapped cache file to store " "the available information. <literal>Cache-Start</literal> acts as a hint of " @@ -3543,12 +3758,12 @@ msgstr "" "ã®è‡ªå‹•å¢—åŠ ã‚’ç„¡åŠ¹ã«ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:264 +#: apt.conf.5.xml:273 msgid "Defines which packages are considered essential build dependencies." msgstr "構築ä¾å˜é–¢ä¿‚ã§ä¸å¯æ¬ ãªãƒ‘ッケージを定義ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:268 +#: apt.conf.5.xml:277 msgid "" "The Get subsection controls the &apt-get; tool; please see its documentation " "for more information about the options here." @@ -3557,7 +3772,7 @@ msgstr "" "&apt-get; ã®æ–‡æ›¸ã‚’å‚ç…§ã—ã¦ãã ã•ã„。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:273 +#: apt.conf.5.xml:282 msgid "" "The Cache subsection controls the &apt-cache; tool; please see its " "documentation for more information about the options here." @@ -3566,7 +3781,7 @@ msgstr "" "㯠&apt-cache; ã®æ–‡æ›¸ã‚’å‚ç…§ã—ã¦ãã ã•ã„。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:278 +#: apt.conf.5.xml:287 msgid "" "The CDROM subsection controls the &apt-cdrom; tool; please see its " "documentation for more information about the options here." @@ -3575,12 +3790,12 @@ msgstr "" "㯠&apt-cdrom; ã®æ–‡æ›¸ã‚’å‚ç…§ã—ã¦ãã ã•ã„。" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:284 +#: apt.conf.5.xml:293 msgid "The Acquire Group" msgstr "Acquire グループ" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:285 +#: apt.conf.5.xml:294 msgid "" "The <literal>Acquire</literal> group of options controls the download of " "packages as well as the various \"acquire methods\" responsible for the " @@ -3591,7 +3806,7 @@ msgstr "" "(&sources-list; ã‚‚å‚ç…§)。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:292 +#: apt.conf.5.xml:301 msgid "" "Security related option defaulting to true, as giving a Release file's " "validation an expiration date prevents replay attacks over a long timescale, " @@ -3611,7 +3826,7 @@ msgstr "" "下㮠<literal>Max-ValidTime</literal> オプションを使用ã§ãã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:305 +#: apt.conf.5.xml:314 msgid "" "Maximum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -3629,7 +3844,7 @@ msgstr "" "固有ã®è¨å®šã‚’作æˆã§ãã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:317 +#: apt.conf.5.xml:326 msgid "" "Minimum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -3647,7 +3862,7 @@ msgstr "" "定を作æˆã§ãã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:329 +#: apt.conf.5.xml:338 msgid "" "Try to download deltas called <literal>PDiffs</literal> for indexes (like " "<filename>Packages</filename> files) instead of downloading whole ones. True " @@ -3658,7 +3873,7 @@ msgstr "" "ã™ã€‚デフォルトã§ã¯ True ã§ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:332 +#: apt.conf.5.xml:341 msgid "" "Two sub-options to limit the use of PDiffs are also available: " "<literal>FileLimit</literal> can be used to specify a maximum number of " @@ -3674,7 +3889,7 @@ msgstr "" "ã‚‚ã€ãƒ‘ッãƒã‚’ダウンãƒãƒ¼ãƒ‰ã™ã‚‹ä»£ã‚りã«ã€å®Œå…¨ãªãƒ•ァイルをダウンãƒãƒ¼ãƒ‰ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:342 +#: apt.conf.5.xml:351 msgid "" "Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</" "literal> or <literal>access</literal> which determines how APT parallelizes " @@ -3688,7 +3903,7 @@ msgstr "" "<literal>access</literal> ã¯ã€URI タイプã”ã¨ã« 1 接続を開ãã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:350 +#: apt.conf.5.xml:359 msgid "" "Number of retries to perform. If this is non-zero APT will retry failed " "files the given number of times." @@ -3697,7 +3912,7 @@ msgstr "" "ãˆã‚‰ã‚ŒãŸå›žæ•°ã ã‘リトライを行ã„ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:355 +#: apt.conf.5.xml:364 msgid "" "Use symlinks for source archives. If set to true then source archives will " "be symlinked when possible instead of copying. True is the default." @@ -3707,7 +3922,7 @@ msgstr "" "ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:360 +#: apt.conf.5.xml:369 msgid "" "<literal>http::Proxy</literal> sets the default proxy to use for HTTP URIs. " "It is in the standard form of <literal>http://[[user][:pass]@]host[:port]/</" @@ -3725,7 +3940,7 @@ msgstr "" "ãªã„ã¨ã€ç’°å¢ƒå¤‰æ•° <envar>http_proxy</envar> を使用ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:368 +#: apt.conf.5.xml:377 msgid "" "Three settings are provided for cache control with HTTP/1.1 compliant proxy " "caches. <literal>No-Cache</literal> tells the proxy not to use its cached " @@ -3744,7 +3959,7 @@ msgstr "" "ãŒæ±šã‚Œã‚‹ã®ã‚’防ã’ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:378 apt.conf.5.xml:466 +#: apt.conf.5.xml:387 apt.conf.5.xml:475 msgid "" "The option <literal>timeout</literal> sets the timeout timer used by the " "method; this value applies to the connection as well as the data timeout." @@ -3754,7 +3969,7 @@ msgstr "" "ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:381 +#: apt.conf.5.xml:390 msgid "" "The setting <literal>Acquire::http::Pipeline-Depth</literal> can be used to " "enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e." @@ -3772,7 +3987,7 @@ msgstr "" "フォルト値㯠0 (= 無効) ã§ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:388 +#: apt.conf.5.xml:397 msgid "" "<literal>Acquire::http::AllowRedirect</literal> controls whether APT will " "follow redirects, which is enabled by default." @@ -3781,7 +3996,7 @@ msgstr "" "ã‹ã©ã†ã‹ã‚’制御ã—ã¾ã™ã€‚デフォルトã§ã¯æœ‰åйã§ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:391 +#: apt.conf.5.xml:400 #, fuzzy #| msgid "" #| "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</" @@ -3802,7 +4017,7 @@ msgstr "" "ãƒãƒ¼ãƒ‰ã—ãªããªã‚‹ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„)。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:398 +#: apt.conf.5.xml:407 msgid "" "<literal>Acquire::http::User-Agent</literal> can be used to set a different " "User-Agent for the http download method as some proxies allow access for " @@ -3813,7 +4028,7 @@ msgstr "" "ãƒãƒ¼ãƒ‰ã™ã‚‹ãŸã‚ã®ã€ç•°ãªã‚‹ User-Agent ã‚’è¨å®šã§ãã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:402 +#: apt.conf.5.xml:411 msgid "" "<literal>Acquire::http::Proxy-Auto-Detect</literal> can be used to specify " "an external command to discover the http proxy to use. Apt expects the " @@ -3827,7 +4042,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:420 +#: apt.conf.5.xml:429 msgid "" "The <literal>Cache-control</literal>, <literal>Timeout</literal>, " "<literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> and " @@ -3844,7 +4059,7 @@ msgstr "" "ã—ã¦ã„ã¾ã›ã‚“。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:428 +#: apt.conf.5.xml:437 msgid "" "<literal>CaInfo</literal> suboption specifies place of file that holds info " "about trusted certificates. <literal><host>::CaInfo</literal> is the " @@ -3882,7 +4097,7 @@ msgstr "" "ã”ã¨ã®ã‚ªãƒ—ションã§ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:449 +#: apt.conf.5.xml:458 msgid "" "<literal>ftp::Proxy</literal> sets the default proxy to use for FTP URIs. " "It is in the standard form of <literal>ftp://[[user][:pass]@]host[:port]/</" @@ -3914,7 +4129,7 @@ msgstr "" "literal>, <literal>$(SITE_PORT)</literal> ã§ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:469 +#: apt.conf.5.xml:478 msgid "" "Several settings are provided to control passive mode. Generally it is safe " "to leave passive mode on; it works in nearly every environment. However, " @@ -3929,7 +4144,7 @@ msgstr "" "定例ã¯ã‚µãƒ³ãƒ—ルè¨å®šãƒ•ァイルをå‚ç…§ã—ã¦ãã ã•ã„)。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:476 +#: apt.conf.5.xml:485 msgid "" "It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</" "envar> environment variable to an HTTP URL - see the discussion of the http " @@ -3942,7 +4157,7 @@ msgstr "" "FTP over HTTP を使用ã™ã‚‹ã®ã¯æŽ¨å¥¨ã—ã¾ã›ã‚“。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:481 +#: apt.conf.5.xml:490 msgid "" "The setting <literal>ForceExtended</literal> controls the use of RFC2428 " "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is " @@ -3958,13 +4173,13 @@ msgstr "" "ã„ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:495 +#: apt.conf.5.xml:504 #, no-wrap msgid "/cdrom/::Mount \"foo\";" msgstr "/cdrom/::Mount \"foo\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:490 +#: apt.conf.5.xml:499 msgid "" "For URIs using the <literal>cdrom</literal> method, the only configurable " "option is the mount point, <literal>cdrom::Mount</literal>, which must be " @@ -3985,7 +4200,7 @@ msgstr "" "マンド㯠UMount ã§æŒ‡å®šã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:503 +#: apt.conf.5.xml:512 msgid "" "For GPGV URIs the only configurable option is <literal>gpgv::Options</" "literal>, which passes additional parameters to gpgv." @@ -3994,13 +4209,13 @@ msgstr "" "ã‚‹ã€<literal>gpgv::Options</literal> ã§ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:514 +#: apt.conf.5.xml:523 #, no-wrap msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";" msgstr "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:509 +#: apt.conf.5.xml:518 msgid "" "List of compression types which are understood by the acquire methods. " "Files like <filename>Packages</filename> can be available in various " @@ -4018,19 +4233,19 @@ msgstr "" "ã™ã€‚æ§‹æ–‡ã¯ä»¥ä¸‹ã®ã‚ˆã†ã«ãªã‚Šã¾ã™ã€‚<placeholder type=\"synopsis\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:519 +#: apt.conf.5.xml:528 #, no-wrap msgid "Acquire::CompressionTypes::Order:: \"gz\";" msgstr "Acquire::CompressionTypes::Order:: \"gz\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:522 +#: apt.conf.5.xml:531 #, no-wrap msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:515 +#: apt.conf.5.xml:524 msgid "" "Also, the <literal>Order</literal> subgroup can be used to define in which " "order the acquire system will try to download the compressed files. The " @@ -4059,13 +4274,13 @@ msgstr "" "<literal>bz2</literal> ã¯è‡ªå‹•çš„ã«è¿½åŠ ã•れるãŸã‚ã€æ˜Žç¤ºã™ã‚‹å¿…è¦ã¯ã‚りã¾ã›ã‚“。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:529 +#: apt.conf.5.xml:538 #, no-wrap msgid "Dir::Bin::bzip2 \"/bin/bzip2\";" msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:524 +#: apt.conf.5.xml:533 msgid "" "Note that the <literal>Dir::Bin::<replaceable>Methodname</replaceable></" "literal> will be checked at run time. If this option has been set, the " @@ -4089,7 +4304,7 @@ msgstr "" "ã®ã¿å®šç¾©ã•れã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:534 +#: apt.conf.5.xml:543 msgid "" "The special type <literal>uncompressed</literal> can be used to give " "uncompressed files a preference, but note that most archives don't provide " @@ -4100,7 +4315,7 @@ msgstr "" "ã‚“ã©ãƒãƒ¼ã‚«ãƒ«ãƒŸãƒ©ãƒ¼ã§ã®ã¿æœ‰åйã«ãªã‚‹ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:541 +#: apt.conf.5.xml:550 msgid "" "When downloading <literal>gzip</literal> compressed indexes (Packages, " "Sources, or Translations), keep them gzip compressed locally instead of " @@ -4113,7 +4328,7 @@ msgstr "" "ã™ã‚‹éš›ã«ã€CPU ã®èƒ½åŠ›ã‚’ä½™è¨ˆã«æ¶ˆè²»ã—ã¾ã™ã€‚デフォルトã§ã¯ false ã§ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:549 +#: apt.conf.5.xml:558 msgid "" "The Languages subsection controls which <filename>Translation</filename> " "files are downloaded and in which order APT tries to display the description-" @@ -4131,13 +4346,13 @@ msgstr "" "æ„ã—ã¦ãã ã•ã„。長ã„言語コードã¯ç‰¹ã«è¦‹ã‹ã‘ã¾ã›ã‚“。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><programlisting> -#: apt.conf.5.xml:566 +#: apt.conf.5.xml:575 #, no-wrap msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" msgstr "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:554 +#: apt.conf.5.xml:563 msgid "" "The default list includes \"environment\" and \"en\". " "\"<literal>environment</literal>\" has a special meaning here: it will be " @@ -4174,7 +4389,7 @@ msgstr "" "ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„。<placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:567 +#: apt.conf.5.xml:576 msgid "" "Note: To prevent problems resulting from APT being executed in different " "environments (e.g. by different users or by other programs) all Translation " @@ -4187,22 +4402,22 @@ msgstr "" "後) ã«è¿½åŠ ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:576 +#: apt.conf.5.xml:585 msgid "When downloading, force to use only the IPv4 protocol." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:582 +#: apt.conf.5.xml:591 msgid "When downloading, force to use only the IPv6 protocol." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:589 +#: apt.conf.5.xml:598 msgid "Directories" msgstr "ディレクトリ" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:591 +#: apt.conf.5.xml:600 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@ -4221,7 +4436,7 @@ msgstr "" "サブアイテムã™ã¹ã¦ã«ã€å‰ã«ä»˜åŠ ã™ã‚‹ãƒ‡ãƒ•ォルトディレクトリをå«ã‚“ã§ã„ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:598 +#: apt.conf.5.xml:607 msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@ -4242,7 +4457,7 @@ msgstr "" "様ã€<literal>Dir::Cache</literal> ã¯ãƒ‡ãƒ•ォルトディレクトリをå«ã‚“ã§ã„ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:607 +#: apt.conf.5.xml:616 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -4256,7 +4471,7 @@ msgstr "" "ファイルを指定ã•れãŸå ´åˆã®ã¿ã€ã“ã®è¨å®šã®åŠ¹æžœãŒã‚りã¾ã™)" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:613 +#: apt.conf.5.xml:622 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -4267,7 +4482,7 @@ msgstr "" "ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:617 +#: apt.conf.5.xml:626 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@ -4284,7 +4499,7 @@ msgstr "" "プãƒã‚°ãƒ©ãƒ ã®å ´æ‰€ã‚’指定ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:625 +#: apt.conf.5.xml:634 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -4304,7 +4519,7 @@ msgstr "" "<filename>/tmp/staging/var/lib/dpkg/status</filename> ã‹ã‚‰æŽ¢ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:638 +#: apt.conf.5.xml:647 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@ -4320,12 +4535,12 @@ msgstr "" "フォルト値を見れã°ã‚ã‹ã‚‹é€šã‚Šã€ã“ã®ãƒ‘ターンã«ã¯æ£è¦è¡¨ç¾ã‚’使用ã§ãã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:647 +#: apt.conf.5.xml:656 msgid "APT in DSelect" msgstr "DSelect ã§ã® APT" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:649 +#: apt.conf.5.xml:658 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@ -4336,7 +4551,7 @@ msgstr "" "ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:654 +#: apt.conf.5.xml:663 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@ -4357,7 +4572,7 @@ msgstr "" "パッケージをダウンãƒãƒ¼ãƒ‰ã™ã‚‹ç›´å‰ã«è¡Œã„ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:668 +#: apt.conf.5.xml:677 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." @@ -4366,7 +4581,7 @@ msgstr "" "ã•れã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:673 +#: apt.conf.5.xml:682 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." @@ -4375,7 +4590,7 @@ msgstr "" "ã•れã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:678 +#: apt.conf.5.xml:687 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." @@ -4384,12 +4599,12 @@ msgstr "" "ã—ã¾ã™ã€‚デフォルトã¯ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ãŸå ´åˆã®ã¿ã§ã™ã€‚" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:684 +#: apt.conf.5.xml:693 msgid "How APT calls &dpkg;" msgstr "APT ㌠&dpkg; ã‚’å‘¼ã¶æ–¹æ³•" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:685 +#: apt.conf.5.xml:694 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." @@ -4398,7 +4613,7 @@ msgstr "" "<literal>DPkg</literal> セクションã«ã‚りã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:690 +#: apt.conf.5.xml:699 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -4408,7 +4623,7 @@ msgstr "" "ãªã‘れã°ãªã‚Šã¾ã›ã‚“。ã¾ãŸã€å„リストã¯å˜ä¸€ã®å¼•æ•°ã¨ã—㦠&dpkg; ã«æ¸¡ã•れã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:696 +#: apt.conf.5.xml:705 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4420,7 +4635,7 @@ msgstr "" "bin/sh</filename> を通ã—ã¦å‘¼ã³å‡ºã•れã€ä½•ã‹å•題ãŒã‚れ㰠APT ãŒç•°å¸¸çµ‚了ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:703 +#: apt.conf.5.xml:712 #, fuzzy #| msgid "" #| "This is a list of shell commands to run before invoking &dpkg;. Like " @@ -4443,7 +4658,7 @@ msgstr "" "ãƒžãƒ³ãƒ‰ã®æ¨™æº–入力ã«é€ã‚Šã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:710 +#: apt.conf.5.xml:719 #, fuzzy #| msgid "" #| "Version 2 of this protocol dumps more information, including the protocol " @@ -4464,7 +4679,7 @@ msgstr "" "Install-Pkgs</literal> ã§ä¸Žãˆã‚‰ã‚Œã‚‹ã‚³ãƒžãƒ³ãƒ‰ã§ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:715 +#: apt.conf.5.xml:724 msgid "" "The version of the protocol to be used for the command " "<literal><replaceable>cmd</replaceable></literal> can be chosen by setting " @@ -4475,7 +4690,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:722 +#: apt.conf.5.xml:731 msgid "" "The file descriptor to be used to send the information can be requested with " "<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</" @@ -4486,7 +4701,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:732 +#: apt.conf.5.xml:741 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." @@ -4495,7 +4710,7 @@ msgstr "" "<filename>/</filename> ã§ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:737 +#: apt.conf.5.xml:746 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." @@ -4504,12 +4719,12 @@ msgstr "" "ã¾ã™ã€‚デフォルトã§ã¯ç½²åを無効ã«ã—ã€å…¨ãƒã‚¤ãƒŠãƒªã‚’生æˆã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:742 +#: apt.conf.5.xml:751 msgid "dpkg trigger usage (and related options)" msgstr "dpkg トリガã®ä½¿ã„æ–¹ (ãŠã‚ˆã³é–¢é€£ã‚ªãƒ—ション)" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:743 +#: apt.conf.5.xml:752 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@ -4533,7 +4748,7 @@ msgstr "" "(ã‚‚ã—ãã¯ãれ以上) ã®æ™‚é–“ 100% ã®ã¾ã¾ã¨ãªã‚Šã€é€²æ—レãƒãƒ¼ãƒˆã‚’壊ã—ã¦ã—ã¾ã„ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:758 +#: apt.conf.5.xml:767 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -4547,7 +4762,7 @@ msgstr "" "DPkg::TriggersPending \"true\";" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:752 +#: apt.conf.5.xml:761 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -4570,7 +4785,7 @@ msgstr "" "\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:765 +#: apt.conf.5.xml:774 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -4590,7 +4805,7 @@ msgstr "" "在 APT ã¯ã€ã“ã®ãƒ•ラグをã€å±•開呼ã³å‡ºã—や削除呼ã³å‡ºã—ã«ã‚‚è¿½åŠ ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:773 +#: apt.conf.5.xml:782 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@ -4617,7 +4832,7 @@ msgstr "" "能性ãŒã‚ã‚‹ã‹ã‚‰ã§ã™ã€‚" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:788 +#: apt.conf.5.xml:797 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@ -4634,7 +4849,7 @@ msgstr "" "ã§ã¯ã€æœ€å¾Œä»¥å¤–ã®ã™ã¹ã¦ã®å®Ÿè¡Œã§ã€ç„¡åйã«ã§ãã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:795 +#: apt.conf.5.xml:804 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@ -4649,7 +4864,7 @@ msgstr "" "ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:808 +#: apt.conf.5.xml:817 #, no-wrap msgid "" "OrderList::Score {\n" @@ -4667,7 +4882,7 @@ msgstr "" "};" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:801 +#: apt.conf.5.xml:810 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@ -4690,12 +4905,12 @@ msgstr "" "\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:821 +#: apt.conf.5.xml:830 msgid "Periodic and Archives options" msgstr "Periodic オプション㨠Archives オプション" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:822 +#: apt.conf.5.xml:831 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@ -4708,12 +4923,12 @@ msgstr "" "トã¯ã€ã“ã®ã‚¹ã‚¯ãƒªãƒ—トã®å…ˆé ã‚’å‚ç…§ã—ã¦ãã ã•ã„。" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:830 +#: apt.conf.5.xml:839 msgid "Debug options" msgstr "デãƒãƒƒã‚°ã‚ªãƒ—ション" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:832 +#: apt.conf.5.xml:841 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -4729,7 +4944,7 @@ msgstr "" "ã®ã‚ªãƒ—ションã¯èˆˆå‘³ãŒãªã„ã§ã—ょã†ãŒã€ä»¥ä¸‹ã®ã‚‚ã®ã¯èˆˆå‘³ã‚’引ãã‹ã‚‚ã—れã¾ã›ã‚“。" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:843 +#: apt.conf.5.xml:852 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@ -4740,7 +4955,7 @@ msgstr "" "ã«ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:851 +#: apt.conf.5.xml:860 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@ -4751,7 +4966,7 @@ msgstr "" "literal>) を行ã†å ´åˆã«ä½¿ç”¨ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:860 +#: apt.conf.5.xml:869 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -4763,7 +4978,7 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:868 +#: apt.conf.5.xml:877 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." @@ -4772,34 +4987,34 @@ msgstr "" "ãªã„よã†ã«ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:878 +#: apt.conf.5.xml:887 msgid "A full list of debugging options to apt follows." msgstr "以下㯠apt ã«å¯¾ã™ã‚‹ãƒ‡ãƒãƒƒã‚°ã‚ªãƒ—ションã®ã™ã¹ã¦ã§ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:887 +#: apt.conf.5.xml:896 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" "<literal>cdrom://</literal> ソースã¸ã®ã‚¢ã‚¯ã‚»ã‚¹ã«é–¢ã™ã‚‹æƒ…å ±ã‚’å‡ºåŠ›ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:898 +#: apt.conf.5.xml:907 msgid "Print information related to downloading packages using FTP." msgstr "FTP を用ã„ãŸãƒ‘ッケージã®ãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ã«é–¢ã™ã‚‹æƒ…å ±ã‚’å‡ºåŠ›ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:909 +#: apt.conf.5.xml:918 msgid "Print information related to downloading packages using HTTP." msgstr "HTTP を用ã„ãŸãƒ‘ッケージã®ãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ã«é–¢ã™ã‚‹æƒ…å ±ã‚’å‡ºåŠ›ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:920 +#: apt.conf.5.xml:929 msgid "Print information related to downloading packages using HTTPS." msgstr "HTTPS を用ã„ãŸãƒ‘ッケージã®ãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ã«é–¢ã™ã‚‹æƒ…å ±ã‚’å‡ºåŠ›ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:931 +#: apt.conf.5.xml:940 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." @@ -4807,7 +5022,7 @@ msgstr "" "<literal>gpg</literal> を用ã„ãŸæš—å·ç½²åã®æ¤œè¨¼ã«é–¢ã™ã‚‹æƒ…å ±ã‚’å‡ºåŠ›ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:942 +#: apt.conf.5.xml:951 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." @@ -4816,12 +5031,12 @@ msgstr "" "ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:952 +#: apt.conf.5.xml:961 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "&apt-get; ã§ã®æ§‹ç¯‰ä¾å˜é–¢ä¿‚解決ã®ãƒ—ãƒã‚»ã‚¹ã‚’説明ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:962 +#: apt.conf.5.xml:971 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." @@ -4829,7 +5044,7 @@ msgstr "" "<literal>apt</literal> ライブラリãŒç”Ÿæˆã—ãŸã€æš—å·åŒ–ãƒãƒƒã‚·ãƒ¥ã‚’出力ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:972 +#: apt.conf.5.xml:981 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -4839,7 +5054,7 @@ msgstr "" "システムã«ã‚る使用済・未使用ブãƒãƒƒã‚¯ã®æ•°ã‹ã‚‰ã®æƒ…å ±ã‚’å«ã‚ãªã„よã†ã«ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:983 +#: apt.conf.5.xml:992 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." @@ -4848,13 +5063,13 @@ msgstr "" "<quote><literal>apt-get update</literal></quote> を実行ã§ãるよã†ã«ãªã‚Šã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:995 +#: apt.conf.5.xml:1004 msgid "Log when items are added to or removed from the global download queue." msgstr "" "ã‚°ãƒãƒ¼ãƒãƒ«ãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ã‚ューã«å¯¾ã™ã‚‹é …ç›®ã®è¿½åŠ ãƒ»å‰Šé™¤ã®éš›ã«ãƒã‚°ã‚’出力ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1005 +#: apt.conf.5.xml:1014 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." @@ -4863,7 +5078,7 @@ msgstr "" "ジやエラーを出力ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1015 +#: apt.conf.5.xml:1024 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." @@ -4872,7 +5087,7 @@ msgstr "" "ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1027 +#: apt.conf.5.xml:1036 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." @@ -4881,14 +5096,14 @@ msgstr "" "リストã¸ã®ãƒ‘ッãƒé©ç”¨ã«é–¢ã™ã‚‹æƒ…å ±ã‚’å‡ºåŠ›ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1038 +#: apt.conf.5.xml:1047 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" "実際ã®ãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ã‚’行ã†éš›ã®ã€ã‚µãƒ–プãƒã‚»ã‚¹ã¨ã®ã‚„りã¨ã‚Šã‚’ãƒã‚°ã«å‡ºåŠ›ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1049 +#: apt.conf.5.xml:1058 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." @@ -4897,7 +5112,7 @@ msgstr "" "ã«å‡ºåŠ›ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1059 +#: apt.conf.5.xml:1068 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@ -4912,7 +5127,7 @@ msgstr "" "è·¯ã«å¯¾å¿œã—ã¦ã„ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1073 +#: apt.conf.5.xml:1082 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@ -4941,7 +5156,7 @@ msgstr "" "ã¾ã™ã€‚<literal>section</literal> ã¯ãƒ‘ッケージãŒç¾ã‚Œã‚‹ã‚»ã‚¯ã‚·ãƒ§ãƒ³åã§ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1094 +#: apt.conf.5.xml:1103 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." @@ -4950,7 +5165,7 @@ msgstr "" "切られã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1105 +#: apt.conf.5.xml:1114 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." @@ -4959,7 +5174,7 @@ msgstr "" "ã‚’è§£æžä¸ã«ç™ºç”Ÿã—ãŸã‚¨ãƒ©ãƒ¼ã‚’出力ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1116 +#: apt.conf.5.xml:1125 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." @@ -4968,18 +5183,18 @@ msgstr "" "ã®ãƒˆãƒ¬ãƒ¼ã‚¹ã‚’生æˆã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1128 +#: apt.conf.5.xml:1137 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "&dpkg; を呼ã³å‡ºã™éš›ã«ã€å®Ÿè¡Œæ‰‹é †ã‚’追跡ã—ãŸçŠ¶æ…‹ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’å‡ºåŠ›ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1139 +#: apt.conf.5.xml:1148 msgid "Output the priority of each package list on startup." msgstr "起動時ã®å„パッケージã®å„ªå…ˆåº¦ã‚’表示ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1149 +#: apt.conf.5.xml:1158 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." @@ -4988,7 +5203,7 @@ msgstr "" "ã—ãŸå ´åˆã«ã®ã¿ã€é©ç”¨ã•れã¾ã™)。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1160 +#: apt.conf.5.xml:1169 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -4999,7 +5214,7 @@ msgstr "" "説明ã—ãŸã‚‚ã®ã¨åŒã˜ã§ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1172 +#: apt.conf.5.xml:1181 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." @@ -5007,14 +5222,22 @@ msgstr "" "<filename>/etc/apt/vendors.list</filename> ã‹ã‚‰èªã¿è¾¼ã‚“ã ã€ãƒ™ãƒ³ãƒ€ã®æƒ…å ±ã‚’å‡ºåŠ›" "ã—ã¾ã™ã€‚" +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:1191 +msgid "" +"Display the external commands that are called by apt hooks. This includes e." +"g. the config options <literal>DPkg::{Pre,Post}-Invoke</literal> or " +"<literal>APT::Update::{Pre,Post}-Invoke</literal>." +msgstr "" + #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:1194 apt_preferences.5.xml:547 sources.list.5.xml:239 +#: apt.conf.5.xml:1215 apt_preferences.5.xml:547 sources.list.5.xml:239 #: apt-ftparchive.1.xml:598 msgid "Examples" msgstr "サンプル" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1195 +#: apt.conf.5.xml:1216 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -5024,7 +5247,7 @@ msgstr "" #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1207 +#: apt.conf.5.xml:1228 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." @@ -6971,14 +7194,14 @@ msgid "" "template-file and config-script are written to the temporary directory " "specified by the <option>-t</option> or <option>--tempdir</option> " "(<literal>APT::ExtractTemplates::TempDir</literal>) directory, with " -"filenames of the form <filename>package.template.XXXX</filename> and " -"<filename>package.config.XXXX</filename>" +"filenames of the form <filename>package.template.XXXXXX</filename> and " +"<filename>package.config.XXXXXX</filename>" msgstr "" "テンプレートファイルやã€è¨å®šã‚¹ã‚¯ãƒªãƒ—トã¯ã€<option>-t</option> ã‚„ <option>--" "tempdir</option> ã§æŒ‡å®šã—ãŸä¸€æ™‚ディレクトリ (<literal>APT::ExtractTemplates::" "TempDir</literal>) ã«æ›¸ã出ã•れã€ãƒ•ァイルåã¯ã€<filename>package.template." -"XXXX</filename> ã‚„ <filename>package.config.XXXX</filename> ã¨ã„ã£ãŸå½¢ã«ãªã‚Š" -"ã¾ã™ã€‚" +"XXXXXX</filename> ã‚„ <filename>package.config.XXXXXX</filename> ã¨ã„ã£ãŸå½¢ã«" +"ãªã‚Šã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-extracttemplates.1.xml:60 @@ -7971,125 +8194,6 @@ msgstr "" "<command>apt-ftparchive</command> ã¯æ£å¸¸çµ‚了時㫠0 ã‚’è¿”ã—ã¾ã™ã€‚エラー時ã«ã¯å" "進㮠100 ã‚’è¿”ã—ã¾ã™ã€‚" -#. type: TH -#: apt.8:17 -#, no-wrap -msgid "apt" -msgstr "apt" - -#. type: TH -#: apt.8:17 -#, no-wrap -msgid "16 June 1998" -msgstr "16 June 1998" - -#. type: TH -#: apt.8:17 -#, no-wrap -msgid "Debian" -msgstr "Debian" - -#. type: SH -#: apt.8:18 -#, no-wrap -msgid "NAME" -msgstr "åå‰" - -#. type: Plain text -#: apt.8:20 -msgid "apt - Advanced Package Tool" -msgstr "apt - 高度パッケージツール" - -#. type: SH -#: apt.8:20 -#, no-wrap -msgid "SYNOPSIS" -msgstr "書å¼" - -#. type: Plain text -#: apt.8:22 -msgid "B<apt>" -msgstr "B<apt>" - -#. type: SH -#: apt.8:22 -#, no-wrap -msgid "DESCRIPTION" -msgstr "説明" - -#. type: Plain text -#: apt.8:31 -msgid "" -"APT is a management system for software packages. For normal day to day " -"package management there are several frontends available, such as " -"B<aptitude>(8) for the command line or B<synaptic>(8) for the X Window " -"System. Some options are only implemented in B<apt-get>(8) though." -msgstr "" -"APT ã¯ã‚½ãƒ•トウェアパッケージã®ç®¡ç†ã‚·ã‚¹ãƒ†ãƒ ã§ã™ã€‚日々ã®ãƒ‘ッケージ管ç†ã®ãŸã‚" -"ã«ã€ã‚³ãƒžãƒ³ãƒ‰ãƒ©ã‚¤ãƒ³ç”¨ã® B<aptitude>(8) ã‚„ã€X Window System 用㮠" -"B<synaptic>(8) ã¨ã„ã£ãŸã€ã„ãã¤ã‹ã®ãƒ•ãƒãƒ³ãƒˆã‚¨ãƒ³ãƒ‰ãŒç”¨æ„ã•れã¦ã„ã¾ã™ã€‚ã„ãã¤ã‹" -"ã®ã‚ªãƒ—ション㯠B<apt-get>(8) ã«ã—ã‹å®Ÿè£…ã•れã¦ã„ã¾ã›ã‚“。" - -#. type: SH -#: apt.8:31 -#, no-wrap -msgid "SEE ALSO" -msgstr "é–¢é€£é …ç›®" - -#. type: Plain text -#: apt.8:38 -msgid "" -"B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " -"B<apt_preferences>(5), B<apt-secure>(8)" -msgstr "" -"B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " -"B<apt_preferences>(5), B<apt-secure>(8)" - -#. type: SH -#: apt.8:38 -#, no-wrap -msgid "DIAGNOSTICS" -msgstr "診æ–メッセージ" - -#. type: Plain text -#: apt.8:40 -msgid "apt returns zero on normal operation, decimal 100 on error." -msgstr "apt ã¯æ£å¸¸çµ‚了時㫠0 ã‚’è¿”ã—ã¾ã™ã€‚エラー時ã«ã¯å進㮠100 ã‚’è¿”ã—ã¾ã™ã€‚" - -#. type: SH -#: apt.8:40 -#, no-wrap -msgid "BUGS" -msgstr "ãƒã‚°" - -#. type: Plain text -#: apt.8:42 -msgid "This manpage isn't even started." -msgstr "ã“ã®ãƒžãƒ‹ãƒ¥ã‚¢ãƒ«ãƒšãƒ¼ã‚¸ã¯ã€å§‹ã¾ã£ã¦ã•ãˆã„ã¾ã›ã‚“。" - -#. type: Plain text -#: apt.8:51 -msgid "" -"See E<lt>http://bugs.debian.org/aptE<gt>. If you wish to report a bug in " -"B<apt>, please see I</usr/share/doc/debian/bug-reporting.txt> or the " -"B<reportbug>(1) command." -msgstr "" -"E<lt>http://bugs.debian.org/aptE<gt> ã‚’ã”覧ãã ã•ã„。B<apt> ã®ãƒã‚°ã‚’å ±å‘Šã™ã‚‹" -"å ´åˆã¯ã€I</usr/share/doc/debian/bug-reporting.txt> ã‚„ B<reportbug>(1) コマン" -"ドをã”覧ãã ã•ã„。" - -#. type: SH -#: apt.8:51 -#, no-wrap -msgid "AUTHOR" -msgstr "著者" - -#. type: Plain text -#: apt.8:52 -msgid "apt was written by the APT team E<lt>apt@packages.debian.orgE<gt>." -msgstr "" -"apt 㯠APT ãƒãƒ¼ãƒ E<lt>apt@packages.debian.orgE<gt> ã«ã‚ˆã£ã¦æ›¸ã‹ã‚Œã¾ã—ãŸã€‚" - #. type: <title></title> #: guide.sgml:4 msgid "APT User's Guide" @@ -8336,7 +8440,7 @@ msgstr "" #: guide.sgml:163 msgid "" "<prgn>apt-get</prgn> has several command line options that are detailed in " -"its man page, <manref section=\"8\" name=\"apt-get\">. The most useful " +"its man page, <manref name=\"apt-get\" section=\"8\">. The most useful " "option is <tt>-d</tt> which does not install the fetched files. If the " "system has to download a large number of package it would be undesired to " "start installing them in case something goes wrong. When <tt>-d</tt> is used " @@ -9273,6 +9377,90 @@ msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade" msgid "Which will use the already fetched archives on the disc." msgstr "ã“れã§ã€disc ã«ã‚ã‚‹å–得済ã¿ã®ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–を使用ã™ã‚‹ã‚ˆã†ã«ãªã‚Šã¾ã™ã€‚" +#~ msgid "apt" +#~ msgstr "apt" + +#~ msgid "16 June 1998" +#~ msgstr "16 June 1998" + +#~ msgid "Debian" +#~ msgstr "Debian" + +#~ msgid "NAME" +#~ msgstr "åå‰" + +#~ msgid "apt - Advanced Package Tool" +#~ msgstr "apt - 高度パッケージツール" + +#~ msgid "SYNOPSIS" +#~ msgstr "書å¼" + +#~ msgid "B<apt>" +#~ msgstr "B<apt>" + +#~ msgid "DESCRIPTION" +#~ msgstr "説明" + +#, fuzzy +#~| msgid "" +#~| "APT is a management system for software packages. For normal day to day " +#~| "package management there are several frontends available, such as " +#~| "B<aptitude>(8) for the command line or B<synaptic>(8) for the X Window " +#~| "System. Some options are only implemented in B<apt-get>(8) though." +#~ msgid "" +#~ "For normal day to day package management there are several frontends " +#~ "available, such as B<aptitude>(8) for the command line or " +#~ "B<synaptic>(8) for the X Window System. Some options are only " +#~ "implemented in B<apt-get>(8) though." +#~ msgstr "" +#~ "APT ã¯ã‚½ãƒ•トウェアパッケージã®ç®¡ç†ã‚·ã‚¹ãƒ†ãƒ ã§ã™ã€‚日々ã®ãƒ‘ッケージ管ç†ã®ãŸã‚" +#~ "ã«ã€ã‚³ãƒžãƒ³ãƒ‰ãƒ©ã‚¤ãƒ³ç”¨ã® B<aptitude>(8) ã‚„ã€X Window System 用㮠" +#~ "B<synaptic>(8) ã¨ã„ã£ãŸã€ã„ãã¤ã‹ã®ãƒ•ãƒãƒ³ãƒˆã‚¨ãƒ³ãƒ‰ãŒç”¨æ„ã•れã¦ã„ã¾ã™ã€‚ã„ã" +#~ "ã¤ã‹ã®ã‚ªãƒ—ション㯠B<apt-get>(8) ã«ã—ã‹å®Ÿè£…ã•れã¦ã„ã¾ã›ã‚“。" + +#~ msgid "SEE ALSO" +#~ msgstr "é–¢é€£é …ç›®" + +#, fuzzy +#~| msgid "" +#~| "B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " +#~| "B<apt_preferences>(5), B<apt-secure>(8)" +#~ msgid "" +#~ "B<apt>(8), B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources." +#~ "list>(5), B<apt_preferences>(5), B<apt-secure>(8)" +#~ msgstr "" +#~ "B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " +#~ "B<apt_preferences>(5), B<apt-secure>(8)" + +#~ msgid "DIAGNOSTICS" +#~ msgstr "診æ–メッセージ" + +#~ msgid "apt returns zero on normal operation, decimal 100 on error." +#~ msgstr "" +#~ "apt ã¯æ£å¸¸çµ‚了時㫠0 ã‚’è¿”ã—ã¾ã™ã€‚エラー時ã«ã¯å進㮠100 ã‚’è¿”ã—ã¾ã™ã€‚" + +#~ msgid "BUGS" +#~ msgstr "ãƒã‚°" + +#~ msgid "This manpage isn't even started." +#~ msgstr "ã“ã®ãƒžãƒ‹ãƒ¥ã‚¢ãƒ«ãƒšãƒ¼ã‚¸ã¯ã€å§‹ã¾ã£ã¦ã•ãˆã„ã¾ã›ã‚“。" + +#~ msgid "" +#~ "See E<lt>http://bugs.debian.org/aptE<gt>. If you wish to report a bug in " +#~ "B<apt>, please see I</usr/share/doc/debian/bug-reporting.txt> or the " +#~ "B<reportbug>(1) command." +#~ msgstr "" +#~ "E<lt>http://bugs.debian.org/aptE<gt> ã‚’ã”覧ãã ã•ã„。B<apt> ã®ãƒã‚°ã‚’å ±å‘Šã™" +#~ "ã‚‹å ´åˆã¯ã€I</usr/share/doc/debian/bug-reporting.txt> ã‚„ B<reportbug>(1) コ" +#~ "マンドをã”覧ãã ã•ã„。" + +#~ msgid "AUTHOR" +#~ msgstr "著者" + +#~ msgid "apt was written by the APT team E<lt>apt@packages.debian.orgE<gt>." +#~ msgstr "" +#~ "apt 㯠APT ãƒãƒ¼ãƒ E<lt>apt@packages.debian.orgE<gt> ã«ã‚ˆã£ã¦æ›¸ã‹ã‚Œã¾ã—ãŸã€‚" + #~ msgid "Debian GNU/Linux" #~ msgstr "Debian GNU/Linux" diff --git a/doc/po/pl.po b/doc/po/pl.po index dda23a5d3..d70676ff7 100644 --- a/doc/po/pl.po +++ b/doc/po/pl.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.7.3\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" -"PO-Revision-Date: 2012-07-28 21:59+0200\n" +"POT-Creation-Date: 2014-04-10 09:49+0200\n" +"PO-Revision-Date: 2014-04-01 13:59+0200\n" "Last-Translator: Robert Luberda <robert@debian.org>\n" "Language-Team: Polish <manpages-pl-list@lists.sourceforge.net>\n" "Language: pl\n" @@ -657,34 +657,269 @@ msgstr "" "473041FA --> <!ENTITY synopsis-keyid \"id_klucza\">" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 apt-mark.8.xml:28 -#: apt-secure.8.xml:27 apt-cdrom.8.xml:27 apt-config.8.xml:28 +#: apt.8.xml:25 apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 +#: apt-mark.8.xml:28 apt-secure.8.xml:27 apt-cdrom.8.xml:27 +#: apt-config.8.xml:28 msgid "8" msgstr "8" #. type: Content of: <refentry><refmeta><refmiscinfo> -#: apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 apt-mark.8.xml:29 -#: apt-secure.8.xml:28 apt-cdrom.8.xml:28 apt-config.8.xml:29 -#: apt.conf.5.xml:34 apt_preferences.5.xml:28 sources.list.5.xml:29 -#: apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 apt-ftparchive.1.xml:29 +#: apt.8.xml:26 apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 +#: apt-mark.8.xml:29 apt-secure.8.xml:28 apt-cdrom.8.xml:28 +#: apt-config.8.xml:29 apt.conf.5.xml:34 apt_preferences.5.xml:28 +#: sources.list.5.xml:29 apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 +#: apt-ftparchive.1.xml:29 msgid "APT" msgstr "APT" -# #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-get.8.xml:35 -msgid "APT package handling utility -- command-line interface" -msgstr "NarzÄ™dzie zarzÄ…dzania pakietami APT -- interfejs linii poleceÅ„" +#: apt.8.xml:32 +msgid "command-line interface" +msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 apt-mark.8.xml:40 -#: apt-secure.8.xml:52 apt-cdrom.8.xml:39 apt-config.8.xml:40 -#: apt.conf.5.xml:43 apt_preferences.5.xml:38 sources.list.5.xml:38 -#: apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 apt-ftparchive.1.xml:40 +#: apt.8.xml:37 apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 +#: apt-mark.8.xml:40 apt-secure.8.xml:52 apt-cdrom.8.xml:39 +#: apt-config.8.xml:40 apt.conf.5.xml:43 apt_preferences.5.xml:38 +#: sources.list.5.xml:38 apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 +#: apt-ftparchive.1.xml:40 msgid "Description" msgstr "Opis" #. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:38 +msgid "" +"<command>apt</command> (Advanced Package Tool) is the command-line tool for " +"handling packages. It provides a commandline interface for the package " +"management of the system. See also &apt-get; and &apt-cache; for more low-" +"level command options." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:47 +msgid "" +"<literal>list</literal> is used to display a list of packages. It supports " +"shell pattern for matching package names and the following options: " +"<option>--installed</option>, <option>--upgradable</option>, <option>--all-" +"versions</option> are supported." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:58 +msgid "" +"<literal>search</literal> searches for the given term(s) and display " +"matching packages." +msgstr "" + +# +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:64 +#, fuzzy +#| msgid "" +#| "<literal>rdepends</literal> shows a listing of each reverse dependency a " +#| "package has." +msgid "" +"<literal>show</literal> shows the package information for the given " +"package(s)." +msgstr "" +"<literal>rdepends</literal> pokazuje listÄ™ wszystkich odwrotnych zależnoÅ›ci " +"danego pakietu." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:71 +msgid "" +"<literal>install</literal> is followed by one or more package names desired " +"for installation or upgrading." +msgstr "" + +# +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:75 apt-get.8.xml:118 +msgid "" +"A specific version of a package can be selected for installation by " +"following the package name with an equals and the version of the package to " +"select. This will cause that version to be located and selected for install. " +"Alternatively a specific distribution can be selected by following the " +"package name with a slash and the version of the distribution or the Archive " +"name (stable, testing, unstable)." +msgstr "" +"Konkretna wersja pakietu może być wybrana do zainstalowania przez " +"umieszczenie po nazwie pakietu znaku równoÅ›ci, a za nim wybranej wersji " +"pakietu. Podana wersja zostanie wyszukana i wybrana do zainstalowania. " +"Również konkretna dystrybucja może być wybrana przez umieszczenie po nazwie " +"pakietu znaku ukoÅ›nika, po którym nastÄ™puje wersja dystrybucji bÄ…dź nazwa " +"archiwum (stable, testing, unstable)." + +# +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:85 apt-get.8.xml:153 +msgid "" +"<literal>remove</literal> is identical to <literal>install</literal> except " +"that packages are removed instead of installed. Note that removing a package " +"leaves its configuration files on the system. If a plus sign is appended to " +"the package name (with no intervening space), the identified package will be " +"installed instead of removed." +msgstr "" +"<literal>remove</literal> odpowiada poleceniu <literal>install</literal> z " +"tÄ… różnicÄ…, że pakiety sÄ… usuwane, a nie instalowane. Jeżeli nazwa pakietu " +"zostanie poprzedzona znakiem plusa (bez rozdzielajÄ…cej spacji), wskazany " +"pakiet zostanie zainstalowany zamiast zostać usuniÄ™ty." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:93 +msgid "" +"<literal>edit-sources</literal> lets you edit your sources.list file and " +"provides basic sanity checks." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:99 +#, fuzzy +#| msgid "" +#| "<literal>showhold</literal> is used to print a list of packages on hold " +#| "in the same way as for the other show commands." +msgid "" +"<literal>update</literal> is used to resynchronize the package index files " +"from their sources." +msgstr "" +"<literal>showhold</literal> jest używane do wypisania listy wszystkich " +"pakietów wstrzymanych, w taki sam sposób jak pozostaÅ‚e polecenia \"show\"." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:105 +msgid "" +"<literal>upgrade</literal> is used to install the newest versions of all " +"packages currently installed on the system from the sources enumerated in " +"<filename>/etc/apt/sources.list</filename>. New package will be installed, " +"but existing package will never removed." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:114 +msgid "" +"<literal>full-upgrade</literal> performs the function of upgrade but may " +"also remove installed packages if that is required in order to resolve a " +"package conflict." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:124 apt-get.8.xml:257 apt-cache.8.xml:250 apt-mark.8.xml:110 +#: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50 +#: apt-ftparchive.1.xml:506 +msgid "options" +msgstr "opcje" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:134 +msgid "Script usage" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:136 +msgid "" +"The &apt; commandline is designed as a end-user tool and it may change the " +"output between versions. While it tries to not break backward compatibility " +"there is no guarantee for it either. All features of &apt; are available in " +"&apt-cache; and &apt-get; via APT options. Please prefer using these " +"commands in your scripts." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:144 +msgid "Differences to &apt-get;" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:145 +msgid "" +"The <command>apt</command> command is meant to be pleasant for end users and " +"does not need to be backward compatible like &apt-get;. Therefore some " +"options are different:" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:151 +#, fuzzy +#| msgid "the <literal>Package:</literal> line" +msgid "The option <literal>DPkgPM::Progress-Fancy</literal> is enabled." +msgstr "linia <literal>Package:</literal>" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:155 +#, fuzzy +#| msgid "the <literal>Component:</literal> line" +msgid "The option <literal>APT::Color</literal> is enabled." +msgstr "linia <literal>Component:</literal>" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:159 +msgid "" +"A new <literal>list</literal> command is available similar to <literal>dpkg " +"--list</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:164 +#, fuzzy +#| msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" +msgid "" +"The option <literal>upgrade</literal> has <literal>--with-new-pkgs</literal> " +"enabled by default." +msgstr "linia <literal>Archive:</literal> lub <literal>Suite:</literal>" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:174 apt-get.8.xml:558 apt-cache.8.xml:352 apt-key.8.xml:197 +#: apt-mark.8.xml:133 apt-secure.8.xml:193 apt-cdrom.8.xml:154 +#: apt-config.8.xml:111 apt.conf.5.xml:1227 apt_preferences.5.xml:707 +#: sources.list.5.xml:280 apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 +#: apt-ftparchive.1.xml:609 +msgid "See Also" +msgstr "Zobacz także" + +# +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:175 +#, fuzzy +#| msgid "" +#| "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " +#| "&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-" +#| "preferences;, the APT Howto." +msgid "" +"&apt-get;, &apt-cache;, &sources-list;, &apt-conf;, &apt-config;, The APT " +"User's guide in &guidesdir;, &apt-preferences;, the APT Howto." +msgstr "" +"&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " +"&apt-config;, &apt-secure;, Przewodnik APT dla użytkowników w &guidesdir;, " +"&apt-preferences;, APT Howto." + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:180 apt-get.8.xml:564 apt-cache.8.xml:357 apt-mark.8.xml:137 +#: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76 +#: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613 +msgid "Diagnostics" +msgstr "Diagnostyka" + +# +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:181 +#, fuzzy +#| msgid "" +#| "<command>apt-get</command> returns zero on normal operation, decimal 100 " +#| "on error." +msgid "" +"<command>apt</command> returns zero on normal operation, decimal 100 on " +"error." +msgstr "" +"<command>apt-get</command> zwraca zero, gdy zakoÅ„czyÅ‚o siÄ™ pomyÅ›lnie, 100 - " +"w przypadku błędu." + +# +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-get.8.xml:35 +msgid "APT package handling utility -- command-line interface" +msgstr "NarzÄ™dzie zarzÄ…dzania pakietami APT -- interfejs linii poleceÅ„" + +#. type: Content of: <refentry><refsect1><para> #: apt-get.8.xml:41 #, fuzzy #| msgid "" @@ -842,24 +1077,6 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:118 -msgid "" -"A specific version of a package can be selected for installation by " -"following the package name with an equals and the version of the package to " -"select. This will cause that version to be located and selected for install. " -"Alternatively a specific distribution can be selected by following the " -"package name with a slash and the version of the distribution or the Archive " -"name (stable, testing, unstable)." -msgstr "" -"Konkretna wersja pakietu może być wybrana do zainstalowania przez " -"umieszczenie po nazwie pakietu znaku równoÅ›ci, a za nim wybranej wersji " -"pakietu. Podana wersja zostanie wyszukana i wybrana do zainstalowania. " -"Również konkretna dystrybucja może być wybrana przez umieszczenie po nazwie " -"pakietu znaku ukoÅ›nika, po którym nastÄ™puje wersja dystrybucji bÄ…dź nazwa " -"archiwum (stable, testing, unstable)." - -# -#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:125 msgid "" "Both of the version selection mechanisms can downgrade packages and must be " @@ -921,21 +1138,6 @@ msgstr "" "poczÄ…tek lub koniec dopasowania wyrażenia regularnego, używajÄ…c znaków \"^| " "lub \"$\", można też stworzyć bardziej specyficzne wyrażenie regularne." -# -#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:153 -msgid "" -"<literal>remove</literal> is identical to <literal>install</literal> except " -"that packages are removed instead of installed. Note that removing a package " -"leaves its configuration files on the system. If a plus sign is appended to " -"the package name (with no intervening space), the identified package will be " -"installed instead of removed." -msgstr "" -"<literal>remove</literal> odpowiada poleceniu <literal>install</literal> z " -"tÄ… różnicÄ…, że pakiety sÄ… usuwane, a nie instalowane. Jeżeli nazwa pakietu " -"zostanie poprzedzona znakiem plusa (bez rozdzielajÄ…cej spacji), wskazany " -"pakiet zostanie zainstalowany zamiast zostać usuniÄ™ty." - #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:161 msgid "" @@ -1140,13 +1342,6 @@ msgstr "" "zainstalowana. Jednakże można to zmienić, używajÄ…c takich samych opcji, jak " "te dla polecenia <option>install</option>." -#. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:257 apt-cache.8.xml:250 apt-mark.8.xml:110 -#: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50 -#: apt-ftparchive.1.xml:506 -msgid "options" -msgstr "opcje" - #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:262 msgid "" @@ -1162,8 +1357,8 @@ msgid "" "Consider suggested packages as a dependency for installing. Configuration " "Item: <literal>APT::Install-Suggests</literal>." msgstr "" -"Nie bierze pod uwagÄ™ sugerowanych pakietów jako zależnoÅ›ci do instalacji. " -"Pozycja w pliku konfiguracyjnym: <literal>APT::Install-Suggests</literal>." +"Uznaje sugerowane pakiety za zależnoÅ›ci do instalacji. Pozycja w pliku " +"konfiguracyjnym: <literal>APT::Install-Suggests</literal>." # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> @@ -1367,13 +1562,21 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:370 +#, fuzzy +#| msgid "" +#| "This option controls the architecture packages are built for by " +#| "<command>apt-get source --compile</command> and how cross-" +#| "builddependencies are satisfied. By default is it not set which means " +#| "that the host architecture is the same as the build architecture (which " +#| "is defined by <literal>APT::Architecture</literal>). Configuration Item: " +#| "<literal>APT::Get::Host-Architecture</literal>" msgid "" "This option controls the architecture packages are built for by <command>apt-" "get source --compile</command> and how cross-builddependencies are " "satisfied. By default is it not set which means that the host architecture " "is the same as the build architecture (which is defined by <literal>APT::" "Architecture</literal>). Configuration Item: <literal>APT::Get::Host-" -"Architecture</literal>" +"Architecture</literal>." msgstr "" "Za pomocÄ… tej opcji można okreÅ›lić architekturÄ™ pakietów budowanych przez " "<command>apt-get source --compile</command> i sposób, w jaki sÄ… speÅ‚niane " @@ -1383,9 +1586,34 @@ msgstr "" "Architecture</literal>). Pozycja w pliku konfiguracyjnym: <literal>APT::Get::" "Host-Architecture</literal>." -# #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:380 +#, fuzzy +#| msgid "" +#| "This option controls the architecture packages are built for by " +#| "<command>apt-get source --compile</command> and how cross-" +#| "builddependencies are satisfied. By default is it not set which means " +#| "that the host architecture is the same as the build architecture (which " +#| "is defined by <literal>APT::Architecture</literal>). Configuration Item: " +#| "<literal>APT::Get::Host-Architecture</literal>" +msgid "" +"This option controls the activated build profiles for which a source package " +"is built by <command>apt-get source --compile</command> and how build " +"dependencies are satisfied. By default no build profile is active. More " +"than one build profile can be activated at a time by concatenating them with " +"a comma. Configuration Item: <literal>APT::Build-Profiles</literal>." +msgstr "" +"Za pomocÄ… tej opcji można okreÅ›lić architekturÄ™ pakietów budowanych przez " +"<command>apt-get source --compile</command> i sposób, w jaki sÄ… speÅ‚niane " +"miÄ™dzyarchitekturowe zależnoÅ›ci czasu budowania. DomyÅ›lnie nie jest " +"ustawiona, co oznacza, że architektura budowanych pakietów jest taka sama " +"jak architektura bieżącego komputera (definiowana przez <literal>APT::" +"Architecture</literal>). Pozycja w pliku konfiguracyjnym: <literal>APT::Get::" +"Host-Architecture</literal>." + +# +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:391 msgid "" "Compile source packages after downloading them. Configuration Item: " "<literal>APT::Get::Compile</literal>." @@ -1395,7 +1623,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:385 +#: apt-get.8.xml:396 msgid "" "Ignore package holds; this causes <command>apt-get</command> to ignore a " "hold placed on a package. This may be useful in conjunction with " @@ -1409,7 +1637,7 @@ msgstr "" "<literal>APT::Ignore-Hold</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:392 +#: apt-get.8.xml:403 msgid "" "Allow installing new packages when used in conjunction with " "<literal>upgrade</literal>. This is useful if the update of a installed " @@ -1422,7 +1650,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:404 +#: apt-get.8.xml:415 msgid "" "Do not upgrade packages; when used in conjunction with <literal>install</" "literal>, <literal>no-upgrade</literal> will prevent packages on the command " @@ -1435,7 +1663,7 @@ msgstr "" "<literal>APT::Get::Upgrade</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:411 +#: apt-get.8.xml:422 msgid "" "Do not install new packages; when used in conjunction with <literal>install</" "literal>, <literal>only-upgrade</literal> will install upgrades for already " @@ -1449,7 +1677,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:419 +#: apt-get.8.xml:430 msgid "" "Force yes; this is a dangerous option that will cause apt to continue " "without prompting if it is doing something potentially harmful. It should " @@ -1466,7 +1694,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:427 +#: apt-get.8.xml:438 msgid "" "Instead of fetching the files to install their URIs are printed. Each URI " "will have the path, the destination file name, the size and the expected MD5 " @@ -1489,7 +1717,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:438 +#: apt-get.8.xml:449 msgid "" "Use purge instead of remove for anything that would be removed. An asterisk " "(\"*\") will be displayed next to packages which are scheduled to be purged. " @@ -1504,7 +1732,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:446 +#: apt-get.8.xml:457 msgid "" "Re-install packages that are already installed and at the newest version. " "Configuration Item: <literal>APT::Get::ReInstall</literal>." @@ -1513,7 +1741,7 @@ msgstr "" "Pozycja w pliku konfiguracyjnym: <literal>APT::Get::ReInstall</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:451 +#: apt-get.8.xml:462 msgid "" "This option is on by default; use <literal>--no-list-cleanup</literal> to " "turn it off. When it is on, <command>apt-get</command> will automatically " @@ -1531,7 +1759,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:461 +#: apt-get.8.xml:472 msgid "" "This option controls the default input to the policy engine; it creates a " "default pin at priority 990 using the specified release string. This " @@ -1555,7 +1783,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:476 +#: apt-get.8.xml:487 msgid "" "Only perform operations that are 'trivial'. Logically this can be considered " "related to <option>--assume-yes</option>; where <option>--assume-yes</" @@ -1570,7 +1798,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:483 +#: apt-get.8.xml:494 msgid "" "If any packages are to be removed apt-get immediately aborts without " "prompting. Configuration Item: <literal>APT::Get::Remove</literal>." @@ -1580,7 +1808,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:489 +#: apt-get.8.xml:500 msgid "" "If the command is either <literal>install</literal> or <literal>remove</" "literal>, then this option acts like running the <literal>autoremove</" @@ -1595,7 +1823,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:496 +#: apt-get.8.xml:507 msgid "" "Only has meaning for the <literal>source</literal> and <literal>build-dep</" "literal> commands. Indicates that the given source names are not to be " @@ -1615,7 +1843,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:507 +#: apt-get.8.xml:518 msgid "" "Download only the diff, dsc, or tar file of a source archive. Configuration " "Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</" @@ -1627,7 +1855,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:513 +#: apt-get.8.xml:524 msgid "" "Only process architecture-dependent build-dependencies. Configuration Item: " "<literal>APT::Get::Arch-Only</literal>." @@ -1638,7 +1866,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:518 +#: apt-get.8.xml:529 msgid "" "Ignore if packages can't be authenticated and don't prompt about it. This " "is useful for tools like pbuilder. Configuration Item: <literal>APT::Get::" @@ -1649,7 +1877,7 @@ msgstr "" "w pliku konfiguracyjnym: <literal>APT::Get::AllowUnauthenticated</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:524 +#: apt-get.8.xml:535 msgid "" "Show user friendly progress information in the terminal window when packages " "are installed, upgraded or removed. For a machine parsable version of this " @@ -1659,23 +1887,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:537 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 -#: apt.conf.5.xml:1200 apt_preferences.5.xml:700 +#: apt-get.8.xml:548 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 +#: apt.conf.5.xml:1221 apt_preferences.5.xml:700 msgid "Files" msgstr "Pliki" -#. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:547 apt-cache.8.xml:352 apt-key.8.xml:197 apt-mark.8.xml:133 -#: apt-secure.8.xml:193 apt-cdrom.8.xml:154 apt-config.8.xml:111 -#: apt.conf.5.xml:1206 apt_preferences.5.xml:707 sources.list.5.xml:280 -#: apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 -#: apt-ftparchive.1.xml:609 -msgid "See Also" -msgstr "Zobacz także" - # #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:548 +#: apt-get.8.xml:559 #, fuzzy #| msgid "" #| "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " @@ -1690,16 +1909,9 @@ msgstr "" "&apt-config;, &apt-secure;, Przewodnik APT dla użytkowników w &guidesdir;, " "&apt-preferences;, APT Howto." -#. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:553 apt-cache.8.xml:357 apt-mark.8.xml:137 -#: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76 -#: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613 -msgid "Diagnostics" -msgstr "Diagnostyka" - # #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:554 +#: apt-get.8.xml:565 msgid "" "<command>apt-get</command> returns zero on normal operation, decimal 100 on " "error." @@ -3519,7 +3731,16 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:181 +#: apt.conf.5.xml:182 +msgid "" +"List of all build profiles enabled for build-dependency resolution, without " +"the \"<literal>profile.</literal>\" namespace prefix. By default this list " +"is empty. The <envar>DEB_BUILD_PROFILES</envar> as used by &dpkg-" +"buildpackage; overrides the list notation." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:190 msgid "" "Default release to install packages from if more than one version is " "available. Contains release name, codename or release version. Examples: " @@ -3528,14 +3749,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:187 +#: apt.conf.5.xml:196 msgid "" "Ignore held packages; this global option causes the problem resolver to " "ignore held packages in its decision making." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:192 +#: apt.conf.5.xml:201 msgid "" "Defaults to on. When turned on the autoclean feature will remove any " "packages which can no longer be downloaded from the cache. If turned off " @@ -3544,7 +3765,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:200 +#: apt.conf.5.xml:209 msgid "" "Defaults to on, which will cause APT to install essential and important " "packages as soon as possible in an install/upgrade operation, in order to " @@ -3559,7 +3780,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:212 +#: apt.conf.5.xml:221 msgid "" "The immediate configuration marker is also applied in the potentially " "problematic case of circular dependencies, since a dependency with the " @@ -3576,7 +3797,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:225 +#: apt.conf.5.xml:234 msgid "" "Before a big operation like <literal>dist-upgrade</literal> is run with this " "option disabled you should try to explicitly <literal>install</literal> the " @@ -3587,7 +3808,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:236 +#: apt.conf.5.xml:245 msgid "" "Never enable this option unless you <emphasis>really</emphasis> know what " "you are doing. It permits APT to temporarily remove an essential package to " @@ -3600,7 +3821,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:248 +#: apt.conf.5.xml:257 msgid "" "APT uses since version 0.7.26 a resizable memory mapped cache file to store " "the available information. <literal>Cache-Start</literal> acts as a hint of " @@ -3620,38 +3841,38 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:264 +#: apt.conf.5.xml:273 msgid "Defines which packages are considered essential build dependencies." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:268 +#: apt.conf.5.xml:277 msgid "" "The Get subsection controls the &apt-get; tool; please see its documentation " "for more information about the options here." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:273 +#: apt.conf.5.xml:282 msgid "" "The Cache subsection controls the &apt-cache; tool; please see its " "documentation for more information about the options here." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:278 +#: apt.conf.5.xml:287 msgid "" "The CDROM subsection controls the &apt-cdrom; tool; please see its " "documentation for more information about the options here." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:284 +#: apt.conf.5.xml:293 msgid "The Acquire Group" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:285 +#: apt.conf.5.xml:294 msgid "" "The <literal>Acquire</literal> group of options controls the download of " "packages as well as the various \"acquire methods\" responsible for the " @@ -3659,7 +3880,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:292 +#: apt.conf.5.xml:301 msgid "" "Security related option defaulting to true, as giving a Release file's " "validation an expiration date prevents replay attacks over a long timescale, " @@ -3672,7 +3893,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:305 +#: apt.conf.5.xml:314 msgid "" "Maximum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -3684,7 +3905,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:317 +#: apt.conf.5.xml:326 msgid "" "Minimum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -3696,7 +3917,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:329 +#: apt.conf.5.xml:338 msgid "" "Try to download deltas called <literal>PDiffs</literal> for indexes (like " "<filename>Packages</filename> files) instead of downloading whole ones. True " @@ -3704,7 +3925,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:332 +#: apt.conf.5.xml:341 msgid "" "Two sub-options to limit the use of PDiffs are also available: " "<literal>FileLimit</literal> can be used to specify a maximum number of " @@ -3715,7 +3936,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:342 +#: apt.conf.5.xml:351 msgid "" "Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</" "literal> or <literal>access</literal> which determines how APT parallelizes " @@ -3725,21 +3946,21 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:350 +#: apt.conf.5.xml:359 msgid "" "Number of retries to perform. If this is non-zero APT will retry failed " "files the given number of times." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:355 +#: apt.conf.5.xml:364 msgid "" "Use symlinks for source archives. If set to true then source archives will " "be symlinked when possible instead of copying. True is the default." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:360 +#: apt.conf.5.xml:369 msgid "" "<literal>http::Proxy</literal> sets the default proxy to use for HTTP URIs. " "It is in the standard form of <literal>http://[[user][:pass]@]host[:port]/</" @@ -3751,7 +3972,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:368 +#: apt.conf.5.xml:377 msgid "" "Three settings are provided for cache control with HTTP/1.1 compliant proxy " "caches. <literal>No-Cache</literal> tells the proxy not to use its cached " @@ -3763,14 +3984,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:378 apt.conf.5.xml:466 +#: apt.conf.5.xml:387 apt.conf.5.xml:475 msgid "" "The option <literal>timeout</literal> sets the timeout timer used by the " "method; this value applies to the connection as well as the data timeout." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:381 +#: apt.conf.5.xml:390 msgid "" "The setting <literal>Acquire::http::Pipeline-Depth</literal> can be used to " "enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e." @@ -3782,14 +4003,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:388 +#: apt.conf.5.xml:397 msgid "" "<literal>Acquire::http::AllowRedirect</literal> controls whether APT will " "follow redirects, which is enabled by default." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:391 +#: apt.conf.5.xml:400 msgid "" "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</" "literal> which accepts integer values in kilobytes per second. The default " @@ -3799,7 +4020,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:398 +#: apt.conf.5.xml:407 msgid "" "<literal>Acquire::http::User-Agent</literal> can be used to set a different " "User-Agent for the http download method as some proxies allow access for " @@ -3807,7 +4028,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:402 +#: apt.conf.5.xml:411 msgid "" "<literal>Acquire::http::Proxy-Auto-Detect</literal> can be used to specify " "an external command to discover the http proxy to use. Apt expects the " @@ -3821,7 +4042,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:420 +#: apt.conf.5.xml:429 msgid "" "The <literal>Cache-control</literal>, <literal>Timeout</literal>, " "<literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> and " @@ -3832,7 +4053,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:428 +#: apt.conf.5.xml:437 msgid "" "<literal>CaInfo</literal> suboption specifies place of file that holds info " "about trusted certificates. <literal><host>::CaInfo</literal> is the " @@ -3854,7 +4075,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:449 +#: apt.conf.5.xml:458 msgid "" "<literal>ftp::Proxy</literal> sets the default proxy to use for FTP URIs. " "It is in the standard form of <literal>ftp://[[user][:pass]@]host[:port]/</" @@ -3873,7 +4094,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:469 +#: apt.conf.5.xml:478 msgid "" "Several settings are provided to control passive mode. Generally it is safe " "to leave passive mode on; it works in nearly every environment. However, " @@ -3883,7 +4104,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:476 +#: apt.conf.5.xml:485 msgid "" "It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</" "envar> environment variable to an HTTP URL - see the discussion of the http " @@ -3892,7 +4113,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:481 +#: apt.conf.5.xml:490 msgid "" "The setting <literal>ForceExtended</literal> controls the use of RFC2428 " "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is " @@ -3902,13 +4123,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:495 +#: apt.conf.5.xml:504 #, no-wrap msgid "/cdrom/::Mount \"foo\";" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:490 +#: apt.conf.5.xml:499 msgid "" "For URIs using the <literal>cdrom</literal> method, the only configurable " "option is the mount point, <literal>cdrom::Mount</literal>, which must be " @@ -3921,20 +4142,20 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:503 +#: apt.conf.5.xml:512 msgid "" "For GPGV URIs the only configurable option is <literal>gpgv::Options</" "literal>, which passes additional parameters to gpgv." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:514 +#: apt.conf.5.xml:523 #, no-wrap msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:509 +#: apt.conf.5.xml:518 msgid "" "List of compression types which are understood by the acquire methods. " "Files like <filename>Packages</filename> can be available in various " @@ -3946,19 +4167,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:519 +#: apt.conf.5.xml:528 #, no-wrap msgid "Acquire::CompressionTypes::Order:: \"gz\";" msgstr "Acquire::CompressionTypes::Order:: \"gz\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:522 +#: apt.conf.5.xml:531 #, no-wrap msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:515 +#: apt.conf.5.xml:524 msgid "" "Also, the <literal>Order</literal> subgroup can be used to define in which " "order the acquire system will try to download the compressed files. The " @@ -3976,13 +4197,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:529 +#: apt.conf.5.xml:538 #, no-wrap msgid "Dir::Bin::bzip2 \"/bin/bzip2\";" msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:524 +#: apt.conf.5.xml:533 msgid "" "Note that the <literal>Dir::Bin::<replaceable>Methodname</replaceable></" "literal> will be checked at run time. If this option has been set, the " @@ -3997,7 +4218,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:534 +#: apt.conf.5.xml:543 msgid "" "The special type <literal>uncompressed</literal> can be used to give " "uncompressed files a preference, but note that most archives don't provide " @@ -4005,7 +4226,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:541 +#: apt.conf.5.xml:550 msgid "" "When downloading <literal>gzip</literal> compressed indexes (Packages, " "Sources, or Translations), keep them gzip compressed locally instead of " @@ -4014,7 +4235,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:549 +#: apt.conf.5.xml:558 msgid "" "The Languages subsection controls which <filename>Translation</filename> " "files are downloaded and in which order APT tries to display the description-" @@ -4026,13 +4247,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><programlisting> -#: apt.conf.5.xml:566 +#: apt.conf.5.xml:575 #, no-wrap msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:554 +#: apt.conf.5.xml:563 msgid "" "The default list includes \"environment\" and \"en\". " "\"<literal>environment</literal>\" has a special meaning here: it will be " @@ -4054,7 +4275,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:567 +#: apt.conf.5.xml:576 msgid "" "Note: To prevent problems resulting from APT being executed in different " "environments (e.g. by different users or by other programs) all Translation " @@ -4063,22 +4284,22 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:576 +#: apt.conf.5.xml:585 msgid "When downloading, force to use only the IPv4 protocol." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:582 +#: apt.conf.5.xml:591 msgid "When downloading, force to use only the IPv6 protocol." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:589 +#: apt.conf.5.xml:598 msgid "Directories" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:591 +#: apt.conf.5.xml:600 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@ -4090,7 +4311,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:598 +#: apt.conf.5.xml:607 msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@ -4103,7 +4324,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:607 +#: apt.conf.5.xml:616 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -4113,7 +4334,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:613 +#: apt.conf.5.xml:622 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -4121,7 +4342,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:617 +#: apt.conf.5.xml:626 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@ -4132,7 +4353,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:625 +#: apt.conf.5.xml:634 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -4145,7 +4366,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:638 +#: apt.conf.5.xml:647 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@ -4156,12 +4377,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:647 +#: apt.conf.5.xml:656 msgid "APT in DSelect" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:649 +#: apt.conf.5.xml:658 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@ -4169,7 +4390,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:654 +#: apt.conf.5.xml:663 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@ -4182,40 +4403,40 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:668 +#: apt.conf.5.xml:677 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:673 +#: apt.conf.5.xml:682 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:678 +#: apt.conf.5.xml:687 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:684 +#: apt.conf.5.xml:693 msgid "How APT calls &dpkg;" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:685 +#: apt.conf.5.xml:694 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:690 +#: apt.conf.5.xml:699 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -4223,7 +4444,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:696 +#: apt.conf.5.xml:705 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4232,7 +4453,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:703 +#: apt.conf.5.xml:712 msgid "" "This is a list of shell commands to run before invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4243,7 +4464,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:710 +#: apt.conf.5.xml:719 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@ -4252,7 +4473,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:715 +#: apt.conf.5.xml:724 msgid "" "The version of the protocol to be used for the command " "<literal><replaceable>cmd</replaceable></literal> can be chosen by setting " @@ -4263,7 +4484,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:722 +#: apt.conf.5.xml:731 msgid "" "The file descriptor to be used to send the information can be requested with " "<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</" @@ -4274,26 +4495,26 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:732 +#: apt.conf.5.xml:741 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:737 +#: apt.conf.5.xml:746 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:742 +#: apt.conf.5.xml:751 msgid "dpkg trigger usage (and related options)" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:743 +#: apt.conf.5.xml:752 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@ -4308,7 +4529,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:758 +#: apt.conf.5.xml:767 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -4322,7 +4543,7 @@ msgstr "" "DPkg::TriggersPending \"true\";" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:752 +#: apt.conf.5.xml:761 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -4336,7 +4557,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:765 +#: apt.conf.5.xml:774 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -4349,7 +4570,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:773 +#: apt.conf.5.xml:782 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@ -4366,7 +4587,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:788 +#: apt.conf.5.xml:797 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@ -4377,7 +4598,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:795 +#: apt.conf.5.xml:804 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@ -4387,7 +4608,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:808 +#: apt.conf.5.xml:817 #, no-wrap msgid "" "OrderList::Score {\n" @@ -4405,7 +4626,7 @@ msgstr "" "};" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:801 +#: apt.conf.5.xml:810 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@ -4419,12 +4640,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:821 +#: apt.conf.5.xml:830 msgid "Periodic and Archives options" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:822 +#: apt.conf.5.xml:831 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@ -4433,13 +4654,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:830 +#: apt.conf.5.xml:839 #, fuzzy msgid "Debug options" msgstr "opcje" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:832 +#: apt.conf.5.xml:841 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -4450,7 +4671,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:843 +#: apt.conf.5.xml:852 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@ -4458,7 +4679,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:851 +#: apt.conf.5.xml:860 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@ -4466,7 +4687,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:860 +#: apt.conf.5.xml:869 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -4476,7 +4697,7 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:868 +#: apt.conf.5.xml:877 #, fuzzy msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " @@ -4486,59 +4707,59 @@ msgstr "" "in CDROM IDs." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:878 +#: apt.conf.5.xml:887 msgid "A full list of debugging options to apt follows." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:887 +#: apt.conf.5.xml:896 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:898 +#: apt.conf.5.xml:907 msgid "Print information related to downloading packages using FTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:909 +#: apt.conf.5.xml:918 msgid "Print information related to downloading packages using HTTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:920 +#: apt.conf.5.xml:929 msgid "Print information related to downloading packages using HTTPS." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:931 +#: apt.conf.5.xml:940 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:942 +#: apt.conf.5.xml:951 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:952 +#: apt.conf.5.xml:961 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:962 +#: apt.conf.5.xml:971 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:972 +#: apt.conf.5.xml:981 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -4546,53 +4767,53 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:983 +#: apt.conf.5.xml:992 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:995 +#: apt.conf.5.xml:1004 msgid "Log when items are added to or removed from the global download queue." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1005 +#: apt.conf.5.xml:1014 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1015 +#: apt.conf.5.xml:1024 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1027 +#: apt.conf.5.xml:1036 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1038 +#: apt.conf.5.xml:1047 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1049 +#: apt.conf.5.xml:1058 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1059 +#: apt.conf.5.xml:1068 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@ -4602,7 +4823,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1073 +#: apt.conf.5.xml:1082 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@ -4620,46 +4841,46 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1094 +#: apt.conf.5.xml:1103 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1105 +#: apt.conf.5.xml:1114 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1116 +#: apt.conf.5.xml:1125 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1128 +#: apt.conf.5.xml:1137 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1139 +#: apt.conf.5.xml:1148 msgid "Output the priority of each package list on startup." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1149 +#: apt.conf.5.xml:1158 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1160 +#: apt.conf.5.xml:1169 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -4667,20 +4888,28 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1172 +#: apt.conf.5.xml:1181 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." msgstr "" +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:1191 +msgid "" +"Display the external commands that are called by apt hooks. This includes e." +"g. the config options <literal>DPkg::{Pre,Post}-Invoke</literal> or " +"<literal>APT::Update::{Pre,Post}-Invoke</literal>." +msgstr "" + #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:1194 apt_preferences.5.xml:547 sources.list.5.xml:239 +#: apt.conf.5.xml:1215 apt_preferences.5.xml:547 sources.list.5.xml:239 #: apt-ftparchive.1.xml:598 msgid "Examples" msgstr "PrzykÅ‚ady" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1195 +#: apt.conf.5.xml:1216 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -4688,7 +4917,7 @@ msgstr "" #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1207 +#: apt.conf.5.xml:1228 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." @@ -6692,14 +6921,14 @@ msgid "" "template-file and config-script are written to the temporary directory " "specified by the <option>-t</option> or <option>--tempdir</option> " "(<literal>APT::ExtractTemplates::TempDir</literal>) directory, with " -"filenames of the form <filename>package.template.XXXX</filename> and " -"<filename>package.config.XXXX</filename>" +"filenames of the form <filename>package.template.XXXXXX</filename> and " +"<filename>package.config.XXXXXX</filename>" msgstr "" "plik-template i skrypt-config sÄ… zapisywane w katalogu tymczasowym podanym " "jako argument opcji <option>-t</option> lub <option>--tempdir</option> " "(<literal>APT::ExtractTemplates::TempDir</literal>). Nazwy tych plików sÄ… w " -"postaci <filename>pakiet.template.XXXX</filename> oraz <filename>pakiet." -"config.XXXX</filename>." +"postaci <filename>pakiet.template.XXXXXX</filename> oraz <filename>pakiet." +"config.XXXXXX</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-extracttemplates.1.xml:60 @@ -7534,134 +7763,6 @@ msgstr "" "<command>apt-ftparchive</command> zwraca zero, gdy zakoÅ„czyÅ‚o siÄ™ pomyÅ›lnie, " "100 - w przypadku błędu." -#. type: TH -#: apt.8:17 -#, no-wrap -msgid "apt" -msgstr "apt" - -#. type: TH -#: apt.8:17 -#, no-wrap -msgid "16 June 1998" -msgstr "16 czerwca 1998" - -#. type: TH -#: apt.8:17 -#, no-wrap -msgid "Debian" -msgstr "Debian" - -#. type: SH -#: apt.8:18 -#, no-wrap -msgid "NAME" -msgstr "NAZWA" - -# -#. type: Plain text -#: apt.8:20 -msgid "apt - Advanced Package Tool" -msgstr "apt - Zaawansowane narzÄ™dzie zarzÄ…dzania pakietami" - -#. type: SH -#: apt.8:20 -#, no-wrap -msgid "SYNOPSIS" -msgstr "SKÅADNIA" - -# -#. type: Plain text -#: apt.8:22 -msgid "B<apt>" -msgstr "B<apt>" - -#. type: SH -#: apt.8:22 -#, no-wrap -msgid "DESCRIPTION" -msgstr "OPIS" - -#. type: Plain text -#: apt.8:31 -msgid "" -"APT is a management system for software packages. For normal day to day " -"package management there are several frontends available, such as " -"B<aptitude>(8) for the command line or B<synaptic>(8) for the X Window " -"System. Some options are only implemented in B<apt-get>(8) though." -msgstr "" -"APT jest systemem zarzÄ…dzania pakietami oprogramowania. Jest kilka nakÅ‚adek " -"przydatnych do codziennego zarzÄ…dzania pakietami, takich jak B<aptitude>(8), " -"dziaÅ‚ajÄ…ce w linii poleceÅ„, lub B<synaptic>(8), wymagajÄ…cy Å›rodowiska X " -"Window. Niemniej jednak niektóre opcje sÄ… dostÄ™pne tylko w B<apt-get>(8)." - -#. type: SH -#: apt.8:31 -#, no-wrap -msgid "SEE ALSO" -msgstr "ZOBACZ TAKÅ»E" - -# -#. type: Plain text -#: apt.8:38 -msgid "" -"B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " -"B<apt_preferences>(5), B<apt-secure>(8)" -msgstr "" -"B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " -"B<apt_preferences>(5), B<apt-secure>(8)" - -#. type: SH -#: apt.8:38 -#, no-wrap -msgid "DIAGNOSTICS" -msgstr "DIAGNOSTYKA" - -# -#. type: Plain text -#: apt.8:40 -msgid "apt returns zero on normal operation, decimal 100 on error." -msgstr "" -"apt zwraca zero, jeżeli zakoÅ„czyÅ‚o siÄ™ pomyÅ›lnie, 100 dziesiÄ™tnie w " -"przypadku błędu." - -#. type: SH -#: apt.8:40 -#, no-wrap -msgid "BUGS" -msgstr "BÅĘDY" - -# -#. type: Plain text -#: apt.8:42 -msgid "This manpage isn't even started." -msgstr "Ta strona podrÄ™cznika nie jest nawet zaczÄ™ta." - -# -#. type: Plain text -#: apt.8:51 -msgid "" -"See E<lt>http://bugs.debian.org/aptE<gt>. If you wish to report a bug in " -"B<apt>, please see I</usr/share/doc/debian/bug-reporting.txt> or the " -"B<reportbug>(1) command." -msgstr "" -"Patrz E<lt>http://bugs.debian.org/aptE<gt>. Aby wysÅ‚ać zgÅ‚oszenie o błędzie " -"w programie B<apt>, przeczytaj I</usr/share/doc/debian/bug-reporting.txt> " -"lub użyj polecenia B<reportbug>(1)." - -#. type: SH -#: apt.8:51 -#, no-wrap -msgid "AUTHOR" -msgstr "AUTOR" - -# -#. type: Plain text -#: apt.8:52 -msgid "apt was written by the APT team E<lt>apt@packages.debian.orgE<gt>." -msgstr "" -"apt zostaÅ‚o napisane przez zespół APT E<lt>apt@packages.debian.orgE<gt>." - #. type: <title></title> #: guide.sgml:4 msgid "APT User's Guide" @@ -7996,7 +8097,7 @@ msgstr "" #| "command that caused them to be downloaded again without <tt>-d</tt>." msgid "" "<prgn>apt-get</prgn> has several command line options that are detailed in " -"its man page, <manref section=\"8\" name=\"apt-get\">. The most useful " +"its man page, <manref name=\"apt-get\" section=\"8\">. The most useful " "option is <tt>-d</tt> which does not install the fetched files. If the " "system has to download a large number of package it would be undesired to " "start installing them in case something goes wrong. When <tt>-d</tt> is used " @@ -9216,6 +9317,99 @@ msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade" msgid "Which will use the already fetched archives on the disc." msgstr "Które użyje pobranych uprzednio archiwów z dysku." +#~ msgid "apt" +#~ msgstr "apt" + +#~ msgid "16 June 1998" +#~ msgstr "16 czerwca 1998" + +#~ msgid "Debian" +#~ msgstr "Debian" + +#~ msgid "NAME" +#~ msgstr "NAZWA" + +# +#~ msgid "apt - Advanced Package Tool" +#~ msgstr "apt - Zaawansowane narzÄ™dzie zarzÄ…dzania pakietami" + +#~ msgid "SYNOPSIS" +#~ msgstr "SKÅADNIA" + +# +#~ msgid "B<apt>" +#~ msgstr "B<apt>" + +#~ msgid "DESCRIPTION" +#~ msgstr "OPIS" + +#, fuzzy +#~| msgid "" +#~| "APT is a management system for software packages. For normal day to day " +#~| "package management there are several frontends available, such as " +#~| "B<aptitude>(8) for the command line or B<synaptic>(8) for the X Window " +#~| "System. Some options are only implemented in B<apt-get>(8) though." +#~ msgid "" +#~ "For normal day to day package management there are several frontends " +#~ "available, such as B<aptitude>(8) for the command line or " +#~ "B<synaptic>(8) for the X Window System. Some options are only " +#~ "implemented in B<apt-get>(8) though." +#~ msgstr "" +#~ "APT jest systemem zarzÄ…dzania pakietami oprogramowania. Jest kilka " +#~ "nakÅ‚adek przydatnych do codziennego zarzÄ…dzania pakietami, takich jak " +#~ "B<aptitude>(8), dziaÅ‚ajÄ…ce w linii poleceÅ„, lub B<synaptic>(8), " +#~ "wymagajÄ…cy Å›rodowiska X Window. Niemniej jednak niektóre opcje sÄ… " +#~ "dostÄ™pne tylko w B<apt-get>(8)." + +#~ msgid "SEE ALSO" +#~ msgstr "ZOBACZ TAKÅ»E" + +# +#, fuzzy +#~| msgid "" +#~| "B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " +#~| "B<apt_preferences>(5), B<apt-secure>(8)" +#~ msgid "" +#~ "B<apt>(8), B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources." +#~ "list>(5), B<apt_preferences>(5), B<apt-secure>(8)" +#~ msgstr "" +#~ "B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " +#~ "B<apt_preferences>(5), B<apt-secure>(8)" + +#~ msgid "DIAGNOSTICS" +#~ msgstr "DIAGNOSTYKA" + +# +#~ msgid "apt returns zero on normal operation, decimal 100 on error." +#~ msgstr "" +#~ "apt zwraca zero, jeżeli zakoÅ„czyÅ‚o siÄ™ pomyÅ›lnie, 100 dziesiÄ™tnie w " +#~ "przypadku błędu." + +#~ msgid "BUGS" +#~ msgstr "BÅĘDY" + +# +#~ msgid "This manpage isn't even started." +#~ msgstr "Ta strona podrÄ™cznika nie jest nawet zaczÄ™ta." + +# +#~ msgid "" +#~ "See E<lt>http://bugs.debian.org/aptE<gt>. If you wish to report a bug in " +#~ "B<apt>, please see I</usr/share/doc/debian/bug-reporting.txt> or the " +#~ "B<reportbug>(1) command." +#~ msgstr "" +#~ "Patrz E<lt>http://bugs.debian.org/aptE<gt>. Aby wysÅ‚ać zgÅ‚oszenie o " +#~ "błędzie w programie B<apt>, przeczytaj I</usr/share/doc/debian/bug-" +#~ "reporting.txt> lub użyj polecenia B<reportbug>(1)." + +#~ msgid "AUTHOR" +#~ msgstr "AUTOR" + +# +#~ msgid "apt was written by the APT team E<lt>apt@packages.debian.orgE<gt>." +#~ msgstr "" +#~ "apt zostaÅ‚o napisane przez zespół APT E<lt>apt@packages.debian.orgE<gt>." + #~ msgid "Package resource list for APT" #~ msgstr "Lista zasobów pakietów dla APT" diff --git a/doc/po/pt.po b/doc/po/pt.po index 99adcbaff..d0433d498 100644 --- a/doc/po/pt.po +++ b/doc/po/pt.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.7.1\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" -"PO-Revision-Date: 2012-09-03 01:53+0100\n" +"POT-Creation-Date: 2014-04-10 09:49+0200\n" +"PO-Revision-Date: 2014-04-01 13:59+0200\n" "Last-Translator: Américo Monteiro <a_monteiro@netcabo.pt>\n" "Language-Team: Portuguese <l10n@debianpt.org>\n" "Language: pt\n" @@ -660,35 +660,266 @@ msgstr "" "export 473041FA --> <!ENTITY synopsis-keyid \"id_de_chave\">" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 apt-mark.8.xml:28 -#: apt-secure.8.xml:27 apt-cdrom.8.xml:27 apt-config.8.xml:28 +#: apt.8.xml:25 apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 +#: apt-mark.8.xml:28 apt-secure.8.xml:27 apt-cdrom.8.xml:27 +#: apt-config.8.xml:28 msgid "8" msgstr "8" #. type: Content of: <refentry><refmeta><refmiscinfo> -#: apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 apt-mark.8.xml:29 -#: apt-secure.8.xml:28 apt-cdrom.8.xml:28 apt-config.8.xml:29 -#: apt.conf.5.xml:34 apt_preferences.5.xml:28 sources.list.5.xml:29 -#: apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 apt-ftparchive.1.xml:29 +#: apt.8.xml:26 apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 +#: apt-mark.8.xml:29 apt-secure.8.xml:28 apt-cdrom.8.xml:28 +#: apt-config.8.xml:29 apt.conf.5.xml:34 apt_preferences.5.xml:28 +#: sources.list.5.xml:29 apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 +#: apt-ftparchive.1.xml:29 msgid "APT" msgstr "APT" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-get.8.xml:35 -msgid "APT package handling utility -- command-line interface" +#: apt.8.xml:32 +msgid "command-line interface" msgstr "" -"Utilitário de manuseamento de pacotes do APT -- interface de linha de " -"comandos" #. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 apt-mark.8.xml:40 -#: apt-secure.8.xml:52 apt-cdrom.8.xml:39 apt-config.8.xml:40 -#: apt.conf.5.xml:43 apt_preferences.5.xml:38 sources.list.5.xml:38 -#: apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 apt-ftparchive.1.xml:40 +#: apt.8.xml:37 apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 +#: apt-mark.8.xml:40 apt-secure.8.xml:52 apt-cdrom.8.xml:39 +#: apt-config.8.xml:40 apt.conf.5.xml:43 apt_preferences.5.xml:38 +#: sources.list.5.xml:38 apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 +#: apt-ftparchive.1.xml:40 msgid "Description" msgstr "Descrição" #. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:38 +msgid "" +"<command>apt</command> (Advanced Package Tool) is the command-line tool for " +"handling packages. It provides a commandline interface for the package " +"management of the system. See also &apt-get; and &apt-cache; for more low-" +"level command options." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:47 +msgid "" +"<literal>list</literal> is used to display a list of packages. It supports " +"shell pattern for matching package names and the following options: " +"<option>--installed</option>, <option>--upgradable</option>, <option>--all-" +"versions</option> are supported." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:58 +msgid "" +"<literal>search</literal> searches for the given term(s) and display " +"matching packages." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:64 +#, fuzzy +#| msgid "" +#| "<literal>rdepends</literal> shows a listing of each reverse dependency a " +#| "package has." +msgid "" +"<literal>show</literal> shows the package information for the given " +"package(s)." +msgstr "" +"<literal>rdepends</literal> mostra uma listagem de cada dependência reversa " +"que um pacote tem." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:71 +msgid "" +"<literal>install</literal> is followed by one or more package names desired " +"for installation or upgrading." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:75 apt-get.8.xml:118 +msgid "" +"A specific version of a package can be selected for installation by " +"following the package name with an equals and the version of the package to " +"select. This will cause that version to be located and selected for install. " +"Alternatively a specific distribution can be selected by following the " +"package name with a slash and the version of the distribution or the Archive " +"name (stable, testing, unstable)." +msgstr "" +"Pode ser seleccionada para instalação uma versão especÃfica de um pacote ao " +"continuar o nome do pacote com um igual (=) e a versão do pacote a " +"seleccionar. Isto irá fazer com que essa versão seja localizada e " +"seleccionada para instalação. Alternativamente pode ser seleccionada uma " +"distribuição especÃfica ao continuar o nome do pacote com uma slash (/) e a " +"versão da distribuição ou o nome de Arquivo (stable, testing, unstable)." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:85 apt-get.8.xml:153 +msgid "" +"<literal>remove</literal> is identical to <literal>install</literal> except " +"that packages are removed instead of installed. Note that removing a package " +"leaves its configuration files on the system. If a plus sign is appended to " +"the package name (with no intervening space), the identified package will be " +"installed instead of removed." +msgstr "" +"<literal>remove</literal> é idêntico a <literal>install</literal> à " +"excepção que os pacotes são removidos em vez de instalados. Note que remover " +"um pacote deixa os seus ficheiros de configuração no sistema. Se um sinal " +"mais (+) for acrescentado ao nome do pacote (sem nenhum espaço a separar), o " +"pacote identificado será instalado em vez de removido." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:93 +msgid "" +"<literal>edit-sources</literal> lets you edit your sources.list file and " +"provides basic sanity checks." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:99 +#, fuzzy +#| msgid "" +#| "<literal>showhold</literal> is used to print a list of packages on hold " +#| "in the same way as for the other show commands." +msgid "" +"<literal>update</literal> is used to resynchronize the package index files " +"from their sources." +msgstr "" +"<literal>showhold</literal> é usado para escrever uma lista dos pacotes em " +"retenção do mesmo modo que os outros comandos show." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:105 +msgid "" +"<literal>upgrade</literal> is used to install the newest versions of all " +"packages currently installed on the system from the sources enumerated in " +"<filename>/etc/apt/sources.list</filename>. New package will be installed, " +"but existing package will never removed." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:114 +msgid "" +"<literal>full-upgrade</literal> performs the function of upgrade but may " +"also remove installed packages if that is required in order to resolve a " +"package conflict." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:124 apt-get.8.xml:257 apt-cache.8.xml:250 apt-mark.8.xml:110 +#: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50 +#: apt-ftparchive.1.xml:506 +msgid "options" +msgstr "opções" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:134 +msgid "Script usage" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:136 +msgid "" +"The &apt; commandline is designed as a end-user tool and it may change the " +"output between versions. While it tries to not break backward compatibility " +"there is no guarantee for it either. All features of &apt; are available in " +"&apt-cache; and &apt-get; via APT options. Please prefer using these " +"commands in your scripts." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:144 +msgid "Differences to &apt-get;" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:145 +msgid "" +"The <command>apt</command> command is meant to be pleasant for end users and " +"does not need to be backward compatible like &apt-get;. Therefore some " +"options are different:" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:151 +#, fuzzy +#| msgid "the <literal>Package:</literal> line" +msgid "The option <literal>DPkgPM::Progress-Fancy</literal> is enabled." +msgstr "a linha <literal>Package:</literal>" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:155 +#, fuzzy +#| msgid "the <literal>Component:</literal> line" +msgid "The option <literal>APT::Color</literal> is enabled." +msgstr "a linha <literal>Component:</literal>" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:159 +msgid "" +"A new <literal>list</literal> command is available similar to <literal>dpkg " +"--list</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:164 +#, fuzzy +#| msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" +msgid "" +"The option <literal>upgrade</literal> has <literal>--with-new-pkgs</literal> " +"enabled by default." +msgstr "a linha <literal>Archive:</literal> ou <literal>Suite:</literal>" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:174 apt-get.8.xml:558 apt-cache.8.xml:352 apt-key.8.xml:197 +#: apt-mark.8.xml:133 apt-secure.8.xml:193 apt-cdrom.8.xml:154 +#: apt-config.8.xml:111 apt.conf.5.xml:1227 apt_preferences.5.xml:707 +#: sources.list.5.xml:280 apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 +#: apt-ftparchive.1.xml:609 +msgid "See Also" +msgstr "Veja também" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:175 +#, fuzzy +#| msgid "" +#| "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " +#| "&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-" +#| "preferences;, the APT Howto." +msgid "" +"&apt-get;, &apt-cache;, &sources-list;, &apt-conf;, &apt-config;, The APT " +"User's guide in &guidesdir;, &apt-preferences;, the APT Howto." +msgstr "" +"&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " +"&apt-config;, &apt-secure;, O guia de utilizadores do The APT em " +"&guidesdir;, &apt-preferences;, o Howto do APT." + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:180 apt-get.8.xml:564 apt-cache.8.xml:357 apt-mark.8.xml:137 +#: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76 +#: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613 +msgid "Diagnostics" +msgstr "Diagnóstico" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:181 +#, fuzzy +#| msgid "" +#| "<command>apt-get</command> returns zero on normal operation, decimal 100 " +#| "on error." +msgid "" +"<command>apt</command> returns zero on normal operation, decimal 100 on " +"error." +msgstr "" +"<command>apt-get</command> devolve zero na operação normal, 100 decimal em " +"erro." + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-get.8.xml:35 +msgid "APT package handling utility -- command-line interface" +msgstr "" +"Utilitário de manuseamento de pacotes do APT -- interface de linha de " +"comandos" + +#. type: Content of: <refentry><refsect1><para> #: apt-get.8.xml:41 #, fuzzy #| msgid "" @@ -839,23 +1070,6 @@ msgstr "" "de resolução de conflitos do apt-get." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:118 -msgid "" -"A specific version of a package can be selected for installation by " -"following the package name with an equals and the version of the package to " -"select. This will cause that version to be located and selected for install. " -"Alternatively a specific distribution can be selected by following the " -"package name with a slash and the version of the distribution or the Archive " -"name (stable, testing, unstable)." -msgstr "" -"Pode ser seleccionada para instalação uma versão especÃfica de um pacote ao " -"continuar o nome do pacote com um igual (=) e a versão do pacote a " -"seleccionar. Isto irá fazer com que essa versão seja localizada e " -"seleccionada para instalação. Alternativamente pode ser seleccionada uma " -"distribuição especÃfica ao continuar o nome do pacote com uma slash (/) e a " -"versão da distribuição ou o nome de Arquivo (stable, testing, unstable)." - -#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:125 msgid "" "Both of the version selection mechanisms can downgrade packages and must be " @@ -913,21 +1127,6 @@ msgstr "" "caractere '^' ou '$', para criar uma expressão regular mais especÃfica." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:153 -msgid "" -"<literal>remove</literal> is identical to <literal>install</literal> except " -"that packages are removed instead of installed. Note that removing a package " -"leaves its configuration files on the system. If a plus sign is appended to " -"the package name (with no intervening space), the identified package will be " -"installed instead of removed." -msgstr "" -"<literal>remove</literal> é idêntico a <literal>install</literal> à " -"excepção que os pacotes são removidos em vez de instalados. Note que remover " -"um pacote deixa os seus ficheiros de configuração no sistema. Se um sinal " -"mais (+) for acrescentado ao nome do pacote (sem nenhum espaço a separar), o " -"pacote identificado será instalado em vez de removido." - -#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:161 msgid "" "<literal>purge</literal> is identical to <literal>remove</literal> except " @@ -1124,13 +1323,6 @@ msgstr "" "está instalada. No entanto, você pode especificar as mesmas opções que são " "para o comando <option>install</option>." -#. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:257 apt-cache.8.xml:250 apt-mark.8.xml:110 -#: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50 -#: apt-ftparchive.1.xml:506 -msgid "options" -msgstr "opções" - #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:262 msgid "" @@ -1341,13 +1533,21 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:370 +#, fuzzy +#| msgid "" +#| "This option controls the architecture packages are built for by " +#| "<command>apt-get source --compile</command> and how cross-" +#| "builddependencies are satisfied. By default is it not set which means " +#| "that the host architecture is the same as the build architecture (which " +#| "is defined by <literal>APT::Architecture</literal>). Configuration Item: " +#| "<literal>APT::Get::Host-Architecture</literal>" msgid "" "This option controls the architecture packages are built for by <command>apt-" "get source --compile</command> and how cross-builddependencies are " "satisfied. By default is it not set which means that the host architecture " "is the same as the build architecture (which is defined by <literal>APT::" "Architecture</literal>). Configuration Item: <literal>APT::Get::Host-" -"Architecture</literal>" +"Architecture</literal>." msgstr "" "Esta opção controla a arquitectura para que os pacotes são compilados pelo " "<command>apt-get source --compile</command> e como as dependências cruzadas " @@ -1358,6 +1558,30 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:380 +#, fuzzy +#| msgid "" +#| "This option controls the architecture packages are built for by " +#| "<command>apt-get source --compile</command> and how cross-" +#| "builddependencies are satisfied. By default is it not set which means " +#| "that the host architecture is the same as the build architecture (which " +#| "is defined by <literal>APT::Architecture</literal>). Configuration Item: " +#| "<literal>APT::Get::Host-Architecture</literal>" +msgid "" +"This option controls the activated build profiles for which a source package " +"is built by <command>apt-get source --compile</command> and how build " +"dependencies are satisfied. By default no build profile is active. More " +"than one build profile can be activated at a time by concatenating them with " +"a comma. Configuration Item: <literal>APT::Build-Profiles</literal>." +msgstr "" +"Esta opção controla a arquitectura para que os pacotes são compilados pelo " +"<command>apt-get source --compile</command> e como as dependências cruzadas " +"de compilação são satisfeitas. Por predefinição não está activa o que " +"significa que a arquitectura anfitriã é a mesma que a arquitectura de " +"compilação (a qual é definida por <literal>APT::Architecture</literal>). " +"item de Configuração: <literal>APT::Get::Host-Architecture</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:391 msgid "" "Compile source packages after downloading them. Configuration Item: " "<literal>APT::Get::Compile</literal>." @@ -1366,7 +1590,7 @@ msgstr "" "<literal>APT::Get::Compile</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:385 +#: apt-get.8.xml:396 msgid "" "Ignore package holds; this causes <command>apt-get</command> to ignore a " "hold placed on a package. This may be useful in conjunction with " @@ -1379,7 +1603,7 @@ msgstr "" "Item de Configuração: <literal>APT::Ignore-Hold</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:392 +#: apt-get.8.xml:403 msgid "" "Allow installing new packages when used in conjunction with " "<literal>upgrade</literal>. This is useful if the update of a installed " @@ -1391,7 +1615,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:404 +#: apt-get.8.xml:415 msgid "" "Do not upgrade packages; when used in conjunction with <literal>install</" "literal>, <literal>no-upgrade</literal> will prevent packages on the command " @@ -1404,7 +1628,7 @@ msgstr "" "Configuração: <literal>APT::Get::Upgrade</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:411 +#: apt-get.8.xml:422 msgid "" "Do not install new packages; when used in conjunction with <literal>install</" "literal>, <literal>only-upgrade</literal> will install upgrades for already " @@ -1417,7 +1641,7 @@ msgstr "" "Item de Configuração: <literal>APT::Get::Only-Upgrade</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:419 +#: apt-get.8.xml:430 msgid "" "Force yes; this is a dangerous option that will cause apt to continue " "without prompting if it is doing something potentially harmful. It should " @@ -1432,7 +1656,7 @@ msgstr "" "<literal>APT::Get::force-yes</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:427 +#: apt-get.8.xml:438 msgid "" "Instead of fetching the files to install their URIs are printed. Each URI " "will have the path, the destination file name, the size and the expected MD5 " @@ -1453,7 +1677,7 @@ msgstr "" "Configuração: <literal>APT::Get::Print-URIs</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:438 +#: apt-get.8.xml:449 msgid "" "Use purge instead of remove for anything that would be removed. An asterisk " "(\"*\") will be displayed next to packages which are scheduled to be purged. " @@ -1466,7 +1690,7 @@ msgstr "" "option>. Item de Configuração: <literal>APT::Get::Purge</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:446 +#: apt-get.8.xml:457 msgid "" "Re-install packages that are already installed and at the newest version. " "Configuration Item: <literal>APT::Get::ReInstall</literal>." @@ -1475,7 +1699,7 @@ msgstr "" "Configuração: <literal>APT::Get::ReInstall</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:451 +#: apt-get.8.xml:462 msgid "" "This option is on by default; use <literal>--no-list-cleanup</literal> to " "turn it off. When it is on, <command>apt-get</command> will automatically " @@ -1492,7 +1716,7 @@ msgstr "" "fontes. Item de Configuração: <literal>APT::Get::List-Cleanup</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:461 +#: apt-get.8.xml:472 msgid "" "This option controls the default input to the policy engine; it creates a " "default pin at priority 990 using the specified release string. This " @@ -1515,7 +1739,7 @@ msgstr "" "Release</literal>; veja também o manual &apt-preferences;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:476 +#: apt-get.8.xml:487 msgid "" "Only perform operations that are 'trivial'. Logically this can be considered " "related to <option>--assume-yes</option>; where <option>--assume-yes</" @@ -1529,7 +1753,7 @@ msgstr "" "Trivial-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:483 +#: apt-get.8.xml:494 msgid "" "If any packages are to be removed apt-get immediately aborts without " "prompting. Configuration Item: <literal>APT::Get::Remove</literal>." @@ -1539,7 +1763,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:489 +#: apt-get.8.xml:500 msgid "" "If the command is either <literal>install</literal> or <literal>remove</" "literal>, then this option acts like running the <literal>autoremove</" @@ -1552,7 +1776,7 @@ msgstr "" "Configuração: <literal>APT::Get::AutomaticRemove</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:496 +#: apt-get.8.xml:507 msgid "" "Only has meaning for the <literal>source</literal> and <literal>build-dep</" "literal> commands. Indicates that the given source names are not to be " @@ -1571,7 +1795,7 @@ msgstr "" "<literal>APT::Get::Only-Source</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:507 +#: apt-get.8.xml:518 msgid "" "Download only the diff, dsc, or tar file of a source archive. Configuration " "Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</" @@ -1582,7 +1806,7 @@ msgstr "" "Only</literal>, e <literal>APT::Get::Tar-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:513 +#: apt-get.8.xml:524 msgid "" "Only process architecture-dependent build-dependencies. Configuration Item: " "<literal>APT::Get::Arch-Only</literal>." @@ -1591,7 +1815,7 @@ msgstr "" "de Configuração: <literal>APT::Get::Arch-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:518 +#: apt-get.8.xml:529 msgid "" "Ignore if packages can't be authenticated and don't prompt about it. This " "is useful for tools like pbuilder. Configuration Item: <literal>APT::Get::" @@ -1602,7 +1826,7 @@ msgstr "" "Get::AllowUnauthenticated</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:524 +#: apt-get.8.xml:535 msgid "" "Show user friendly progress information in the terminal window when packages " "are installed, upgraded or removed. For a machine parsable version of this " @@ -1612,22 +1836,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:537 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 -#: apt.conf.5.xml:1200 apt_preferences.5.xml:700 +#: apt-get.8.xml:548 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 +#: apt.conf.5.xml:1221 apt_preferences.5.xml:700 msgid "Files" msgstr "Ficheiros" -#. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:547 apt-cache.8.xml:352 apt-key.8.xml:197 apt-mark.8.xml:133 -#: apt-secure.8.xml:193 apt-cdrom.8.xml:154 apt-config.8.xml:111 -#: apt.conf.5.xml:1206 apt_preferences.5.xml:707 sources.list.5.xml:280 -#: apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 -#: apt-ftparchive.1.xml:609 -msgid "See Also" -msgstr "Veja também" - #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:548 +#: apt-get.8.xml:559 #, fuzzy #| msgid "" #| "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " @@ -1642,15 +1857,8 @@ msgstr "" "&apt-config;, &apt-secure;, O guia de utilizadores do The APT em " "&guidesdir;, &apt-preferences;, o Howto do APT." -#. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:553 apt-cache.8.xml:357 apt-mark.8.xml:137 -#: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76 -#: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613 -msgid "Diagnostics" -msgstr "Diagnóstico" - #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:554 +#: apt-get.8.xml:565 msgid "" "<command>apt-get</command> returns zero on normal operation, decimal 100 on " "error." @@ -3491,7 +3699,16 @@ msgstr "" "<command>dpkg --add-architecture</command>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:181 +#: apt.conf.5.xml:182 +msgid "" +"List of all build profiles enabled for build-dependency resolution, without " +"the \"<literal>profile.</literal>\" namespace prefix. By default this list " +"is empty. The <envar>DEB_BUILD_PROFILES</envar> as used by &dpkg-" +"buildpackage; overrides the list notation." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:190 msgid "" "Default release to install packages from if more than one version is " "available. Contains release name, codename or release version. Examples: " @@ -3504,7 +3721,7 @@ msgstr "" "'&testing-codename;', '4.0', '5.0*'. Veja também &apt-preferences;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:187 +#: apt.conf.5.xml:196 msgid "" "Ignore held packages; this global option causes the problem resolver to " "ignore held packages in its decision making." @@ -3513,7 +3730,7 @@ msgstr "" "os pacotes segurados sejam ignorados na sua decisão de marcação." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:192 +#: apt.conf.5.xml:201 msgid "" "Defaults to on. When turned on the autoclean feature will remove any " "packages which can no longer be downloaded from the cache. If turned off " @@ -3527,7 +3744,7 @@ msgstr "" "directo de os reinstalar." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:200 +#: apt.conf.5.xml:209 msgid "" "Defaults to on, which will cause APT to install essential and important " "packages as soon as possible in an install/upgrade operation, in order to " @@ -3554,7 +3771,7 @@ msgstr "" "de A não está mais satisfeita." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:212 +#: apt.conf.5.xml:221 msgid "" "The immediate configuration marker is also applied in the potentially " "problematic case of circular dependencies, since a dependency with the " @@ -3583,7 +3800,7 @@ msgstr "" "que pode ajudar a prevenir." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:225 +#: apt.conf.5.xml:234 msgid "" "Before a big operation like <literal>dist-upgrade</literal> is run with this " "option disabled you should try to explicitly <literal>install</literal> the " @@ -3600,7 +3817,7 @@ msgstr "" "eles possa trabalhar em melhorar ou corrigir o processo de actualização." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:236 +#: apt.conf.5.xml:245 msgid "" "Never enable this option unless you <emphasis>really</emphasis> know what " "you are doing. It permits APT to temporarily remove an essential package to " @@ -3621,7 +3838,7 @@ msgstr "" "command> ou nada de que esses pacotes dependam." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:248 +#: apt.conf.5.xml:257 msgid "" "APT uses since version 0.7.26 a resizable memory mapped cache file to store " "the available information. <literal>Cache-Start</literal> acts as a hint of " @@ -3658,13 +3875,13 @@ msgstr "" "da cache é desactivado." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:264 +#: apt.conf.5.xml:273 msgid "Defines which packages are considered essential build dependencies." msgstr "" "Define quais pacotes são considerados dependências essenciais de compilação." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:268 +#: apt.conf.5.xml:277 msgid "" "The Get subsection controls the &apt-get; tool; please see its documentation " "for more information about the options here." @@ -3673,7 +3890,7 @@ msgstr "" "documentação para mais informação acerca das opções daqui." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:273 +#: apt.conf.5.xml:282 msgid "" "The Cache subsection controls the &apt-cache; tool; please see its " "documentation for more information about the options here." @@ -3682,7 +3899,7 @@ msgstr "" "documentação para mais informação acerca das opções daqui." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:278 +#: apt.conf.5.xml:287 msgid "" "The CDROM subsection controls the &apt-cdrom; tool; please see its " "documentation for more information about the options here." @@ -3691,12 +3908,12 @@ msgstr "" "documentação para mais informação acerca das opções de aqui." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:284 +#: apt.conf.5.xml:293 msgid "The Acquire Group" msgstr "O Grupo Acquire" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:285 +#: apt.conf.5.xml:294 msgid "" "The <literal>Acquire</literal> group of options controls the download of " "packages as well as the various \"acquire methods\" responsible for the " @@ -3707,7 +3924,7 @@ msgstr "" "descarga (veja também &sources-list;)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:292 +#: apt.conf.5.xml:301 msgid "" "Security related option defaulting to true, as giving a Release file's " "validation an expiration date prevents replay attacks over a long timescale, " @@ -3729,7 +3946,7 @@ msgstr "" "seguinte." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:305 +#: apt.conf.5.xml:314 msgid "" "Maximum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -3749,7 +3966,7 @@ msgstr "" "nome da opção." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:317 +#: apt.conf.5.xml:326 msgid "" "Minimum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -3769,7 +3986,7 @@ msgstr "" "arquivo ao nome da opção." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:329 +#: apt.conf.5.xml:338 msgid "" "Try to download deltas called <literal>PDiffs</literal> for indexes (like " "<filename>Packages</filename> files) instead of downloading whole ones. True " @@ -3780,7 +3997,7 @@ msgstr "" "por inteiro. Verdadeiro por predefinição." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:332 +#: apt.conf.5.xml:341 msgid "" "Two sub-options to limit the use of PDiffs are also available: " "<literal>FileLimit</literal> can be used to specify a maximum number of " @@ -3798,7 +4015,7 @@ msgstr "" "completo em vez das patches." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:342 +#: apt.conf.5.xml:351 msgid "" "Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</" "literal> or <literal>access</literal> which determines how APT parallelizes " @@ -3813,7 +4030,7 @@ msgstr "" "aberta uma ligação por tipo de URI." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:350 +#: apt.conf.5.xml:359 msgid "" "Number of retries to perform. If this is non-zero APT will retry failed " "files the given number of times." @@ -3822,7 +4039,7 @@ msgstr "" "tentar, no número fornecido de vezes, obter ficheiros falhados." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:355 +#: apt.conf.5.xml:364 msgid "" "Use symlinks for source archives. If set to true then source archives will " "be symlinked when possible instead of copying. True is the default." @@ -3832,7 +4049,7 @@ msgstr "" "A predefinição é verdadeiro." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:360 +#: apt.conf.5.xml:369 msgid "" "<literal>http::Proxy</literal> sets the default proxy to use for HTTP URIs. " "It is in the standard form of <literal>http://[[user][:pass]@]host[:port]/</" @@ -3851,7 +4068,7 @@ msgstr "" "variável de ambiente <envar>http_proxy</envar>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:368 +#: apt.conf.5.xml:377 msgid "" "Three settings are provided for cache control with HTTP/1.1 compliant proxy " "caches. <literal>No-Cache</literal> tells the proxy not to use its cached " @@ -3871,7 +4088,7 @@ msgstr "" "(grandes) ficheiros .deb." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:378 apt.conf.5.xml:466 +#: apt.conf.5.xml:387 apt.conf.5.xml:475 msgid "" "The option <literal>timeout</literal> sets the timeout timer used by the " "method; this value applies to the connection as well as the data timeout." @@ -3881,7 +4098,7 @@ msgstr "" "dados." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:381 +#: apt.conf.5.xml:390 msgid "" "The setting <literal>Acquire::http::Pipeline-Depth</literal> can be used to " "enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e." @@ -3900,7 +4117,7 @@ msgstr "" "web e proxies que escolheram não respeitar a especificação HTTP/1.1." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:388 +#: apt.conf.5.xml:397 msgid "" "<literal>Acquire::http::AllowRedirect</literal> controls whether APT will " "follow redirects, which is enabled by default." @@ -3909,7 +4126,7 @@ msgstr "" "os redireccionamentos, o que está activo por predefinição." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:391 +#: apt.conf.5.xml:400 #, fuzzy #| msgid "" #| "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</" @@ -3931,7 +4148,7 @@ msgstr "" "de múltiplos servidores ao mesmo tempo.)" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:398 +#: apt.conf.5.xml:407 msgid "" "<literal>Acquire::http::User-Agent</literal> can be used to set a different " "User-Agent for the http download method as some proxies allow access for " @@ -3943,7 +4160,7 @@ msgstr "" "identificador conhecido." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:402 +#: apt.conf.5.xml:411 msgid "" "<literal>Acquire::http::Proxy-Auto-Detect</literal> can be used to specify " "an external command to discover the http proxy to use. Apt expects the " @@ -3957,7 +4174,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:420 +#: apt.conf.5.xml:429 msgid "" "The <literal>Cache-control</literal>, <literal>Timeout</literal>, " "<literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> and " @@ -3974,7 +4191,7 @@ msgstr "" "literal> ainda não é suportada." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:428 +#: apt.conf.5.xml:437 msgid "" "<literal>CaInfo</literal> suboption specifies place of file that holds info " "about trusted certificates. <literal><host>::CaInfo</literal> is the " @@ -4013,7 +4230,7 @@ msgstr "" "host>::SslForceVersion</literal> é a opção 'por máquina' correspondente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:449 +#: apt.conf.5.xml:458 msgid "" "<literal>ftp::Proxy</literal> sets the default proxy to use for FTP URIs. " "It is in the standard form of <literal>ftp://[[user][:pass]@]host[:port]/</" @@ -4047,7 +4264,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:469 +#: apt.conf.5.xml:478 msgid "" "Several settings are provided to control passive mode. Generally it is safe " "to leave passive mode on; it works in nearly every environment. However, " @@ -4063,7 +4280,7 @@ msgstr "" "especÃfica (veja a amostra de ficheiro de configuração para exemplos)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:476 +#: apt.conf.5.xml:485 msgid "" "It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</" "envar> environment variable to an HTTP URL - see the discussion of the http " @@ -4077,7 +4294,7 @@ msgstr "" "eficiência." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:481 +#: apt.conf.5.xml:490 msgid "" "The setting <literal>ForceExtended</literal> controls the use of RFC2428 " "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is " @@ -4092,13 +4309,13 @@ msgstr "" "ligações IPv4. Note que a maioria dos servidores FTP não suporta RFC2428." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:495 +#: apt.conf.5.xml:504 #, no-wrap msgid "/cdrom/::Mount \"foo\";" msgstr "/cdrom/::Mount \"foo\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:490 +#: apt.conf.5.xml:499 msgid "" "For URIs using the <literal>cdrom</literal> method, the only configurable " "option is the mount point, <literal>cdrom::Mount</literal>, which must be " @@ -4119,7 +4336,7 @@ msgstr "" "barra final. Comandos para desmontar podem ser especificados usando o UMount." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:503 +#: apt.conf.5.xml:512 msgid "" "For GPGV URIs the only configurable option is <literal>gpgv::Options</" "literal>, which passes additional parameters to gpgv." @@ -4128,13 +4345,13 @@ msgstr "" "literal>, a qual passa parâmetros adicionais ao gpgv." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:514 +#: apt.conf.5.xml:523 #, no-wrap msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";" msgstr "Acquire::CompressionTypes::<replaceable>Extensão de Ficheiro</replaceable> \"<replaceable>Nome de método</replaceable>\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:509 +#: apt.conf.5.xml:518 msgid "" "List of compression types which are understood by the acquire methods. " "Files like <filename>Packages</filename> can be available in various " @@ -4153,19 +4370,19 @@ msgstr "" "alterado. A sintaxe para isto é: <placeholder type=\"synopsis\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:519 +#: apt.conf.5.xml:528 #, no-wrap msgid "Acquire::CompressionTypes::Order:: \"gz\";" msgstr "Acquire::CompressionTypes::Order:: \"gz\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:522 +#: apt.conf.5.xml:531 #, no-wrap msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:515 +#: apt.conf.5.xml:524 msgid "" "Also, the <literal>Order</literal> subgroup can be used to define in which " "order the acquire system will try to download the compressed files. The " @@ -4197,13 +4414,13 @@ msgstr "" "automaticamente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:529 +#: apt.conf.5.xml:538 #, no-wrap msgid "Dir::Bin::bzip2 \"/bin/bzip2\";" msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:524 +#: apt.conf.5.xml:533 msgid "" "Note that the <literal>Dir::Bin::<replaceable>Methodname</replaceable></" "literal> will be checked at run time. If this option has been set, the " @@ -4229,7 +4446,7 @@ msgstr "" "prefixar a lista com este tipo." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:534 +#: apt.conf.5.xml:543 msgid "" "The special type <literal>uncompressed</literal> can be used to give " "uncompressed files a preference, but note that most archives don't provide " @@ -4241,7 +4458,7 @@ msgstr "" "maioritariamente apenas para mirrors locais." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:541 +#: apt.conf.5.xml:550 msgid "" "When downloading <literal>gzip</literal> compressed indexes (Packages, " "Sources, or Translations), keep them gzip compressed locally instead of " @@ -4254,7 +4471,7 @@ msgstr "" "CPU quando constrói as caches de pacotes locais. Falso por predefinição." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:549 +#: apt.conf.5.xml:558 msgid "" "The Languages subsection controls which <filename>Translation</filename> " "files are downloaded and in which order APT tries to display the description-" @@ -4274,13 +4491,13 @@ msgstr "" "especialmenteraros." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><programlisting> -#: apt.conf.5.xml:566 +#: apt.conf.5.xml:575 #, no-wrap msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" msgstr "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:554 +#: apt.conf.5.xml:563 msgid "" "The default list includes \"environment\" and \"en\". " "\"<literal>environment</literal>\" has a special meaning here: it will be " @@ -4319,7 +4536,7 @@ msgstr "" "\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:567 +#: apt.conf.5.xml:576 msgid "" "Note: To prevent problems resulting from APT being executed in different " "environments (e.g. by different users or by other programs) all Translation " @@ -4333,22 +4550,22 @@ msgstr "" "literal>\" implÃcito)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:576 +#: apt.conf.5.xml:585 msgid "When downloading, force to use only the IPv4 protocol." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:582 +#: apt.conf.5.xml:591 msgid "When downloading, force to use only the IPv6 protocol." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:589 +#: apt.conf.5.xml:598 msgid "Directories" msgstr "Directórios" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:591 +#: apt.conf.5.xml:600 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@ -4367,7 +4584,7 @@ msgstr "" "items que não começam com <filename>/</filename> ou <filename>./</filename>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:598 +#: apt.conf.5.xml:607 msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@ -4389,7 +4606,7 @@ msgstr "" "literal>" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:607 +#: apt.conf.5.xml:616 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -4404,7 +4621,7 @@ msgstr "" "ficheiro de configuração especificado por <envar>APT_CONFIG</envar>)." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:613 +#: apt.conf.5.xml:622 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -4415,7 +4632,7 @@ msgstr "" "estar feito então é carregado o ficheiro de configuração principal." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:617 +#: apt.conf.5.xml:626 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@ -4433,7 +4650,7 @@ msgstr "" "respectivos programas." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:625 +#: apt.conf.5.xml:634 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -4454,7 +4671,7 @@ msgstr "" "procurado em <filename>/tmp/staging/var/lib/dpkg/status</filename>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:638 +#: apt.conf.5.xml:647 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@ -4472,12 +4689,12 @@ msgstr "" "expressão regular." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:647 +#: apt.conf.5.xml:656 msgid "APT in DSelect" msgstr "APT em DSelect" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:649 +#: apt.conf.5.xml:658 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@ -4488,7 +4705,7 @@ msgstr "" "<literal>DSelect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:654 +#: apt.conf.5.xml:663 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@ -4510,7 +4727,7 @@ msgstr "" "pacotes." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:668 +#: apt.conf.5.xml:677 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." @@ -4519,7 +4736,7 @@ msgstr "" "comandos quando é corrido para a fase de instalação." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:673 +#: apt.conf.5.xml:682 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." @@ -4528,7 +4745,7 @@ msgstr "" "comandos quando é executado para a fase de actualização." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:678 +#: apt.conf.5.xml:687 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." @@ -4537,12 +4754,12 @@ msgstr "" "continuar. A predefinição é avisar apenas em caso de erro." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:684 +#: apt.conf.5.xml:693 msgid "How APT calls &dpkg;" msgstr "Como o APT chama o &dpkg;" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:685 +#: apt.conf.5.xml:694 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." @@ -4551,7 +4768,7 @@ msgstr "" "&dpkg;. Estas estão na secção <literal>DPkg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:690 +#: apt.conf.5.xml:699 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -4562,7 +4779,7 @@ msgstr "" "um argumento único ao &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:696 +#: apt.conf.5.xml:705 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4575,7 +4792,7 @@ msgstr "" "bin/sh</filename>, caso algum deles falhe, o APT irá abortar." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:703 +#: apt.conf.5.xml:712 #, fuzzy #| msgid "" #| "This is a list of shell commands to run before invoking &dpkg;. Like " @@ -4599,7 +4816,7 @@ msgstr "" "instalar, um por cada linha na entrada standard." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:710 +#: apt.conf.5.xml:719 #, fuzzy #| msgid "" #| "Version 2 of this protocol dumps more information, including the protocol " @@ -4620,7 +4837,7 @@ msgstr "" "dado ao <literal>Pre-Install-Pkgs</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:715 +#: apt.conf.5.xml:724 msgid "" "The version of the protocol to be used for the command " "<literal><replaceable>cmd</replaceable></literal> can be chosen by setting " @@ -4631,7 +4848,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:722 +#: apt.conf.5.xml:731 msgid "" "The file descriptor to be used to send the information can be requested with " "<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</" @@ -4642,7 +4859,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:732 +#: apt.conf.5.xml:741 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." @@ -4651,7 +4868,7 @@ msgstr "" "predefinição é <filename>/</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:737 +#: apt.conf.5.xml:746 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." @@ -4660,12 +4877,12 @@ msgstr "" "predefinição é desactivar a assinatura e produzir todos os binários." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:742 +#: apt.conf.5.xml:751 msgid "dpkg trigger usage (and related options)" msgstr "Utilização trigger do dpkg (e opções relacionadas)" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:743 +#: apt.conf.5.xml:752 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@ -4691,7 +4908,7 @@ msgstr "" "100% enquanto na realidade está a configurar todos os pacotes." #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:758 +#: apt.conf.5.xml:767 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -4705,7 +4922,7 @@ msgstr "" "DPkg::TriggersPending \"true\";" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:752 +#: apt.conf.5.xml:761 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -4729,7 +4946,7 @@ msgstr "" "\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:765 +#: apt.conf.5.xml:774 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -4751,7 +4968,7 @@ msgstr "" "chamadas unpack e remove." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:773 +#: apt.conf.5.xml:782 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@ -4781,7 +4998,7 @@ msgstr "" "arrancar." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:788 +#: apt.conf.5.xml:797 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@ -4799,7 +5016,7 @@ msgstr "" "esta opção em todas excepto na última execução." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:795 +#: apt.conf.5.xml:804 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@ -4815,7 +5032,7 @@ msgstr "" "configurar este pacote." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:808 +#: apt.conf.5.xml:817 #, no-wrap msgid "" "OrderList::Score {\n" @@ -4833,7 +5050,7 @@ msgstr "" "};" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:801 +#: apt.conf.5.xml:810 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@ -4857,12 +5074,12 @@ msgstr "" "predefinidos. <placeholder type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:821 +#: apt.conf.5.xml:830 msgid "Periodic and Archives options" msgstr "Opções Periodic e Archives" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:822 +#: apt.conf.5.xml:831 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@ -4875,12 +5092,12 @@ msgstr "" "Veja o cabeçalho deste script para uma breve documentação das suas opções." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:830 +#: apt.conf.5.xml:839 msgid "Debug options" msgstr "Opções de depuração" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:832 +#: apt.conf.5.xml:841 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -4897,7 +5114,7 @@ msgstr "" "interesse para o utilizador normal, mas algumas podem ter:" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:843 +#: apt.conf.5.xml:852 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@ -4908,7 +5125,7 @@ msgstr "" "remove, purge</literal>." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:851 +#: apt.conf.5.xml:860 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@ -4919,7 +5136,7 @@ msgstr "" "<literal>apt-get -s install</literal>) como um utilizador não root." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:860 +#: apt.conf.5.xml:869 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -4931,7 +5148,7 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:868 +#: apt.conf.5.xml:877 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." @@ -4940,12 +5157,12 @@ msgstr "" "IDs de CD-ROM." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:878 +#: apt.conf.5.xml:887 msgid "A full list of debugging options to apt follows." msgstr "Segue-se uma lista completa de opções de depuração para o apt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:887 +#: apt.conf.5.xml:896 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" @@ -4953,25 +5170,25 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:898 +#: apt.conf.5.xml:907 msgid "Print information related to downloading packages using FTP." msgstr "" "Escreve informação relacionada com o descarregamento de pacotes usando FTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:909 +#: apt.conf.5.xml:918 msgid "Print information related to downloading packages using HTTP." msgstr "" "Escreve informação relacionada com o descarregamento de pacotes usando HTTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:920 +#: apt.conf.5.xml:929 msgid "Print information related to downloading packages using HTTPS." msgstr "" "Escreve informação relacionada com o descarregamento de pacotes usando HTTPS." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:931 +#: apt.conf.5.xml:940 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." @@ -4980,7 +5197,7 @@ msgstr "" "criptográficas usando <literal>gpg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:942 +#: apt.conf.5.xml:951 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." @@ -4989,13 +5206,13 @@ msgstr "" "armazenados em CD-ROMs." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:952 +#: apt.conf.5.xml:961 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" "Descreve os processos de resolver dependências de compilação no &apt-get;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:962 +#: apt.conf.5.xml:971 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." @@ -5004,7 +5221,7 @@ msgstr "" "<literal>apt</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:972 +#: apt.conf.5.xml:981 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -5015,7 +5232,7 @@ msgstr "" "para um CD-ROM." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:983 +#: apt.conf.5.xml:992 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." @@ -5025,14 +5242,14 @@ msgstr "" "literal></quote> ao mesmo tempo." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:995 +#: apt.conf.5.xml:1004 msgid "Log when items are added to or removed from the global download queue." msgstr "" "Regista no log quando os items são adicionados ou removidos da fila de " "download global." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1005 +#: apt.conf.5.xml:1014 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." @@ -5041,7 +5258,7 @@ msgstr "" "checksums e assinaturas criptográficas dos ficheiros descarregados." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1015 +#: apt.conf.5.xml:1024 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." @@ -5051,7 +5268,7 @@ msgstr "" "pacote." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1027 +#: apt.conf.5.xml:1036 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." @@ -5060,7 +5277,7 @@ msgstr "" "do apt quando se descarrega diffs de Ãndice em vez de Ãndices completos." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1038 +#: apt.conf.5.xml:1047 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" @@ -5068,7 +5285,7 @@ msgstr "" "downloads." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1049 +#: apt.conf.5.xml:1058 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." @@ -5077,7 +5294,7 @@ msgstr "" "de pacotes e com a remoção de pacotes não utilizados." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1059 +#: apt.conf.5.xml:1068 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@ -5092,7 +5309,7 @@ msgstr "" "literal>; veja <literal>Debug::pkgProblemResolver</literal> para isso." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1073 +#: apt.conf.5.xml:1082 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@ -5123,7 +5340,7 @@ msgstr "" "pacote aparece." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1094 +#: apt.conf.5.xml:1103 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." @@ -5133,7 +5350,7 @@ msgstr "" "único." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1105 +#: apt.conf.5.xml:1114 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." @@ -5142,7 +5359,7 @@ msgstr "" "estado e quaisquer erros encontrados enquanto os analisa." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1116 +#: apt.conf.5.xml:1125 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." @@ -5151,7 +5368,7 @@ msgstr "" "literal> deve passar os pacotes ao &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1128 +#: apt.conf.5.xml:1137 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" @@ -5159,12 +5376,12 @@ msgstr "" "&dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1139 +#: apt.conf.5.xml:1148 msgid "Output the priority of each package list on startup." msgstr "Escreve a prioridade da cada lista de pacote no arranque." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1149 +#: apt.conf.5.xml:1158 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." @@ -5173,7 +5390,7 @@ msgstr "" "acontece quando é encontrado um problema de dependências complexo)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1160 +#: apt.conf.5.xml:1169 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -5184,7 +5401,7 @@ msgstr "" "mesma que é descrita em <literal>Debug::pkgDepCache::Marker</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1172 +#: apt.conf.5.xml:1181 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." @@ -5192,14 +5409,22 @@ msgstr "" "Escreve informação acerca dos fornecedores lida de <filename>/etc/apt/" "vendors.list</filename>." +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:1191 +msgid "" +"Display the external commands that are called by apt hooks. This includes e." +"g. the config options <literal>DPkg::{Pre,Post}-Invoke</literal> or " +"<literal>APT::Update::{Pre,Post}-Invoke</literal>." +msgstr "" + #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:1194 apt_preferences.5.xml:547 sources.list.5.xml:239 +#: apt.conf.5.xml:1215 apt_preferences.5.xml:547 sources.list.5.xml:239 #: apt-ftparchive.1.xml:598 msgid "Examples" msgstr "Exemplos" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1195 +#: apt.conf.5.xml:1216 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -5209,7 +5434,7 @@ msgstr "" #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1207 +#: apt.conf.5.xml:1228 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." @@ -7213,14 +7438,14 @@ msgid "" "template-file and config-script are written to the temporary directory " "specified by the <option>-t</option> or <option>--tempdir</option> " "(<literal>APT::ExtractTemplates::TempDir</literal>) directory, with " -"filenames of the form <filename>package.template.XXXX</filename> and " -"<filename>package.config.XXXX</filename>" +"filenames of the form <filename>package.template.XXXXXX</filename> and " +"<filename>package.config.XXXXXX</filename>" msgstr "" "ficheiro-modelo e script-de-configuração são escritos num directório " "temporário especificado por <option>-t</option> ou <option>--tempdir</" "option> (<literal>APT::ExtractTemplates::TempDir</literal>) directório, com " -"nomes de ficheiros no formato <filename>pacote.modelo.XXXX</filename> e " -"<filename>pacote.configuração.XXXX</filename>" +"nomes de ficheiros no formato <filename>pacote.modelo.XXXXXX</filename> e " +"<filename>pacote.configuração.XXXXXX</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-extracttemplates.1.xml:60 @@ -8246,125 +8471,6 @@ msgstr "" "<command>apt-ftparchive</command> devolve zero na operação normal, 100 " "decimal em erro." -#. type: TH -#: apt.8:17 -#, no-wrap -msgid "apt" -msgstr "apt" - -#. type: TH -#: apt.8:17 -#, no-wrap -msgid "16 June 1998" -msgstr "16 Junho 1998" - -#. type: TH -#: apt.8:17 -#, no-wrap -msgid "Debian" -msgstr "Debian" - -#. type: SH -#: apt.8:18 -#, no-wrap -msgid "NAME" -msgstr "NOME" - -#. type: Plain text -#: apt.8:20 -msgid "apt - Advanced Package Tool" -msgstr "apt - Ferramenta de Pacotes Avançada" - -#. type: SH -#: apt.8:20 -#, no-wrap -msgid "SYNOPSIS" -msgstr "SINOPSE" - -#. type: Plain text -#: apt.8:22 -msgid "B<apt>" -msgstr "B<apt>" - -#. type: SH -#: apt.8:22 -#, no-wrap -msgid "DESCRIPTION" -msgstr "DESCRIÇÃO" - -#. type: Plain text -#: apt.8:31 -msgid "" -"APT is a management system for software packages. For normal day to day " -"package management there are several frontends available, such as " -"B<aptitude>(8) for the command line or B<synaptic>(8) for the X Window " -"System. Some options are only implemented in B<apt-get>(8) though." -msgstr "" -"APT é um sistema de gestão para pacotes de software. Para a gestão de " -"pacotes normal do dia-a-dia existem vários frontends disponÃveis, como o " -"B<aptitude>(8) para a linha de comandos ou o B<synaptic>(8) para o X Window " -"System. No entanto, algumas das opções estão apenas implementadas no B<apt-" -"get>(8)." - -#. type: SH -#: apt.8:31 -#, no-wrap -msgid "SEE ALSO" -msgstr "VEJA TAMBÉM" - -#. type: Plain text -#: apt.8:38 -msgid "" -"B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " -"B<apt_preferences>(5), B<apt-secure>(8)" -msgstr "" -"B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " -"B<apt_preferences>(5), B<apt-secure>(8)" - -#. type: SH -#: apt.8:38 -#, no-wrap -msgid "DIAGNOSTICS" -msgstr "DIAGNÓSTICOS" - -#. type: Plain text -#: apt.8:40 -msgid "apt returns zero on normal operation, decimal 100 on error." -msgstr "o apt devolve zero na operação normal, 100 decimal em erro." - -#. type: SH -#: apt.8:40 -#, no-wrap -msgid "BUGS" -msgstr "BUGS" - -#. type: Plain text -#: apt.8:42 -msgid "This manpage isn't even started." -msgstr "Este manual ainda nem começou." - -#. type: Plain text -#: apt.8:51 -msgid "" -"See E<lt>http://bugs.debian.org/aptE<gt>. If you wish to report a bug in " -"B<apt>, please see I</usr/share/doc/debian/bug-reporting.txt> or the " -"B<reportbug>(1) command." -msgstr "" -"Veja E<lt>http://bugs.debian.org/aptE<gt>. Se deseja reportar um bug em " -"B<apt>, por favor veja I</usr/share/doc/debian/bug-reporting.txt> ou o " -"comando B<reportbug>(1) ." - -#. type: SH -#: apt.8:51 -#, no-wrap -msgid "AUTHOR" -msgstr "AUTOR" - -#. type: Plain text -#: apt.8:52 -msgid "apt was written by the APT team E<lt>apt@packages.debian.orgE<gt>." -msgstr "apt foi escrito pelo APT team E<lt>apt@packages.debian.orgE<gt>." - #. type: <title></title> #: guide.sgml:4 msgid "APT User's Guide" @@ -8700,7 +8806,7 @@ msgstr "" #| "command that caused them to be downloaded again without <tt>-d</tt>." msgid "" "<prgn>apt-get</prgn> has several command line options that are detailed in " -"its man page, <manref section=\"8\" name=\"apt-get\">. The most useful " +"its man page, <manref name=\"apt-get\" section=\"8\">. The most useful " "option is <tt>-d</tt> which does not install the fetched files. If the " "system has to download a large number of package it would be undesired to " "start installing them in case something goes wrong. When <tt>-d</tt> is used " @@ -9907,6 +10013,89 @@ msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade" msgid "Which will use the already fetched archives on the disc." msgstr "O qual irá usar os arquivos já obtidos e que estão no disco." +#~ msgid "apt" +#~ msgstr "apt" + +#~ msgid "16 June 1998" +#~ msgstr "16 Junho 1998" + +#~ msgid "Debian" +#~ msgstr "Debian" + +#~ msgid "NAME" +#~ msgstr "NOME" + +#~ msgid "apt - Advanced Package Tool" +#~ msgstr "apt - Ferramenta de Pacotes Avançada" + +#~ msgid "SYNOPSIS" +#~ msgstr "SINOPSE" + +#~ msgid "B<apt>" +#~ msgstr "B<apt>" + +#~ msgid "DESCRIPTION" +#~ msgstr "DESCRIÇÃO" + +#, fuzzy +#~| msgid "" +#~| "APT is a management system for software packages. For normal day to day " +#~| "package management there are several frontends available, such as " +#~| "B<aptitude>(8) for the command line or B<synaptic>(8) for the X Window " +#~| "System. Some options are only implemented in B<apt-get>(8) though." +#~ msgid "" +#~ "For normal day to day package management there are several frontends " +#~ "available, such as B<aptitude>(8) for the command line or " +#~ "B<synaptic>(8) for the X Window System. Some options are only " +#~ "implemented in B<apt-get>(8) though." +#~ msgstr "" +#~ "APT é um sistema de gestão para pacotes de software. Para a gestão de " +#~ "pacotes normal do dia-a-dia existem vários frontends disponÃveis, como o " +#~ "B<aptitude>(8) para a linha de comandos ou o B<synaptic>(8) para o X " +#~ "Window System. No entanto, algumas das opções estão apenas implementadas " +#~ "no B<apt-get>(8)." + +#~ msgid "SEE ALSO" +#~ msgstr "VEJA TAMBÉM" + +#, fuzzy +#~| msgid "" +#~| "B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " +#~| "B<apt_preferences>(5), B<apt-secure>(8)" +#~ msgid "" +#~ "B<apt>(8), B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources." +#~ "list>(5), B<apt_preferences>(5), B<apt-secure>(8)" +#~ msgstr "" +#~ "B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " +#~ "B<apt_preferences>(5), B<apt-secure>(8)" + +#~ msgid "DIAGNOSTICS" +#~ msgstr "DIAGNÓSTICOS" + +#~ msgid "apt returns zero on normal operation, decimal 100 on error." +#~ msgstr "o apt devolve zero na operação normal, 100 decimal em erro." + +#~ msgid "BUGS" +#~ msgstr "BUGS" + +#~ msgid "This manpage isn't even started." +#~ msgstr "Este manual ainda nem começou." + +#~ msgid "" +#~ "See E<lt>http://bugs.debian.org/aptE<gt>. If you wish to report a bug in " +#~ "B<apt>, please see I</usr/share/doc/debian/bug-reporting.txt> or the " +#~ "B<reportbug>(1) command." +#~ msgstr "" +#~ "Veja E<lt>http://bugs.debian.org/aptE<gt>. Se deseja reportar um bug em " +#~ "B<apt>, por favor veja I</usr/share/doc/debian/bug-reporting.txt> ou o " +#~ "comando B<reportbug>(1) ." + +#~ msgid "AUTHOR" +#~ msgstr "AUTOR" + +#~ msgid "apt was written by the APT team E<lt>apt@packages.debian.orgE<gt>." +#~ msgstr "apt foi escrito pelo APT team E<lt>apt@packages.debian.orgE<gt>." + #~ msgid "Package resource list for APT" #~ msgstr "Lista de recursos de pacote para APT" diff --git a/doc/po/pt_BR.po b/doc/po/pt_BR.po index c1014fbb0..15d0bf27d 100644 --- a/doc/po/pt_BR.po +++ b/doc/po/pt_BR.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 09:49+0200\n" "PO-Revision-Date: 2004-09-20 17:02+0000\n" "Last-Translator: André LuÃs Lopes <andrelop@debian.org>\n" "Language-Team: <debian-l10n-portuguese@lists.debian.org>\n" @@ -480,34 +480,226 @@ msgid "" msgstr "" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 apt-mark.8.xml:28 -#: apt-secure.8.xml:27 apt-cdrom.8.xml:27 apt-config.8.xml:28 +#: apt.8.xml:25 apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 +#: apt-mark.8.xml:28 apt-secure.8.xml:27 apt-cdrom.8.xml:27 +#: apt-config.8.xml:28 msgid "8" msgstr "" #. type: Content of: <refentry><refmeta><refmiscinfo> -#: apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 apt-mark.8.xml:29 -#: apt-secure.8.xml:28 apt-cdrom.8.xml:28 apt-config.8.xml:29 -#: apt.conf.5.xml:34 apt_preferences.5.xml:28 sources.list.5.xml:29 -#: apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 apt-ftparchive.1.xml:29 +#: apt.8.xml:26 apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 +#: apt-mark.8.xml:29 apt-secure.8.xml:28 apt-cdrom.8.xml:28 +#: apt-config.8.xml:29 apt.conf.5.xml:34 apt_preferences.5.xml:28 +#: sources.list.5.xml:29 apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 +#: apt-ftparchive.1.xml:29 msgid "APT" msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-get.8.xml:35 -msgid "APT package handling utility -- command-line interface" +#: apt.8.xml:32 +msgid "command-line interface" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 apt-mark.8.xml:40 -#: apt-secure.8.xml:52 apt-cdrom.8.xml:39 apt-config.8.xml:40 -#: apt.conf.5.xml:43 apt_preferences.5.xml:38 sources.list.5.xml:38 -#: apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 apt-ftparchive.1.xml:40 +#: apt.8.xml:37 apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 +#: apt-mark.8.xml:40 apt-secure.8.xml:52 apt-cdrom.8.xml:39 +#: apt-config.8.xml:40 apt.conf.5.xml:43 apt_preferences.5.xml:38 +#: sources.list.5.xml:38 apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 +#: apt-ftparchive.1.xml:40 #, fuzzy msgid "Description" msgstr "Descrição" #. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:38 +msgid "" +"<command>apt</command> (Advanced Package Tool) is the command-line tool for " +"handling packages. It provides a commandline interface for the package " +"management of the system. See also &apt-get; and &apt-cache; for more low-" +"level command options." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:47 +msgid "" +"<literal>list</literal> is used to display a list of packages. It supports " +"shell pattern for matching package names and the following options: " +"<option>--installed</option>, <option>--upgradable</option>, <option>--all-" +"versions</option> are supported." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:58 +msgid "" +"<literal>search</literal> searches for the given term(s) and display " +"matching packages." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:64 +msgid "" +"<literal>show</literal> shows the package information for the given " +"package(s)." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:71 +msgid "" +"<literal>install</literal> is followed by one or more package names desired " +"for installation or upgrading." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:75 apt-get.8.xml:118 +msgid "" +"A specific version of a package can be selected for installation by " +"following the package name with an equals and the version of the package to " +"select. This will cause that version to be located and selected for install. " +"Alternatively a specific distribution can be selected by following the " +"package name with a slash and the version of the distribution or the Archive " +"name (stable, testing, unstable)." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:85 apt-get.8.xml:153 +msgid "" +"<literal>remove</literal> is identical to <literal>install</literal> except " +"that packages are removed instead of installed. Note that removing a package " +"leaves its configuration files on the system. If a plus sign is appended to " +"the package name (with no intervening space), the identified package will be " +"installed instead of removed." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:93 +msgid "" +"<literal>edit-sources</literal> lets you edit your sources.list file and " +"provides basic sanity checks." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:99 +msgid "" +"<literal>update</literal> is used to resynchronize the package index files " +"from their sources." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:105 +msgid "" +"<literal>upgrade</literal> is used to install the newest versions of all " +"packages currently installed on the system from the sources enumerated in " +"<filename>/etc/apt/sources.list</filename>. New package will be installed, " +"but existing package will never removed." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.8.xml:114 +msgid "" +"<literal>full-upgrade</literal> performs the function of upgrade but may " +"also remove installed packages if that is required in order to resolve a " +"package conflict." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:124 apt-get.8.xml:257 apt-cache.8.xml:250 apt-mark.8.xml:110 +#: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50 +#: apt-ftparchive.1.xml:506 +msgid "options" +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:134 +msgid "Script usage" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:136 +msgid "" +"The &apt; commandline is designed as a end-user tool and it may change the " +"output between versions. While it tries to not break backward compatibility " +"there is no guarantee for it either. All features of &apt; are available in " +"&apt-cache; and &apt-get; via APT options. Please prefer using these " +"commands in your scripts." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:144 +msgid "Differences to &apt-get;" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:145 +msgid "" +"The <command>apt</command> command is meant to be pleasant for end users and " +"does not need to be backward compatible like &apt-get;. Therefore some " +"options are different:" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:151 +#, fuzzy +msgid "The option <literal>DPkgPM::Progress-Fancy</literal> is enabled." +msgstr "a linha <literal>Package:</literal>" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:155 +#, fuzzy +msgid "The option <literal>APT::Color</literal> is enabled." +msgstr "a linha <literal>Component:</literal>" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:159 +msgid "" +"A new <literal>list</literal> command is available similar to <literal>dpkg " +"--list</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.8.xml:164 +#, fuzzy +msgid "" +"The option <literal>upgrade</literal> has <literal>--with-new-pkgs</literal> " +"enabled by default." +msgstr "a linha <literal>Archive:</literal>" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:174 apt-get.8.xml:558 apt-cache.8.xml:352 apt-key.8.xml:197 +#: apt-mark.8.xml:133 apt-secure.8.xml:193 apt-cdrom.8.xml:154 +#: apt-config.8.xml:111 apt.conf.5.xml:1227 apt_preferences.5.xml:707 +#: sources.list.5.xml:280 apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 +#: apt-ftparchive.1.xml:609 +#, fuzzy +msgid "See Also" +msgstr "Consulte também" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:175 +msgid "" +"&apt-get;, &apt-cache;, &sources-list;, &apt-conf;, &apt-config;, The APT " +"User's guide in &guidesdir;, &apt-preferences;, the APT Howto." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt.8.xml:180 apt-get.8.xml:564 apt-cache.8.xml:357 apt-mark.8.xml:137 +#: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76 +#: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613 +msgid "Diagnostics" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.8.xml:181 +msgid "" +"<command>apt</command> returns zero on normal operation, decimal 100 on " +"error." +msgstr "" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-get.8.xml:35 +msgid "APT package handling utility -- command-line interface" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> #: apt-get.8.xml:41 msgid "" "<command>apt-get</command> is the command-line tool for handling packages, " @@ -597,17 +789,6 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:118 -msgid "" -"A specific version of a package can be selected for installation by " -"following the package name with an equals and the version of the package to " -"select. This will cause that version to be located and selected for install. " -"Alternatively a specific distribution can be selected by following the " -"package name with a slash and the version of the distribution or the Archive " -"name (stable, testing, unstable)." -msgstr "" - -#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:125 msgid "" "Both of the version selection mechanisms can downgrade packages and must be " @@ -646,16 +827,6 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:153 -msgid "" -"<literal>remove</literal> is identical to <literal>install</literal> except " -"that packages are removed instead of installed. Note that removing a package " -"leaves its configuration files on the system. If a plus sign is appended to " -"the package name (with no intervening space), the identified package will be " -"installed instead of removed." -msgstr "" - -#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:161 msgid "" "<literal>purge</literal> is identical to <literal>remove</literal> except " @@ -780,13 +951,6 @@ msgid "" "<option>install</option> command." msgstr "" -#. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:257 apt-cache.8.xml:250 apt-mark.8.xml:110 -#: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50 -#: apt-ftparchive.1.xml:506 -msgid "options" -msgstr "" - #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:262 msgid "" @@ -925,18 +1089,28 @@ msgid "" "satisfied. By default is it not set which means that the host architecture " "is the same as the build architecture (which is defined by <literal>APT::" "Architecture</literal>). Configuration Item: <literal>APT::Get::Host-" -"Architecture</literal>" +"Architecture</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:380 msgid "" +"This option controls the activated build profiles for which a source package " +"is built by <command>apt-get source --compile</command> and how build " +"dependencies are satisfied. By default no build profile is active. More " +"than one build profile can be activated at a time by concatenating them with " +"a comma. Configuration Item: <literal>APT::Build-Profiles</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:391 +msgid "" "Compile source packages after downloading them. Configuration Item: " "<literal>APT::Get::Compile</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:385 +#: apt-get.8.xml:396 msgid "" "Ignore package holds; this causes <command>apt-get</command> to ignore a " "hold placed on a package. This may be useful in conjunction with " @@ -945,7 +1119,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:392 +#: apt-get.8.xml:403 msgid "" "Allow installing new packages when used in conjunction with " "<literal>upgrade</literal>. This is useful if the update of a installed " @@ -957,7 +1131,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:404 +#: apt-get.8.xml:415 msgid "" "Do not upgrade packages; when used in conjunction with <literal>install</" "literal>, <literal>no-upgrade</literal> will prevent packages on the command " @@ -966,7 +1140,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:411 +#: apt-get.8.xml:422 msgid "" "Do not install new packages; when used in conjunction with <literal>install</" "literal>, <literal>only-upgrade</literal> will install upgrades for already " @@ -975,7 +1149,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:419 +#: apt-get.8.xml:430 msgid "" "Force yes; this is a dangerous option that will cause apt to continue " "without prompting if it is doing something potentially harmful. It should " @@ -985,7 +1159,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:427 +#: apt-get.8.xml:438 msgid "" "Instead of fetching the files to install their URIs are printed. Each URI " "will have the path, the destination file name, the size and the expected MD5 " @@ -998,7 +1172,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:438 +#: apt-get.8.xml:449 msgid "" "Use purge instead of remove for anything that would be removed. An asterisk " "(\"*\") will be displayed next to packages which are scheduled to be purged. " @@ -1007,14 +1181,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:446 +#: apt-get.8.xml:457 msgid "" "Re-install packages that are already installed and at the newest version. " "Configuration Item: <literal>APT::Get::ReInstall</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:451 +#: apt-get.8.xml:462 msgid "" "This option is on by default; use <literal>--no-list-cleanup</literal> to " "turn it off. When it is on, <command>apt-get</command> will automatically " @@ -1025,7 +1199,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:461 +#: apt-get.8.xml:472 msgid "" "This option controls the default input to the policy engine; it creates a " "default pin at priority 990 using the specified release string. This " @@ -1039,7 +1213,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:476 +#: apt-get.8.xml:487 msgid "" "Only perform operations that are 'trivial'. Logically this can be considered " "related to <option>--assume-yes</option>; where <option>--assume-yes</" @@ -1048,14 +1222,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:483 +#: apt-get.8.xml:494 msgid "" "If any packages are to be removed apt-get immediately aborts without " "prompting. Configuration Item: <literal>APT::Get::Remove</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:489 +#: apt-get.8.xml:500 msgid "" "If the command is either <literal>install</literal> or <literal>remove</" "literal>, then this option acts like running the <literal>autoremove</" @@ -1064,7 +1238,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:496 +#: apt-get.8.xml:507 msgid "" "Only has meaning for the <literal>source</literal> and <literal>build-dep</" "literal> commands. Indicates that the given source names are not to be " @@ -1076,7 +1250,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:507 +#: apt-get.8.xml:518 msgid "" "Download only the diff, dsc, or tar file of a source archive. Configuration " "Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</" @@ -1084,14 +1258,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:513 +#: apt-get.8.xml:524 msgid "" "Only process architecture-dependent build-dependencies. Configuration Item: " "<literal>APT::Get::Arch-Only</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:518 +#: apt-get.8.xml:529 msgid "" "Ignore if packages can't be authenticated and don't prompt about it. This " "is useful for tools like pbuilder. Configuration Item: <literal>APT::Get::" @@ -1099,7 +1273,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:524 +#: apt-get.8.xml:535 msgid "" "Show user friendly progress information in the terminal window when packages " "are installed, upgraded or removed. For a machine parsable version of this " @@ -1109,38 +1283,21 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:537 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 -#: apt.conf.5.xml:1200 apt_preferences.5.xml:700 +#: apt-get.8.xml:548 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 +#: apt.conf.5.xml:1221 apt_preferences.5.xml:700 msgid "Files" msgstr "" -#. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:547 apt-cache.8.xml:352 apt-key.8.xml:197 apt-mark.8.xml:133 -#: apt-secure.8.xml:193 apt-cdrom.8.xml:154 apt-config.8.xml:111 -#: apt.conf.5.xml:1206 apt_preferences.5.xml:707 sources.list.5.xml:280 -#: apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 -#: apt-ftparchive.1.xml:609 -#, fuzzy -msgid "See Also" -msgstr "Consulte também" - #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:548 +#: apt-get.8.xml:559 msgid "" "&apt-cache;, &apt-cdrom;, &dpkg;, &sources-list;, &apt-conf;, &apt-config;, " "&apt-secure;, The APT User's guide in &guidesdir;, &apt-preferences;, the " "APT Howto." msgstr "" -#. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:553 apt-cache.8.xml:357 apt-mark.8.xml:137 -#: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76 -#: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613 -msgid "Diagnostics" -msgstr "" - #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:554 +#: apt-get.8.xml:565 msgid "" "<command>apt-get</command> returns zero on normal operation, decimal 100 on " "error." @@ -2471,7 +2628,16 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:181 +#: apt.conf.5.xml:182 +msgid "" +"List of all build profiles enabled for build-dependency resolution, without " +"the \"<literal>profile.</literal>\" namespace prefix. By default this list " +"is empty. The <envar>DEB_BUILD_PROFILES</envar> as used by &dpkg-" +"buildpackage; overrides the list notation." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:190 msgid "" "Default release to install packages from if more than one version is " "available. Contains release name, codename or release version. Examples: " @@ -2480,14 +2646,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:187 +#: apt.conf.5.xml:196 msgid "" "Ignore held packages; this global option causes the problem resolver to " "ignore held packages in its decision making." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:192 +#: apt.conf.5.xml:201 msgid "" "Defaults to on. When turned on the autoclean feature will remove any " "packages which can no longer be downloaded from the cache. If turned off " @@ -2496,7 +2662,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:200 +#: apt.conf.5.xml:209 msgid "" "Defaults to on, which will cause APT to install essential and important " "packages as soon as possible in an install/upgrade operation, in order to " @@ -2511,7 +2677,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:212 +#: apt.conf.5.xml:221 msgid "" "The immediate configuration marker is also applied in the potentially " "problematic case of circular dependencies, since a dependency with the " @@ -2528,7 +2694,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:225 +#: apt.conf.5.xml:234 msgid "" "Before a big operation like <literal>dist-upgrade</literal> is run with this " "option disabled you should try to explicitly <literal>install</literal> the " @@ -2539,7 +2705,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:236 +#: apt.conf.5.xml:245 msgid "" "Never enable this option unless you <emphasis>really</emphasis> know what " "you are doing. It permits APT to temporarily remove an essential package to " @@ -2552,7 +2718,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:248 +#: apt.conf.5.xml:257 msgid "" "APT uses since version 0.7.26 a resizable memory mapped cache file to store " "the available information. <literal>Cache-Start</literal> acts as a hint of " @@ -2572,38 +2738,38 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:264 +#: apt.conf.5.xml:273 msgid "Defines which packages are considered essential build dependencies." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:268 +#: apt.conf.5.xml:277 msgid "" "The Get subsection controls the &apt-get; tool; please see its documentation " "for more information about the options here." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:273 +#: apt.conf.5.xml:282 msgid "" "The Cache subsection controls the &apt-cache; tool; please see its " "documentation for more information about the options here." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:278 +#: apt.conf.5.xml:287 msgid "" "The CDROM subsection controls the &apt-cdrom; tool; please see its " "documentation for more information about the options here." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:284 +#: apt.conf.5.xml:293 msgid "The Acquire Group" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:285 +#: apt.conf.5.xml:294 msgid "" "The <literal>Acquire</literal> group of options controls the download of " "packages as well as the various \"acquire methods\" responsible for the " @@ -2611,7 +2777,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:292 +#: apt.conf.5.xml:301 msgid "" "Security related option defaulting to true, as giving a Release file's " "validation an expiration date prevents replay attacks over a long timescale, " @@ -2624,7 +2790,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:305 +#: apt.conf.5.xml:314 msgid "" "Maximum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -2636,7 +2802,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:317 +#: apt.conf.5.xml:326 msgid "" "Minimum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -2648,7 +2814,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:329 +#: apt.conf.5.xml:338 msgid "" "Try to download deltas called <literal>PDiffs</literal> for indexes (like " "<filename>Packages</filename> files) instead of downloading whole ones. True " @@ -2656,7 +2822,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:332 +#: apt.conf.5.xml:341 msgid "" "Two sub-options to limit the use of PDiffs are also available: " "<literal>FileLimit</literal> can be used to specify a maximum number of " @@ -2667,7 +2833,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:342 +#: apt.conf.5.xml:351 msgid "" "Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</" "literal> or <literal>access</literal> which determines how APT parallelizes " @@ -2677,21 +2843,21 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:350 +#: apt.conf.5.xml:359 msgid "" "Number of retries to perform. If this is non-zero APT will retry failed " "files the given number of times." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:355 +#: apt.conf.5.xml:364 msgid "" "Use symlinks for source archives. If set to true then source archives will " "be symlinked when possible instead of copying. True is the default." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:360 +#: apt.conf.5.xml:369 msgid "" "<literal>http::Proxy</literal> sets the default proxy to use for HTTP URIs. " "It is in the standard form of <literal>http://[[user][:pass]@]host[:port]/</" @@ -2703,7 +2869,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:368 +#: apt.conf.5.xml:377 msgid "" "Three settings are provided for cache control with HTTP/1.1 compliant proxy " "caches. <literal>No-Cache</literal> tells the proxy not to use its cached " @@ -2715,14 +2881,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:378 apt.conf.5.xml:466 +#: apt.conf.5.xml:387 apt.conf.5.xml:475 msgid "" "The option <literal>timeout</literal> sets the timeout timer used by the " "method; this value applies to the connection as well as the data timeout." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:381 +#: apt.conf.5.xml:390 msgid "" "The setting <literal>Acquire::http::Pipeline-Depth</literal> can be used to " "enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e." @@ -2734,14 +2900,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:388 +#: apt.conf.5.xml:397 msgid "" "<literal>Acquire::http::AllowRedirect</literal> controls whether APT will " "follow redirects, which is enabled by default." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:391 +#: apt.conf.5.xml:400 msgid "" "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</" "literal> which accepts integer values in kilobytes per second. The default " @@ -2751,7 +2917,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:398 +#: apt.conf.5.xml:407 msgid "" "<literal>Acquire::http::User-Agent</literal> can be used to set a different " "User-Agent for the http download method as some proxies allow access for " @@ -2759,7 +2925,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:402 +#: apt.conf.5.xml:411 msgid "" "<literal>Acquire::http::Proxy-Auto-Detect</literal> can be used to specify " "an external command to discover the http proxy to use. Apt expects the " @@ -2773,7 +2939,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:420 +#: apt.conf.5.xml:429 msgid "" "The <literal>Cache-control</literal>, <literal>Timeout</literal>, " "<literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> and " @@ -2784,7 +2950,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:428 +#: apt.conf.5.xml:437 msgid "" "<literal>CaInfo</literal> suboption specifies place of file that holds info " "about trusted certificates. <literal><host>::CaInfo</literal> is the " @@ -2806,7 +2972,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:449 +#: apt.conf.5.xml:458 msgid "" "<literal>ftp::Proxy</literal> sets the default proxy to use for FTP URIs. " "It is in the standard form of <literal>ftp://[[user][:pass]@]host[:port]/</" @@ -2825,7 +2991,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:469 +#: apt.conf.5.xml:478 msgid "" "Several settings are provided to control passive mode. Generally it is safe " "to leave passive mode on; it works in nearly every environment. However, " @@ -2835,7 +3001,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:476 +#: apt.conf.5.xml:485 msgid "" "It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</" "envar> environment variable to an HTTP URL - see the discussion of the http " @@ -2844,7 +3010,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:481 +#: apt.conf.5.xml:490 msgid "" "The setting <literal>ForceExtended</literal> controls the use of RFC2428 " "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is " @@ -2854,13 +3020,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:495 +#: apt.conf.5.xml:504 #, no-wrap msgid "/cdrom/::Mount \"foo\";" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:490 +#: apt.conf.5.xml:499 msgid "" "For URIs using the <literal>cdrom</literal> method, the only configurable " "option is the mount point, <literal>cdrom::Mount</literal>, which must be " @@ -2873,20 +3039,20 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:503 +#: apt.conf.5.xml:512 msgid "" "For GPGV URIs the only configurable option is <literal>gpgv::Options</" "literal>, which passes additional parameters to gpgv." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:514 +#: apt.conf.5.xml:523 #, no-wrap msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:509 +#: apt.conf.5.xml:518 msgid "" "List of compression types which are understood by the acquire methods. " "Files like <filename>Packages</filename> can be available in various " @@ -2898,19 +3064,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:519 +#: apt.conf.5.xml:528 #, no-wrap msgid "Acquire::CompressionTypes::Order:: \"gz\";" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:522 +#: apt.conf.5.xml:531 #, no-wrap msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:515 +#: apt.conf.5.xml:524 msgid "" "Also, the <literal>Order</literal> subgroup can be used to define in which " "order the acquire system will try to download the compressed files. The " @@ -2928,13 +3094,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:529 +#: apt.conf.5.xml:538 #, no-wrap msgid "Dir::Bin::bzip2 \"/bin/bzip2\";" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:524 +#: apt.conf.5.xml:533 msgid "" "Note that the <literal>Dir::Bin::<replaceable>Methodname</replaceable></" "literal> will be checked at run time. If this option has been set, the " @@ -2949,7 +3115,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:534 +#: apt.conf.5.xml:543 msgid "" "The special type <literal>uncompressed</literal> can be used to give " "uncompressed files a preference, but note that most archives don't provide " @@ -2957,7 +3123,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:541 +#: apt.conf.5.xml:550 msgid "" "When downloading <literal>gzip</literal> compressed indexes (Packages, " "Sources, or Translations), keep them gzip compressed locally instead of " @@ -2966,7 +3132,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:549 +#: apt.conf.5.xml:558 msgid "" "The Languages subsection controls which <filename>Translation</filename> " "files are downloaded and in which order APT tries to display the description-" @@ -2978,13 +3144,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><programlisting> -#: apt.conf.5.xml:566 +#: apt.conf.5.xml:575 #, no-wrap msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:554 +#: apt.conf.5.xml:563 msgid "" "The default list includes \"environment\" and \"en\". " "\"<literal>environment</literal>\" has a special meaning here: it will be " @@ -3006,7 +3172,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:567 +#: apt.conf.5.xml:576 msgid "" "Note: To prevent problems resulting from APT being executed in different " "environments (e.g. by different users or by other programs) all Translation " @@ -3015,22 +3181,22 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:576 +#: apt.conf.5.xml:585 msgid "When downloading, force to use only the IPv4 protocol." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:582 +#: apt.conf.5.xml:591 msgid "When downloading, force to use only the IPv6 protocol." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:589 +#: apt.conf.5.xml:598 msgid "Directories" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:591 +#: apt.conf.5.xml:600 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@ -3042,7 +3208,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:598 +#: apt.conf.5.xml:607 msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@ -3055,7 +3221,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:607 +#: apt.conf.5.xml:616 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -3065,7 +3231,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:613 +#: apt.conf.5.xml:622 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -3073,7 +3239,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:617 +#: apt.conf.5.xml:626 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@ -3084,7 +3250,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:625 +#: apt.conf.5.xml:634 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -3097,7 +3263,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:638 +#: apt.conf.5.xml:647 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@ -3108,12 +3274,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:647 +#: apt.conf.5.xml:656 msgid "APT in DSelect" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:649 +#: apt.conf.5.xml:658 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@ -3121,7 +3287,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:654 +#: apt.conf.5.xml:663 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@ -3134,40 +3300,40 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:668 +#: apt.conf.5.xml:677 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:673 +#: apt.conf.5.xml:682 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:678 +#: apt.conf.5.xml:687 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:684 +#: apt.conf.5.xml:693 msgid "How APT calls &dpkg;" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:685 +#: apt.conf.5.xml:694 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:690 +#: apt.conf.5.xml:699 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -3175,7 +3341,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:696 +#: apt.conf.5.xml:705 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -3184,7 +3350,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:703 +#: apt.conf.5.xml:712 msgid "" "This is a list of shell commands to run before invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -3195,7 +3361,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:710 +#: apt.conf.5.xml:719 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@ -3204,7 +3370,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:715 +#: apt.conf.5.xml:724 msgid "" "The version of the protocol to be used for the command " "<literal><replaceable>cmd</replaceable></literal> can be chosen by setting " @@ -3215,7 +3381,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:722 +#: apt.conf.5.xml:731 msgid "" "The file descriptor to be used to send the information can be requested with " "<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</" @@ -3226,26 +3392,26 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:732 +#: apt.conf.5.xml:741 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:737 +#: apt.conf.5.xml:746 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:742 +#: apt.conf.5.xml:751 msgid "dpkg trigger usage (and related options)" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:743 +#: apt.conf.5.xml:752 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@ -3260,7 +3426,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:758 +#: apt.conf.5.xml:767 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -3270,7 +3436,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:752 +#: apt.conf.5.xml:761 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -3284,7 +3450,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:765 +#: apt.conf.5.xml:774 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -3297,7 +3463,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:773 +#: apt.conf.5.xml:782 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@ -3314,7 +3480,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:788 +#: apt.conf.5.xml:797 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@ -3325,7 +3491,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:795 +#: apt.conf.5.xml:804 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@ -3335,7 +3501,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:808 +#: apt.conf.5.xml:817 #, no-wrap msgid "" "OrderList::Score {\n" @@ -3347,7 +3513,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:801 +#: apt.conf.5.xml:810 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@ -3361,12 +3527,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:821 +#: apt.conf.5.xml:830 msgid "Periodic and Archives options" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:822 +#: apt.conf.5.xml:831 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@ -3375,12 +3541,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:830 +#: apt.conf.5.xml:839 msgid "Debug options" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:832 +#: apt.conf.5.xml:841 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -3391,7 +3557,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:843 +#: apt.conf.5.xml:852 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@ -3399,7 +3565,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:851 +#: apt.conf.5.xml:860 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@ -3407,7 +3573,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:860 +#: apt.conf.5.xml:869 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -3417,66 +3583,66 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:868 +#: apt.conf.5.xml:877 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:878 +#: apt.conf.5.xml:887 msgid "A full list of debugging options to apt follows." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:887 +#: apt.conf.5.xml:896 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:898 +#: apt.conf.5.xml:907 msgid "Print information related to downloading packages using FTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:909 +#: apt.conf.5.xml:918 msgid "Print information related to downloading packages using HTTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:920 +#: apt.conf.5.xml:929 msgid "Print information related to downloading packages using HTTPS." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:931 +#: apt.conf.5.xml:940 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:942 +#: apt.conf.5.xml:951 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:952 +#: apt.conf.5.xml:961 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:962 +#: apt.conf.5.xml:971 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:972 +#: apt.conf.5.xml:981 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -3484,53 +3650,53 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:983 +#: apt.conf.5.xml:992 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:995 +#: apt.conf.5.xml:1004 msgid "Log when items are added to or removed from the global download queue." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1005 +#: apt.conf.5.xml:1014 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1015 +#: apt.conf.5.xml:1024 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1027 +#: apt.conf.5.xml:1036 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1038 +#: apt.conf.5.xml:1047 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1049 +#: apt.conf.5.xml:1058 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1059 +#: apt.conf.5.xml:1068 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@ -3540,7 +3706,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1073 +#: apt.conf.5.xml:1082 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@ -3558,46 +3724,46 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1094 +#: apt.conf.5.xml:1103 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1105 +#: apt.conf.5.xml:1114 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1116 +#: apt.conf.5.xml:1125 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1128 +#: apt.conf.5.xml:1137 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1139 +#: apt.conf.5.xml:1148 msgid "Output the priority of each package list on startup." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1149 +#: apt.conf.5.xml:1158 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1160 +#: apt.conf.5.xml:1169 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -3605,21 +3771,29 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1172 +#: apt.conf.5.xml:1181 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." msgstr "" +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:1191 +msgid "" +"Display the external commands that are called by apt hooks. This includes e." +"g. the config options <literal>DPkg::{Pre,Post}-Invoke</literal> or " +"<literal>APT::Update::{Pre,Post}-Invoke</literal>." +msgstr "" + #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:1194 apt_preferences.5.xml:547 sources.list.5.xml:239 +#: apt.conf.5.xml:1215 apt_preferences.5.xml:547 sources.list.5.xml:239 #: apt-ftparchive.1.xml:598 #, fuzzy msgid "Examples" msgstr "Exemplos" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1195 +#: apt.conf.5.xml:1216 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -3627,7 +3801,7 @@ msgstr "" #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1207 +#: apt.conf.5.xml:1228 #, fuzzy msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;" @@ -5474,8 +5648,8 @@ msgid "" "template-file and config-script are written to the temporary directory " "specified by the <option>-t</option> or <option>--tempdir</option> " "(<literal>APT::ExtractTemplates::TempDir</literal>) directory, with " -"filenames of the form <filename>package.template.XXXX</filename> and " -"<filename>package.config.XXXX</filename>" +"filenames of the form <filename>package.template.XXXXXX</filename> and " +"<filename>package.config.XXXXXX</filename>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> @@ -6238,131 +6412,6 @@ msgid "" "100 on error." msgstr "" -#. type: TH -#: apt.8:17 -#, no-wrap -msgid "apt" -msgstr "" - -#. type: TH -#: apt.8:17 -#, no-wrap -msgid "16 June 1998" -msgstr "" - -#. type: TH -#: apt.8:17 -#, no-wrap -msgid "Debian" -msgstr "" - -#. type: SH -#: apt.8:18 -#, no-wrap -msgid "NAME" -msgstr "" - -#. type: Plain text -#: apt.8:20 -msgid "apt - Advanced Package Tool" -msgstr "" - -#. type: SH -#: apt.8:20 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -#. type: Plain text -#: apt.8:22 -msgid "B<apt>" -msgstr "" - -#. type: SH -#: apt.8:22 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -#. type: Plain text -#: apt.8:31 -msgid "" -"APT is a management system for software packages. For normal day to day " -"package management there are several frontends available, such as " -"B<aptitude>(8) for the command line or B<synaptic>(8) for the X Window " -"System. Some options are only implemented in B<apt-get>(8) though." -msgstr "" - -#. type: SH -#: apt.8:31 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -#. type: Plain text -#: apt.8:38 -msgid "" -"B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " -"B<apt_preferences>(5), B<apt-secure>(8)" -msgstr "" - -#. type: SH -#: apt.8:38 -#, no-wrap -msgid "DIAGNOSTICS" -msgstr "" - -#. type: Plain text -#: apt.8:40 -msgid "apt returns zero on normal operation, decimal 100 on error." -msgstr "" - -#. type: SH -#: apt.8:40 -#, no-wrap -msgid "BUGS" -msgstr "" - -#. type: Plain text -#: apt.8:42 -msgid "This manpage isn't even started." -msgstr "" - -#. type: Plain text -#: apt.8:51 -#, fuzzy -msgid "" -"See E<lt>http://bugs.debian.org/aptE<gt>. If you wish to report a bug in " -"B<apt>, please see I</usr/share/doc/debian/bug-reporting.txt> or the " -"B<reportbug>(1) command." -msgstr "" -"\n" -" <RefSect1><Title>Bugs</>\n" -" <para>\n" -" Consulte a <ulink url='http://bugs.debian.org/apt'>página de bugs do APT</" -">.\n" -" Caso você queira relatar um bug no APT, por favor consulte o arquivo\n" -" <filename>/usr/share/doc/debian/bug-reporting.txt</> ou o comando " -"&reportbug;.\n" -" </RefSect1>\n" - -#. type: SH -#: apt.8:51 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -#. type: Plain text -#: apt.8:52 -#, fuzzy -msgid "apt was written by the APT team E<lt>apt@packages.debian.orgE<gt>." -msgstr "" -"\n" -" <RefSect1><Title>Author</>\n" -" <para>\n" -" O APT foi escrito pela equipe APT <email>apt@packages.debian.org</>.\n" -" </RefSect1>\n" - #. type: <title></title> #: guide.sgml:4 msgid "APT User's Guide" @@ -6598,7 +6647,7 @@ msgstr "" #: guide.sgml:163 msgid "" "<prgn>apt-get</prgn> has several command line options that are detailed in " -"its man page, <manref section=\"8\" name=\"apt-get\">. The most useful " +"its man page, <manref name=\"apt-get\" section=\"8\">. The most useful " "option is <tt>-d</tt> which does not install the fetched files. If the " "system has to download a large number of package it would be undesired to " "start installing them in case something goes wrong. When <tt>-d</tt> is used " @@ -7442,6 +7491,31 @@ msgstr "" #, fuzzy #~ msgid "" +#~ "See E<lt>http://bugs.debian.org/aptE<gt>. If you wish to report a bug in " +#~ "B<apt>, please see I</usr/share/doc/debian/bug-reporting.txt> or the " +#~ "B<reportbug>(1) command." +#~ msgstr "" +#~ "\n" +#~ " <RefSect1><Title>Bugs</>\n" +#~ " <para>\n" +#~ " Consulte a <ulink url='http://bugs.debian.org/apt'>página de bugs do " +#~ "APT</>.\n" +#~ " Caso você queira relatar um bug no APT, por favor consulte o arquivo\n" +#~ " <filename>/usr/share/doc/debian/bug-reporting.txt</> ou o comando " +#~ "&reportbug;.\n" +#~ " </RefSect1>\n" + +#, fuzzy +#~ msgid "apt was written by the APT team E<lt>apt@packages.debian.orgE<gt>." +#~ msgstr "" +#~ "\n" +#~ " <RefSect1><Title>Author</>\n" +#~ " <para>\n" +#~ " O APT foi escrito pela equipe APT <email>apt@packages.debian.org</>.\n" +#~ " </RefSect1>\n" + +#, fuzzy +#~ msgid "" #~ "Package: *\n" #~ "Pin: release n=karmic*\n" #~ "Pin-Priority: 990\n" diff --git a/doc/po4a.conf b/doc/po4a.conf index 14f19eddd..3f92c198a 100644 --- a/doc/po4a.conf +++ b/doc/po4a.conf @@ -12,6 +12,7 @@ # define source file and translated file (one file per line) [type: entity] apt.ent $lang:$lang/apt.ent +[type: manpage] apt.8.xml $lang:$lang/apt.$lang.8.xml add_$lang:xml.add [type: manpage] apt-get.8.xml $lang:$lang/apt-get.$lang.8.xml add_$lang:xml.add [type: manpage] apt-cache.8.xml $lang:$lang/apt-cache.$lang.8.xml add_$lang:xml.add [type: manpage] apt-key.8.xml $lang:$lang/apt-key.$lang.8.xml add_$lang:xml.add @@ -25,7 +26,6 @@ [type: manpage] apt-extracttemplates.1.xml $lang:$lang/apt-extracttemplates.$lang.1.xml add_$lang:xml.add [type: manpage] apt-sortpkgs.1.xml $lang:$lang/apt-sortpkgs.$lang.1.xml add_$lang:xml.add [type: manpage] apt-ftparchive.1.xml $lang:$lang/apt-ftparchive.$lang.1.xml add_$lang:xml.add -[type: man] apt.8 $lang:$lang/apt.$lang.8 [type: sgml] guide.sgml $lang:$lang/guide.$lang.sgml # add_$lang::$lang/addendum/debiandoc_$lang.add diff --git a/ftparchive/apt-ftparchive.cc b/ftparchive/apt-ftparchive.cc index 712f8469a..692f19e25 100644 --- a/ftparchive/apt-ftparchive.cc +++ b/ftparchive/apt-ftparchive.cc @@ -17,14 +17,23 @@ #include <apt-pkg/cmndline.h> #include <apt-pkg/strutl.h> #include <apt-pkg/init.h> -#include <algorithm> +#include <apt-pkg/fileutl.h> +#include <algorithm> #include <climits> #include <sys/time.h> -#include <regex.h> - +#include <locale.h> +#include <stdio.h> +#include <sys/stat.h> +#include <time.h> +#include <functional> +#include <iostream> +#include <string> +#include <vector> + +#include "cachedb.h" +#include "override.h" #include "apt-ftparchive.h" -#include "contents.h" #include "multicompress.h" #include "writer.h" @@ -438,7 +447,7 @@ bool PackageMap::GenContents(Configuration &Setup, // --------------------------------------------------------------------- /* This populates the PkgList with all the possible permutations of the section/arch lists. */ -void LoadTree(vector<PackageMap> &PkgList,Configuration &Setup) +static void LoadTree(vector<PackageMap> &PkgList,Configuration &Setup) { // Load the defaults string DDir = Setup.Find("TreeDefault::Directory", @@ -484,7 +493,7 @@ void LoadTree(vector<PackageMap> &PkgList,Configuration &Setup) struct SubstVar const Vars[] = {{"$(DIST)",&Dist}, {"$(SECTION)",&Section}, {"$(ARCH)",&Arch}, - {}}; + {NULL, NULL}}; mode_t const Perms = Block.FindI("FileMode", Permissions); bool const LongDesc = Block.FindB("LongDescription", LongDescription); TranslationWriter *TransWriter; @@ -550,7 +559,7 @@ void LoadTree(vector<PackageMap> &PkgList,Configuration &Setup) // LoadBinDir - Load a 'bindirectory' section from the Generate Config /*{{{*/ // --------------------------------------------------------------------- /* */ -void LoadBinDir(vector<PackageMap> &PkgList,Configuration &Setup) +static void LoadBinDir(vector<PackageMap> &PkgList,Configuration &Setup) { mode_t const Permissions = Setup.FindI("Default::FileMode",0644); @@ -586,7 +595,7 @@ void LoadBinDir(vector<PackageMap> &PkgList,Configuration &Setup) // ShowHelp - Show the help text /*{{{*/ // --------------------------------------------------------------------- /* */ -bool ShowHelp(CommandLine &CmdL) +static bool ShowHelp(CommandLine &) { ioprintf(cout,_("%s %s for %s compiled on %s %s\n"),PACKAGE,PACKAGE_VERSION, COMMON_ARCH,__DATE__,__TIME__); @@ -639,7 +648,7 @@ bool ShowHelp(CommandLine &CmdL) // SimpleGenPackages - Generate a Packages file for a directory tree /*{{{*/ // --------------------------------------------------------------------- /* This emulates dpkg-scanpackages's command line interface. 'mostly' */ -bool SimpleGenPackages(CommandLine &CmdL) +static bool SimpleGenPackages(CommandLine &CmdL) { if (CmdL.FileSize() < 2) return ShowHelp(CmdL); @@ -667,7 +676,7 @@ bool SimpleGenPackages(CommandLine &CmdL) // SimpleGenContents - Generate a Contents listing /*{{{*/ // --------------------------------------------------------------------- /* */ -bool SimpleGenContents(CommandLine &CmdL) +static bool SimpleGenContents(CommandLine &CmdL) { if (CmdL.FileSize() < 2) return ShowHelp(CmdL); @@ -689,7 +698,7 @@ bool SimpleGenContents(CommandLine &CmdL) // SimpleGenSources - Generate a Sources file for a directory tree /*{{{*/ // --------------------------------------------------------------------- /* This emulates dpkg-scanpackages's command line interface. 'mostly' */ -bool SimpleGenSources(CommandLine &CmdL) +static bool SimpleGenSources(CommandLine &CmdL) { if (CmdL.FileSize() < 2) return ShowHelp(CmdL); @@ -722,7 +731,7 @@ bool SimpleGenSources(CommandLine &CmdL) /*}}}*/ // SimpleGenRelease - Generate a Release file for a directory tree /*{{{*/ // --------------------------------------------------------------------- -bool SimpleGenRelease(CommandLine &CmdL) +static bool SimpleGenRelease(CommandLine &CmdL) { if (CmdL.FileSize() < 2) return ShowHelp(CmdL); @@ -747,7 +756,7 @@ bool SimpleGenRelease(CommandLine &CmdL) // Generate - Full generate, using a config file /*{{{*/ // --------------------------------------------------------------------- /* */ -bool Generate(CommandLine &CmdL) +static bool Generate(CommandLine &CmdL) { struct CacheDB::Stats SrcStats; if (CmdL.FileSize() < 2) @@ -911,7 +920,7 @@ bool Generate(CommandLine &CmdL) // Clean - Clean out the databases /*{{{*/ // --------------------------------------------------------------------- /* */ -bool Clean(CommandLine &CmdL) +static bool Clean(CommandLine &CmdL) { if (CmdL.FileSize() != 2) return ShowHelp(CmdL); diff --git a/ftparchive/cachedb.cc b/ftparchive/cachedb.cc index c2318bf53..523c6b5fa 100644 --- a/ftparchive/cachedb.cc +++ b/ftparchive/cachedb.cc @@ -19,8 +19,12 @@ #include <apt-pkg/strutl.h> #include <apt-pkg/configuration.h> #include <apt-pkg/fileutl.h> +#include <apt-pkg/debfile.h> #include <netinet/in.h> // htonl, etc +#include <ctype.h> +#include <stddef.h> +#include <sys/stat.h> #include "cachedb.h" diff --git a/ftparchive/cachedb.h b/ftparchive/cachedb.h index b9ced9418..49b9a0ef5 100644 --- a/ftparchive/cachedb.h +++ b/ftparchive/cachedb.h @@ -12,17 +12,19 @@ #ifndef CACHEDB_H #define CACHEDB_H - #include <apt-pkg/debfile.h> #include <db.h> -#include <inttypes.h> -#include <sys/stat.h> #include <errno.h> #include <string> +#include <string.h> +#include <stdint.h> +#include <stdio.h> #include "contents.h" +class FileFd; + class CacheDB { protected: diff --git a/ftparchive/contents.cc b/ftparchive/contents.cc index 80fe6e17e..7a1fb779e 100644 --- a/ftparchive/contents.cc +++ b/ftparchive/contents.cc @@ -36,13 +36,12 @@ #include <config.h> #include <apt-pkg/debfile.h> -#include <apt-pkg/extracttar.h> +#include <apt-pkg/dirstream.h> #include <apt-pkg/error.h> #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <malloc.h> #include "contents.h" @@ -316,7 +315,7 @@ bool ContentsExtract::Read(debDebFile &Deb) // ContentsExtract::DoItem - Extract an item /*{{{*/ // --------------------------------------------------------------------- /* This just tacks the name onto the end of our memory buffer */ -bool ContentsExtract::DoItem(Item &Itm,int &Fd) +bool ContentsExtract::DoItem(Item &Itm, int &/*Fd*/) { unsigned long Len = strlen(Itm.Name); diff --git a/ftparchive/contents.h b/ftparchive/contents.h index 4af9db574..dbbb83350 100644 --- a/ftparchive/contents.h +++ b/ftparchive/contents.h @@ -9,11 +9,13 @@ /*}}}*/ #ifndef CONTENTS_H #define CONTENTS_H - -#include <stdlib.h> -#include <stdio.h> + #include <apt-pkg/dirstream.h> +#include <stddef.h> +#include <stdio.h> +#include <string> + class debDebFile; class GenContents diff --git a/ftparchive/multicompress.cc b/ftparchive/multicompress.cc index 1555d2f2d..f35d5304a 100644 --- a/ftparchive/multicompress.cc +++ b/ftparchive/multicompress.cc @@ -20,13 +20,15 @@ #include <apt-pkg/strutl.h> #include <apt-pkg/error.h> #include <apt-pkg/md5.h> +#include <apt-pkg/aptconfiguration.h> +#include <apt-pkg/hashsum_template.h> -#include <fcntl.h> +#include <ctype.h> +#include <vector> #include <sys/types.h> #include <sys/stat.h> #include <sys/time.h> #include <unistd.h> -#include <iostream> #include "multicompress.h" #include <apti18n.h> diff --git a/ftparchive/multicompress.h b/ftparchive/multicompress.h index 388fad22e..ddd1815a3 100644 --- a/ftparchive/multicompress.h +++ b/ftparchive/multicompress.h @@ -22,7 +22,8 @@ #include <string> #include <stdio.h> #include <sys/types.h> - +#include <time.h> + class MultiCompress { // An output file diff --git a/ftparchive/override.cc b/ftparchive/override.cc index beedf5d73..8a0c5bab1 100644 --- a/ftparchive/override.cc +++ b/ftparchive/override.cc @@ -16,6 +16,9 @@ #include <apt-pkg/error.h> #include <stdio.h> +#include <ctype.h> +#include <string.h> +#include <utility> #include "override.h" @@ -129,7 +132,7 @@ bool Override::ReadOverride(string const &File,bool const &Source) // Override::ReadExtraOverride - Read the extra override file /*{{{*/ // --------------------------------------------------------------------- /* This parses the extra override file and reads it into the map */ -bool Override::ReadExtraOverride(string const &File,bool const &Source) +bool Override::ReadExtraOverride(string const &File,bool const &/*Source*/) { if (File.empty() == true) return true; @@ -201,7 +204,7 @@ bool Override::ReadExtraOverride(string const &File,bool const &Source) } /*}}}*/ -// Override::GetItem - Get a architecture specific item /*{{{*/ +// Override::GetItem - Get a architecture specific item /*{{{*/ // --------------------------------------------------------------------- /* Returns a override item for the given package and the given architecture. * Treats "all" special @@ -232,10 +235,10 @@ Override::Item* Override::GetItem(string const &Package, string const &Architect { result->FieldOverride[foI->first] = foI->second; } - } - } + } + } return result; -}; +} // Override::Item::SwapMaint - Swap the maintainer field if necessary /*{{{*/ diff --git a/ftparchive/writer.cc b/ftparchive/writer.cc index 7ecfe78ed..153c4fb42 100644 --- a/ftparchive/writer.cc +++ b/ftparchive/writer.cc @@ -13,28 +13,37 @@ // Include Files /*{{{*/ #include <config.h> -#include <apt-pkg/strutl.h> -#include <apt-pkg/error.h> #include <apt-pkg/configuration.h> -#include <apt-pkg/aptconfiguration.h> -#include <apt-pkg/md5.h> -#include <apt-pkg/hashes.h> #include <apt-pkg/deblistparser.h> +#include <apt-pkg/error.h> #include <apt-pkg/fileutl.h> #include <apt-pkg/gpgv.h> +#include <apt-pkg/hashes.h> +#include <apt-pkg/md5.h> +#include <apt-pkg/strutl.h> +#include <apt-pkg/debfile.h> +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/sha1.h> +#include <apt-pkg/sha2.h> +#include <apt-pkg/tagfile.h> +#include <ctype.h> +#include <fnmatch.h> +#include <ftw.h> +#include <locale.h> +#include <string.h> +#include <sys/stat.h> #include <sys/types.h> #include <unistd.h> #include <ctime> -#include <ftw.h> -#include <fnmatch.h> #include <iostream> #include <sstream> #include <memory> +#include <utility> +#include "apt-ftparchive.h" #include "writer.h" #include "cachedb.h" -#include "apt-ftparchive.h" #include "multicompress.h" #include <apti18n.h> @@ -72,9 +81,9 @@ FTWScanner::FTWScanner(string const &Arch): Arch(Arch) /*}}}*/ // FTWScanner::Scanner - FTW Scanner /*{{{*/ // --------------------------------------------------------------------- -/* This is the FTW scanner, it processes each directory element in the +/* This is the FTW scanner, it processes each directory element in the directory tree. */ -int FTWScanner::ScannerFTW(const char *File,const struct stat *sb,int Flag) +int FTWScanner::ScannerFTW(const char *File,const struct stat * /*sb*/,int Flag) { if (Flag == FTW_DNR) { @@ -951,7 +960,7 @@ bool ContentsWriter::ReadFromPkgs(string const &PkgFile,string const &PkgCompres // ReleaseWriter::ReleaseWriter - Constructor /*{{{*/ // --------------------------------------------------------------------- /* */ -ReleaseWriter::ReleaseWriter(string const &DB) +ReleaseWriter::ReleaseWriter(string const &/*DB*/) { if (_config->FindB("APT::FTPArchive::Release::Default-Patterns", true) == true) { diff --git a/ftparchive/writer.h b/ftparchive/writer.h index 4932b0cc8..86884dcfc 100644 --- a/ftparchive/writer.h +++ b/ftparchive/writer.h @@ -13,14 +13,16 @@ #ifndef WRITER_H #define WRITER_H - #include <string> #include <stdio.h> #include <iostream> #include <vector> #include <map> #include <set> +#include <stdlib.h> +#include <sys/types.h> +#include "contents.h" #include "cachedb.h" #include "override.h" #include "apt-ftparchive.h" diff --git a/methods/cdrom.cc b/methods/cdrom.cc index 22d4b9164..74e2ecc6b 100644 --- a/methods/cdrom.cc +++ b/methods/cdrom.cc @@ -19,9 +19,9 @@ #include <apt-pkg/strutl.h> #include <apt-pkg/hashes.h> +#include <string> +#include <vector> #include <sys/stat.h> -#include <unistd.h> -#include <dlfcn.h> #include <iostream> #include <apti18n.h> @@ -62,7 +62,7 @@ CDROMMethod::CDROMMethod() : pkgAcqMethod("1.0",SingleInstance | LocalOnly | MountedByApt(false) { UdevCdroms.Dlopen(); -}; +} /*}}}*/ // CDROMMethod::Exit - Unmount the disc if necessary /*{{{*/ // --------------------------------------------------------------------- diff --git a/methods/connect.cc b/methods/connect.cc index d9c9a1dd4..e2cbf4f5c 100644 --- a/methods/connect.cc +++ b/methods/connect.cc @@ -23,7 +23,7 @@ #include <errno.h> #include <unistd.h> #include <sstream> - +#include <string.h> #include<set> #include<string> diff --git a/methods/copy.cc b/methods/copy.cc index f2a8f9ed8..d59f032ff 100644 --- a/methods/copy.cc +++ b/methods/copy.cc @@ -17,9 +17,10 @@ #include <apt-pkg/error.h> #include <apt-pkg/hashes.h> +#include <string> #include <sys/stat.h> #include <sys/time.h> -#include <unistd.h> + #include <apti18n.h> /*}}}*/ diff --git a/methods/file.cc b/methods/file.cc index 3d0687c5b..12db62203 100644 --- a/methods/file.cc +++ b/methods/file.cc @@ -21,8 +21,9 @@ #include <apt-pkg/fileutl.h> #include <apt-pkg/strutl.h> +#include <string> #include <sys/stat.h> -#include <unistd.h> + #include <apti18n.h> /*}}}*/ diff --git a/methods/ftp.cc b/methods/ftp.cc index 621f48476..66787a7be 100644 --- a/methods/ftp.cc +++ b/methods/ftp.cc @@ -23,7 +23,11 @@ #include <apt-pkg/hashes.h> #include <apt-pkg/netrc.h> #include <apt-pkg/configuration.h> +#include <apt-pkg/strutl.h> +#include <ctype.h> +#include <stdlib.h> +#include <string.h> #include <sys/stat.h> #include <sys/time.h> #include <unistd.h> @@ -42,6 +46,7 @@ #include "rfc2553emu.h" #include "connect.h" #include "ftp.h" + #include <apti18n.h> /*}}}*/ @@ -56,9 +61,9 @@ struct AFMap }; #ifndef AF_INET6 -struct AFMap AFMap[] = {{AF_INET,1},{}}; +struct AFMap AFMap[] = {{AF_INET,1},{0, 0}}; #else -struct AFMap AFMap[] = {{AF_INET,1},{AF_INET6,2},{}}; +struct AFMap AFMap[] = {{AF_INET,1},{AF_INET6,2},{0, 0}}; #endif unsigned long TimeOut = 120; @@ -1098,7 +1103,7 @@ bool FtpMethod::Fetch(FetchItem *Itm) } /*}}}*/ -int main(int argc,const char *argv[]) +int main(int, const char *argv[]) { setlocale(LC_ALL, ""); diff --git a/methods/ftp.h b/methods/ftp.h index 8055c389f..dd92f0086 100644 --- a/methods/ftp.h +++ b/methods/ftp.h @@ -12,6 +12,8 @@ #include <apt-pkg/strutl.h> +#include <sys/types.h> +#include <time.h> #include <string> class FTPConn @@ -76,7 +78,7 @@ class FtpMethod : public pkgAcqMethod static std::string FailFile; static int FailFd; static time_t FailTime; - static void SigTerm(int); + static APT_NORETURN void SigTerm(int); public: diff --git a/methods/gpgv.cc b/methods/gpgv.cc index 25bf64ddd..ae521a2ed 100644 --- a/methods/gpgv.cc +++ b/methods/gpgv.cc @@ -1,19 +1,21 @@ #include <config.h> -#include <apt-pkg/error.h> #include <apt-pkg/acquire-method.h> -#include <apt-pkg/strutl.h> -#include <apt-pkg/fileutl.h> -#include <apt-pkg/indexcopy.h> #include <apt-pkg/configuration.h> +#include <apt-pkg/error.h> #include <apt-pkg/gpgv.h> +#include <apt-pkg/strutl.h> -#include <stdio.h> -#include <fcntl.h> +#include <ctype.h> #include <errno.h> +#include <stddef.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> #include <sys/wait.h> +#include <unistd.h> #include <iostream> -#include <sstream> +#include <string> #include <vector> #include <apti18n.h> diff --git a/methods/gzip.cc b/methods/gzip.cc index a2844e969..df3f8828f 100644 --- a/methods/gzip.cc +++ b/methods/gzip.cc @@ -11,17 +11,20 @@ // Include Files /*{{{*/ #include <config.h> -#include <apt-pkg/fileutl.h> -#include <apt-pkg/error.h> +#include <apt-pkg/configuration.h> #include <apt-pkg/acquire-method.h> -#include <apt-pkg/strutl.h> +#include <apt-pkg/error.h> +#include <apt-pkg/fileutl.h> #include <apt-pkg/hashes.h> +#include <apt-pkg/strutl.h> +#include <apt-pkg/aptconfiguration.h> +#include <string.h> #include <sys/stat.h> #include <sys/time.h> -#include <unistd.h> -#include <stdio.h> -#include <errno.h> +#include <string> +#include <vector> + #include <apti18n.h> /*}}}*/ @@ -58,17 +61,25 @@ bool GzipMethod::Fetch(FetchItem *Itm) return _error->Error("Extraction of file %s requires unknown compressor %s", Path.c_str(), Prog); // Open the source and destination files - FileFd From; - From.Open(Path, FileFd::ReadOnly, *compressor); - - if(From.FileSize() == 0) - return _error->Error(_("Empty files can't be valid archives")); - - FileFd To(Itm->DestFile,FileFd::WriteAtomic); + FileFd From, To; + if (_config->FindB("Method::Compress", false) == false) + { + From.Open(Path, FileFd::ReadOnly, *compressor); + if(From.FileSize() == 0) + return _error->Error(_("Empty files can't be valid archives")); + To.Open(Itm->DestFile, FileFd::WriteAtomic); + } + else + { + From.Open(Path, FileFd::ReadOnly); + To.Open(Itm->DestFile, FileFd::WriteOnly | FileFd::Create | FileFd::Empty, *compressor); + } To.EraseOnFailure(); - if (_error->PendingError() == true) + + if (From.IsOpen() == false || From.Failed() == true || + To.IsOpen() == false || To.Failed() == true) return false; - + // Read data from source, generate checksums and write Hashes Hash; bool Failed = false; @@ -120,7 +131,7 @@ bool GzipMethod::Fetch(FetchItem *Itm) } /*}}}*/ -int main(int argc, char *argv[]) +int main(int, char *argv[]) { setlocale(LC_ALL, ""); diff --git a/methods/http.cc b/methods/http.cc index 42b31beeb..ed6e3517d 100644 --- a/methods/http.cc +++ b/methods/http.cc @@ -33,24 +33,21 @@ #include <apt-pkg/error.h> #include <apt-pkg/hashes.h> #include <apt-pkg/netrc.h> +#include <apt-pkg/strutl.h> +#include <stddef.h> +#include <stdlib.h> +#include <sys/select.h> +#include <cstring> #include <sys/stat.h> #include <sys/time.h> #include <unistd.h> -#include <signal.h> #include <stdio.h> #include <errno.h> -#include <string.h> -#include <climits> #include <iostream> -#include <map> - -// Internet stuff -#include <netdb.h> #include "config.h" #include "connect.h" -#include "rfc2553emu.h" #include "http.h" #include <apti18n.h> @@ -61,7 +58,7 @@ unsigned long long CircleBuf::BwReadLimit=0; unsigned long long CircleBuf::BwTickReadData=0; struct timeval CircleBuf::BwReadTick={0,0}; const unsigned int CircleBuf::BW_HZ=10; - + // CircleBuf::CircleBuf - Circular input buffer /*{{{*/ // --------------------------------------------------------------------- /* */ @@ -87,8 +84,8 @@ void CircleBuf::Reset() { delete Hash; Hash = new Hashes; - } -}; + } +} /*}}}*/ // CircleBuf::Read - Read from a FD into the circular buffer /*{{{*/ // --------------------------------------------------------------------- @@ -473,7 +470,7 @@ bool HttpServerState::WriteResponse(const std::string &Data) /*{{{*/ return Out.Read(Data); } /*}}}*/ -bool HttpServerState::IsOpen() /*{{{*/ +APT_PURE bool HttpServerState::IsOpen() /*{{{*/ { return (ServerFd != -1); } @@ -484,16 +481,11 @@ bool HttpServerState::InitHashes(FileFd &File) /*{{{*/ In.Hash = new Hashes; // Set the expected size and read file for the hashes - if (StartPos >= 0) - { - File.Truncate(StartPos); - - return In.Hash->AddFD(File, StartPos); - } - return true; + File.Truncate(StartPos); + return In.Hash->AddFD(File, StartPos); } /*}}}*/ -Hashes * HttpServerState::GetHashes() /*{{{*/ +APT_PURE Hashes * HttpServerState::GetHashes() /*{{{*/ { return In.Hash; } diff --git a/methods/http.h b/methods/http.h index 450a42eed..5406ce4a7 100644 --- a/methods/http.h +++ b/methods/http.h @@ -12,14 +12,18 @@ #define APT_HTTP_H #include <apt-pkg/strutl.h> +#include <apt-pkg/acquire-method.h> #include <string> +#include <sys/time.h> +#include <iostream> #include "server.h" using std::cout; using std::endl; +class FileFd; class HttpMethod; class Hashes; diff --git a/methods/http_main.cc b/methods/http_main.cc index 2ca91bfc9..3b346a514 100644 --- a/methods/http_main.cc +++ b/methods/http_main.cc @@ -1,14 +1,9 @@ #include <config.h> -#include <apt-pkg/fileutl.h> -#include <apt-pkg/acquire-method.h> #include <signal.h> -#include "connect.h" -#include "rfc2553emu.h" #include "http.h" - int main() { setlocale(LC_ALL, ""); diff --git a/methods/https.cc b/methods/https.cc index febe6a0f0..c4aff8f38 100644 --- a/methods/https.cc +++ b/methods/https.cc @@ -18,19 +18,20 @@ #include <apt-pkg/hashes.h> #include <apt-pkg/netrc.h> #include <apt-pkg/configuration.h> +#include <apt-pkg/macros.h> +#include <apt-pkg/strutl.h> #include <sys/stat.h> #include <sys/time.h> #include <unistd.h> -#include <signal.h> #include <stdio.h> -#include <errno.h> -#include <string.h> #include <iostream> #include <sstream> +#include <ctype.h> +#include <stdlib.h> -#include "config.h" #include "https.h" + #include <apti18n.h> /*}}}*/ using namespace std; @@ -83,9 +84,9 @@ HttpsMethod::write_data(void *buffer, size_t size, size_t nmemb, void *userp) return size*nmemb; } -int -HttpsMethod::progress_callback(void *clientp, double dltotal, double dlnow, - double ultotal, double ulnow) +int +HttpsMethod::progress_callback(void *clientp, double dltotal, double /*dlnow*/, + double /*ultotal*/, double /*ulnow*/) { HttpsMethod *me = (HttpsMethod *)clientp; if(dltotal > 0 && me->Res.Size == 0) { @@ -95,7 +96,7 @@ HttpsMethod::progress_callback(void *clientp, double dltotal, double dlnow, } // HttpsServerState::HttpsServerState - Constructor /*{{{*/ -HttpsServerState::HttpsServerState(URI Srv,HttpsMethod *Owner) : ServerState(Srv, NULL) +HttpsServerState::HttpsServerState(URI Srv,HttpsMethod * /*Owner*/) : ServerState(Srv, NULL) { TimeOut = _config->FindI("Acquire::https::Timeout",TimeOut); Reset(); @@ -432,7 +433,7 @@ bool HttpsMethod::Fetch(FetchItem *Itm) delete File; return true; -}; +} int main() { diff --git a/methods/https.h b/methods/https.h index ab0dd3407..faac8a3cd 100644 --- a/methods/https.h +++ b/methods/https.h @@ -11,37 +11,42 @@ #ifndef APT_HTTPS_H #define APT_HTTPS_H -#include <iostream> +#include <apt-pkg/acquire-method.h> + #include <curl/curl.h> +#include <iostream> +#include <stddef.h> +#include <string> #include "server.h" using std::cout; using std::endl; +class Hashes; class HttpsMethod; class FileFd; class HttpsServerState : public ServerState { protected: - virtual bool ReadHeaderLines(std::string &Data) { return false; } - virtual bool LoadNextResponse(bool const ToFile, FileFd * const File) { return false; } + virtual bool ReadHeaderLines(std::string &/*Data*/) { return false; } + virtual bool LoadNextResponse(bool const /*ToFile*/, FileFd * const /*File*/) { return false; } public: - virtual bool WriteResponse(std::string const &Data) { return false; } + virtual bool WriteResponse(std::string const &/*Data*/) { return false; } /** \brief Transfer the data from the socket */ - virtual bool RunData(FileFd * const File) { return false; } + virtual bool RunData(FileFd * const /*File*/) { return false; } virtual bool Open() { return false; } virtual bool IsOpen() { return false; } virtual bool Close() { return false; } - virtual bool InitHashes(FileFd &File) { return false; } + virtual bool InitHashes(FileFd &/*File*/) { return false; } virtual Hashes * GetHashes() { return NULL; } - virtual bool Die(FileFd &File) { return false; } - virtual bool Flush(FileFd * const File) { return false; } - virtual bool Go(bool ToFile, FileFd * const File) { return false; } + virtual bool Die(FileFd &/*File*/) { return false; } + virtual bool Flush(FileFd * const /*File*/) { return false; } + virtual bool Go(bool /*ToFile*/, FileFd * const /*File*/) { return false; } HttpsServerState(URI Srv, HttpsMethod *Owner); virtual ~HttpsServerState() {Close();}; diff --git a/methods/mirror.cc b/methods/mirror.cc index 085f3717b..d3aef91bc 100644 --- a/methods/mirror.cc +++ b/methods/mirror.cc @@ -16,18 +16,18 @@ #include <apt-pkg/acquire-item.h> #include <apt-pkg/acquire.h> #include <apt-pkg/error.h> -#include <apt-pkg/hashes.h> #include <apt-pkg/sourcelist.h> #include <apt-pkg/configuration.h> #include <apt-pkg/metaindex.h> +#include <apt-pkg/strutl.h> +#include <stdlib.h> +#include <string.h> +#include <unistd.h> #include <algorithm> -#include <fstream> #include <iostream> - -#include <stdarg.h> +#include <fstream> #include <sys/stat.h> -#include <sys/types.h> #include <sys/utsname.h> #include <dirent.h> @@ -60,7 +60,7 @@ using namespace std; MirrorMethod::MirrorMethod() : HttpMethod(), DownloadedMirrorFile(false), Debug(false) { -}; +} // HttpMethod::Configuration - Handle a configuration message /*{{{*/ // --------------------------------------------------------------------- @@ -90,17 +90,17 @@ bool MirrorMethod::Clean(string Dir) pkgSourceList list; list.ReadMainList(); - DIR *D = opendir(Dir.c_str()); + DIR *D = opendir(Dir.c_str()); if (D == 0) return _error->Errno("opendir",_("Unable to read %s"),Dir.c_str()); - + string StartDir = SafeGetCWD(); if (chdir(Dir.c_str()) != 0) { closedir(D); return _error->Errno("chdir",_("Unable to change to %s"),Dir.c_str()); } - + for (struct dirent *Dir = readdir(D); Dir != 0; Dir = readdir(D)) { // Skip some files.. @@ -123,23 +123,23 @@ bool MirrorMethod::Clean(string Dir) // nothing found, nuke it if (I == list.end()) unlink(Dir->d_name); - }; + } closedir(D); if (chdir(StartDir.c_str()) != 0) return _error->Errno("chdir",_("Unable to change to %s"),StartDir.c_str()); - return true; + return true; } -bool MirrorMethod::DownloadMirrorFile(string mirror_uri_str) +bool MirrorMethod::DownloadMirrorFile(string /*mirror_uri_str*/) { - // not that great to use pkgAcquire here, but we do not have + // not that great to use pkgAcquire here, but we do not have // any other way right now string fetch = BaseUri; fetch.replace(0,strlen("mirror://"),"http://"); -#if 0 // no need for this, the getArchitectures() will also include the main +#if 0 // no need for this, the getArchitectures() will also include the main // arch // append main architecture fetch += "?arch=" + _config->Find("Apt::Architecture"); @@ -173,7 +173,7 @@ bool MirrorMethod::DownloadMirrorFile(string mirror_uri_str) if(Debug) clog << "MirrorMethod::DownloadMirrorFile() success: " << res << endl; - + return res; } @@ -187,13 +187,13 @@ bool MirrorMethod::RandomizeMirrorFile(string mirror_file) if (!FileExists(mirror_file)) return false; - // read + // read ifstream in(mirror_file.c_str()); while ( !in.eof() ) { getline(in, line); content.push_back(line); } - + // we want the file to be random for each different machine, but also // "stable" on the same machine. this is to avoid running into out-of-sync // issues (i.e. Release/Release.gpg different on each mirror) @@ -422,10 +422,10 @@ bool MirrorMethod::Fetch(FetchItem *Itm) if(Debug) clog << "Fetch: " << Itm->Uri << endl << endl; - + // now run the real fetcher return HttpMethod::Fetch(Itm); -}; +} void MirrorMethod::Fail(string Err,bool Transient) { @@ -437,7 +437,7 @@ void MirrorMethod::Fail(string Err,bool Transient) // try the next mirror on fail (if its not a expected failure, // e.g. translations are ok to ignore) - if (!Queue->FailIgnore && TryNextMirror()) + if (!Queue->FailIgnore && TryNextMirror()) return; // all mirrors failed, so bail out diff --git a/methods/mirror.h b/methods/mirror.h index 1dd9f2ec6..6c0ce370e 100644 --- a/methods/mirror.h +++ b/methods/mirror.h @@ -11,6 +11,8 @@ #ifndef APT_MIRROR_H #define APT_MIRROR_H +#include <apt-pkg/acquire-method.h> + #include <iostream> #include <string> #include <vector> diff --git a/methods/rred.cc b/methods/rred.cc index fe7ef7322..cabb3c456 100644 --- a/methods/rred.cc +++ b/methods/rred.cc @@ -8,19 +8,18 @@ #include <config.h> #include <apt-pkg/fileutl.h> -#include <apt-pkg/mmap.h> #include <apt-pkg/error.h> #include <apt-pkg/acquire-method.h> #include <apt-pkg/strutl.h> #include <apt-pkg/hashes.h> #include <apt-pkg/configuration.h> +#include <stddef.h> +#include <iostream> #include <string> #include <list> #include <vector> -#include <iterator> -#include <fcntl.h> #include <assert.h> #include <stdio.h> #include <stdlib.h> @@ -469,7 +468,7 @@ class Patch { void write_diff(FILE *f) { - size_t line = 0; + unsigned long long line = 0; std::list<struct Change>::reverse_iterator ch; for (ch = filechanges.rbegin(); ch != filechanges.rend(); ++ch) { line += ch->offset + ch->del_cnt; @@ -482,11 +481,11 @@ class Patch { line -= ch->del_cnt; if (ch->add_cnt > 0) { if (ch->del_cnt == 0) { - fprintf(f, "%lua\n", line); + fprintf(f, "%llua\n", line); } else if (ch->del_cnt == 1) { - fprintf(f, "%luc\n", line+1); + fprintf(f, "%lluc\n", line+1); } else { - fprintf(f, "%lu,%luc\n", line+1, line+ch->del_cnt); + fprintf(f, "%llu,%lluc\n", line+1, line+ch->del_cnt); } mg_i = ch; @@ -496,9 +495,9 @@ class Patch { fprintf(f, ".\n"); } else if (ch->del_cnt == 1) { - fprintf(f, "%lud\n", line+1); + fprintf(f, "%llud\n", line+1); } else if (ch->del_cnt > 1) { - fprintf(f, "%lu,%lud\n", line+1, line+ch->del_cnt); + fprintf(f, "%llu,%llud\n", line+1, line+ch->del_cnt); } line -= ch->offset; } diff --git a/methods/rsh.cc b/methods/rsh.cc index 550f77eca..bd46d2515 100644 --- a/methods/rsh.cc +++ b/methods/rsh.cc @@ -17,7 +17,11 @@ #include <apt-pkg/fileutl.h> #include <apt-pkg/hashes.h> #include <apt-pkg/configuration.h> +#include <apt-pkg/acquire-method.h> +#include <apt-pkg/strutl.h> +#include <stdlib.h> +#include <string.h> #include <sys/stat.h> #include <sys/time.h> #include <unistd.h> @@ -368,7 +372,7 @@ RSHMethod::RSHMethod() : pkgAcqMethod("1.0",SendConfig) signal(SIGINT,SigTerm); Server = 0; FailFd = -1; -}; +} /*}}}*/ // RSHMethod::Configuration - Handle a configuration message /*{{{*/ // --------------------------------------------------------------------- @@ -390,7 +394,7 @@ bool RSHMethod::Configuration(std::string Message) // RSHMethod::SigTerm - Clean up and timestamp the files on exit /*{{{*/ // --------------------------------------------------------------------- /* */ -void RSHMethod::SigTerm(int sig) +void RSHMethod::SigTerm(int) { if (FailFd == -1) _exit(100); @@ -519,7 +523,7 @@ bool RSHMethod::Fetch(FetchItem *Itm) } /*}}}*/ -int main(int argc, const char *argv[]) +int main(int, const char *argv[]) { setlocale(LC_ALL, ""); diff --git a/methods/rsh.h b/methods/rsh.h index d7efa3f06..dd259e744 100644 --- a/methods/rsh.h +++ b/methods/rsh.h @@ -11,6 +11,8 @@ #define APT_RSH_H #include <string> +#include <time.h> + #include <apt-pkg/strutl.h> class Hashes; @@ -62,7 +64,7 @@ class RSHMethod : public pkgAcqMethod static std::string FailFile; static int FailFd; static time_t FailTime; - static void SigTerm(int); + static APT_NORETURN void SigTerm(int); public: diff --git a/methods/server.cc b/methods/server.cc index ef90c809c..5a13f18a7 100644 --- a/methods/server.cc +++ b/methods/server.cc @@ -10,32 +10,27 @@ // Include Files /*{{{*/ #include <config.h> -#include <apt-pkg/fileutl.h> #include <apt-pkg/acquire-method.h> #include <apt-pkg/configuration.h> #include <apt-pkg/error.h> -#include <apt-pkg/hashes.h> -#include <apt-pkg/netrc.h> +#include <apt-pkg/fileutl.h> +#include <apt-pkg/strutl.h> -#include <fcntl.h> +#include <ctype.h> +#include <signal.h> +#include <stdio.h> +#include <stdlib.h> #include <sys/stat.h> #include <sys/time.h> +#include <time.h> #include <unistd.h> -#include <signal.h> -#include <stdio.h> -#include <errno.h> -#include <string.h> -#include <climits> #include <iostream> +#include <limits> #include <map> +#include <string> +#include <vector> -// Internet stuff -#include <netdb.h> - -#include "config.h" -#include "connect.h" -#include "rfc2553emu.h" -#include "http.h" +#include "server.h" #include <apti18n.h> /*}}}*/ @@ -119,10 +114,10 @@ bool ServerState::HeaderLine(string Line) string::size_type Pos2 = Pos; while (Pos2 < Line.length() && isspace(Line[Pos2]) != 0) Pos2++; - + string Tag = string(Line,0,Pos); string Val = string(Line,Pos2); - + if (stringcasecmp(Tag.c_str(),Tag.c_str()+4,"HTTP") == 0) { // Evil servers return no version @@ -159,14 +154,14 @@ bool ServerState::HeaderLine(string Line) } return true; - } - + } + if (stringcasecmp(Tag,"Content-Length:") == 0) { if (Encoding == Closes) Encoding = Stream; HaveContent = true; - + // The length is already set from the Content-Range header if (StartPos != 0) return true; @@ -184,7 +179,7 @@ bool ServerState::HeaderLine(string Line) HaveContent = true; return true; } - + if (stringcasecmp(Tag,"Content-Range:") == 0) { HaveContent = true; @@ -201,12 +196,12 @@ bool ServerState::HeaderLine(string Line) return _error->Error(_("This HTTP server has broken range support")); return true; } - + if (stringcasecmp(Tag,"Transfer-Encoding:") == 0) { HaveContent = true; if (stringcasecmp(Val,"chunked") == 0) - Encoding = Chunked; + Encoding = Chunked; return true; } @@ -218,7 +213,7 @@ bool ServerState::HeaderLine(string Line) Persistent = true; return true; } - + if (stringcasecmp(Tag,"Last-Modified:") == 0) { if (RFC1123StrToTime(Val.c_str(), Date) == false) @@ -413,7 +408,7 @@ bool ServerMethod::Fetch(FetchItem *) } return true; -}; +} /*}}}*/ // ServerMethod::Loop - Main loop /*{{{*/ int ServerMethod::Loop() diff --git a/methods/server.h b/methods/server.h index 2b81e6173..0f45ab994 100644 --- a/methods/server.h +++ b/methods/server.h @@ -12,7 +12,10 @@ #define APT_SERVER_H #include <apt-pkg/strutl.h> +#include <apt-pkg/acquire-method.h> +#include <time.h> +#include <iostream> #include <string> using std::cout; @@ -32,7 +35,7 @@ struct ServerState // These are some statistics from the last parsed header lines unsigned long long Size; - signed long long StartPos; + unsigned long long StartPos; time_t Date; bool HaveContent; enum {Chunked,Stream,Closes} Encoding; @@ -62,7 +65,7 @@ struct ServerState /** \brief IO error while retrieving */ RUN_HEADERS_IO_ERROR, /** \brief Parse error after retrieving */ - RUN_HEADERS_PARSE_ERROR, + RUN_HEADERS_PARSE_ERROR }; /** \brief Get the headers before the data */ RunHeadersResult RunHeaders(FileFd * const File); @@ -126,7 +129,7 @@ class ServerMethod : public pkgAcqMethod static std::string FailFile; static int FailFd; static time_t FailTime; - static void SigTerm(int); + static APT_NORETURN void SigTerm(int); virtual bool Configuration(std::string Message); virtual bool Flush() { return Server->Flush(File); }; @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2006-10-20 21:28+0300\n" "Last-Translator: Ossama M. Khayat <okhayat@yahoo.com>\n" "Language-Team: Arabic <support@arabeyes.org>\n" @@ -19,156 +19,157 @@ msgstr "" "X-Poedit-SourceCharset: utf-8\n" "X-Generator: KBabel 1.11.4\n" -#: cmdline/apt-cache.cc:140 +#: cmdline/apt-cache.cc:149 #, c-format msgid "Package %s version %s has an unmet dep:\n" msgstr "Ø§Ù„ØØ²Ù…Ø© %s النسخة %s لها معتمد غير مستوÙÙ‰:\n" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "أسماء Ø§Ù„ØØ²Ù… الكلية :" -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 #, fuzzy msgid "Total package structures: " msgstr "أسماء Ø§Ù„ØØ²Ù… الكلية :" -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " Ø§Ù„ØØ²Ù… العادية:" -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr "Ø§Ù„ØØ²Ù…Ø© الوهمية تماماً:" -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " Ø§Ù„ØØ²Ù…Ø© الوهمية Ø§Ù„Ù…ÙØ±Ø¯Ø©:" -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " Ø§Ù„ØØ²Ù… الوهمية المختلطة:" -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " Ù…Ùقودة:" -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "مجموع النسخ Ø§Ù„ÙØ±ÙŠØ¯Ø©:" -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 #, fuzzy msgid "Total distinct descriptions: " msgstr "مجموع النسخ Ø§Ù„ÙØ±ÙŠØ¯Ø©:" -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "مجموع المعتمدات:" -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "مجموع علاقات النسخ/Ø§Ù„Ù…Ù„ÙØ§Øª:" -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 #, fuzzy msgid "Total Desc/File relations: " msgstr "مجموع علاقات النسخ/Ø§Ù„Ù…Ù„ÙØ§Øª:" -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "مجموع علاقات النسخ/Ø§Ù„Ù…Ù„ÙØ§Øª:" -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "" -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "" -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "" -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "مجموع Ø§Ù„Ù…Ø³Ø§ØØ© Ø§Ù„Ù…ØØ³ÙˆØ¨ ØØ³Ø§Ø¨Ù‡Ø§:" -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: 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 "" -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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 "لم ÙŠÙØ¹Ø«Ø± على أية ØØ²Ù…" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 #, fuzzy msgid "You must give at least one search pattern" msgstr "يجب أن تعطي صيغة ÙˆØ§ØØ¯Ø© بالضبط" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "تعذر العثور على Ø§Ù„ØØ²Ù…Ø© %s" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "Ù…Ù„ÙØ§Øª Ø§Ù„ØØ²Ù…:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 msgid "Cache is out of sync, can't x-ref a package file" msgstr "" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "Ø§Ù„ØØ²Ù… Ø§Ù„Ù…ÙØ¯Ø¨Ù‘سة:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(غير موجود)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " Ù…ÙØ«Ø¨Ù‘ت:" -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " مرشّØ: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(لاشيء)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr "" #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " جدول النسخ:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: 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" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] showpkg pkg1 [pkg2 ...]\n" @@ -205,29 +206,29 @@ msgid "" "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" msgstr "" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: 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:104 +#: cmdline/apt-cdrom.cc:91 msgid "Please insert a Disc in the drive and press enter" msgstr "الرجاء إدخال قرص ÙÙŠ السواقة وضغط الزر enter" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, fuzzy, c-format msgid "Failed to mount '%s' to '%s'" msgstr "ÙØ´Ù„ تغيير اسم %s إلى %s" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "كرر هذه العملية لباقي الأقراص المدمجة ÙÙŠ المجموعة." @@ -251,65 +252,65 @@ msgid "" " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -#: cmdline/apt-get.cc:244 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format msgid "Can not find a package for architecture '%s'" msgstr "تعذر العثور على Ø§Ù„ØØ²Ù…Ø© %s" -#: cmdline/apt-get.cc:326 +#: cmdline/apt-get.cc:327 #, fuzzy, c-format msgid "Can not find a package '%s' with version '%s'" msgstr "تعذر العثور على Ø§Ù„ØØ²Ù…Ø© %s" -#: cmdline/apt-get.cc:329 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format msgid "Can not find a package '%s' with release '%s'" msgstr "تعذر العثور على Ø§Ù„ØØ²Ù…Ø© %s" -#: cmdline/apt-get.cc:366 +#: cmdline/apt-get.cc:367 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "" -#: cmdline/apt-get.cc:422 +#: cmdline/apt-get.cc:423 #, c-format msgid "Can not find version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "تعذر العثور على Ø§Ù„ØØ²Ù…Ø© %s" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "إلا أنه سيتم تثبيت %s" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "إلا أنه سيتم تثبيت %s" -#: cmdline/apt-get.cc:468 cmdline/apt-mark.cc:116 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 msgid "Internal error, problem resolver broke stuff" msgstr "" -#: cmdline/apt-get.cc:573 cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 msgid "Unable to lock the download directory" msgstr "تعذر Ù‚ÙŽÙْل دليل التنزيل" -#: cmdline/apt-get.cc:725 +#: cmdline/apt-get.cc:726 msgid "Must specify at least one package to fetch source for" msgstr "يجب ØªØØ¯ÙŠØ¯ ØØ²Ù…Ø© ÙˆØ§ØØ¯Ø© على الأقل لجلب مصدرها" -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "تعذر العثور على مصدر Ø§Ù„ØØ²Ù…Ø© %s" @@ -329,151 +330,151 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "تخطي المل٠'%s' المنزل مسبقاً\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "تعذر ØØ³Ø§Ø¨ Ø§Ù„Ù…Ø³Ø§ØØ© Ø§Ù„ØØ±Ø© ÙÙŠ %s" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "ليس هناك Ù…Ø³Ø§ØØ© كاÙية ÙÙŠ %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "يجب جلب %sب/%sب من Ø§Ù„Ø£Ø±Ø´ÙŠÙØ§Øª المصدرية.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "يجب جلب %sب من Ø§Ù„Ø£Ø±Ø´ÙŠÙØ§Øª المصدريّة.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "Ø¥ØØ¶Ø§Ø± المصدر %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "ÙØ´Ù„ Ø¥ØØ¶Ø§Ø± بعض Ø§Ù„Ø£Ø±Ø´ÙŠÙØ§Øª." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "اكتمل التنزيل ÙˆÙÙŠ وضع التنزيل Ùقط" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "أمر ÙÙƒ Ø§Ù„ØØ²Ù…Ø© '%s' ÙØ´Ù„.\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "أمر البناء '%s' ÙØ´Ù„.\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " "packages" msgstr "" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " "package %s can't satisfy version requirements" msgstr "" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " "version" msgstr "" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "الاتصال بـ%s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "Ø§Ù„ÙˆØØ¯Ø§Øª المدعومة:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -519,53 +520,75 @@ msgid "" " This APT has Super Cow Powers.\n" msgstr "" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "يجب ØªØØ¯ÙŠØ¯ ØØ²Ù…Ø© ÙˆØ§ØØ¯Ø© على الأقل لجلب مصدرها" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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:63 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format msgid "%s was already set to manually installed.\n" msgstr "إلا أنه سيتم تثبيت %s" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, fuzzy, c-format msgid "%s was already set to automatically installed.\n" msgstr "إلا أنه سيتم تثبيت %s" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format msgid "%s was already set on hold.\n" msgstr "%s هي النسخة Ø§Ù„Ø£ØØ¯Ø«.\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, fuzzy, c-format msgid "%s was already not hold.\n" msgstr "%s هي النسخة Ø§Ù„Ø£ØØ¯Ø«.\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: 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:264 cmdline/apt-mark.cc:316 +#: 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:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" "\n" @@ -592,7 +615,7 @@ msgid "" "See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -640,52 +663,52 @@ msgstr "تعذر Ùكّ القرص المدمج من %sØŒ إذ قد يكون Ù„Ø msgid "Disk not found." msgstr "لم ÙŠÙØ¹Ø«Ø± على القرص." -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "لم ÙŠÙØ¹Ø«Ø± على الملÙ" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: 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:82 methods/gzip.cc:113 methods/rred.cc:606 +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 msgid "Failed to set modification time" msgstr "ÙØ´Ù„ تعيين وقت التعديل" -#: methods/file.cc:47 +#: 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:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "تسجيل الدخول" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format msgid "The server refused the connection and said: %s" msgstr "Ø±ÙØ¶ الخادم اتصالنا بالرد: %s" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "ÙØ´Ù„ USERØŒ ردّ الخادم: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "ÙØ´Ù„ PASSØŒ ردّ الخادم: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -693,121 +716,123 @@ msgstr "" "تم ØªØØ¯ÙŠØ¯ خادم بروكسي ولكن دون نص تسجيل دخول برمجي، Acquire::ftp::ProxyLogin " "ÙØ§Ø±Øº." -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "ÙØ´Ù„ أمر نص تسجيل الدخول البرمجي '%s'ØŒ ردّ الخادم: %s" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "ÙØ´Ù„ TYPEØŒ ردّ الخادم: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 msgid "Connection timeout" msgstr "انتهى وقت الاتصال" -#: methods/ftp.cc:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "أغلق الخادم الاتصال" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "خطأ ÙÙŠ القراءة" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "" -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "خطأ ÙÙŠ الكتابة" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 msgid "Could not create a socket" msgstr "" -#: methods/ftp.cc:707 +#: methods/ftp.cc:712 msgid "Could not connect data socket, connection timed out" msgstr "" -#: methods/ftp.cc:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "ÙØ´Ù„" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "" -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "تعذر إرسال الأمر PORT" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "ÙØ´Ù„ EPRTØŒ ردّ الخادم: %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "تعذر قبول الاتصال" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "تعذر Ø¥ØØ¶Ø§Ø± Ø§Ù„Ù…Ù„ÙØŒ ردّ الخادم '%s'" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "ÙØ´Ù„ نقل البيانات، ردّ الخادم '%s'" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "استعلام" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "" @@ -843,7 +868,7 @@ msgstr "تعذر الاتصال بـ%s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "الاتصال بـ%s" @@ -873,181 +898,181 @@ msgstr "" msgid "Unable to connect to %s:%s:" msgstr "تعذر الاتصال بـ%s %s:" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "" -#: methods/gpgv.cc:172 +#: methods/gpgv.cc:174 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" #. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "" -#: methods/gpgv.cc:229 +#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" msgstr "" -#: methods/gzip.cc:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "خطأ ÙÙŠ الكتابة إلى الملÙ" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "خطأ ÙÙŠ القراءة من الخادم. أقÙÙ„ الطر٠الآخر الاتصال" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "خطأ ÙÙŠ القراءة من الخادم" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "خطأ ÙÙŠ الكتابة إلى الملÙ" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "ÙØ´Ù„ Ø§Ù„ØªØØ¯ÙŠØ¯" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "انتهى وقت الاتصال" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "خطأ ÙÙŠ الكتابة إلى Ù…Ù„Ù Ø§Ù„Ù…ÙØ®Ø±Ø¬Ø§Øª" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "بانتظار الترويسات" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "سطر ترويسة سيء" -#: methods/server.cc:139 methods/server.cc:146 +#: methods/server.cc:134 methods/server.cc:141 msgid "The HTTP server sent an invalid reply header" msgstr "أرسل خادم http ترويسة ردّ غير ØµØ§Ù„ØØ©" -#: methods/server.cc:176 +#: methods/server.cc:171 msgid "The HTTP server sent an invalid Content-Length header" msgstr "أرسل خادم http ترويسة طول Ù…ØØªÙˆÙŠØ§Øª (ÙContent-Length) غير ØµØ§Ù„ØØ©" -#: methods/server.cc:199 +#: methods/server.cc:194 msgid "The HTTP server sent an invalid Content-Range header" msgstr "أرسل خادم http ترويسة مدى Ù…ØØªÙˆÙŠØ§Øª (ÙContent-Range) غير ØµØ§Ù„ØØ©" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "خادم http له دعم مدى معطوب" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "نسق تاريخ مجهول" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "بيانات ترويسة سيئة" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "ÙØ´Ù„ الاتصال" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "خطأ داخلي" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "خطأ داخلي، تم طلب InstallPackages مع وجود ØØ²Ù… معطوبة!" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "ØØ²Ù… Ø¨ØØ§Ø¬Ø© للإزالة لكن الإزالة Ù…ÙØ¹Ø·Ù‘لة." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "خطأ داخلي، لم تنته عملية الترتيب" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" -msgstr "يا للغرابة.. لم تتطابق Ø§Ù„Ø£ØØ¬Ø§Ù…ØŒ الرجاء مراسلة apt@packages.debian.org" +#: apt-private/private-install.cc:147 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "يا للغرابة... لم تتطابق Ø§Ù„Ø£ØØ¬Ø§Ù…ØŒ الرجاء مراسلة apt@packages.debian.org" #. TRANSLATOR: The required 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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Ø¨ØØ§Ø¬Ø© إلى جلب %sب/%sب من الأرشيÙ.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:171 +#: apt-private/private-install.cc:159 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Ø¨ØØ§Ø¬Ø© إلى جلب %sب من الأرشيÙ.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:178 +#: apt-private/private-install.cc:166 #, fuzzy, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "بعد الاستخراج %sب من Ø§Ù„Ù…Ø³Ø§ØØ© الإضاÙيّة سيتمّ استخدامها.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:183 +#: apt-private/private-install.cc:171 #, fuzzy, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "بعد الاستخراج %sب من Ø§Ù„Ù…Ø³Ø§ØØ© Ø³ØªÙØ±Ù‘غ.\n" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "ليس هناك Ù…Ø³Ø§ØØ© كاÙية ÙÙŠ %s." -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "هناك مشاكل وتم استخدام -y دون --force-yes" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "نعم، Ø§ÙØ¹Ù„ ما أقوله!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1058,19 +1083,19 @@ msgstr "" "كي تستمر اكتب العبارة '%s'\n" " ØŸ] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "إجهاض." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "هل تريد الاستمرار؟" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "ÙØ´Ù„ تنزيل بعض Ø§Ù„Ù…Ù„ÙØ§Øª" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1078,19 +1103,19 @@ msgstr "" "تعذر Ø¥ØØ¶Ø§Ø± بعض Ø§Ù„Ø£Ø±Ø´ÙŠÙØŒ ربما يمكنك Ù…ØØ§ÙˆÙ„Ø© تنÙيذ apt-get update أو Ø¥Ø¶Ø§ÙØ© --" "fix-missingØŸ" -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing وتبديل الأوساط غير مدعومة ØØ§Ù„ياً" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "تعذر تصØÙŠØ Ø§Ù„ØØ²Ù… المÙقودة." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "إجهاض التثبيت." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1100,15 +1125,15 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1124,16 +1149,16 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 msgid "The following information may help to resolve the situation:" msgstr "قد تساعد المعلومات التالية ÙÙŠ ØÙ„ المشكلة:" -#: apt-private/private-install.cc:517 +#: apt-private/private-install.cc:505 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "خطأ داخلي، عطب AllUpgrade بعض الأشياء" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1143,7 +1168,7 @@ msgid_plural "" msgstr[0] "سيتم تثبيت Ø§Ù„ØØ²Ù… الجديدة التالية:" msgstr[1] "سيتم تثبيت Ø§Ù„ØØ²Ù… الجديدة التالية:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1151,24 +1176,24 @@ msgid_plural "" msgstr[0] "سيتم تثبيت Ø§Ù„ØØ²Ù… الجديدة التالية:" msgstr[1] "سيتم تثبيت Ø§Ù„ØØ²Ù… الجديدة التالية:" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-install.cc:624 +#: 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:626 +#: 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:639 +#: apt-private/private-install.cc:627 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" @@ -1176,145 +1201,145 @@ msgid "" "or been moved out of Incoming." msgstr "" -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "ØØ²Ù… معطوبة" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "سيتم تثبيت Ø§Ù„ØØ²Ù… الإضاÙيّة التالية:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "Ø§Ù„ØØ²Ù… Ø§Ù„Ù…Ù‚ØªØ±ØØ©:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "Ø§Ù„ØØ²Ù… Ø§Ù„Ù…Ø³ØªØØ³Ù†Ø©:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ØªØØ°ÙŠØ±: تعذرت المصادقة على Ø§Ù„ØØ²Ù… التالية!" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "تم غض النظر عن ØªØØ°ÙŠØ± المصادقة.\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "تعذرت المصادقة على بعض Ø§Ù„ØØ²Ù…" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "تثبيت هذه Ø§Ù„ØØ²Ù… دون التØÙ‚Ù‚ منها؟" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "ÙØ´Ù„ Ø¥ØØ¶Ø§Ø± %s %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [Ù…ÙØ«Ø¨Ù‘تة]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [Ù…ÙØ«Ø¨Ù‘تة]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [Ù…ÙØ«Ø¨Ù‘تة]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [Ù…ÙØ«Ø¨Ù‘تة]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "إلا أن %s مثبت" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "إلا أنه سيتم تثبيت %s" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "إلا أنه غير قابل للتثبيت" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "إلا أنها ØØ²Ù…Ø© وهمية" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "إلا أنها غير مثبتة" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "إلا أنه لن يتم تثبيتها" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " أو" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "سيتم تثبيت Ø§Ù„ØØ²Ù… الجديدة التالية:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "سيتم إزالة Ø§Ù„ØØ²Ù… التالية:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "سيتم الإبقاء على Ø§Ù„ØØ²Ù… التالية:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "ستتم ترقية Ø§Ù„ØØ²Ù… التالية:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "سيتم تثبيط Ø§Ù„ØØ²Ù… التالية:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "سيتم تغيير Ø§Ù„ØØ²Ù… المبقاة التالية:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (بسبب %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1322,27 +1347,27 @@ msgstr "" "ØªØØ°ÙŠØ±: ستتم إزالة Ø§Ù„ØØ²Ù… الأساسية التالية.\n" "لا يجب أن تقوم بهذا إلى إن كنت تعر٠تماماً ما تقوم به!" -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu سيتم ترقيتها، %lu مثبتة ØØ¯ÙŠØ«Ø§Ù‹ØŒ " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu أعيد تثبيتها، " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu مثبطة، " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu لإزالتها Ùˆ %lu لم يتم ترقيتها.\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu غير مثبتة بالكامل أو مزالة.\n" @@ -1351,7 +1376,7 @@ msgstr "%lu غير مثبتة بالكامل أو مزالة.\n" #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "[Y/n]" @@ -1359,91 +1384,91 @@ msgstr "[Y/n]" #. 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:702 +#: apt-private/private-output.cc:708 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:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "Y" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "تصØÙŠØ المعتمدات..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " ÙØ´Ù„." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "لم يمكن تصØÙŠØ المعتمدات" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "لم يمكن تقليص مجموعة الترقية" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " تم" -#: apt-private/private-cachefile.cc:102 +#: 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:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "Ù…ÙØ¹ØªÙ…دات غير Ù…Ø³ØªÙˆÙØ§Ø©. ØØ§ÙˆÙ„ استخدام -f." -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "لا يقبل الأمر update أية Ù…ÙØ¹Ø·ÙŠØ§Øª" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "ØØ³Ø§Ø¨ الترقية..." -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "خطأ داخلي، عطب AllUpgrade بعض الأشياء" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "تمّ" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1451,43 +1476,43 @@ msgid "" " so don't depend on the relevance to the real current situation!" msgstr "" -#: apt-private/private-sources.cc:45 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format msgid "Failed to parse %s. Edit again? " msgstr "ÙØ´Ù„ تغيير اسم %s إلى %s" -#: apt-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "" -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "جلب:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "تجاهل" -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "خطأ" -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "جلب %sب ÙÙŠ %s (%sب/Ø«)\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [يعمل]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1500,19 +1525,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "تعذرت قراءة %s" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "" @@ -1541,11 +1566,11 @@ msgstr "ÙØ´Ù„ إغلاق المل٠%s" msgid "[Mirror: %s]" msgstr "" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 msgid "Failed to create IPC pipe to subprocess" msgstr "" -#: methods/rsh.cc:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "" @@ -1599,40 +1624,45 @@ msgid "" " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "تعذر إنشاء %s" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "تعذرت الكتابة إلى %s" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "تعذر Ø§Ù„ØØµÙˆÙ„ على نسخة debconf. هل هي مثبتة؟" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "قائمة توسيعات Ø§Ù„ØØ²Ù…Ø© طويلة جداً" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "خطأ ÙÙŠ معالجة الدليل %s" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "قائمة توسيعات المصدر طويلة جداً" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "خطأ ÙÙŠ كتابة الترويسة إلى Ù…Ù„Ù Ø§Ù„Ù…ØØªÙˆÙŠØ§Øª" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "خطأ ÙÙŠ معالجة Ø§Ù„Ù…ØØªÙˆÙŠØ§Øª %s" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1674,217 +1704,217 @@ msgid "" " -o=? Set an arbitrary configuration option" msgstr "" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "لم ØªÙØ·Ø§Ø¨Ù‚ أية ØªØØ¯ÙŠØ¯Ø§Øª" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "بعض Ø§Ù„Ù…Ù„ÙØ§Øª Ù…Ùقودة ÙÙŠ مجموعة Ù…Ù„Ù Ø§Ù„ØØ²Ù…Ø© `%s'" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "قاعدة البيانات كانت ÙØ§Ø³Ø¯Ø©ØŒ ÙØªÙ… تغيير اسمها إلى %s.old" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "قاعدة البيانات قديمة، Ù…ØØ§ÙˆÙ„Ø© ترقية %s" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 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:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "تعذر ÙØªØ مل٠قاعدة البيانات %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: تعذرت قراءة الدليل %s\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "" -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "ÙØ´Ù„ ÙØªØ %s" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** ÙØ´Ù„ ربط %s بـ%s" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr "" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr "" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr "" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr "" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr "" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - ÙØ´Ù„ تعيين الذاكرة" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "تعذر ÙØªØ %s" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, c-format msgid "Malformed override %s line %llu (%s)" msgstr "" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, c-format msgid "Malformed override %s line %llu #1" msgstr "" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, c-format msgid "Malformed override %s line %llu #2" msgstr "" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, c-format msgid "Malformed override %s line %llu #3" msgstr "" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "خطأ داخلي، تعذر إنشاء %s" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "ÙØ´Ù„ تغيير اسم %s إلى %s" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -1916,157 +1946,157 @@ msgid "" " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "ÙØ´Ù„ تنÙيذ gzip" -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "Ø£Ø±Ø´ÙŠÙ ÙØ§Ø³Ø¯" -#: apt-inst/contrib/extracttar.cc:201 +#: apt-inst/contrib/extracttar.cc:203 msgid "Tar checksum failed, archive corrupted" msgstr "ÙØ´Ù„ تØÙ‚ّق Checksum لمل٠TarØŒ Ø§Ù„Ø£Ø±Ø´ÙŠÙ ÙØ§Ø³Ø¯" -#: apt-inst/contrib/extracttar.cc:306 +#: apt-inst/contrib/extracttar.cc:308 #, c-format msgid "Unknown TAR header type %u, member %s" msgstr "" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "توقيع الأرشي٠غير صالØ" -#: apt-inst/contrib/arfile.cc:82 +#: apt-inst/contrib/arfile.cc:84 msgid "Error reading archive member header" msgstr "" -#: apt-inst/contrib/arfile.cc:94 +#: apt-inst/contrib/arfile.cc:96 #, fuzzy, c-format msgid "Invalid archive member header %s" msgstr "توقيع الأرشي٠غير صالØ" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "الأرشي٠قصير جداً" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "ÙØ´Ù„ت قراءة ترويسات الأرشيÙ" -#: apt-inst/filelist.cc:382 +#: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" msgstr "" -#: apt-inst/filelist.cc:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "خطأ داخلي ÙÙŠ AddDiversion" -#: apt-inst/filelist.cc:479 +#: apt-inst/filelist.cc:477 #, c-format msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" msgstr "" -#: apt-inst/filelist.cc:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "مل٠تهيئة Ù…ÙØ²Ø¯ÙˆØ¬ %s/%s" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: 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:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "ÙØ´Ù„ إغلاق المل٠%s" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: 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:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "Ùكّ ØªØØ²ÙŠÙ… %s أكثر من مرّة" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "" -#: apt-inst/extract.cc:145 +#: apt-inst/extract.cc:152 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "" -#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 msgid "The diversion path is too long" msgstr "" -#: apt-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "" -#: apt-inst/extract.cc:282 +#: apt-inst/extract.cc:289 msgid "Failed to locate node in its hash bucket" msgstr "" -#: apt-inst/extract.cc:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "المسار طويل جداً" -#: apt-inst/extract.cc:414 +#: apt-inst/extract.cc:421 #, c-format msgid "Overwrite package match with no version for %s" msgstr "" -#: apt-inst/extract.cc:431 +#: apt-inst/extract.cc:438 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "" -#: apt-inst/extract.cc:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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 "" -#: apt-inst/deb/debfile.cc:124 +#: apt-inst/deb/debfile.cc:132 #, c-format msgid "Internal error, could not locate member %s" msgstr "خطأ داخلي، تعذر العثور على العضو %s" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "" @@ -2124,494 +2154,499 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "تعذر العثور على Ø§Ù„ØªØØ¯ÙŠØ¯ %s" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "اختصار نوع مجهول: '%c'" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "ÙØªØ مل٠التهيئة %s" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "" -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-pkg/contrib/configuration.cc:900 #, c-format msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -#: apt-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... خطأ!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... تمّ" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s... تمّ" -#: apt-pkg/contrib/cmndline.cc:116 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format msgid "Command line option '%c' [from %s] is not known." msgstr "خيار سطر الأمر '%c' [من %s] مجهول." -#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format msgid "Command line option %s is not boolean" msgstr "" -#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "الخيار %s يتطلّب Ù…ÙØ¹Ø·Ù‰." -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "" -#: apt-pkg/contrib/cmndline.cc:273 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format msgid "Option %s requires an integer argument, not '%s'" msgstr "" -#: apt-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "الخيار '%s' طويل جداً" -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "" -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "عمليّة غير ØµØ§Ù„ØØ© %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format msgid "Unable to stat the mount point %s" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "" -#: apt-pkg/contrib/fileutl.cc:95 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "مشكلة ÙÙŠ إغلاق الملÙ" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "" -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, c-format msgid "Sub-process %s received signal %u." msgstr "" -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 apt-pkg/contrib/gpgv.cc:239 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "" -#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "مشكلة ÙÙŠ إغلاق الملÙ" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "ÙØ´Ù„ إغلاق المل٠%s" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "" -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, c-format msgid "read, still have %llu to read but none left" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, c-format msgid "write, still have %llu to write but couldn't" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "مشكلة ÙÙŠ إغلاق الملÙ" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "مشكلة ÙÙŠ مزامنة الملÙ" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "مشكلة ÙÙŠ إغلاق الملÙ" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "مشكلة ÙÙŠ مزامنة الملÙ" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "ÙØ´Ù„ إعادة التسمية ØŒ %s (%s -> %s)." + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, fuzzy, c-format msgid "No keyring installed in %s." msgstr "إجهاض التثبيت." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "" -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "" -#: apt-pkg/pkgcache.cc:162 +#: apt-pkg/pkgcache.cc:169 msgid "The package cache file is corrupted, it is too small" msgstr "" -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "" -#: apt-pkg/pkgcache.cc:172 +#: apt-pkg/pkgcache.cc:179 msgid "The package cache was built for a different architecture" msgstr "" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "يعتمد" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "يعتمد مسبقاً" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "ÙŠØ³ØªØØ³Ù†" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "يقترØ" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "يعارض" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "يستبدل" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "ÙŠÙلغي" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "مهم" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "مطلوب" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "قياسي" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "اختياري" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "إضاÙÙŠ" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: 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:244 +#: apt-pkg/depcache.cc:250 #, fuzzy, c-format msgid "Failed to open StateFile %s" msgstr "ÙØ´Ù„ ÙØªØ %s" -#: apt-pkg/depcache.cc:250 +#: apt-pkg/depcache.cc:256 #, fuzzy, c-format msgid "Failed to write temporary StateFile %s" msgstr "ÙØ´Ù„ت كتابة المل٠%s" -#: apt-pkg/tagfile.cc:138 +#: apt-pkg/tagfile.cc:140 #, c-format msgid "Unable to parse package file %s (1)" msgstr "" -#: apt-pkg/tagfile.cc:235 +#: apt-pkg/tagfile.cc:237 #, c-format msgid "Unable to parse package file %s (2)" msgstr "" -#: apt-pkg/sourcelist.cc:118 +#: apt-pkg/sourcelist.cc:127 #, c-format msgid "Malformed stanza %u in source list %s (URI parse)" msgstr "" -#: apt-pkg/sourcelist.cc:161 +#: apt-pkg/sourcelist.cc:170 #, c-format msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" -#: apt-pkg/sourcelist.cc:164 +#: apt-pkg/sourcelist.cc:173 #, c-format msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "" -#: apt-pkg/sourcelist.cc:175 +#: apt-pkg/sourcelist.cc:184 #, c-format msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" msgstr "" -#: apt-pkg/sourcelist.cc:181 +#: apt-pkg/sourcelist.cc:190 #, c-format msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "" -#: apt-pkg/sourcelist.cc:184 +#: apt-pkg/sourcelist.cc:193 #, c-format msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -#: apt-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "" -#: apt-pkg/sourcelist.cc:202 +#: apt-pkg/sourcelist.cc:211 #, c-format msgid "Malformed line %lu in source list %s (URI parse)" msgstr "" -#: apt-pkg/sourcelist.cc:208 +#: apt-pkg/sourcelist.cc:217 #, c-format msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "" -#: apt-pkg/sourcelist.cc:215 +#: apt-pkg/sourcelist.cc:224 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" msgstr "" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "ÙØªØ %s" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "" -#: apt-pkg/sourcelist.cc:362 +#: apt-pkg/sourcelist.cc:371 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "" -#: apt-pkg/sourcelist.cc:366 +#: apt-pkg/sourcelist.cc:375 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "" -#: apt-pkg/sourcelist.cc:407 +#: apt-pkg/sourcelist.cc:416 #, c-format msgid "Type '%s' is not known on stanza %u in source list %s" msgstr "" -#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, 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:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "ÙØ´Ù„ إغلاق المل٠%s" -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2619,231 +2654,226 @@ msgid "" "you really want to do it, activate the APT::Force-LoopBreak option." msgstr "" -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "" -#: apt-pkg/algorithms.cc:266 +#: 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-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." msgstr "" -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "" -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, c-format msgid "List directory %spartial is missing." msgstr "" -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, c-format msgid "Archives directory %spartial is missing." msgstr "" -#: apt-pkg/acquire.cc:93 +#: 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:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "" -#: apt-pkg/acquire-worker.cc:113 +#: apt-pkg/acquire-worker.cc:116 #, c-format msgid "The method driver %s could not be found." msgstr "" -#: apt-pkg/acquire-worker.cc:115 +#: apt-pkg/acquire-worker.cc:118 #, c-format msgid "Is the package %s installed?" msgstr "" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "" -#: apt-pkg/acquire-worker.cc:452 +#: apt-pkg/acquire-worker.cc:455 #, c-format msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "الرجاء إدخال القرص Ø§Ù„Ù…ÙØ³Ù…ّى '%s' ÙÙŠ السوّاقة '%s' وضغط Ù…ÙØªØ§Ø الإدخال." -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "نظام Ø§Ù„ØØ²Ù… '%s' غير مدعوم" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "" -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "" -#: apt-pkg/cachefile.cc:87 +#: apt-pkg/cachefile.cc:94 msgid "The package lists or status file could not be parsed or opened." msgstr "" -#: apt-pkg/cachefile.cc:91 +#: 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:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "تعذرت قراءة قائمة المصادر." -#: apt-pkg/policy.cc:75 +#: 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 "" -#: apt-pkg/policy.cc:414 +#: apt-pkg/policy.cc:422 #, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -#: apt-pkg/policy.cc:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 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:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: 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)" -#: apt-pkg/pkgcachegen.cc:251 +#: apt-pkg/pkgcachegen.cc:257 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:254 +#: apt-pkg/pkgcachegen.cc:260 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:263 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:260 +#: apt-pkg/pkgcachegen.cc:266 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:576 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 msgid "IO Error saving source cache" msgstr "" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "ÙØ´Ù„ إعادة التسمية ØŒ %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 #, fuzzy msgid "Hash Sum mismatch" msgstr "MD5Sum غير متطابقة" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "Ø§Ù„ØØ¬Ù… غير متطابق" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "عمليّة غير ØµØ§Ù„ØØ© %s" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, 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:1586 +#: apt-pkg/acquire-item.cc:1595 #, fuzzy, c-format msgid "Unable to find hash sum for '%s' in Release file" msgstr "تعذر ÙØªØ مل٠قاعدة البيانات %s: %s" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " "repository will not be applied." msgstr "" -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -2851,117 +2881,112 @@ msgid "" msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, 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 "" -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, fuzzy, c-format msgid "Unable to parse Release file %s" msgstr "تعذر ÙØªØ مل٠قاعدة البيانات %s: %s" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, fuzzy, c-format msgid "No sections in Release file %s" msgstr "Ù„Ø§ØØ¸ØŒ ØªØØ¯ÙŠØ¯ %s بدلاً من %s\n" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "" -#: apt-pkg/indexrecords.cc:125 +#: apt-pkg/indexrecords.cc:130 #, fuzzy, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Ù„Ø§ØØ¸ØŒ ØªØØ¯ÙŠØ¯ %s بدلاً من %s\n" -#: apt-pkg/indexrecords.cc:144 +#: apt-pkg/indexrecords.cc:149 #, fuzzy, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "تعذر ÙØªØ مل٠قاعدة البيانات %s: %s" -#: apt-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "ÙÙƒ تركيب القرص المدمج\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "ÙÙƒ تركيب القرص المدمج...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "بانتظار القرص...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "تركيب القرص...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " msgstr "جاري التعرÙ..." -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -#, fuzzy -msgid "Unmounting CD-ROM...\n" -msgstr "ÙÙƒ تركيب القرص المدمج..." - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" msgstr "" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " "%zu signatures\n" msgstr "" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "هذا الاسم غير ØµØ§Ù„ØØŒ ØØ§ÙˆÙ„ مجدداً.\n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -2970,34 +2995,34 @@ msgstr "" "هذا القرص مسمى: \n" "'%s'\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "نسخ قوائم Ø§Ù„ØØ²Ù…..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "كتابة Ù„Ø§Ø¦ØØ© المصادر الجديدة\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format msgid "Wrote %i records.\n" msgstr "" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:777 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:780 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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 "" @@ -3012,254 +3037,254 @@ msgstr "" msgid "Hash mismatch for: %s" msgstr "MD5Sum غير متطابقة" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "تعذر العثور على الإصدارة '%s' Ù„Ù„ØØ²Ù…Ø© '%s'" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "تعذر العثور على النسخة '%s' Ù„Ù„ØØ²Ù…Ø© '%s'" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, fuzzy, c-format msgid "Couldn't find task '%s'" msgstr "تعذر العثور على Ø§Ù„ØØ²Ù…Ø© %s" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, fuzzy, c-format msgid "Couldn't find any package by regex '%s'" msgstr "تعذر العثور على Ø§Ù„ØØ²Ù…Ø© %s" -#: apt-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "تعذر العثور على Ø§Ù„ØØ²Ù…Ø© %s" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, c-format msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " "neither of them" msgstr "" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, c-format msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, fuzzy, c-format msgid "Installing %s" msgstr "تم تثبيت %s" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "تهيئة %s" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "إزالة %s" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, fuzzy, c-format msgid "Completely removing %s" msgstr "تمت إزالة %s بالكامل" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: 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:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "ØªØØ¶ÙŠØ± %s" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "ÙØªØ %s" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "Ø§Ù„ØªØØ¶ÙŠØ± لتهيئة %s" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "تم تثبيت %s" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "Ø§Ù„ØªØØ¶ÙŠØ± لإزالة %s" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "تم إزالة %s" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "Ø§Ù„ØªØØ¶ÙŠØ± لإزالة %s بالكامل" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "تمت إزالة %s بالكامل" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "تعذرت الكتابة إلى %s" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 msgid "" "No apport report written because the error message indicates an issue on the " "local system" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " "it?" msgstr "" -#: apt-pkg/deb/debsystem.cc:87 +#: 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:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " msgstr "" -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "" @@ -3330,9 +3355,6 @@ msgstr "" #~ msgid "Failed to remove %s" #~ msgstr "تعذرت إزالة %s" -#~ msgid "Unable to create %s" -#~ msgstr "تعذر إنشاء %s" - #~ msgid "Failed to change to the admin dir %sinfo" #~ msgstr "ÙØ´Ù„ تغيير دليل الإدارة إلى %sinfo" @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.18\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2010-10-02 23:35+0100\n" "Last-Translator: Iñigo Varela <ivarela@softastur.org>\n" "Language-Team: Asturian (ast)\n" @@ -15,153 +15,154 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Virtaal 0.5.2\n" -#: cmdline/apt-cache.cc:140 +#: 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" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "Total de nomes de paquetes: " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 msgid "Total package structures: " msgstr "Total de cadarmes de paquetes: " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " Paquetes normales: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " Paquetes virtuales puros: " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " Paquetes virtuales cenciellos: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " Paquetes virtuales amestaos: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " Falten: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "Versiones distintes en total: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "Descripciones distintes en total: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "Dependencies totales: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "Rellaciones versión/ficheru en total: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "Rellaciones descripción/ficheru en total: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "Mapes de provisiones en total: " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "Cadenes globalizaes en total: " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "Espaciu de dependencies de versión en total: " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "Espaciu ociosu en total: " -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "Informe del total d'espaciu: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format msgid "Package file %s is out of sync." msgstr "El ficheru de paquetes %s nun ta sincronizáu." -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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" -#: cmdline/apt-cache.cc:1245 +#: 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" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "Nun pue alcontrase'l paquete %s" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "Ficheros de paquete:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 msgid "Cache is out of sync, can't x-ref a package file" msgstr "" "La caché nun ta sincronizada, nun puede facese x-ref a un ficheru de paquete" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "Paquetes na chincheta:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(nun s'alcontró)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " Instaláu: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " Candidatu: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(dengún)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " Chincheta de paquetes: " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " Tabla de versiones:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s pa %s compiláu en %s %s\n" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -237,28 +238,28 @@ msgstr "" "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:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: 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:104 +#: 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" -#: cmdline/apt-cdrom.cc:141 +#: 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:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Repite'l procesu colos demás CDs del conxuntu." @@ -294,65 +295,65 @@ msgstr "" " -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:244 +#: 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'" -#: cmdline/apt-get.cc:326 +#: 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:329 +#: 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:366 +#: cmdline/apt-get.cc:367 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Tomando '%s' como paquetes d'orÃxenes en llugar de '%s'\n" -#: cmdline/apt-get.cc:422 +#: cmdline/apt-get.cc:423 #, fuzzy, c-format msgid "Can not find version '%s' of package '%s'" msgstr "Inorar versión non disponible de '%s' del paquete '%s'" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "Nun pudo alcontrase'l paquete %s" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "%s axustáu como instaláu manualmente.\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: 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" -#: cmdline/apt-get.cc:468 cmdline/apt-mark.cc:116 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: 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:573 cmdline/apt-get.cc:610 +#: 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:725 +#: 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:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "Nun pudo alcontrase un paquete fonte pa %s" @@ -378,97 +379,97 @@ msgstr "" "pa baxar los caberos anovamientos (posiblemente tovÃa nun sacaos) pal " "paquete.\n" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Saltando'l ficheru yá descargáu '%s'\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "Nun pue determinase l'espaciu llibre de %s" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "Nun hai espaciu llibre bastante en %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Hai falta descargar %sB/%sB d'archivos fonte.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Hai falta descargar %sB d'archivos fonte.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "Fonte descargada %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "Falló la descarga de dellos archivos." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "Descarga completa y en mou de sólo descarga" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Saltando'l desempaquetáu de la fonte yá desempaquetada en %s\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Falló la orde de desempaquetáu '%s'.\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Comprueba qu'el paquete 'dpkg-dev' ta instaláu.\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "Falló la orde build '%s'.\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "Falló el procesu fÃu" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "" "Hai que conseñar polo menos un paquete pa verificar les dependencies de " "construcción" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Nun pudo algamase información de dependencies de construcción pa %s" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s nun tien dependencies de construcción.\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -477,7 +478,7 @@ msgstr "" "La dependencia %s en %s nun puede satisfacese porque nun se puede atopar el " "paquete %s" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -486,14 +487,14 @@ msgstr "" "La dependencia %s en %s nun puede satisfacese porque nun se puede atopar el " "paquete %s" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Nun se pudo satisfacer la dependencia %s pa %s: El paquete instaláu %s ye " "enforma nuevu" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -502,7 +503,7 @@ msgstr "" "La dependencia %s en %s nun puede satisfacese porque denguna versión " "disponible del paquete %s satisfaz los requisitos de versión" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -511,30 +512,30 @@ msgstr "" "La dependencia %s en %s nun puede satisfacese porque nun se puede atopar el " "paquete %s" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Fallu pa satisfacer la dependencia %s pa %s: %s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Les dependencies de construcción de %s nun pudieron satisfacese." -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "Fallu al procesar les dependencies de construcción" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "Coneutando a %s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "Módulos sofitaos:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -625,53 +626,75 @@ msgstr "" "pa más información y opciones.\n" " Esti APT tien Poderes de Super Vaca.\n" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Has de conseñar polo menos un paquete p'algamar so fonte" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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 "pero nun ta instaláu" -#: cmdline/apt-mark.cc:63 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format msgid "%s was already set to manually installed.\n" msgstr "%s axustáu como instaláu manualmente.\n" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, fuzzy, c-format msgid "%s was already set to automatically installed.\n" msgstr "%s axustáu como instaláu automáticamente.\n" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format msgid "%s was already set on hold.\n" msgstr "%s yá ta na versión más nueva.\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, fuzzy, c-format msgid "%s was already not hold.\n" msgstr "%s yá ta na versión más nueva.\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Esperaba %s pero nun taba ellÃ" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, fuzzy, c-format msgid "%s set on hold.\n" msgstr "%s axustáu como instaláu manualmente.\n" -#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, fuzzy, c-format msgid "Canceled hold on %s.\n" msgstr "Nun pudo abrise %s" -#: cmdline/apt-mark.cc:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" "\n" @@ -698,7 +721,7 @@ msgid "" "See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -746,52 +769,52 @@ msgstr "Nun se pudo desmontar el CD-ROM de %s; puede que se tea usando entá." msgid "Disk not found." msgstr "Nun s'atopa'l discu." -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: 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:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: 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:82 methods/gzip.cc:113 methods/rred.cc:606 +#: 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:47 +#: 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:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "Entrando" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "Nun se pudo determinar el nome del par" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "Nun se pudo determinar el nome llocal" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format msgid "The server refused the connection and said: %s" msgstr "El sirvidor refugó la conexón, y dixo: %s" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "L'usuariu (USER) falló; el sirvidor dixo: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "La contraseña (PASS) falló; el sirvidor dixo: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -799,121 +822,123 @@ msgstr "" "Especificóse un sirvidor proxy pero non un script d'entrada, Acquire::ftp::" "ProxyLogin ta baleru." -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Falló la orde '%s' del guión d'entrada; el sirvidor dixo: %s" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "La triba (TYPE) falló; el sirvidor dixo: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: 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:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "El sirvidor zarró la conexón" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "Fallu de llectura" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "Una rempuesta revirtió'l buffer." -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "Corrupción del protocolu" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "Fallu d'escritura" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: 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:707 +#: 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:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "Falló" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "Nun se pudo coneutar un socket pasivu." -#: methods/ftp.cc:730 +#: 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:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "Nun se pudo enllazar con un socket" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "Nun se pudo escuchar nel socket" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "Nun se pudo determinar el nome del socket" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "Nun se pudo mandar la orde PORT" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Direición de familia %u desconocida (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT falló; el sirvidor dixo: %s" -#: methods/ftp.cc:826 +#: 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:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "Nun se pudo aceptar la conexón" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: 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" -#: methods/ftp.cc:885 +#: 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'" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "Gandió'l tiempu del zócalu de datos" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, 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:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "Consulta" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "Nun se pudo invocar " @@ -949,7 +974,7 @@ msgstr "Nun se pudo coneutar a %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "Coneutando a %s" @@ -979,37 +1004,37 @@ msgstr "Daqué raro asocedió resolviendo '%s:%s' (%i - %s)" msgid "Unable to connect to %s:%s:" msgstr "Nun pudo coneutase a %s:%s:" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Fallu internu: Robla bona, pero nun se pudo determinar la so buelga dixital?!" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "Atopóse polo menos una robla mala." -#: methods/gpgv.cc:172 +#: 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?)" #. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "Fallu desconocÃu al executar gpgv" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Les siguientes robles nun valieron:\n" -#: methods/gpgv.cc:229 +#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@ -1017,146 +1042,147 @@ msgstr "" "Les robles siguientes nun pudieron verificase porque la to llave pública nun " "ta a mano:\n" -#: methods/gzip.cc:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "Fallu al escribir nel ficheru" -#: methods/http.cc:530 +#: methods/http.cc:522 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:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "Fallu al lleer nel sirvidor" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "Fallu al escribir nel ficheru" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "Falló la escoyeta" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "Gandió'l tiempu de conexón" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "Fallu al escribir nel ficheru de salida" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "Esperando les testeres" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "Fallu na llinia testera" -#: methods/server.cc:139 methods/server.cc:146 +#: 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" -#: methods/server.cc:176 +#: 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" -#: methods/server.cc:199 +#: 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" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "Esti sirvidor HTTP tien rotu'l soporte d'alcance" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "Formatu de data desconocÃu" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "Datos de testera incorreutos" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "Fallo la conexón" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "Fallu internu" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Error internu, ¡InstallPackages llamose con paquetes frañaos!" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "Fai falta desaniciar los paquetes pero desaniciar ta torgáu." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "Error internu, ordenar nun finó" -#: apt-private/private-install.cc:159 -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-private/private-install.cc:147 +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" #. TRANSLATOR: The required 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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Hai que descargar %sB/%sB d'archivos.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:171 +#: apt-private/private-install.cc:159 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Hai que descargar %sB d'archivos.\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:178 +#: apt-private/private-install.cc:166 #, 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" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:183 +#: apt-private/private-install.cc:171 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Tres d'esta operación, van lliberase %sB d'espaciu de discu.\n" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "Nun tienes espaciu libre bastante en %s." -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "Hai problemes y utilizose -y ensin --force-yes" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Conseñose Trivial Only pero ésta nun ye una operación trivial." #. 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "SÃ, ¡facer lo que digo!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1167,19 +1193,19 @@ msgstr "" "Pa continuar escribe la frase '%s'\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "Encaboxar." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "¿Quies continuar?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "Dellos ficheros nun pudieron descargase" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1187,19 +1213,19 @@ msgstr "" "Nun pudieron algamase dellos archivos, ¿seique executando apt-get update o " "tentando --fix-missing?" -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing y cambéu de mediu nun ta sofitao actualmente" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "Nun pudieron iguase los paquetes que falten." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "Encaboxando la instalación." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1213,15 +1239,15 @@ msgstr[1] "" "Los siguientes paquetes desaparecieron del sistema como\n" "tolos ficheros fueron sobroescritos por otros paquetes:" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Nota: Esto faise automáticamente y baxo demanda por dpkg." -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Suponse que nun vamos esborrar coses; nun pue entamase AutoRemover" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1239,15 +1265,15 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 msgid "The following information may help to resolve the situation:" msgstr "La siguiente información pue aidar a resolver la situación:" -#: apt-private/private-install.cc:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "Error internu, AutoRemover rompió coses" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1258,7 +1284,7 @@ msgstr[1] "" "Los siguientes paquetes instaláronse de manera automática y ya nun se " "necesiten:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1267,18 +1293,18 @@ msgstr[0] "El paquete %lu instalóse de mou automáticu y yá nun se necesita.\n msgstr[1] "" "Los paquetes %lu instaláronse de manera automática y ya nun se necesiten\n" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 #, fuzzy msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Usa 'apt-get autoremove' pa desinstalalos." msgstr[1] "Usa 'apt-get autoremove' pa desinstalalos." -#: apt-private/private-install.cc:624 +#: apt-private/private-install.cc:612 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "HabrÃes d'executar 'apt-get -f install' para iguar estos:" -#: apt-private/private-install.cc:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1286,7 +1312,7 @@ msgstr "" "Dependencies ensin cubrir. Tenta 'apt-get -f install' ensin paquetes (o " "conseña una solución)." -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1298,145 +1324,145 @@ msgstr "" "inestable, que dellos paquetes necesarios nun se crearon o que\n" "s'allugaron fuera d'Incoming." -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "Paquetes frañaos" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "Instalaránse los siguientes paquetes extra:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "Paquetes afalaos:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "Paquetes encamentaos" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "AVISU: ¡Nun pudieron autenticase los siguientes paquetes!" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "Avisu d'autenticación saltáu.\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "Dellos paquetes nun pudieron autenticase" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "¿Instalar esos paquetes ensin verificación?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Falló algamar %s %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [Instaláu]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [Instaláu]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [Instaláu]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [Instaláu]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "Los siguientes paquetes nun cumplen dependencies:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "pero %s ta instaláu" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "pero %s ta pa instalar" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "pero nun ye instalable" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "pero ye un paquete virtual" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "pero nun ta instaláu" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "pero nun va instalase" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " o" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "Van instalase los siguientes paquetes NUEVOS:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "Los siguientes paquetes van DESANICIASE:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "Los siguientes paquetes tan retenÃos:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "Los siguientes paquetes van actualizase:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "Los siguientes paquetes van DESACTUALIZASE:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "Van camudase los siguientes paquetes retenÃos:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (por %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1444,27 +1470,27 @@ msgstr "" "AVISU: Los siguientes paquetes esenciales van desaniciase.\n" "¡Esto NUN hai que facelo si nun sabes esautamente lo que faes!" -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu actualizaos, %lu nuevos instalaos, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu reinstalaos, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu desactualizaos, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu para desaniciar y %lu nun actualizaos.\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu nun instalaos dafechu o desaniciaos.\n" @@ -1473,7 +1499,7 @@ msgstr "%lu nun instalaos dafechu o desaniciaos.\n" #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "[S/n]" @@ -1481,91 +1507,91 @@ msgstr "[S/n]" #. 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:702 +#: apt-private/private-output.cc:708 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:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "S" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "Error de compilación d'espresión regular - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "Iguando dependencies..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " falló." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "Nun pudieron iguase les dependencies" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "Nun pue amenorgase'l conxuntu d'actualización" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " Fecho" -#: apt-private/private-cachefile.cc:102 +#: 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-private/private-cachefile.cc:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "Dependencies incumplÃes. Téntalo usando -f." -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "La orde update nun lleva argumentos" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "Calculando l'anovamientu... " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "Error internu, AllUpgrade rompió coses" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "Fecho" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1578,43 +1604,43 @@ msgstr "" " asina que nun dependen de la pertinencia de la verdadera situación " "actual!" -#: apt-private/private-sources.cc:45 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format msgid "Failed to parse %s. Edit again? " msgstr "Nun pudo renomase %s como %s" -#: apt-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "Oxe " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "Des:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "Ign " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Err " -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "Descargaos %sB en %s (%sB/s)\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [Tresnando]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1627,19 +1653,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "Nun ye a lleer %s" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "Nun se pudo cambiar a %s" @@ -1668,11 +1694,11 @@ msgstr "Nun s'alcontró ficheru espeyu '%s'" msgid "[Mirror: %s]" msgstr "[Espeyu: %s]" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: 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:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "Conexón encaboxada prematuramente" @@ -1740,40 +1766,45 @@ msgstr "" "-o=? Afita una opción de configuración arbitraria, p. ej. -o dir::cache=/" "tmp\n" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Nun ye a lleer %s" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "Nun se pue escribir en %s" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Nun se pue alcontrar la versión de debconf. ¿Ta instaláu debconf?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "La llista d'estensión de paquetes ye enforma llarga" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "Error al procesar el direutoriu %s" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "La llista d'estensión de fontes ye enforma llarga" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "Error al escribir la cabecera al ficheru de contenÃos" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "Error al procesar contenÃos %s" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1854,26 +1885,26 @@ msgstr "" " -c=? Lleer esti ficheru de configuración\n" " -o=? Afita una escoyeta de configuración propia" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "Nun concasó denguna seleición" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format 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:47 +#: ftparchive/cachedb.cc:51 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "La BD corrompiose, ficheru renomáu como %s.old" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "La DB ye antigua, tentando actualizar %s" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -1881,192 +1912,192 @@ 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:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Nun pudo abrise'l ficheru de BD %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "Nun pudo lleese %s" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "L'archivu nun tien rexistru de control" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "Nun pudo algamase un cursor" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "A: Nun pudo lleese'l direutoriu %s\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "A: Nun pudo lleese %s\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "A: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "E: Errores aplicables al ficheru " -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "Nun pudo resolvese %s" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "Falló'l percorrÃu pol árbol" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "Nun pudo abrise %s" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " Desenllazar %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "Nun pudo lleese l'enllaz %s" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "Nun pudo desenllazase %s" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Falló enllazar enllazr %s a %s" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Alcanzose'l llÃmite of %sB de desenllaz.\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "L'archivu nun tien el campu paquetes" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %s nun tien la entrada saltos\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " el curiador de %s ye %s y non %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr " %s nun tien la entrada saltos de fonte\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s tampoco nun tiene una entrada binaria de saltos\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - Nun pudo allugase memoria" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "Nun pudo abrise %s" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "Saltu mal formáu %s llinia %lu #1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "Nun pudo lleese'l ficheru de saltos %s" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, fuzzy, c-format msgid "Malformed override %s line %llu #1" msgstr "Saltu mal formáu %s llinia %lu #1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, fuzzy, c-format msgid "Malformed override %s line %llu #2" msgstr "Saltu mal formáu %s llinia %lu #2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, fuzzy, c-format msgid "Malformed override %s line %llu #3" msgstr "Saltu mal formáu %s llinia %lu #3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "Algoritmu de compresión desconocÃu '%s'" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "La salida comprimida %s necesita un xuegu de compresión" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "Nun pudo criase FICHERU*" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "Nun pudo biforcase" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "Comprimir fÃu" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "Error internu, nun pudo criase %s" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "Fallu na ES al soprocesu/ficheru" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "Nun pudo lleese al computar MD5" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "Problema al desenllazar %s" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "Nun pudo renomase %s como %s" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -2121,157 +2152,157 @@ msgstr "" "-o=? Afita una opción de configuración arbitraria, p. ej. -o dir::\n" "cache=/tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "Fallu al crear les tuberÃes" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "Fallu al executar gzip " -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "Ficheru tollÃu" -#: apt-inst/contrib/extracttar.cc:201 +#: 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:306 +#: 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" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "Robla del ficheru inválida" -#: apt-inst/contrib/arfile.cc:82 +#: 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:94 +#: apt-inst/contrib/arfile.cc:96 #, c-format msgid "Invalid archive member header %s" msgstr "Testera de miembru del archivu %s inválida" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "Testera de miembru del ficheru inválida" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "El ficheru ye perpequeñu" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "Falló al lleer les testeres del ficheru" -#: apt-inst/filelist.cc:382 +#: 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:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "¡Fallu al atopar l'elementu enllazáu!" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "Falló al allugar una desvÃu" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "Fallu internu en AddDiversion" -#: apt-inst/filelist.cc:479 +#: apt-inst/filelist.cc:477 #, c-format msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" msgstr "Intentando sobrescribir un desvÃu, %s -> %s and %s/%s" -#: apt-inst/filelist.cc:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "Doble suma de desvÃu %s -> %s" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "Ficheru de configuración duplicáu %s/%s" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: 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 nel ficheru %s" -#: apt-inst/dirstream.cc:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "Falló al pesllar el ficheru %s" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format msgid "The path %s is too long" msgstr "La trayeutoria %s ye enforma llarga" -#: apt-inst/extract.cc:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "Desempaquetando %s más d'una vegada" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "El direutorio %s ta desviáu" -#: apt-inst/extract.cc:145 +#: 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" -#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 msgid "The diversion path is too long" msgstr "La trayeutoria de desviación ye enforma llarga" -#: apt-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "El direutoriu %s ta reemplazándose por un non-direutoriu" -#: apt-inst/extract.cc:282 +#: 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:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "La trayeutoria ye perllarga" -#: apt-inst/extract.cc:414 +#: 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" -#: apt-inst/extract.cc:431 +#: apt-inst/extract.cc:438 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "El ficheru %s/%s sobreescribe al que ta nel paquete %s" -#: apt-inst/extract.cc:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "Nun ye a lleer %s" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format msgid "This is not a valid DEB archive, missing '%s' member" msgstr "Esti nun ye un ficheru DEB válidu, falta'l miembru '%s'" -#: apt-inst/deb/debfile.cc:124 +#: apt-inst/deb/debfile.cc:132 #, c-format msgid "Internal error, could not locate member %s" msgstr "Error internu, nun se pue atopar el miembru %s" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "Ficheru de control inanalizable" @@ -2331,488 +2362,493 @@ msgstr "" "desactivao pol usuariu." #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lid %lih %limin %lis" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "%lih %limin %lis" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "%limin %lis" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "%lis" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "Escoyeta %s que nun s'atopa" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Triba d'abreviatura que nun se reconoz: «%c»" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "Abriendo ficheros de configuración %s" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Fallu de sintaxis %s:%u: Nun hai un nome al entamu del bloque." -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Fallu de sintaxis %s:%u: Marca mal formada" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Fallu de sintaxis %s:%u: Puxarra extra dempués del valor" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "Error de sintaxis %s:%u: Les directives pueden facese sólo nel nivel cimeru" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Fallu de sintaxis %s:%u: Demasiaes inclusiones añeraes" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Fallu de sintaxis %s:%u: Incluyendo dende equÃ" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Error de sintaxis %s:%u: La directiva '%s' nun ta sofitada" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-pkg/contrib/configuration.cc:900 #, c-format msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" "Fallu de sintaxis %s:%u: Directiva llimpia requier un tres opciones como " "argumentos" -#: apt-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Fallu de sintaxis %s:%u: Puxarra extra al final del ficheru" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... ¡Fallu!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... Fecho" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s... Fecho" -#: apt-pkg/contrib/cmndline.cc:116 +#: 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-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format msgid "Command line option %s is not boolean" msgstr "La opción %s de la llinia d'ordes nun ye un valor booleanu" -#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "La opción %s necesita un argumentu." -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "Opción %s: L'axuste del elementu de configuración ha tener un =<val>." -#: apt-pkg/contrib/cmndline.cc:273 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format msgid "Option %s requires an integer argument, not '%s'" msgstr "La opción %s pide un argumentu enteru, non '%s'" -#: apt-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "Opción '%s' enforma llarga" -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, 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." -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "Operación incorreuta: %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format msgid "Unable to stat the mount point %s" msgstr "Nun puede algamase información del puntu de montaxe %s" -#: apt-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "Nun se pudo montar el CD-ROM" -#: apt-pkg/contrib/fileutl.cc:95 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problemes zarrando'l ficheru gzip %s" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "Nun ta usándose bloquéu pal ficheru de bloquéu de sólo llectura %s" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "Nun puede abrise'l ficheru de bloquéu %s" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, 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-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "Nun se pudo torgar %s" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, 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:864 +#: apt-pkg/contrib/fileutl.cc:829 #, c-format msgid "Sub-process %s received signal %u." msgstr "El subprocesu %s recibió una señal %u." -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 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-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "El subprocesu %s terminó de manera inesperada" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problemes zarrando'l ficheru gzip %s" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "Nun se pudo abrir el ficheru %s" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, c-format msgid "Could not open file descriptor %d" msgstr "Nun pudo abrise un ficheru descriptor %d" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "Nun pudo criase'l soprocesu IPC" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "Nun pudo executase'l compresor " -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, 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-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, fuzzy, c-format msgid "write, still have %llu to write but couldn't" msgstr "escritos, entá tenÃa d'escribir %lu pero nun pudo facerse" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, c-format msgid "Problem closing the file %s" msgstr "Problemes zarrando'l ficheru %s" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, c-format msgid "Problem renaming the file %s to %s" msgstr "Hai problemes al renomar el ficheru %s a %s" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, c-format msgid "Problem unlinking the file %s" msgstr "Hai problemes desvenceyando'l ficheru %s" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "Hai problemes al sincronizar el ficheru" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "falló'l cambiu de nome, %s (%s -> %s)." + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: 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-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "Caché de paquetes balera." -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "El ficheru de caché de paquetes ta tollÃu" -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "El ficheru de caché de paquetes ye una versión incompatible" -#: apt-pkg/pkgcache.cc:162 +#: apt-pkg/pkgcache.cc:169 #, fuzzy msgid "The package cache file is corrupted, it is too small" msgstr "El ficheru de caché de paquetes ta tollÃu" -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "Esti APT nun soporta'l sistema de versiones '%s'" -#: apt-pkg/pkgcache.cc:172 +#: 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:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "Depende de" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "Predepende de" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "Suxer" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "Recomienda" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "En conflictu con" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "Sustituye a" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "Fai obsoletu a" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "Ruempe" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "Aumenta" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "importante" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "requerÃu" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "estándar" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "opcional" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "extra" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "Creando árbol de dependencies" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "Versiones candidates" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "Xeneración de dependencies" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: 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-pkg/depcache.cc:244 +#: 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-pkg/depcache.cc:250 +#: apt-pkg/depcache.cc:256 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Falló la escritura del ficheru temporal d'estáu %s" -#: apt-pkg/tagfile.cc:138 +#: 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-pkg/tagfile.cc:235 +#: 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-pkg/sourcelist.cc:118 +#: 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-pkg/sourcelist.cc:161 +#: 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-pkg/sourcelist.cc:164 +#: 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-pkg/sourcelist.cc:175 +#: 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)" -#: apt-pkg/sourcelist.cc:181 +#: apt-pkg/sourcelist.cc:190 #, c-format msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "Llinia %lu mal formada na llista d'orÃxenes %s ([%s] nun tien clave)" -#: apt-pkg/sourcelist.cc:184 +#: apt-pkg/sourcelist.cc:193 #, c-format msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" "Llinia %lu mal formada na llista d'orÃxenes %s ([%s] clave %s nun tien valor)" -#: apt-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "Llinia %lu mal formada na llista d'orÃxenes %s (URI)" -#: apt-pkg/sourcelist.cc:199 +#: 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)" -#: apt-pkg/sourcelist.cc:202 +#: apt-pkg/sourcelist.cc:211 #, c-format msgid "Malformed line %lu in source list %s (URI parse)" msgstr "Llinia %lu mal formada na llista d'orÃxenes %s (analÃs d'URI)" -#: apt-pkg/sourcelist.cc:208 +#: 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)" -#: apt-pkg/sourcelist.cc:215 +#: 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-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "Abriendo %s" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "Llinia %u enforma llarga na llista d'orÃxenes %s." -#: apt-pkg/sourcelist.cc:362 +#: 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-pkg/sourcelist.cc:366 +#: 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" -#: apt-pkg/sourcelist.cc:407 +#: 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-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2821,12 +2857,12 @@ msgstr "" "Nun pudó facese la configuración inmediatamente en '%s'. Por favor, mira man " "5 apt.conf embaxo APT::Immediate-Configure for details. (%d)" -#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "Nun pudo abrise'l ficheru '%s'" -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2837,19 +2873,19 @@ msgstr "" "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/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "La triba de ficheru d'indiz '%s' nun ta sofitada" -#: apt-pkg/algorithms.cc:266 +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" "El paquete %s necesita reinstalase, pero nun s'alcuentra un archivu pa el." -#: apt-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2857,216 +2893,211 @@ msgstr "" "Error, pkgProblemResolver::Resolve xeneró frañadures, esto puede ser pola " "mor de paquetes retenÃos." -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "Nun pueden iguase los problemes; tienes paquetes frañaos retenÃos." -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, c-format msgid "List directory %spartial is missing." msgstr "Falta'l direutoriu de llistes %spartial." -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, c-format msgid "Archives directory %spartial is missing." msgstr "Falta'l direutoriu d'archivos %spartial." -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, c-format msgid "Unable to lock directory %s" msgstr "Nun pudo bloquiase'l direutoriu %s" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Descargando ficheru %li de %li (falten %s)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "Descargando ficheru %li de %li" -#: apt-pkg/acquire-worker.cc:113 +#: 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." -#: apt-pkg/acquire-worker.cc:115 +#: 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" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "El métodu %s nun entamó correchamente" -#: apt-pkg/acquire-worker.cc:452 +#: 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." -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "El sistema d'empaquetáu '%s' nun ta sofitáu" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "Nun pudo determinase una triba de sistema d'empaquetáu afayadiza" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "Nun pudo lleese %s." -#: apt-pkg/srcrecords.cc:47 +#: 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/cachefile.cc:87 +#: 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." -#: apt-pkg/cachefile.cc:91 +#: 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:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "Nun pudo lleese la llista de fontes." -#: apt-pkg/policy.cc:75 +#: 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 "" -#: apt-pkg/policy.cc:414 +#: apt-pkg/policy.cc:422 #, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "" "Rexistru inválidu nel ficheru de preferencies %s, nun hai cabecera Paquete" -#: apt-pkg/policy.cc:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "Nun s'entiende'l tipu de pin %s" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "Nun hai prioridá (o ye cero) conseñada pa pin" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 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:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: 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)" -#: apt-pkg/pkgcachegen.cc:251 +#: apt-pkg/pkgcachegen.cc:257 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "Coime, perpasaste'l númberu de nomes de paquete qu'esti APT ye a remanar." -#: apt-pkg/pkgcachegen.cc:254 +#: 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." -#: apt-pkg/pkgcachegen.cc:257 +#: 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." -#: apt-pkg/pkgcachegen.cc:260 +#: 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." -#: apt-pkg/pkgcachegen.cc:570 +#: 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" -#: apt-pkg/pkgcachegen.cc:1199 +#: 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" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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" -#: apt-pkg/pkgcachegen.cc:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "Recoyendo ficheros qu'apurren" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: 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" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "falló'l cambiu de nome, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "La suma hash nun concasa" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "El tamañu nun concasa" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "Operación incorreuta: %s" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, 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:1586 +#: apt-pkg/acquire-item.cc:1595 #, fuzzy, c-format msgid "Unable to find hash sum for '%s' in Release file" msgstr "Nun se pudo parchear el ficheru release %s" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 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" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " "repository will not be applied." msgstr "" -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Conflictu de distribución: %s (esperábase %s pero obtúvose %s)" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3076,12 +3107,12 @@ msgstr "" "anováu y va usase un ficheru Ãndiz. Fallu GPG: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "Fallu GPG: %s: %s" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3090,12 +3121,12 @@ msgstr "" "Nun pudo alcontrase un ficheru pal paquete %s. Esto puede significar que " "necesites iguar manualmente esti paquete (por faltar una arquitectura)" -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -3103,71 +3134,67 @@ msgstr "" "Los ficheros d'indiz de paquetes tan corrompÃos. Nun hai campu Filename: pal " "paquete %s." -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, c-format msgid "Unable to parse Release file %s" msgstr "Nun se pudo parchear el ficheru release %s" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, c-format msgid "No sections in Release file %s" msgstr "Ensin seiciones nel ficheru release %s" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "Ensin entrada Hash nel ficheru release %s" -#: apt-pkg/indexrecords.cc:125 +#: 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-pkg/indexrecords.cc:144 +#: 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-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "El bloque de fornidor %s nun contién una buelga dixital" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Usando el puntu de montaxe de CD-ROM %s\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "Desmontando'l CD-ROM\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "Desmontando'l CD-ROM...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "Esperando'l discu...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "Montando'l CD-ROM...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " -msgstr "Identificando.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " +msgstr "Identificando... " -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "Etiqueta guardada: %s\n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "Desmontando l CD-ROM...\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" msgstr "Buscando nel discu ficheros d'Ãndices...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3176,7 +3203,7 @@ msgstr "" "Atopáu %zu indices de paquete, %zu indices de fonte, %zu indices de torna y " "%zu firmes\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" @@ -3184,16 +3211,16 @@ msgstr "" "Nun s'alcuentra dengún paquete de ficheros, seique nun ye un Discu Debian o " "hai una arquiteutura inválida?" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "Atopóse la etiqueta: '%s'\n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 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:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3202,34 +3229,34 @@ msgstr "" "Esti discu llámase: \n" "'%s'\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "Copiando les llistes de paquetes..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "Escribiendo llista nueva d'orÃxenes\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "Les entraes de la llista d'orÃxenes pa esti discu son:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: 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:777 +#: 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:780 +#: 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" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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 "" @@ -3246,38 +3273,38 @@ msgstr "Nun puede alcontrase'l rexistru d'autenticación pa: %s" msgid "Hash mismatch for: %s" msgstr "El hash nun concasa pa: %s" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Nun s'alcontró la distribución '%s' pa '%s'" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Nun s'alcontró la versión '%s' pa '%s'" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, c-format msgid "Couldn't find task '%s'" msgstr "Nun pudo alcontrase la xera '%s'" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, c-format msgid "Couldn't find any package by regex '%s'" msgstr "Nun pudo alcontrase dengún paquete por regex '%s'" -#: apt-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "Nun pudo alcontrase dengún paquete por regex '%s'" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, c-format msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" "Nun pueden seleicionase versiones pal paquete'%s' como puramente virtual" -#: apt-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " @@ -3286,56 +3313,56 @@ msgstr "" "Nun puede seleicionase l'instalador o versión candidata pal paquete '%s' " "como non tien nengún d'ellos" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, c-format msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" "Nun puede seleicionase la versión más nueva pal paquete'%s' como puramente " "virtual" -#: apt-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" "Nun puede seleicionase versión candidata pal paquete %s que nun tien " "candidata" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "" "Nun puede seleicionase versión instalada pal paquete %s que nun ta instalada" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "Executando dpkt" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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 " @@ -3344,118 +3371,118 @@ msgstr "" "Nun pudieron descargase dellos ficheros d'Ãndiz; inoráronse o usáronse los " "antiguos nel so llugar." -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "Instalando %s" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "Configurando %s" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "Desinstalando %s" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format msgid "Completely removing %s" msgstr "Desinstalóse dafechu %s" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "Anotando desaniciáu de %s" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "Executando activador de post-instalación de %s" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "Falta'l direutoriu '%s'." -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format msgid "Could not open file '%s'" msgstr "Nun pudo abrise'l ficheru '%s'" -#: apt-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "Preparando %s" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "Desempaquetando %s" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "Preparándose pa configurar %s" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "%s instaláu" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "Preparándose pa desinstalar %s" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "%s desinstaláu" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "Preparándose pa desinstalar dafechu %s" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "Desinstalóse dafechu %s" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "Nun se pue escribir en %s" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 msgid "No apport report written because MaxReports is reached already" msgstr "Ensin informe escritu d'apport porque MaxReports llegó dafechu" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "problemes de dependencies - déxase ensin configurar" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3463,7 +3490,7 @@ msgstr "" "Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu que " "siguió dende un fallu previu" -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" @@ -3471,7 +3498,7 @@ msgstr "" "Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu de " "discu llenu" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3479,7 +3506,7 @@ msgstr "" "Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu de " "memoria" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 #, fuzzy msgid "" "No apport report written because the error message indicates an issue on the " @@ -3488,14 +3515,14 @@ msgstr "" "Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu de " "discu llenu" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 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-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " @@ -3504,14 +3531,14 @@ msgstr "" "Nun pudó bloquease'l direutoriu d'alministración (%s), ¿hai otru procesu " "usándolu?" -#: apt-pkg/deb/debsystem.cc:87 +#: 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?" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " @@ -3519,7 +3546,7 @@ msgstr "" "dpkg interrumpióse, tienes qu'executar manualmente '%s' pa iguar el " "problema. " -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "Non bloquiáu" @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.21\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2012-06-25 17:23+0300\n" "Last-Translator: Damyan Ivanov <dmn@debian.org>\n" "Language-Team: Bulgarian <dict@fsa-bg.org>\n" @@ -21,153 +21,154 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1)\n" "X-Generator: KBabel 1.11.4\n" -#: cmdline/apt-cache.cc:140 +#: cmdline/apt-cache.cc:149 #, c-format msgid "Package %s version %s has an unmet dep:\n" msgstr "Пакетът %s верÑÐ¸Ñ %s има неудовлетворена завиÑимоÑÑ‚:\n" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "Общо имена на пакети : " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 msgid "Total package structures: " msgstr "Общо пакетни Ñтруктури: " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " Ðормални пакети: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " ЧиÑти виртуални пакети: " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " Единични виртуални пакети: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " СмеÑени виртуални пакети: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " ЛипÑващи: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "Общо уникални верÑии: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "Общо уникални опиÑаниÑ: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "Общо завиÑимоÑти: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "Общо Ð¾Ñ‚Ð½Ð¾ÑˆÐµÐ½Ð¸Ñ Ð²ÐµÑ€ÑиÑ/файл: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "Общо Ð¾Ñ‚Ð½Ð¾ÑˆÐµÐ½Ð¸Ñ Ð¾Ð¿Ð¸Ñание/файл: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "Общо Ð¾Ñ‚Ð½Ð¾ÑˆÐµÐ½Ð¸Ñ â€žÐžÑигурÑва“: " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "Общо разгърнати низове: " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "Общо проÑтранÑтво за завиÑимоÑти по верÑии: " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "Общо празно проÑтранÑтво: " -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "Общо отчетено проÑтранÑтво: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: 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 не е Ñинхронизиран." -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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 "ÐÑма намерени пакети" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 msgid "You must give at least one search pattern" msgstr "ТрÑбва да въведете поне един шаблон за търÑене" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "Тази командата е оÑтарÑла. Използвайте „apt-mark showauto“ вмеÑто неÑ." -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "Пакетът %s не може да бъде намерен" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "Пакетни файлове:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: 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“ на пакетен файл" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "Отбити пакети:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(не Ñа намерени)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " ИнÑталирана: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " Кандидат: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(нÑма)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " Отбиване на пакета: " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " Таблица Ñ Ð²ÐµÑ€Ñиите:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: 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:1740 +#: cmdline/apt-cache.cc:1749 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] showpkg pkg1 [pkg2 ...]\n" @@ -238,28 +239,28 @@ msgstr "" "cache=/tmp\n" "За повече Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð²Ð¸Ð¶Ñ‚Ðµ наръчниците apt-cache(8) и apt.conf(5).\n" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: 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“" -#: cmdline/apt-cdrom.cc:104 +#: cmdline/apt-cdrom.cc:91 msgid "Please insert a Disc in the drive and press enter" msgstr "Сложете диÑк в уÑтройÑтвото и натиÑнете „Enter“" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, c-format msgid "Failed to mount '%s' to '%s'" msgstr "ÐеуÑпех при монтиране на %s на %s" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Повторете този Ð¿Ñ€Ð¾Ñ†ÐµÑ Ð·Ð° оÑтаналите диÑкове от комплекта." @@ -296,47 +297,47 @@ msgstr "" " -o=? ÐаÑтройване на произволна конфигурационна опциÑ, Ñ‚.е. -o dir::cache=/" "tmp\n" -#: cmdline/apt-get.cc:244 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format msgid "Can not find a package for architecture '%s'" msgstr "Ðе Ñа намерен пакети, отговарÑщ на регулÑÑ€Ð½Ð¸Ñ Ð¸Ð·Ñ€Ð°Ð· „%s“" -#: cmdline/apt-get.cc:326 +#: cmdline/apt-get.cc:327 #, fuzzy, c-format msgid "Can not find a package '%s' with version '%s'" msgstr "Ðе Ñа намерен пакети, отговарÑщ на регулÑÑ€Ð½Ð¸Ñ Ð¸Ð·Ñ€Ð°Ð· „%s“" -#: cmdline/apt-get.cc:329 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format msgid "Can not find a package '%s' with release '%s'" msgstr "Ðе Ñа намерен пакети, отговарÑщ на регулÑÑ€Ð½Ð¸Ñ Ð¸Ð·Ñ€Ð°Ð· „%s“" -#: cmdline/apt-get.cc:366 +#: 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:422 +#: cmdline/apt-get.cc:423 #, fuzzy, c-format msgid "Can not find version '%s' of package '%s'" msgstr "Игнориране на неÑъщеÑтвуваща верÑÐ¸Ñ â€ž%s“ на пакета „%s“" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "ÐеуÑпех при намирането на пакет %s" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "%s е отбелÑзан като ръчно инÑталиран.\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: 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:468 cmdline/apt-mark.cc:116 +#: 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." @@ -344,19 +345,19 @@ msgstr "" "Тази команда е оÑтарÑла. ВмеÑто Ð½ÐµÑ Ð¸Ð·Ð¿Ð¾Ð»Ð·Ð²Ð°Ð¹Ñ‚Ðµ „apt-mark auto“ и „apt-mark " "manual“." -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 msgid "Internal error, problem resolver broke stuff" msgstr "Вътрешна грешка, „problem resolver“ Ñчупи нещо в ÑиÑтемата" -#: cmdline/apt-get.cc:573 cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 msgid "Unable to lock the download directory" msgstr "ÐеуÑпех при заключването на директориÑта за изтеглÑне" -#: cmdline/apt-get.cc:725 +#: cmdline/apt-get.cc:726 msgid "Must specify at least one package to fetch source for" msgstr "ТрÑбва да укажете поне един пакет за изтеглÑне на Ð¸Ð·Ñ…Ð¾Ð´Ð½Ð¸Ñ Ð¼Ñƒ код" -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "ÐеуÑпех при намирането на изходен код на пакет %s" @@ -383,80 +384,80 @@ msgstr "" "за да изтеглите поÑледните промени в пакета (евентуално в Ð¿Ñ€Ð¾Ñ†ÐµÑ Ð½Ð° " "разработка).\n" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "ПропуÑкане на вече Ð¸Ð·Ñ‚ÐµÐ³Ð»ÐµÐ½Ð¸Ñ Ñ„Ð°Ð¹Ð» „%s“\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "ÐеуÑпех при определÑнето на Ñвободното проÑтранÑтво в %s" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "ÐÑмате доÑтатъчно Ñвободно проÑтранÑтво в %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Ðеобходимо е да Ñе изтеглÑÑ‚ %sB/%sB архиви изходен код.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Ðеобходимо е да Ñе изтеглÑÑ‚ %sB архиви изходен код.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "ИзтеглÑне на изходен код %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "ÐеуÑпех при изтеглÑнето на нÑкои архиви." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "ИзтеглÑнето завърши в режим Ñамо на изтеглÑне" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" "ПропуÑкане на разпакетирането на вече Ñ€Ð°Ð·Ð¿Ð°ÐºÐµÑ‚Ð¸Ñ€Ð°Ð½Ð¸Ñ Ð¸Ð·Ñ…Ð¾Ð´ÐµÐ½ код в %s\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Командата за разпакетиране „%s“ пропадна.\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Проверете дали имате инÑталиран пакета „dpkg-dev“.\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "Командата за компилиране „%s“ пропадна.\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "ПроцеÑÑŠÑ‚-потомък пропадна" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "" "ТрÑбва да укажете поне един пакет за проверка на завиÑимоÑти за компилиране" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -465,18 +466,18 @@ msgstr "" "ЛипÑва Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° архитектурата %s. Прегледайте информациÑта за APT::" "Architectures в apt.conf(5)." -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" "ÐеуÑпех при получаването на Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° завиÑимоÑтите за компилиране на %s" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s нÑма завиÑимоÑти за компилиране.\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -485,7 +486,7 @@ msgstr "" "ЗавиÑимоÑÑ‚ %s за пакета %s не може да бъде удовлетворена, %s не Ñе позволÑва " "за пакети „%s“" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -494,14 +495,14 @@ msgstr "" "ЗавиÑимоÑÑ‚ %s за пакета %s не може да бъде удовлетворена, понеже пакета %s " "не може да бъде намерен" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "ÐеуÑпех при удовлетворÑването на завиÑимоÑÑ‚ %s за пакета %s: ИнÑталираниÑÑ‚ " "пакет %s е твърде нов" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -510,7 +511,7 @@ msgstr "" "ЗавиÑимоÑÑ‚ %s за пакета %s не може да бъде удовлетворена, понеже верÑиÑта " "кандидат на пакета %s не може да удовлетвори изиÑкването за верÑиÑ" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -519,30 +520,30 @@ msgstr "" "ЗавиÑимоÑÑ‚ %s за пакета %s не може да бъде удовлетворена, понеже пакета %s " "нÑма подходÑщи верÑии" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "ÐеуÑпех при удовлетворÑването на завиÑимоÑÑ‚ %s за пакета %s: %s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "ЗавиÑимоÑтите за компилиране на %s не можаха да бъдат удовлетворени." -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "ÐеуÑпех при обработката на завиÑимоÑтите за компилиране" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, c-format msgid "Changelog for %s (%s)" msgstr "Журнал на промените в %s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "Поддържани модули:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -632,53 +633,75 @@ msgstr "" "Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¸ опции.\n" " Това APT има Върховни Сили.\n" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "ТрÑбва да укажете поне един пакет за изтеглÑне на Ð¸Ð·Ñ…Ð¾Ð´Ð½Ð¸Ñ Ð¼Ñƒ код" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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" -#: cmdline/apt-mark.cc:63 +#: cmdline/apt-mark.cc:74 #, c-format msgid "%s was already set to manually installed.\n" msgstr "Пакетът „%s“ вече е отбелÑзан като ръчно инÑталиран.\n" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, c-format msgid "%s was already set to automatically installed.\n" msgstr "Пакетът „%s“ вече е отбелÑзан като автоматично инÑталиран.\n" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, c-format msgid "%s was already set on hold.\n" msgstr "Пакетът „%s“ вече е задуржан.\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, c-format msgid "%s was already not hold.\n" msgstr "Пакетът „%s“ вече е задържан.\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Изчака Ñе завършването на %s, но той не беше пуÑнат" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format msgid "%s set on hold.\n" msgstr "Пакетът „%s“ е задържан.\n" -#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format msgid "Canceled hold on %s.\n" msgstr "ОтмÑна на задържането на пакета „%s“.\n" -#: cmdline/apt-mark.cc:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "ÐеуÑпех при изпълнÑване на dpkg. Имате ли админиÑтративни права?" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 #, fuzzy msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" @@ -725,7 +748,7 @@ msgstr "" " -o=? Указване на произволна наÑтройка, напр. -o dir::cache=/tmp\n" "За повече Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¿Ñ€ÐµÐ³Ð»ÐµÐ´Ð°Ð¹Ñ‚Ðµ ръководÑтвата apt-mark(8) и apt.conf(5)." -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -773,52 +796,52 @@ msgstr "ÐеуÑпех при демонтирането на CD-ROM в %s, мо msgid "Disk not found." msgstr "ДиÑкът не е намерен." -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "Файлът не е намерен" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 msgid "Failed to stat" msgstr "ÐеуÑпех при получаването на атрибути" -#: methods/copy.cc:82 methods/gzip.cc:113 methods/rred.cc:606 +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 msgid "Failed to set modification time" msgstr "ÐеуÑпех при задаването на време на промÑна" -#: methods/file.cc:47 +#: 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:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "Влизане" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "ÐеуÑпех при уÑтановÑването на името на Ð¾Ñ‚Ð´Ð°Ð»ÐµÑ‡ÐµÐ½Ð¸Ñ Ñървър" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "ÐеуÑпех при уÑтановÑването на локалното име" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format msgid "The server refused the connection and said: %s" msgstr "Сървърът отказа Ñвързване и Ñъобщи: %s" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "USER Ñе провали, Ñървърът Ñъобщи: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS Ñе провали, Ñървърът Ñъобщи: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -826,123 +849,125 @@ msgstr "" "Беше указан Ñървър-поÑредник, но нÑма Ñкрипт за влизане, Acquire::ftp::" "ProxyLogin е празен." -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Командата „%s“ на Ñкрипта за влизане Ñе провали, Ñървърът Ñъобщи: %s" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE Ñе провали, Ñървърът Ñъобщи: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 msgid "Connection timeout" msgstr "ДопуÑтимото време за Ñвързването изтече" -#: methods/ftp.cc:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "Сървърът разпадна връзката" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "Грешка при четене" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "Отговорът препълни буфера." -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "Развален протокол" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "Грешка при запиÑ" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 msgid "Could not create a socket" msgstr "ÐеуÑпех при Ñъздаването на гнездо" -#: methods/ftp.cc:707 +#: methods/ftp.cc:712 msgid "Could not connect data socket, connection timed out" msgstr "" "ÐеуÑпех при Ñвързването на гнездо за данни, допуÑтимото време за Ñвързване " "изтече" -#: methods/ftp.cc:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "ÐеуÑпех" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "ÐеуÑпех при Ñвързването на паÑивно гнездо." -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo не уÑÐ¿Ñ Ð´Ð° Ñе добере до Ñлушащо гнездо" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "ÐеуÑпех при Ñвързването на гнездо" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "ÐеуÑпех при Ñлушането на гнездото" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "ÐеуÑпех при определÑнето на името на гнездото" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "ÐеуÑпех при изпращането на командата PORT" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "ÐеизвеÑтно ÑемейÑтво адреÑи %u (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT Ñе провали, Ñървърът Ñъобщи: %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "Времето за уÑтановÑване на връзка Ñ Ð³Ð½ÐµÐ·Ð´Ð¾ за данни изтече" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "Ðевъзможно е да Ñе приеме Ñвързването" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "Проблем при хеширане на файла" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "ÐеуÑпех при изтеглÑнето на файла, Ñървърът Ñъобщи „%s“" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "Времето за връзка Ñ Ð³Ð½ÐµÐ·Ð´Ð¾ за данни изтече" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "ÐеуÑпех при прехвърлÑнето на данни, Ñървърът Ñъобщи: „%s“" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "Запитване" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "ÐеуÑпех при извикването на " @@ -978,7 +1003,7 @@ msgstr "ÐеуÑпех при Ñвързване Ñ %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "Свързване Ñ %s" @@ -1008,40 +1033,40 @@ msgstr "Ðещо лошо Ñе Ñлучи при намирането на IP а msgid "Unable to connect to %s:%s:" msgstr "ÐеуÑпех при Ñвързване Ñ %s:%s:" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Вътрешна грешка: Валиден подпиÑ, но не може да Ñе провери отпечатъка на " "ключа?!" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "Ðамерен е поне един невалиден подпиÑ." -#: methods/gpgv.cc:172 +#: 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:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "ÐеизвеÑтна грешка при изпълнението на gpgv" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Следните подпиÑи Ñа невалидни:\n" -#: methods/gpgv.cc:229 +#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@ -1049,116 +1074,116 @@ msgstr "" "Следните подпиÑи не можаха да бъдат проверени, защото Ð¿ÑƒÐ±Ð»Ð¸Ñ‡Ð½Ð¸Ñ ÐºÐ»ÑŽÑ‡ не е " "наличен:\n" -#: methods/gzip.cc:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "Празни файлове не могат да бъдат валидни архиви" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "Грешка при запиÑа на файла" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "Грешка при четене от Ñървъра. ОтдалечениÑÑ‚ Ñървър прекъÑна връзката" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "Грешка при четене от Ñървъра" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "Грешка при запиÑа на файл" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "ÐеуÑпех на избора" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "ДопуÑтимото време за Ñвързване изтече" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "Грешка при запиÑа на изходен файл" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "Чакане на заглавни чаÑти" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "Ðевалиден ред на заглавна чаÑÑ‚" -#: methods/server.cc:139 methods/server.cc:146 +#: methods/server.cc:134 methods/server.cc:141 msgid "The HTTP server sent an invalid reply header" msgstr "HTTP Ñървърът изпрати невалидна заглавна чаÑÑ‚ като отговор" -#: methods/server.cc:176 +#: methods/server.cc:171 msgid "The HTTP server sent an invalid Content-Length header" msgstr "HTTP Ñървърът изпрати невалидна заглавна чаÑÑ‚ „Content-Length“" -#: methods/server.cc:199 +#: methods/server.cc:194 msgid "The HTTP server sent an invalid Content-Range header" msgstr "HTTP Ñървърът изпрати невалидна заглавна чаÑÑ‚ „Content-Range“" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "HTTP Ñървърът нÑма поддръжка за прехвърлÑне на фрагменти на файлове" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "ÐеизвеÑтен формат на дата" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "Ðевалидни данни на заглавната чаÑÑ‚" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "ÐеуÑпех при Ñвързването" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "Вътрешна грешка" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Вътрешна грешка, „InstallPackages“ е предизвикано при Ñчупени пакети!" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "ТрÑбва да бъдат премахнати пакети, но премахването е изключено." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "Вътрешна грешка, „Ordering“ не завърши" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" -"Странно.. Размерите не Ñъвпадат, изпратете е-поща на apt@packages.debian.org" +"Странно... Размерите не Ñъвпадат, изпратете е-поща на apt@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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Ðеобходимо е да Ñе изтеглÑÑ‚ %sB/%sB архиви.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:171 +#: apt-private/private-install.cc:159 #, 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:178 +#: apt-private/private-install.cc:166 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" @@ -1167,31 +1192,31 @@ 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:183 +#: apt-private/private-install.cc:171 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "След тази Ð¾Ð¿ÐµÑ€Ð°Ñ†Ð¸Ñ Ñ‰Ðµ бъде оÑвободено %sB диÑково проÑтранÑтво.\n" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "ÐÑмате доÑтатъчно Ñвободно проÑтранÑтво в %s." -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "Има проблеми и „-y“ е използвано без „--force-yes“" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Указано е „Trivial Only“, но това не е тривиална операциÑ." #. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be #. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Да, прави каквото казвам!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1202,19 +1227,19 @@ msgstr "" "За да продължите, въведете фразата „%s“\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "ПрекъÑване." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "ИÑкате ли да продължите?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "ÐÑкои файлове не можаха да бъдат изтеглени" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1222,19 +1247,19 @@ msgstr "" "ÐеуÑпех при изтеглÑнето на нÑкои архиви, може да изпълните „apt-get update“ " "или да опитате Ñ â€ž--fix-missing“?" -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "„--fix-missing“ и превключване на ноÑители не Ñе поддържа вÑе още" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "ÐеуÑпех при коригирането на липÑващите пакети." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "ПрекъÑване на инÑталирането." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1248,15 +1273,15 @@ msgstr[1] "" "Следните пакети Ñа отÑтранени от ÑиÑтемата поради препокриване на вÑичките " "им файлове от други пакети:" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Това Ñе прави автоматично от dpkg." -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Ðе би трÑбвало да Ñе изтрива. AutoRemover нÑма да бъде Ñтартиран" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1274,16 +1299,16 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 msgid "The following information may help to resolve the situation:" msgstr "" "Следната Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¼Ð¾Ð¶Ðµ да помогне за намиране на изход от ÑитуациÑта:" -#: apt-private/private-install.cc:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "Вътрешна грешка, AutoRemover Ñчупи нещо в ÑиÑтемата" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1293,7 +1318,7 @@ msgstr[0] "СледниÑÑ‚ пакет е бил инÑталиран автом msgstr[1] "" "Следните пакети Ñа били инÑталирани автоматично и вече не Ñа необходими:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1302,17 +1327,17 @@ msgstr[0] "%lu пакет е бил инÑталиран автоматично msgstr[1] "" "%lu пакета Ñа били инÑталирани автоматично и вече не Ñа необходими:\n" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Използвайте „apt-get autoremove“ за да го премахнете." msgstr[1] "Използвайте „apt-get autoremove“ за да ги премахнете." -#: apt-private/private-install.cc:624 +#: 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:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1320,7 +1345,7 @@ msgstr "" "Ðеудовлетворени завиÑимоÑти. Опитайте „apt-get -f install“ без пакети (или " "укажете разрешение)." -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1332,145 +1357,145 @@ msgstr "" "диÑтрибуциÑ, че нÑкои необходими пакети още не Ñа Ñъздадени или пък\n" "Ñа били премеÑтени от Incoming." -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "Счупени пакети" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "Следните допълнителни пакети ще бъдат инÑталирани:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "Предложени пакети:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "Препоръчвани пакети:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ПРЕДУПРЕЖДЕÐИЕ: Следните пакети не могат да бъдат удоÑтоверени!" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "Предупреждението за удоÑтоверÑването е пренебрегнато.\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "ÐÑкои пакети не можаха да бъдат удоÑтоверени" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "ИнÑталиране на тези пакети без проверка?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "ÐеуÑпех при изтеглÑнето на %s %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [ИнÑталиран]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [ИнÑталиран]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [ИнÑталиран]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [ИнÑталиран]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "Следните пакети имат неудовлетворени завиÑимоÑти:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "но е инÑталиран %s" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "но ще бъде инÑталиран %s" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "но той не може да бъде инÑталиран" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "но той е виртуален пакет" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "но той не е инÑталиран" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "но той нÑма да бъде инÑталиран" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " или" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "Следните ÐОВИ пакети ще бъдат инÑталирани:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "Следните пакети ще бъдат ПРЕМÐÐ¥ÐÐТИ:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "Следните пакети нÑма да бъдат променени:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "Следните пакети ще бъдат актуализирани:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "Следните пакети ще бъдат ВЪРÐÐТИ КЪМ ПО-СТÐРРВЕРСИЯ:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "Следните задържани пакети ще бъдат променени:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (поради %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1478,27 +1503,27 @@ msgstr "" "ПРЕДУПРЕЖДЕÐИЕ: Следните необходими пакети ще бъдат премахнати.\n" "Това ÐЕ би трÑбвало да Ñтава оÑвен ако знаете точно какво правите!" -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu актуализирани, %lu нови инÑталирани, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu преинÑталирани, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu върнати към по-Ñтара верÑиÑ, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu за премахване и %lu без промÑна.\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu не Ñа напълно инÑталирани или премахнати.\n" @@ -1507,7 +1532,7 @@ msgstr "%lu не Ñа напълно инÑталирани или премахР#. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "[Y/n]" @@ -1515,93 +1540,93 @@ msgstr "[Y/n]" #. 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:702 +#: apt-private/private-output.cc:708 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:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "Y" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "N" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "Грешка при компилирането на регулÑÑ€Ð½Ð¸Ñ Ð¸Ð·Ñ€Ð°Ð· - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "Коригиране на завиÑимоÑтите..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " пропадна." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "ÐеуÑпех при коригирането на завиÑимоÑтите" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "ÐеуÑпех при минимизирането на набора актуализации" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " Готово" -#: apt-private/private-cachefile.cc:102 +#: 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:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "Ðеудовлетворени завиÑимоÑти. Опитайте Ñ â€ž-f“." -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "Командата „update“ не възприема аргументи" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "ИзчиÑлÑване на актуализациÑта..." -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "Вътрешна грешка, „AllUpgrade“ Ñчупи нещо в ÑиÑтемата" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "Готово" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1613,43 +1638,43 @@ msgstr "" " Заключването е деактивирано, така че не разчитайте\n" " на повтарÑемоÑÑ‚ в реална ÑитуациÑ." -#: apt-private/private-sources.cc:45 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format msgid "Failed to parse %s. Edit again? " msgstr "ÐеуÑпех при преименуването на %s на %s" -#: apt-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "Поп " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "Изт:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "Игн " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Грш " -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "Изтеглени %sB за %s (%sB/Ñек)\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [Ð’ Ð¿Ñ€Ð¾Ñ†ÐµÑ Ð½Ð° работа]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1662,19 +1687,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "ÐеуÑпех при четенето на %s" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "ÐеуÑпех при преминаването в %s" @@ -1703,11 +1728,11 @@ msgstr "Грешка при четене файла „%s“ от огледал msgid "[Mirror: %s]" msgstr "[Огледален Ñървър: %s]" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 msgid "Failed to create IPC pipe to subprocess" msgstr "ÐеуÑпех при Ñъздаването на IPC pipe към подпроцеÑа" -#: methods/rsh.cc:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "Връзката прекъÑна преждевременно" @@ -1773,40 +1798,45 @@ msgstr "" " -o=? ÐаÑтройване на произволна конфигурационна опциÑ, Ñ‚.е. -o dir::cache=/" "tmp\n" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "ÐеуÑпех при получаването на атрибути за %s" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "ÐеуÑпех при запиÑа на %s" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Ðе може да Ñе извлече верÑиÑта на debconf. Debconf инÑталиран ли е?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "СпиÑъкът Ñ Ñ€Ð°Ð·ÑˆÐ¸Ñ€ÐµÐ½Ð¸Ñ Ð½Ð° пакети и твърде дълъг" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "Грешка при обработката на Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ %s" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "СпиÑъкът Ñ Ñ€Ð°Ð·ÑˆÐ¸Ñ€ÐµÐ½Ð¸Ñ Ð½Ð° източници е твърде дълъг" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "Грешка при запазването на заглавната чаÑÑ‚ във файла ÑÑŠÑ Ñъдържание" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "Грешка при обработката на Ñъдържание %s" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1891,26 +1921,26 @@ msgstr "" " -c=? Четене на този конфигурационен файл.\n" " -o=? ÐаÑтройване на произволна конфигурационна опциÑ" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "ÐÑма ÑÑŠÐ²Ð¿Ð°Ð´ÐµÐ½Ð¸Ñ Ð½Ð° избора" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "ЛипÑват нÑкои файлове от групата Ñ Ñ„Ð°Ð¹Ð»Ð¾Ð²Ð¸ пакети „%s“" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "БД е повредена, файлът е преименуван на %s.old" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "БД е Ñтара, опит за актуализиране на %s" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -1918,192 +1948,192 @@ msgstr "" "Ðевалиден формат на БД. Ðко Ñте обновили от по-Ñтара верÑÐ¸Ñ Ð½Ð° apt, " "премахнете базата от данни и Ñ Ñъздайте наново." -#: ftparchive/cachedb.cc:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "ÐеуÑпех при отварÑнето на файл %s от БД: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "Грешка при получаването на атрибути за %s" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "Ð’ архива нÑма поле „control“" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "ÐеуÑпех при получаването на курÑор" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: ÐеуÑпех при четенето на Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ %s\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: ÐеуÑпех при четенето на %s\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "E: Грешките Ñе отнаÑÑÑ‚ за файла " -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "ÐеуÑпех при превръщането на %s" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "ÐеуÑпех при обхода на дървото" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "ÐеуÑпех при отварÑнето на %s" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr "DeLink %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "ÐеуÑпех при прочитането на връзка %s" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "ÐеуÑпех при премахването на връзка %s" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** ÐеуÑпех при Ñъздаването на връзка %s към %s" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr "Превишен лимит на DeLink от %sB.\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "Ðрхивът нÑма поле „package“" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %s нÑма Ð·Ð°Ð¿Ð¸Ñ â€žoverride“\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " Ð¿Ð¾Ð´Ð´ÑŠÑ€Ð¶Ð°Ñ‰Ð¸Ñ Ð¿Ð°ÐºÐµÑ‚Ð° %s е %s, а не %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr " %s нÑма Ð·Ð°Ð¿Ð¸Ñ â€žsource override“\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s нÑма Ñъщо и Ð·Ð°Ð¿Ð¸Ñ â€žbinary override“\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - ÐеуÑпех при заделÑнето на памет" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "ÐеуÑпех при отварÑнето на %s" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "Ðеправилно форматиран override %s, ред %llu #1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "ÐеуÑпех при четенето на override файл %s" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, c-format msgid "Malformed override %s line %llu #1" msgstr "Ðеправилно форматиран override %s, ред %llu #1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, c-format msgid "Malformed override %s line %llu #2" msgstr "Ðеправилно форматиран override %s, ред %llu #2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, c-format msgid "Malformed override %s line %llu #3" msgstr "Ðеправилно форматиран override %s, ред %llu #3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "Ðепознат алгоритъм за компреÑÐ¸Ñ â€ž%s“" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "КомпреÑираниÑÑ‚ изход %s изиÑква наÑтройка за компреÑирането" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "ÐеуÑпех при Ñъздаването на FILE*" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "ÐеуÑпех при пуÑкането на подпроцеÑ" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "ПроцеÑ-потомък за компреÑиране" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "Вътрешна грешка, неуÑпех при Ñъздаването на %s" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "Ð’/И към подпроцеÑа/файла пропадна" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "ÐеуÑпех при четене докато Ñе изчиÑлÑва MD5" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "ÐеуÑпех при премахването на връзка на %s" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "ÐеуÑпех при преименуването на %s на %s" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -2156,157 +2186,157 @@ msgstr "" " -o=? ÐаÑтройване на произволна конфигурационна опциÑ, Ñ‚.е. -o dir::cache=/" "tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "ÐеуÑпех при Ñъздаването на програмни канали" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "ÐеуÑпех при изпълнението на gzip" -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "Развален архив" -#: apt-inst/contrib/extracttar.cc:201 +#: apt-inst/contrib/extracttar.cc:203 msgid "Tar checksum failed, archive corrupted" msgstr "ÐевÑрна контролна Ñума на tar, развален архив" -#: apt-inst/contrib/extracttar.cc:306 +#: apt-inst/contrib/extracttar.cc:308 #, c-format msgid "Unknown TAR header type %u, member %s" msgstr "Ðепозната заглавна чаÑÑ‚ на TAR тип %u, елемент %s" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "Ðевалиден Ð¿Ð¾Ð´Ð¿Ð¸Ñ Ð½Ð° архива" -#: apt-inst/contrib/arfile.cc:82 +#: apt-inst/contrib/arfile.cc:84 msgid "Error reading archive member header" msgstr "Грешка при четене на заглавната чаÑÑ‚ на елемента на архива" -#: apt-inst/contrib/arfile.cc:94 +#: apt-inst/contrib/arfile.cc:96 #, c-format msgid "Invalid archive member header %s" msgstr "Ðевалидна заглавна чаÑÑ‚ %s на елемента на архива" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "Ðевалидна заглавна чаÑÑ‚ на елемента на архива" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "Ðрхивът е твърде кратък" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "ÐеуÑпех при четенето на заглавните чаÑти на архива" -#: apt-inst/filelist.cc:382 +#: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" msgstr "Извикан е DropNode за вÑе още използван възел" -#: apt-inst/filelist.cc:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "Грешка при намирането на хеш-елемента!" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "ÐеуÑпех при уÑтановÑване на отклонението" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "Вътрешна грешка в AddDiversion" -#: apt-inst/filelist.cc:479 +#: 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:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "Двойно добавÑне на отклонение %s -> %s" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "Дублиран конфигурационен файл %s/%s" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: 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:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "ÐеуÑпех при затварÑнето на файл %s" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: 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:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "Разпакетиране на %s повече от веднъж" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "ДиректориÑта %s е отклонена" -#: apt-inst/extract.cc:145 +#: 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:155 apt-inst/extract.cc:299 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 msgid "The diversion path is too long" msgstr "ПътÑÑ‚ за отклонение е твърде дълъг" -#: apt-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "ДиректориÑта %s Ñе Ð·Ð°Ð¼ÐµÐ½Ñ Ñ Ð½Ðµ-директориÑ" -#: apt-inst/extract.cc:282 +#: apt-inst/extract.cc:289 msgid "Failed to locate node in its hash bucket" msgstr "ÐеуÑпех при намирането на възел в Ð½ÐµÐ³Ð¾Ð²Ð¸Ñ Ñ…ÐµÑˆ" -#: apt-inst/extract.cc:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "ПътÑÑ‚ е твърде дълъг" -#: apt-inst/extract.cc:414 +#: apt-inst/extract.cc:421 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Файловете Ñе заменÑÑ‚ ÑÑŠÑ Ñъдържанието на пакета %s без верÑиÑ" -#: apt-inst/extract.cc:431 +#: 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:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "ÐеуÑпех при получаването на атрибути за %s" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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:124 +#: apt-inst/deb/debfile.cc:132 #, c-format msgid "Internal error, could not locate member %s" msgstr "Вътрешна грешка, неуÑпех при намирането на ÑÑŠÑтавна чаÑÑ‚ %s" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "Контролен файл, невъзможен за анализ" @@ -2367,495 +2397,500 @@ msgstr "" "забранено от потребителÑ." #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "%liд %liч %liм %liÑ" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "%liч %liм %liÑ" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "%liм %liÑ" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "%liÑ" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "Изборът %s не е намерен" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "ÐеизвеÑтен тип на абревиатура: „%c“" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "ОтварÑне на конфигурационен файл %s" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Синтактична грешка %s:%u: Ð’ началото на блока нÑма име." -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Синтактична грешка %s:%u: Лошо форматиран таг" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Синтактична грешка %s:%u: Излишни Ñимволи Ñлед ÑтойноÑтта" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "Синтактична грешка %s:%u: Директиви могат да Ñе задават Ñамо в най-горното " "ниво" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Синтактична грешка %s:%u: Твърде много вложени „include“" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Синтактична грешка %s:%u: Извикан „include“ оттук" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Синтактична грешка %s:%u: Ðеподдържана директива „%s“" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-pkg/contrib/configuration.cc:900 #, c-format msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" "Синтактична грешка %s:%u: директивата clear изиÑква аргумент дърво от опции" -#: apt-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Синтактична грешка %s:%u: Излишни Ñимволи в ÐºÑ€Ð°Ñ Ð½Ð° файла" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... Грешка!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... Готово" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s... Готово" -#: apt-pkg/contrib/cmndline.cc:116 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format msgid "Command line option '%c' [from %s] is not known." msgstr "ÐеизвеÑтна Ð¾Ð¿Ñ†Ð¸Ñ Ð·Ð° команден ред „%c“ [от %s]." -#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format msgid "Command line option %s is not boolean" msgstr "ОпциÑта за команден ред %s не е булева" -#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "ÐžÐ¿Ñ†Ð¸Ñ %s изиÑква аргумент." -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "ÐžÐ¿Ñ†Ð¸Ñ %s: Значението трÑбва да има =<val>." -#: apt-pkg/contrib/cmndline.cc:273 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format msgid "Option %s requires an integer argument, not '%s'" msgstr "ÐžÐ¿Ñ†Ð¸Ñ %s изиÑква аргумент цÑло чиÑло, не „%s“" -#: apt-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "ÐžÐ¿Ñ†Ð¸Ñ â€ž%s“ е твърде дълга" -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "СмиÑълът %s не е ÑÑен, опитайте true или false." -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "Ðевалидна Ð¾Ð¿ÐµÑ€Ð°Ñ†Ð¸Ñ %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format msgid "Unable to stat the mount point %s" msgstr "ÐеуÑпех при намирането на атрибутите на точка за монтиране %s" -#: apt-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "ÐеуÑпех при намирането на атрибутите на cdrom" -#: apt-pkg/contrib/fileutl.cc:95 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Проблем при затварÑне на компреÑираниÑÑ‚ файл %s (gzip)" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "" "Ðе Ñе използва заключване за файл за заключване %s, който е Ñамо за четене" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "ÐеуÑпех при отварÑнето на файл за заключване %s" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "" "Ðе Ñе използва заключване за файл за заключване %s, който е монтиран по NFS" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "ÐеуÑпех при доÑтъпа до заключване %s" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "Ðе може да Ñе Ñъздаде ÑпиÑък от файлове, защото „%s“ не е директориÑ" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "ПропуÑкане на „%s“ в директориÑта „%s“, понеже не е обикновен файл" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "ПропуÑкане на файла „%s“ в директориÑта „%s“, понеже нÑма разширение" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" "ПропуÑкане на файла „%s“ в директориÑта „%s“, понеже разширението му е грешно" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Ðарушение на защитата на паметта (segmentation fault) в подпроцеÑа %s." -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, c-format msgid "Sub-process %s received signal %u." msgstr "Под-процеÑÑŠÑ‚ %s получи Ñигнал %u." -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 apt-pkg/contrib/gpgv.cc:239 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "ПодпроцеÑÑŠÑ‚ %s върна код за грешка (%u)" -#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "ПодпроцеÑÑŠÑ‚ %s завърши неочаквано" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Проблем при затварÑне на компреÑираниÑÑ‚ файл %s (gzip)" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "ÐеуÑпех при отварÑнето на файла %s" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, c-format msgid "Could not open file descriptor %d" msgstr "ÐеуÑпех при отварÑнето на файлов манипулатор %d" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "ÐеуÑпех при Ñъздаването на Ð¿Ð¾Ð´Ð¿Ñ€Ð¾Ñ†ÐµÑ IPC" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "ÐеуÑпех при изпълнението на компреÑиращата програма " -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, c-format msgid "read, still have %llu to read but none left" msgstr "" "грешка при четене, вÑе още има %llu за четене, но нÑма нито един оÑтанал" -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, c-format msgid "write, still have %llu to write but couldn't" msgstr "грешка при запиÑ, вÑе още име %llu за запиÑ, но не уÑпÑ" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, c-format msgid "Problem closing the file %s" msgstr "Проблем при затварÑне на файла %s" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, c-format msgid "Problem renaming the file %s to %s" msgstr "Проблем при преименуване на файла %s на %s" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, c-format msgid "Problem unlinking the file %s" msgstr "Проблем при изтриване на файла %s" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "Проблем при Ñинхронизиране на файла" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "преименуването Ñе провали, %s (%s -> %s)." + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, c-format msgid "No keyring installed in %s." msgstr "Ð’ %s нÑма инÑталиран ключодържател." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "Празен кеш на пакети" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "Файлът за кеш на пакети е повреден" -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "Файлът за кеш на пакети е неÑъвмеÑтима верÑиÑ" -#: apt-pkg/pkgcache.cc:162 +#: apt-pkg/pkgcache.cc:169 msgid "The package cache file is corrupted, it is too small" msgstr "Файлът за кеш на пакети е повреден, твърде малък е" -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "Тази верÑÐ¸Ñ Ð½Ð° APT не поддържа ÑиÑтема за верÑии „%s“" -#: apt-pkg/pkgcache.cc:172 +#: apt-pkg/pkgcache.cc:179 msgid "The package cache was built for a different architecture" msgstr "Кешът на пакети е бил направен за различна архитектура" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "ЗавиÑи от" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "Предварително завиÑи от" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "Предлага Ñе" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "Препоръчва Ñе" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "Ð’ конфликт Ñ" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "ЗаменÑ" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "Изважда от употреба" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "Чупи" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "ПодобрÑва" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "важен" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "изиÑкван" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "Ñтандартен" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "незадължителен" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "допълнителен" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "Изграждане на дървото ÑÑŠÑ Ð·Ð°Ð²Ð¸ÑимоÑти" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "ВерÑии кандидати" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "Генериране на завиÑимоÑти" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 msgid "Reading state information" msgstr "Четене на информациÑта за ÑÑŠÑтоÑнието" -#: apt-pkg/depcache.cc:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "ÐеуÑпех при отварÑнето на StateFile %s" -#: apt-pkg/depcache.cc:250 +#: apt-pkg/depcache.cc:256 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "ÐеуÑпех при Ð·Ð°Ð¿Ð¸Ñ Ð½Ð° временен StateFile %s" -#: apt-pkg/tagfile.cc:138 +#: apt-pkg/tagfile.cc:140 #, c-format msgid "Unable to parse package file %s (1)" msgstr "ÐеуÑпех при анализирането на пакетен файл %s (1)" -#: apt-pkg/tagfile.cc:235 +#: apt-pkg/tagfile.cc:237 #, c-format msgid "Unable to parse package file %s (2)" msgstr "ÐеуÑпех при анализирането на пакетен файл %s (2)" -#: apt-pkg/sourcelist.cc:118 +#: apt-pkg/sourcelist.cc:127 #, fuzzy, c-format msgid "Malformed stanza %u in source list %s (URI parse)" msgstr "Лошо форматиран ред %lu в ÑпиÑъка Ñ Ð¸Ð·Ñ‚Ð¾Ñ‡Ð½Ð¸Ñ†Ð¸ %s (анализ на адреÑ-URI)" -#: apt-pkg/sourcelist.cc:161 +#: apt-pkg/sourcelist.cc:170 #, c-format msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" "Лошо форматиран ред %lu в ÑпиÑъка Ñ Ð¸Ð·Ñ‚Ð¾Ñ‡Ð½Ð¸Ñ†Ð¸ %s (неразбираема [опциÑ])" -#: apt-pkg/sourcelist.cc:164 +#: apt-pkg/sourcelist.cc:173 #, c-format msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "" "Лошо форматиран ред %lu в ÑпиÑъка Ñ Ð¸Ð·Ñ‚Ð¾Ñ‡Ð½Ð¸Ñ†Ð¸ %s (твърде кратка [опциÑ])" -#: apt-pkg/sourcelist.cc:175 +#: 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-pkg/sourcelist.cc:181 +#: apt-pkg/sourcelist.cc:190 #, c-format msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "Лошо форматиран ред %lu в ÑпиÑъка Ñ Ð¸Ð·Ñ‚Ð¾Ñ‡Ð½Ð¸Ñ†Ð¸ %s (липÑва ключ в [%s])" -#: apt-pkg/sourcelist.cc:184 +#: 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-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "Лошо форматиран ред %lu в ÑпиÑъка Ñ Ð¸Ð·Ñ‚Ð¾Ñ‡Ð½Ð¸Ñ†Ð¸ %s (адреÑ-URI)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "Лошо форматиран ред %lu в ÑпиÑъка Ñ Ð¸Ð·Ñ‚Ð¾Ñ‡Ð½Ð¸Ñ†Ð¸ %s (диÑтрибуциÑ)" -#: apt-pkg/sourcelist.cc:202 +#: apt-pkg/sourcelist.cc:211 #, c-format msgid "Malformed line %lu in source list %s (URI parse)" msgstr "Лошо форматиран ред %lu в ÑпиÑъка Ñ Ð¸Ð·Ñ‚Ð¾Ñ‡Ð½Ð¸Ñ†Ð¸ %s (анализ на адреÑ-URI)" -#: apt-pkg/sourcelist.cc:208 +#: apt-pkg/sourcelist.cc:217 #, c-format msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "" "Лошо форматиран ред %lu в ÑпиÑъка Ñ Ð¸Ð·Ñ‚Ð¾Ñ‡Ð½Ð¸Ñ†Ð¸ %s (неограничена диÑтрибуциÑ)" -#: apt-pkg/sourcelist.cc:215 +#: apt-pkg/sourcelist.cc:224 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" msgstr "" "Лошо форматиран ред %lu в ÑпиÑъка Ñ Ð¸Ð·Ñ‚Ð¾Ñ‡Ð½Ð¸Ñ†Ð¸ %s (анализ на диÑтрибуциÑ)" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "ОтварÑне на %s" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "Ред %u в ÑпиÑъка Ñ Ð¸Ð·Ñ‚Ð¾Ñ‡Ð½Ð¸Ñ†Ð¸ %s е твърде дълъг." -#: apt-pkg/sourcelist.cc:362 +#: apt-pkg/sourcelist.cc:371 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Лошо форматиран ред %u в ÑпиÑъка Ñ Ð¸Ð·Ñ‚Ð¾Ñ‡Ð½Ð¸Ñ†Ð¸ %s (тип)" -#: apt-pkg/sourcelist.cc:366 +#: apt-pkg/sourcelist.cc:375 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Типът „%s“ на ред %u в ÑпиÑъка Ñ Ð¸Ð·Ñ‚Ð¾Ñ‡Ð½Ð¸Ñ†Ð¸ %s е неизвеÑтен." -#: apt-pkg/sourcelist.cc:407 +#: 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/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2864,12 +2899,12 @@ msgstr "" "ÐеуÑпех при незабавната наÑтройка на „%s“. За повече Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð²Ð¸Ð¶Ñ‚Ðµ " "информациÑта за APT::Immediate-Configure в „man 5 apt.conf“. (%d)" -#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, c-format msgid "Could not configure '%s'. " msgstr "ÐеуÑпех при конфигуриране на „%s“. " -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2881,12 +2916,12 @@ msgstr "" "пакет %s. Това чеÑто е лошо, но ако наиÑтина иÑкате да го направите, " "активирайте опциÑта APT::Force-LoopBreak." -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "Ðе Ñе поддържа индекÑен файл от типа „%s“" -#: apt-pkg/algorithms.cc:266 +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." @@ -2894,7 +2929,7 @@ msgstr "" "Пакетът %s трÑбва да бъде преинÑталиран, но не може да Ñе намери архив за " "него." -#: apt-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2902,92 +2937,92 @@ msgstr "" "Грешка, pkgProblemResolver::Resolve генерира повреди, това може да е " "причинено от задържани пакети." -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "" "ÐеуÑпех при коригирането на проблемите, имате задържани Ñчупени пакети." -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, c-format msgid "List directory %spartial is missing." msgstr "ДиректориÑта ÑÑŠÑ ÑпиÑъци %spartial липÑва." -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, c-format msgid "Archives directory %spartial is missing." msgstr "ДиректориÑта за архиви %spartial липÑва." -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, c-format msgid "Unable to lock directory %s" msgstr "ÐеуÑпех при заключване на директориÑта %s" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "ИзтеглÑне на файл %li от %li (оÑтават %s)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "ИзтеглÑне на файл %li от %li" -#: apt-pkg/acquire-worker.cc:113 +#: apt-pkg/acquire-worker.cc:116 #, c-format msgid "The method driver %s could not be found." msgstr "ÐеуÑпех при намирането на драйвер за метод %s." -#: apt-pkg/acquire-worker.cc:115 +#: apt-pkg/acquire-worker.cc:118 #, fuzzy, c-format msgid "Is the package %s installed?" msgstr "Проверете дали имате инÑталиран пакета „dpkg-dev“.\n" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "Методът %s не Ñтартира правилно" -#: apt-pkg/acquire-worker.cc:452 +#: 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“." -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Пакетната ÑиÑтема „%s“ не е поддържана" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "ÐеуÑпех при определÑнето на подходÑща пакетна ÑиÑтема" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "ÐеуÑпех при получаването на атрибути на %s." -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "ТрÑбва да добавите адреÑи-URI от тип „source“ в sources.list" -#: apt-pkg/cachefile.cc:87 +#: apt-pkg/cachefile.cc:94 msgid "The package lists or status file could not be parsed or opened." msgstr "" "СпиÑъците Ñ Ð¿Ð°ÐºÐµÑ‚Ð¸ или файлът за ÑÑŠÑтоÑние не можаха да бъдат анализирани " "или отворени." -#: apt-pkg/cachefile.cc:91 +#: 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:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "СпиÑъкът Ñ Ð¸Ð·Ñ‚Ð¾Ñ‡Ð½Ð¸Ñ†Ð¸ не можа да бъде прочетен." -#: apt-pkg/policy.cc:75 +#: apt-pkg/policy.cc:83 #, c-format msgid "" "The value '%s' is invalid for APT::Default-Release as such a release is not " @@ -2996,102 +3031,97 @@ msgstr "" "СтойноÑтта „%s“ на APT::Default-Release не е правилна, понеже в източниците " "нÑма такова издание" -#: apt-pkg/policy.cc:414 +#: 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:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "ÐеизвеÑтен тип за отбиване %s" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "ÐÑма указан приоритет (или е нула) на отбиването" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 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:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Възникна грешка при обработката на %s (%s%d)" -#: apt-pkg/pkgcachegen.cc:251 +#: apt-pkg/pkgcachegen.cc:257 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "Еха, надхвърлихте Ð±Ñ€Ð¾Ñ Ð¸Ð¼ÐµÐ½Ð° на пакети, на който е ÑпоÑобна тази верÑÐ¸Ñ Ð½Ð° " "APT." -#: apt-pkg/pkgcachegen.cc:254 +#: apt-pkg/pkgcachegen.cc:260 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "Еха, надхвърлихте Ð±Ñ€Ð¾Ñ Ð²ÐµÑ€Ñии, на който е ÑпоÑобна тази верÑÐ¸Ñ Ð½Ð° APT." -#: apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:263 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" "Еха, надхвърлихте Ð±Ñ€Ð¾Ñ Ð¾Ð¿Ð¸ÑаниÑ, на който е ÑпоÑобна тази верÑÐ¸Ñ Ð½Ð° APT." -#: apt-pkg/pkgcachegen.cc:260 +#: apt-pkg/pkgcachegen.cc:266 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" "Еха, надхвърлихте Ð±Ñ€Ð¾Ñ Ð·Ð°Ð²Ð¸ÑимоÑти, на който е ÑпоÑобна тази верÑÐ¸Ñ Ð½Ð° APT." -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:576 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Пакетът %s %s не беше открит при обработката на файла ÑÑŠÑ Ð·Ð°Ð²Ð¸ÑимоÑти" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "" "ÐеуÑпех при получаването на атрибути на ÑпиÑъка Ñ Ð¿Ð°ÐºÐµÑ‚Ð¸ Ñ Ð¸Ð·Ñ…Ð¾Ð´ÐµÐ½ код %s" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "Събиране на Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° „ОÑигурÑва“" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 msgid "IO Error saving source cache" msgstr "Входно/изходна грешка при запазването на кеша на пакети Ñ Ð¸Ð·Ñ…Ð¾Ð´ÐµÐ½ код" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "преименуването Ñе провали, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "ÐеÑъответÑтвие на контролната Ñума" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "ÐеÑъответÑтвие на размера" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "Ðевалидна Ð¾Ð¿ÐµÑ€Ð°Ñ†Ð¸Ñ %s" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, c-format msgid "" "Unable to find expected entry '%s' in Release file (Wrong sources.list entry " @@ -3100,16 +3130,16 @@ msgstr "" "Ðе може да Ñе открие елемент „%s“ във файла Release (объркан ред в sources." "list или повреден файл)" -#: apt-pkg/acquire-item.cc:1586 +#: apt-pkg/acquire-item.cc:1595 #, c-format msgid "Unable to find hash sum for '%s' in Release file" msgstr "Ðе е открита контролна Ñума за „%s“ във файла Release" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "ÐÑма налични публични ключове за Ñледните идентификатори на ключове:\n" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " @@ -3118,12 +3148,12 @@ msgstr "" "Файлът ÑÑŠÑ Ñлужебна Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° „%s“ е оÑтарÑл (валиден до %s). ÐÑма да Ñе " "прилагат обновÑÐ²Ð°Ð½Ð¸Ñ Ð¾Ñ‚ това хранилище." -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Конфликт в диÑтрибуциÑта: %s (очаквана: %s, намерена: %s)" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3133,12 +3163,12 @@ msgstr "" "използват Ñтарите индекÑни файлове. Грешка от GPG: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "Грешка от GPG: %s: %s" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3147,83 +3177,79 @@ msgstr "" "ÐеуÑпех при намирането на файл за пакет %s. Това може да означава, че трÑбва " "ръчно да оправите този пакет (поради пропуÑната архитектура)." -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "Ðе е открит източник, от който да Ñе изтегли верÑÐ¸Ñ â€ž%s“ на „%s“" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" "ИндекÑните файлове на пакета Ñа повредени. ÐÑма поле Filename: за пакет %s." -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, c-format msgid "Unable to parse Release file %s" msgstr "ÐеуÑпех при анализиране на файл Release %s" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, c-format msgid "No sections in Release file %s" msgstr "Във файла Release %s липÑват раздели" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "Във файла Release %s липÑва контролна Ñума" -#: apt-pkg/indexrecords.cc:125 +#: apt-pkg/indexrecords.cc:130 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Ðеправилна ÑтойноÑÑ‚ за „Valid-Until“ във файла Release %s" -#: apt-pkg/indexrecords.cc:144 +#: apt-pkg/indexrecords.cc:149 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Ðеправилна ÑтойноÑÑ‚ за „Date“ във файла Release %s" -#: apt-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "Блокът на Ð¿Ñ€Ð¾Ð¸Ð·Ð²Ð¾Ð´Ð¸Ñ‚ÐµÐ»Ñ %s не Ñъдържа отпечатък" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Използване на точка за монтиране на CD-ROM %s\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "Демонтиране на CD-ROM\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "Демонтиране на CD-ROM...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "Чакане за диÑк...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "Монтиране на CD-ROM...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " msgstr "Идентифициране..." -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "Запазен етикет: %s \n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "Демонтиране на CD-ROM...\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" msgstr "Сканиране на диÑка за индекÑни файлове...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3232,7 +3258,7 @@ msgstr "" "Ðамерени Ñа %zu индекÑа на пакети, %zu индекÑа на пакети Ñ Ð¸Ð·Ñ…Ð¾Ð´ÐµÐ½ код, %zu " "индекÑа Ñ Ð¿Ñ€ÐµÐ²Ð¾Ð´Ð¸ и %zu подпиÑа.\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" @@ -3240,16 +3266,16 @@ msgstr "" "Ðе Ñа намерени файлове Ñ Ð¿Ð°ÐºÐµÑ‚Ð¸. Мое би диÑкът не е Ñ Ð”ÐµÐ±Ð¸Ð°Ð½ или е за " "погрешна компютърна архитектура." -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "Ðамерен е етикет „%s“\n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "Това не е валидно име, опитайте отново.\n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3258,34 +3284,34 @@ msgstr "" "Ðаименование на този диÑк: \n" "„%s“\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "Копиране на ÑпиÑъците Ñ Ð¿Ð°ÐºÐµÑ‚Ð¸..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "Запазване на Ð½Ð¾Ð²Ð¸Ñ ÑпиÑък Ñ Ð¸Ð·Ñ‚Ð¾Ñ‡Ð½Ð¸Ñ†Ð¸\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "ЗапиÑите в ÑпиÑъка Ñ Ð¸Ð·Ñ‚Ð¾Ñ‡Ð½Ð¸Ñ†Ð¸ за този диÑк Ñа:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: 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:777 +#: 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:780 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "ЗапиÑани Ñа %i запиÑа Ñ %i неÑъответÑтващи файла\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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" @@ -3300,37 +3326,37 @@ msgstr "Ðе е намерен oторизационен Ð·Ð°Ð¿Ð¸Ñ Ð·Ð°: %s" msgid "Hash mismatch for: %s" msgstr "ÐеÑъответÑтвие на контролната Ñума за: %s" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Ðе е намерено издание „%s“ на „%s“" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Ðе е намерена верÑÐ¸Ñ â€ž%s“ на „%s“" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, c-format msgid "Couldn't find task '%s'" msgstr "ÐеуÑпех при намиране на задача „%s“" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, c-format msgid "Couldn't find any package by regex '%s'" msgstr "Ðе Ñа намерен пакети, отговарÑщ на регулÑÑ€Ð½Ð¸Ñ Ð¸Ð·Ñ€Ð°Ð· „%s“" -#: apt-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "Ðе Ñа намерен пакети, отговарÑщ на регулÑÑ€Ð½Ð¸Ñ Ð¸Ð·Ñ€Ð°Ð· „%s“" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, c-format msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "Ðе е възможно избиране на верÑÐ¸Ñ Ð·Ð° пакета „%s“ понеже е виртуален" -#: apt-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " @@ -3339,59 +3365,59 @@ msgstr "" "Ðе е възможно избиране на инÑталирана или кандидат верÑÐ¸Ñ Ð·Ð° пакета „%s“ " "понеже той нÑма нито едната" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, c-format msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" "Ðе е възможно избиране на на поÑледната верÑÐ¸Ñ Ð·Ð° пакета „%s“, защото е " "виртуален" -#: apt-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" "Ðе е възможно избиране на кандидат-верÑÐ¸Ñ Ð·Ð° пакета „%s“, защото нÑма " "подходÑщ кандидати" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "" "Ðе е възможно избиране на инÑталирана верÑÐ¸Ñ Ð½Ð° пакета „%s“, защото не е " "инÑталиран" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "Изпращане на Ñценарий към програмата за удовлетворÑване на завиÑимоÑти" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "Изпращане на заÑвка към програмата за удовлетворÑване на завиÑимоÑти" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "Подготовка за приемане на решение" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "" "Външната програма за удовлетворÑване на завиÑимоÑти Ñе провали без да изведе " "Ñъобщение за грешка" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "ИзпълнÑване на външна програма за удовлетворÑване на завиÑимоÑти" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "ИзпълнÑване на dpkg" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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." @@ -3399,120 +3425,120 @@ msgstr "" "ÐÑкои индекÑни файлове не можаха да бъдат изтеглени. Те Ñа пренебрегнати или " "Ñа използвани по-Ñтари." -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "ИнÑталиране на %s" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "Конфигуриране на %s" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "Премахване на %s" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format msgid "Completely removing %s" msgstr "Окончателно премахване на %s" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "ОтбелÑзване на изчезването на %s" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "Изпълнение на тригер Ñлед инÑталиране %s" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "ДиректориÑта „%s“ липÑва" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format msgid "Could not open file '%s'" msgstr "ÐеуÑпех при отварÑне на файла „%s“" -#: apt-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "ПодготвÑне на %s" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "Разпакетиране на %s" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "ПодготвÑне на %s за конфигуриране" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "%s е инÑталиран" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "ПодготвÑне за премахване на %s" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "%s е премахнат" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "Подготовка за пълно премахване на %s" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "%s е напълно премахнат" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "ÐеуÑпех при запиÑа на %s" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "ОперациÑта е прекъÑната" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 msgid "No apport report written because MaxReports is reached already" msgstr "" "Поради доÑтигане на макÑÐ¸Ð¼Ð°Ð»Ð½Ð¸Ñ Ð±Ñ€Ð¾Ð¹ доклади (MaxReports) не е запиÑан нов " "доклад за завиÑимоÑтите." #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "отлагане на наÑтройката поради неудовлетворени завиÑимоÑти" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3520,7 +3546,7 @@ msgstr "" "Доклад за завиÑимоÑтите не е запиÑан защото Ñъобщението за грешка е породено " "от друга грешка." -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" @@ -3528,7 +3554,7 @@ msgstr "" "Доклад за завиÑимоÑтите не е запиÑан защото грешката е причинена от " "недоÑтатъчно диÑково проÑтранÑтво" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3536,7 +3562,7 @@ msgstr "" "Доклад за завиÑимоÑтите не е запиÑан защото грешката е причинена от " "недоÑтатъчна оперативна памет" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 #, fuzzy msgid "" "No apport report written because the error message indicates an issue on the " @@ -3545,13 +3571,13 @@ msgstr "" "Доклад за завиÑимоÑтите не е запиÑан защото грешката е причинена от " "недоÑтатъчно диÑково проÑтранÑтво" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" "Доклад за завиÑимоÑтите не е запиÑан поради входно-изходна грешка Ñ dpkg" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " @@ -3560,7 +3586,7 @@ msgstr "" "ÐеуÑпех при заключване на админиÑтративната Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ (%s). Може би Ñе " "използва от друг процеÑ?" -#: apt-pkg/deb/debsystem.cc:87 +#: apt-pkg/deb/debsystem.cc:94 #, c-format msgid "Unable to lock the administration directory (%s), are you root?" msgstr "" @@ -3569,7 +3595,7 @@ msgstr "" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " @@ -3577,7 +3603,7 @@ msgstr "" "ПроцеÑÑŠÑ‚ dpkg е беше прекъÑнат. Проблемът трÑбва да Ñе коригира чрез ръчно " "изпълнение на „%s“." -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "Без заключване" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.5.26\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2004-05-06 15:25+0100\n" "Last-Translator: Safir Å ećerović <sapphire@linux.org.ba>\n" "Language-Team: Bosnian <lokal@lugbih.org>\n" @@ -15,155 +15,156 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -#: cmdline/apt-cache.cc:140 +#: 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:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "Ukupno naziva paketa:" -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 #, fuzzy msgid "Total package structures: " msgstr "Ukupno naziva paketa:" -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " Normalni paketi:" -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " ÄŒisto virtuelni paketi:" -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " PojedinaÄni virutuelni paketi:" -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " MijeÅ¡ani virtuelni paketi:" -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " Nedostajući:" -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "Ukupno razliÄitih verzija:" -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 #, fuzzy msgid "Total distinct descriptions: " msgstr "Ukupno razliÄitih verzija:" -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "Ukupno zavisnosti:" -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "Ukupno Verzija/Datoteka odnosa:" -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 #, fuzzy msgid "Total Desc/File relations: " msgstr "Ukupno Verzija/Datoteka odnosa:" -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "" -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "" -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "" -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "" -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "" -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: 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 "" -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 msgid "No packages found" msgstr "Paketi nisu pronaÄ‘eni" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 msgid "You must give at least one search pattern" msgstr "" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "Ne mogu pronaći paket %s" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "Datoteke paketa:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 msgid "Cache is out of sync, can't x-ref a package file" msgstr "" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " Instalirano:" -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr "" -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr "" #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr "" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] showpkg pkg1 [pkg2 ...]\n" @@ -200,28 +201,28 @@ msgid "" "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" msgstr "" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: cmdline/apt-cdrom.cc:76 msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" -#: cmdline/apt-cdrom.cc:104 +#: cmdline/apt-cdrom.cc:91 msgid "Please insert a Disc in the drive and press enter" msgstr "" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, fuzzy, c-format msgid "Failed to mount '%s' to '%s'" msgstr "Ne mogu otvoriti %s" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "" @@ -257,65 +258,65 @@ msgstr "" " -c=? ProÄitaj ovu konfiguracijsku datoteku\n" " -o=? Podesi odgovarajuću konfiguracijsku opciju, npr. -o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:244 +#: cmdline/apt-get.cc:245 #, c-format msgid "Can not find a package for architecture '%s'" msgstr "" -#: cmdline/apt-get.cc:326 +#: cmdline/apt-get.cc:327 #, c-format msgid "Can not find a package '%s' with version '%s'" msgstr "" -#: cmdline/apt-get.cc:329 +#: cmdline/apt-get.cc:330 #, c-format msgid "Can not find a package '%s' with release '%s'" msgstr "" -#: cmdline/apt-get.cc:366 +#: cmdline/apt-get.cc:367 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "" -#: cmdline/apt-get.cc:422 +#: cmdline/apt-get.cc:423 #, c-format msgid "Can not find version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "ali se %s treba instalirati" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: 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:468 cmdline/apt-mark.cc:116 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 msgid "Internal error, problem resolver broke stuff" msgstr "" -#: cmdline/apt-get.cc:573 cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 msgid "Unable to lock the download directory" msgstr "" -#: cmdline/apt-get.cc:725 +#: cmdline/apt-get.cc:726 msgid "Must specify at least one package to fetch source for" msgstr "" -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "" @@ -335,151 +336,151 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "" -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " "packages" msgstr "" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " "package %s can't satisfy version requirements" msgstr "" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " "version" msgstr "" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, c-format msgid "Changelog for %s (%s)" msgstr "" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "Podržani moduli:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -525,53 +526,74 @@ msgid "" " This APT has Super Cow Powers.\n" msgstr "" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +msgid "Must specify at least one pair url/filename" +msgstr "" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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 "ali nije instaliran" -#: cmdline/apt-mark.cc:63 +#: 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:65 +#: 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:230 +#: cmdline/apt-mark.cc:241 #, c-format msgid "%s was already set on hold.\n" msgstr "" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, c-format msgid "%s was already not hold.\n" msgstr "" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: 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:264 cmdline/apt-mark.cc:316 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, fuzzy, c-format msgid "Canceled hold on %s.\n" msgstr "Ne mogu otvoriti %s" -#: cmdline/apt-mark.cc:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" "\n" @@ -598,7 +620,7 @@ msgid "" "See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -646,173 +668,175 @@ msgstr "Ne mogu demontirati CD-ROM na %s, moguće je da se joÅ¡ uvijek koristi." msgid "Disk not found." msgstr "Datoteka nije pronaÄ‘ena" -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "Datoteka nije pronaÄ‘ena" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 msgid "Failed to stat" msgstr "" -#: methods/copy.cc:82 methods/gzip.cc:113 methods/rred.cc:606 +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 msgid "Failed to set modification time" msgstr "" -#: methods/file.cc:47 +#: 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:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "Prijavljujem se" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format msgid "The server refused the connection and said: %s" msgstr "" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." msgstr "" -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 msgid "Connection timeout" msgstr "" -#: methods/ftp.cc:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "Server je zatvorio vezu" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "GreÅ¡ka pri Äitanju" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "" -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 #, fuzzy msgid "Protocol corruption" msgstr "OÅ¡tećenje protokola" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "GreÅ¡ka pri pisanju" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 msgid "Could not create a socket" msgstr "" -#: methods/ftp.cc:707 +#: methods/ftp.cc:712 msgid "Could not connect data socket, connection timed out" msgstr "" -#: methods/ftp.cc:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "NeuspjeÅ¡no" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "" -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "" @@ -848,7 +872,7 @@ 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:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "Povezujem se sa %s" @@ -878,182 +902,182 @@ msgstr "" msgid "Unable to connect to %s:%s:" msgstr "Ne mogu se povezati sa %s %s:" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "" -#: methods/gpgv.cc:172 +#: methods/gpgv.cc:174 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" #. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: methods/gpgv.cc:217 methods/gpgv.cc:224 #, fuzzy msgid "The following signatures were invalid:\n" msgstr "Slijedeći dodatni paketi će biti instalirani:" -#: methods/gpgv.cc:229 +#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" msgstr "" -#: methods/gzip.cc:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "ÄŒekam na zaglavlja" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "" -#: methods/server.cc:139 methods/server.cc:146 +#: methods/server.cc:134 methods/server.cc:141 msgid "The HTTP server sent an invalid reply header" msgstr "" -#: methods/server.cc:176 +#: methods/server.cc:171 msgid "The HTTP server sent an invalid Content-Length header" msgstr "" -#: methods/server.cc:199 +#: methods/server.cc:194 msgid "The HTTP server sent an invalid Content-Range header" msgstr "" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "Nepoznat oblik datuma" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "Povezivanje neuspjeÅ¡no" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "UnutraÅ¡nja greÅ¡ka" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "" -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:171 +#: apt-private/private-install.cc:159 #, c-format msgid "Need to get %sB of archives.\n" msgstr "" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:178 +#: apt-private/private-install.cc:166 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:183 +#: apt-private/private-install.cc:171 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "" -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Da, uradi kako kažem!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1061,37 +1085,37 @@ msgid "" " ?] " msgstr "" -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "Odustani." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "Da li želite nastaviti?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" msgstr "" -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "" -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "Odustajem od instalacije." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1101,15 +1125,15 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1125,15 +1149,15 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 msgid "The following information may help to resolve the situation:" msgstr "" -#: apt-private/private-install.cc:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1143,7 +1167,7 @@ msgid_plural "" msgstr[0] "Slijedeći NOVI paketi će biti instalirani:" msgstr[1] "Slijedeći NOVI paketi će biti instalirani:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1151,23 +1175,23 @@ msgid_plural "" msgstr[0] "Slijedeći NOVI paketi će biti instalirani:" msgstr[1] "Slijedeći NOVI paketi će biti instalirani:" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-install.cc:624 +#: apt-private/private-install.cc:612 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" -#: apt-private/private-install.cc:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." msgstr "" -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1175,173 +1199,173 @@ msgid "" "or been moved out of Incoming." msgstr "" -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "OÅ¡tećeni paketi" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "Slijedeći dodatni paketi će biti instalirani:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "Predloženi paketi:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "PreporuÄeni paketi:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 #, fuzzy msgid "WARNING: The following packages cannot be authenticated!" msgstr "Slijedeći paketi će biti nadograÄ‘eni:" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr "[Instalirano]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr "[Instalirano]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr "[Instalirano]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr "[Instalirano]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "ali je %s instaliran" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "ali se %s treba instalirati" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "ali se ne može instalirati" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "ali je virtuelni paket" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "ali nije instaliran" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "ali se neće instalirati" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " ili" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "Slijedeći NOVI paketi će biti instalirani:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "Slijedeći paketi će biti UKLONJENI:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 #, fuzzy msgid "The following packages have been kept back:" msgstr "Slijedeći paketi su zadržani:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "Slijedeći paketi će biti nadograÄ‘eni:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "" -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 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-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "" -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "" -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "" -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "" @@ -1350,7 +1374,7 @@ msgstr "" #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "" @@ -1358,90 +1382,90 @@ msgstr "" #. 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:702 +#: apt-private/private-output.cc:708 msgid "[y/N]" msgstr "" #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "Ispravljam zavisnosti..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr "" -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "Ne mogu ispraviti zavisnosti" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " UraÄ‘eno" -#: apt-private/private-cachefile.cc:102 +#: apt-private/private-cachefile.cc:108 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "" -#: apt-private/private-cachefile.cc:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "Nezadovoljene zavisnosti. PokuÅ¡ajte koristeći -f." -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "RaÄunam nadogradnju..." -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 msgid "Internal error, Upgrade broke stuff" msgstr "" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "UraÄ‘eno" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1449,43 +1473,43 @@ msgid "" " so don't depend on the relevance to the real current situation!" msgstr "" -#: apt-private/private-sources.cc:45 +#: 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:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "" -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "" -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "" -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr "" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1495,19 +1519,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "Ne mogu Äitati %s" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "" @@ -1536,11 +1560,11 @@ msgstr "Ne mogu otvoriti %s" msgid "[Mirror: %s]" msgstr "" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 msgid "Failed to create IPC pipe to subprocess" msgstr "" -#: methods/rsh.cc:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "" @@ -1592,41 +1616,46 @@ msgid "" " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Ne mogu kreirati %s" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "Ne mogu zapisati na %s" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "" "Ne mogu odrediti verziju debconf programa. Da li je debconf instaliran?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1668,217 +1697,217 @@ msgid "" " -o=? Set an arbitrary configuration option" msgstr "" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, 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:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "DB je stara, pokuÅ¡avam nadogradnju %s" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 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:81 +#: ftparchive/cachedb.cc:85 #, fuzzy, c-format msgid "Unable to open DB file %s: %s" msgstr "Ne mogu otvoriti DB datoteku %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "Arhiva nema kontrolnog zapisa" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "" -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "" -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "Ne mogu otvoriti %s" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr "" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr "" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr "" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr "" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr "" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr "" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, c-format msgid "Malformed override %s line %llu (%s)" msgstr "" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, c-format msgid "Malformed override %s line %llu #1" msgstr "" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, c-format msgid "Malformed override %s line %llu #2" msgstr "" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, c-format msgid "Malformed override %s line %llu #3" msgstr "" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -1910,157 +1939,157 @@ msgid "" " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "Ne mogu izvrÅ¡iti gzip" -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: 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:201 +#: 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:306 +#: apt-inst/contrib/extracttar.cc:308 #, c-format msgid "Unknown TAR header type %u, member %s" msgstr "" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "" -#: apt-inst/contrib/arfile.cc:82 +#: apt-inst/contrib/arfile.cc:84 msgid "Error reading archive member header" msgstr "" -#: apt-inst/contrib/arfile.cc:94 +#: apt-inst/contrib/arfile.cc:96 #, c-format msgid "Invalid archive member header %s" msgstr "" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "Arhiva je prekratka" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "" -#: apt-inst/filelist.cc:382 +#: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" msgstr "" -#: apt-inst/filelist.cc:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "" -#: apt-inst/filelist.cc:479 +#: apt-inst/filelist.cc:477 #, c-format msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" msgstr "" -#: apt-inst/filelist.cc:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, fuzzy, c-format msgid "Failed to write file %s" msgstr "Ne mogu ukloniti %s" -#: apt-inst/dirstream.cc:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format msgid "The path %s is too long" msgstr "" -#: apt-inst/extract.cc:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "" -#: apt-inst/extract.cc:145 +#: apt-inst/extract.cc:152 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "" -#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 msgid "The diversion path is too long" msgstr "" -#: apt-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "" -#: apt-inst/extract.cc:282 +#: apt-inst/extract.cc:289 msgid "Failed to locate node in its hash bucket" msgstr "" -#: apt-inst/extract.cc:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "Putanja je preduga" -#: apt-inst/extract.cc:414 +#: apt-inst/extract.cc:421 #, c-format msgid "Overwrite package match with no version for %s" msgstr "" -#: apt-inst/extract.cc:431 +#: apt-inst/extract.cc:438 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "" -#: apt-inst/extract.cc:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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 "" -#: apt-inst/deb/debfile.cc:124 +#: apt-inst/deb/debfile.cc:132 #, c-format msgid "Internal error, could not locate member %s" msgstr "" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "" @@ -2118,495 +2147,500 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "" -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-pkg/contrib/configuration.cc:900 #, c-format msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -#: apt-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, c-format msgid "%c%s... %u%%" msgstr "" -#: apt-pkg/contrib/cmndline.cc:116 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format msgid "Command line option '%c' [from %s] is not known." msgstr "" -#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format msgid "Command line option %s is not boolean" msgstr "" -#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "" -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "" -#: apt-pkg/contrib/cmndline.cc:273 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format msgid "Option %s requires an integer argument, not '%s'" msgstr "" -#: apt-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "" -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "" -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:56 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format msgid "Unable to stat the mount point %s" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "" -#: apt-pkg/contrib/fileutl.cc:95 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "" -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, c-format msgid "Sub-process %s received signal %u." msgstr "" -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 apt-pkg/contrib/gpgv.cc:239 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "" -#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "Ne mogu otvoriti %s" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "" -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, c-format msgid "read, still have %llu to read but none left" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, c-format msgid "write, still have %llu to write but couldn't" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "Ne mogu ukloniti %s" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, c-format msgid "Problem renaming the file %s to %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, c-format msgid "Problem unlinking the file %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "" + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, fuzzy, c-format msgid "No keyring installed in %s." msgstr "Odustajem od instalacije." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "" -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "" -#: apt-pkg/pkgcache.cc:162 +#: apt-pkg/pkgcache.cc:169 msgid "The package cache file is corrupted, it is too small" msgstr "" -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "" -#: apt-pkg/pkgcache.cc:172 +#: apt-pkg/pkgcache.cc:179 msgid "The package cache was built for a different architecture" msgstr "" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "Zavisi" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "Unaprijed zavisi" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "Predlaže" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "PreporuÄuje" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 #, fuzzy msgid "Conflicts" msgstr "Sukobljava se sa" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "Zamjenjuje" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "Zastarijeva" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "važno" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "zahtijevano" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "standardno" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "opcionalno" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "extra" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "Gradim stablo zavisnosti" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "Verzije kandidata" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "Stvaranje zavisnosti" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 #, fuzzy msgid "Reading state information" msgstr "Sastavljam dostupne informacije" -#: apt-pkg/depcache.cc:244 +#: apt-pkg/depcache.cc:250 #, fuzzy, c-format msgid "Failed to open StateFile %s" msgstr "Ne mogu otvoriti %s" -#: apt-pkg/depcache.cc:250 +#: apt-pkg/depcache.cc:256 #, fuzzy, c-format msgid "Failed to write temporary StateFile %s" msgstr "Ne mogu ukloniti %s" -#: apt-pkg/tagfile.cc:138 +#: apt-pkg/tagfile.cc:140 #, c-format msgid "Unable to parse package file %s (1)" msgstr "" -#: apt-pkg/tagfile.cc:235 +#: apt-pkg/tagfile.cc:237 #, c-format msgid "Unable to parse package file %s (2)" msgstr "" -#: apt-pkg/sourcelist.cc:118 +#: apt-pkg/sourcelist.cc:127 #, c-format msgid "Malformed stanza %u in source list %s (URI parse)" msgstr "" -#: apt-pkg/sourcelist.cc:161 +#: apt-pkg/sourcelist.cc:170 #, c-format msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" -#: apt-pkg/sourcelist.cc:164 +#: apt-pkg/sourcelist.cc:173 #, c-format msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "" -#: apt-pkg/sourcelist.cc:175 +#: apt-pkg/sourcelist.cc:184 #, c-format msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" msgstr "" -#: apt-pkg/sourcelist.cc:181 +#: apt-pkg/sourcelist.cc:190 #, c-format msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "" -#: apt-pkg/sourcelist.cc:184 +#: apt-pkg/sourcelist.cc:193 #, c-format msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -#: apt-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "" -#: apt-pkg/sourcelist.cc:202 +#: apt-pkg/sourcelist.cc:211 #, c-format msgid "Malformed line %lu in source list %s (URI parse)" msgstr "" -#: apt-pkg/sourcelist.cc:208 +#: apt-pkg/sourcelist.cc:217 #, c-format msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "" -#: apt-pkg/sourcelist.cc:215 +#: apt-pkg/sourcelist.cc:224 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" msgstr "" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "Otvaram %s" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "" -#: apt-pkg/sourcelist.cc:362 +#: apt-pkg/sourcelist.cc:371 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "" -#: apt-pkg/sourcelist.cc:366 +#: apt-pkg/sourcelist.cc:375 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "" -#: apt-pkg/sourcelist.cc:407 +#: apt-pkg/sourcelist.cc:416 #, c-format msgid "Type '%s' is not known on stanza %u in source list %s" msgstr "" -#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, 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:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "Ne mogu otvoriti %s" -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2614,229 +2648,224 @@ msgid "" "you really want to do it, activate the APT::Force-LoopBreak option." msgstr "" -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "" -#: apt-pkg/algorithms.cc:266 +#: 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-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." msgstr "" -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "" -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, c-format msgid "List directory %spartial is missing." msgstr "" -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, c-format msgid "Archives directory %spartial is missing." msgstr "" -#: apt-pkg/acquire.cc:93 +#: 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:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, fuzzy, c-format msgid "Retrieving file %li of %li" msgstr "ÄŒitam spisak datoteke" -#: apt-pkg/acquire-worker.cc:113 +#: apt-pkg/acquire-worker.cc:116 #, c-format msgid "The method driver %s could not be found." msgstr "" -#: apt-pkg/acquire-worker.cc:115 +#: apt-pkg/acquire-worker.cc:118 #, c-format msgid "Is the package %s installed?" msgstr "" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "" -#: apt-pkg/acquire-worker.cc:452 +#: apt-pkg/acquire-worker.cc:455 #, c-format msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "" -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "" -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "" -#: apt-pkg/cachefile.cc:87 +#: apt-pkg/cachefile.cc:94 msgid "The package lists or status file could not be parsed or opened." msgstr "" -#: apt-pkg/cachefile.cc:91 +#: apt-pkg/cachefile.cc:98 msgid "You may want to run apt-get update to correct these problems" msgstr "" -#: apt-pkg/cachefile.cc:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "" -#: apt-pkg/policy.cc:75 +#: 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 "" -#: apt-pkg/policy.cc:414 +#: apt-pkg/policy.cc:422 #, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -#: apt-pkg/policy.cc:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 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:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "" -#: apt-pkg/pkgcachegen.cc:251 +#: apt-pkg/pkgcachegen.cc:257 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:254 +#: apt-pkg/pkgcachegen.cc:260 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:263 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:260 +#: apt-pkg/pkgcachegen.cc:266 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:576 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 msgid "IO Error saving source cache" msgstr "" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "" - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 msgid "Invalid file format" msgstr "" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, 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:1586 +#: apt-pkg/acquire-item.cc:1595 #, 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:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " "repository will not be applied." msgstr "" -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -2844,153 +2873,149 @@ msgid "" msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, 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 "" -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, fuzzy, c-format msgid "Unable to parse Release file %s" msgstr "Ne mogu otvoriti DB datoteku %s" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, c-format msgid "No sections in Release file %s" msgstr "" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "" -#: apt-pkg/indexrecords.cc:125 +#: apt-pkg/indexrecords.cc:130 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "" -#: apt-pkg/indexrecords.cc:144 +#: 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/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +#, fuzzy +msgid "Unmounting CD-ROM...\n" +msgstr "PogreÅ¡an CD" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 #, fuzzy msgid "Waiting for disc...\n" msgstr "ÄŒekam na zaglavlja" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " msgstr "" -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -#, fuzzy -msgid "Unmounting CD-ROM...\n" -msgstr "PogreÅ¡an CD" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" msgstr "" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " "%zu signatures\n" msgstr "" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" "'%s'\n" msgstr "" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 #, fuzzy msgid "Copying package lists..." msgstr "ÄŒitam spiskove paketa" -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format msgid "Wrote %i records.\n" msgstr "" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:777 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:780 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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 "" @@ -3005,254 +3030,254 @@ msgstr "" msgid "Hash mismatch for: %s" msgstr "" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, fuzzy, c-format msgid "Couldn't find task '%s'" msgstr "Ne mogu otvoriti %s" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, c-format msgid "Couldn't find any package by regex '%s'" msgstr "" -#: apt-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "Ne mogu otvoriti %s" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, c-format msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " "neither of them" msgstr "" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, c-format msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, fuzzy, c-format msgid "Installing %s" msgstr " Instalirano:" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, fuzzy, c-format msgid "Configuring %s" msgstr "Povezujem se sa %s" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, fuzzy, c-format msgid "Removing %s" msgstr "Otvaram %s" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, fuzzy, c-format msgid "Completely removing %s" msgstr "Ne mogu ukloniti %s" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: 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:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, fuzzy, c-format msgid "Preparing %s" msgstr "Otvaram %s" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, fuzzy, c-format msgid "Unpacking %s" msgstr "Otvaram %s" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, fuzzy, c-format msgid "Installed %s" msgstr " Instalirano:" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, fuzzy, c-format msgid "Removed %s" msgstr "PreporuÄuje" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, fuzzy, c-format msgid "Completely removed %s" msgstr "Ne mogu ukloniti %s" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "Ne mogu zapisati na %s" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 msgid "" "No apport report written because the error message indicates an issue on the " "local system" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " "it?" msgstr "" -#: apt-pkg/deb/debsystem.cc:87 +#: apt-pkg/deb/debsystem.cc:94 #, 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:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " msgstr "" -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "" @@ -3269,9 +3294,6 @@ msgstr "" #~ msgid "Failed to remove %s" #~ msgstr "Ne mogu ukloniti %s" -#~ msgid "Unable to create %s" -#~ msgstr "Ne mogu kreirati %s" - #~ msgid "Reading file listing" #~ msgstr "ÄŒitam spisak datoteke" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.7.6\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2012-10-19 13:30+0200\n" "Last-Translator: Jordi Mallach <jordi@debian.org>\n" "Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n" @@ -18,154 +18,155 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: cmdline/apt-cache.cc:140 +#: 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" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "Nombre total de paquets: " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 msgid "Total package structures: " msgstr "Nombre total d'estructures de paquets: " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " Paquets normals: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " Paquets virtuals purs: " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " Paquets virtuals únics: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " Paquets virtuals mixtes: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " Falten: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "Nombre total de versions diferents: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "Nombre total de descripcions diferents: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "Nombre total de dependències: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "Nombre total de relacions versió/fitxer: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "Nombre total de relacions descripció/fitxer: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "Nombre total dels mapes aportats: " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "Nombre total de cadenes globals: " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "Nombre total de l'espai per a dependències de versió: " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "Nombre total de l'espai desaprofitat: " -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "Nombre total de l'espai atribuït a: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format msgid "Package file %s is out of sync." msgstr "El fitxer %s del paquet està desincronitzat." -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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" -#: cmdline/apt-cache.cc:1245 +#: 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" -#: cmdline/apt-cache.cc:1411 +#: 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." -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "No s'ha trobat el paquet %s" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "Fitxers de paquets:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 msgid "Cache is out of sync, can't x-ref a package file" msgstr "" "Memòria cau no sincronitzada, no es pot fer x-ref a un fitxer del paquet" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "Paquets etiquetats:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(no trobat)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " InstaÅ€lat: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " Candidat: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(cap)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " Etiqueta del paquet: " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " Taula de versió:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s per a %s compilat el %s %s\n" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -239,28 +240,28 @@ msgstr "" "Vegeu les pà gines de manual apt-cache(8) i apt.conf(5) per a més " "informació.\n" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: cmdline/apt-cdrom.cc:76 msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "Doneu un nom per a aquest disc, com per exemple «Debian 5.0.3 Disc 1»" -#: cmdline/apt-cdrom.cc:104 +#: cmdline/apt-cdrom.cc:91 msgid "Please insert a Disc in the drive and press enter" msgstr "Inseriu un disc en la unitat i premeu Intro" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, c-format msgid "Failed to mount '%s' to '%s'" msgstr "No s'ha pogut muntar «%s» a «%s»" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Repetiu aquest procés per a la resta de CD del vostre joc." @@ -296,47 +297,47 @@ msgstr "" " -c=? Llegeix aquest fitxer de configuració\n" " -o=? Estableix una opció de conf arbitrà ria, p. ex. -o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:244 +#: 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»" -#: cmdline/apt-get.cc:326 +#: 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»" -#: cmdline/apt-get.cc:329 +#: 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»" -#: cmdline/apt-get.cc:366 +#: cmdline/apt-get.cc:367 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "S'està agafant «%s» com a paquet font en lloc de '%s'\n" -#: cmdline/apt-get.cc:422 +#: 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»" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "No s'ha pogut trobar el paquet %s" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "S'ha marcat %s com instaÅ€lat manualment.\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: 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:468 cmdline/apt-mark.cc:116 +#: 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." @@ -344,20 +345,20 @@ msgstr "" "Aquesta ordre és desaconsellada. Empreu «apt-mark auto» i «apt-mark manual» " "en el seu lloc." -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: 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" -#: cmdline/apt-get.cc:573 cmdline/apt-get.cc:610 +#: 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:725 +#: 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" -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "No es pot trobar un paquet de fonts per a %s" @@ -384,81 +385,81 @@ msgstr "" "per obtenir les últimes actualitzacions (possiblement no publicades) del " "paquet.\n" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "S'està ometent el fitxer ja baixat «%s»\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "No s'ha pogut determinar l'espai lliure en %s" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "No teniu prou espai lliure en %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Es necessita baixar %sB/%sB d'arxius font.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Es necessita baixar %sB d'arxius font.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "Obtén el font %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "No s'ha pogut baixar alguns arxius." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "Baixada completa i en mode de només baixada" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" "S'està ometent el desempaquetament de les fonts que ja ho estan en %s\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "L'ordre de desempaquetar «%s» ha fallat.\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Comproveu si el paquet «dpkgdev» està instaÅ€lat.\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "L'ordre de construir «%s» ha fallat.\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "Ha fallat el procés fill" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 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:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -467,18 +468,18 @@ msgstr "" "No hi ha informació d'arquitectura disponible per a %s. Vegeu apt.conf(5) " "APT::Architectures per a configurar-ho" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" "No es pot obtenir informació sobre les dependències de construcció per a %s" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s no té dependències de construcció.\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -487,7 +488,7 @@ msgstr "" "La dependència %s en %s no es pot satisfer perquè %s no és permès als " "paquets «%s»" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -496,14 +497,14 @@ msgstr "" "La dependència %s en %s no es pot satisfer perquè no es pot trobar el paquet " "%s" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "No s'ha pogut satisfer la dependència %s per a %s: El paquet instaÅ€lat %s és " "massa nou" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -512,7 +513,7 @@ msgstr "" "La dependència %s per a %s no es pot satisfer perquè la versió candidata del " "paquet %s no pot satisfer els requeriments de versions" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -521,30 +522,30 @@ msgstr "" "La dependència %s en %s no es pot satisfer perquè el paquet %s no té versió " "candidata" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "No s'ha pogut satisfer la dependència %s per a %s: %s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "No s'han pogut satisfer les dependències de construcció per a %s" -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "No es poden processar les dependències de construcció" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, c-format msgid "Changelog for %s (%s)" msgstr "Registre de canvis per a %s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "Mòduls suportats:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -636,53 +637,75 @@ msgstr "" "per a obtenir més informació i opcions.\n" " Aquest APT té superpoders bovins.\n" -#: cmdline/apt-mark.cc:57 +#: 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" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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 no es pot marcar perquè no està instaÅ€lat.\n" -#: cmdline/apt-mark.cc:63 +#: cmdline/apt-mark.cc:74 #, c-format msgid "%s was already set to manually installed.\n" msgstr "%s ja estava marcat com instaÅ€lat manualment.\n" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, c-format msgid "%s was already set to automatically installed.\n" msgstr "%s ja estava marcat com instaÅ€lat automà ticament.\n" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, c-format msgid "%s was already set on hold.\n" msgstr "%s ja estava retingut.\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, c-format msgid "%s was already not hold.\n" msgstr "%s ja estava no retingut.\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Esperava %s però no hi era" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format msgid "%s set on hold.\n" msgstr "S'ha marcat %s com retingut.\n" -#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format msgid "Canceled hold on %s.\n" msgstr "S'ha cancel·lat la marca de retenció en %s.\n" -#: cmdline/apt-mark.cc:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "L'execució del dpkg ha fallat. Sou root?" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" "\n" @@ -709,7 +732,7 @@ msgid "" "See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -757,52 +780,52 @@ msgstr "No es pot muntar el CD-ROM en %s, potser estigui encara en ús." msgid "Disk not found." msgstr "No s'ha trobat el disc" -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "Fitxer no trobat" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: 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:82 methods/gzip.cc:113 methods/rred.cc:606 +#: 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:47 +#: 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:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "S'està accedint a" -#: methods/ftp.cc:178 +#: 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:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "No es pot determinar el nom local" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format msgid "The server refused the connection and said: %s" msgstr "El servidor ha rebutjat la nostra connexió i ha dit: %s" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "USER ha fallat, el servidor ha dit: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS ha fallat, el servidor ha dit: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -810,122 +833,124 @@ msgstr "" "S'ha especificat un servidor intermediari però no un script d'accés, " "Acquire::ftp::ProxyLogin està buit." -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, 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" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE ha fallat, el servidor ha dit: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: 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:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "El servidor ha tancat la connexió" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "Error de lectura" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: 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:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "Protocol corromput" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "Error d'escriptura" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: 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:707 +#: 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:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "Ha fallat" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "No s'ha pogut connectar amb el sòcol passiu." -#: methods/ftp.cc:730 +#: 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:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "No s'ha pogut vincular a un connector" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "No s'ha pogut escoltar sobre el sòcol" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "No s'ha pogut determinar el nom del sòcol" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "No es pot enviar l'ordre PORT" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "La famÃlia d'adreces %u és desconeguda (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT ha fallat, el servidor ha dit: %s" -#: methods/ftp.cc:826 +#: 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:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "No es pot acceptar la connexió" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "Problema escollint el fitxer" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "No és possible obtenir el fitxer, el servidor ha dit '%s'" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: 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:930 +#: methods/ftp.cc:935 #, c-format 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:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "Consulta" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "No es pot invocar" @@ -961,7 +986,7 @@ msgstr "No s'ha pogut connectar amb %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "S'està connectant amb %s" @@ -991,40 +1016,40 @@ msgstr "Ha passat alguna cosa estranya en resoldre «%s:%s» (%i - %s)" msgid "Unable to connect to %s:%s:" msgstr "No es pot connectar amb %s:%s:" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Error intern: La signatura és correcta, però no s'ha pogut determinar " "l'emprempta digital de la clau!" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "S'ha trobat almenys una signatura invà lida." -#: methods/gpgv.cc:172 +#: 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?)" #. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "S'ha produït un error desconegut en executar el gpgv" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: 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:229 +#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@ -1032,120 +1057,120 @@ msgstr "" "Les signatures següents no s'han pogut verificar perquè la clau pública no " "està disponible:\n" -#: methods/gzip.cc:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "Els fitxers buits no poden ser arxius và lids" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "S'ha produït un error en escriure al fitxer" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "" "S'ha produït un error en llegir, el servidor remot ha tancat la connexió" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "S'ha produït un error en llegir des del servidor" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "S'ha produït un error en escriure al fitxer" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "Ha fallat la selecció" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "Connexió finalitzada" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "S'ha produït un error en escriure al fitxer de sortida" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "S'estan esperant les capçaleres" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "LÃnia de capçalera incorrecta" -#: methods/server.cc:139 methods/server.cc:146 +#: 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" -#: methods/server.cc:176 +#: 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" -#: methods/server.cc:199 +#: 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" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "Aquest servidor HTTP té el suport d'abast trencat" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "Format de la data desconegut" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "Capçalera de dades no và lida" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "Ha fallat la connexió" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "Error intern" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 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-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "" "Els paquets necessiten ser suprimits però s'ha inhabilitat la supressió." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "S'ha produït un error intern, l'ordenació no ha acabat" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" "Què estrany… les mides no coincideixen, informeu a apt@packages.debian.org" #. TRANSLATOR: The required 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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "S'ha d'obtenir %sB/%sB d'arxius.\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:171 +#: apt-private/private-install.cc:159 #, c-format msgid "Need to get %sB of archives.\n" msgstr "S'ha d'obtenir %sB d'arxius.\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:178 +#: apt-private/private-install.cc:166 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" @@ -1153,31 +1178,31 @@ 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:183 +#: apt-private/private-install.cc:171 #, 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" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "No teniu prou espai lliure en %s." -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "Hi ha problemes i s'ha emprat -y sense --force-yes" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 msgid "Trivial Only specified but this is not a trivial operation." msgstr "S'ha especificat «Trivial Only» però aquesta operació no és trivial." #. 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "SÃ, fes el que et dic!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1188,19 +1213,19 @@ msgstr "" "Per continuar escriviu la frase «%s»\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "Avortat." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "Voleu continuar?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "Alguns fitxers no s'han pogut baixar" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1208,19 +1233,19 @@ msgstr "" "No es poden baixar alguns arxius, proveu a executar apt-get update o " "intenteu-ho amb --fix-missing." -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing i els medi intercanviables actualment no estan suportats" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "No es poden corregir els paquets que falten." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "S'està avortant la instaÅ€lació." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1234,17 +1259,17 @@ msgstr[1] "" "Els següents paquets han desaparegut del vostre sistema ja\n" "que tots els fitxers s'han sobreescrit per altres paquets:" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Nota: Això ho fa el dpkg automà ticament i a propòsit." -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "Es suposa que no hauriem de suprimir coses, no es pot iniciar el supressor " "automà tic" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1262,15 +1287,15 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 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:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "S'ha produït un error intern, el supressor automà tic ha trencat coses" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1281,7 +1306,7 @@ msgstr[0] "" msgstr[1] "" "Els paquets següents s'han instaÅ€lat automà ticament i ja no són necessaris:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1291,17 +1316,17 @@ msgstr[0] "" msgstr[1] "" "Els paquets %lu es van s'instaÅ€lar automà ticament i ja no són necessaris:\n" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Empreu «apt-get autoremove» per a suprimir-lo." msgstr[1] "Empreu «apt-get autoremove» per a suprimir-los." -#: apt-private/private-install.cc:624 +#: apt-private/private-install.cc:612 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Potser voldreu executar «apt-get -f install» per corregir-ho:" -#: apt-private/private-install.cc:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1309,7 +1334,7 @@ msgstr "" "Dependències insatisfetes. Proveu amb «apt-get -f install» sense paquets (o " "especifiqueu una solució)." -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1321,145 +1346,145 @@ msgstr "" "«unstable» i alguns paquets requerits encara no han estat creats o bé\n" "encara no els hi han introduït des d'«Incoming»." -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "Paquets trencats" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "S'instaÅ€laran els següents paquets extres:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "Paquets suggerits:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "Paquets recomanats:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "AVÃS: No es poden autenticar els següents paquets!" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "S'ha descartat l'avÃs d'autenticació.\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "No s'ha pogut autenticar alguns paquets" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "Voleu instaÅ€lar aquests paquets sense verificar-los?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "No s'ha pogut obtenir %s %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [InstaÅ€lat]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [InstaÅ€lat]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [InstaÅ€lat]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [InstaÅ€lat]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "Els següents paquets tenen dependències sense satisfer:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "però està instaÅ€lat %s" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "però s'instaÅ€larà %s" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "però no és instaÅ€lable" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "però és un paquet virtual" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "però no està instaÅ€lat" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "però no serà instaÅ€lat" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " o" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "S'instaÅ€laran els paquets NOUS següents:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "Es SUPRIMIRAN els paquets següents:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "S'han mantingut els paquets següents:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "S'actualitzaran els paquets següents:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "Es DESACTUALITZARAN els paquets següents:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "Es canviaran els paquets retinguts següents:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (per %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1467,27 +1492,27 @@ msgstr "" "AVÃS: Es suprimiran els paquets essencials següents.\n" "Això NO s'ha de fer a menys que sapigueu exactament el que esteu fent!" -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu actualitzats, %lu nous a instaÅ€lar, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu reinstaÅ€lats, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu desactualitzats, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu a suprimir i %lu no actualitzats.\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu no instaÅ€lats o suprimits completament.\n" @@ -1496,7 +1521,7 @@ msgstr "%lu no instaÅ€lats o suprimits completament.\n" #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "[S/n]" @@ -1504,91 +1529,91 @@ msgstr "[S/n]" #. 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:702 +#: apt-private/private-output.cc:708 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:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "S" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "N" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "S'ha produït un error de compilació de l'expressió regular - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "S'estan corregint les dependències…" -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " ha fallat." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "No es poden corregir les dependències" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "No es pot minimitzar el joc de versions revisades" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " Fet" -#: apt-private/private-cachefile.cc:102 +#: 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:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "Dependències sense satisfer. Proveu-ho emprant -f." -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "L'ordre update no pren arguments" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "S'està calculant l'actualització… " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "Error intern, AllUpgrade ha trencat coses" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "Fet" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1600,43 +1625,43 @@ msgstr "" " Tingueu en ment que el bloqueig està desactivat,\n" " per tant, no es depèn de la situació actual real." -#: apt-private/private-sources.cc:45 +#: 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-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "Obj " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "Bai:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "Ign " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Err " -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "S'ha baixat %sB en %s (%sB/s)\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [Treballant]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1649,19 +1674,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "No es pot llegir %s" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "No es pot canviar a %s" @@ -1690,11 +1715,11 @@ msgstr "No es pot llegir el fitxer rèplica «%s»" msgid "[Mirror: %s]" msgstr "[Rèplica: %s]" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: 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:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "La connexió s'ha tancat prematurament" @@ -1761,40 +1786,45 @@ 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:256 apt-pkg/pkgcachegen.cc:1388 +#: 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:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "No es pot escriure en %s" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "No es pot determinar la versió de debconf. Està instaÅ€lat debconf?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "La llista de les extensions dels paquets és massa llarga" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "S'ha produït un error en processar el directori %s" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "La llista d'extensions de les fonts és massa llarga" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "S'ha produït un error en escriure la capçalera al fitxer de continguts" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "S'ha produït un error en processar el fitxer de continguts %s" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1875,26 +1905,26 @@ msgstr "" " -c=? Llegeix aquest fitxer de configuració\n" " -o=? Estableix una opció de configuració arbitrà ria" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "No s'ha trobat cap selecció" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "No es troben alguns fitxers dins del grup de fitxers del paquet `%s'" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, 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:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "La BD és vella, s'està intentant actualitzar %s" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -1902,192 +1932,192 @@ 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:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "No es pot obrir el fitxer de DB %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "No es pot determinar l'estat de %s" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "Arxiu sense registre de control" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "No es pot aconseguir un cursor" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "A: No es pot llegir el directori %s\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "A: No es pot veure l'estat %s\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "A: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "E: Els errors s'apliquen al fitxer " -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "No s'ha pogut resoldre %s" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "L'arbre està fallant" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "No s'ha pogut obrir %s" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "No s'ha pogut llegir l'enllaç %s" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "No s'ha pogut alliberar %s" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** No s'ha pogut enllaçar %s a %s" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " DeLink s'ha arribat al lÃmit de %sB.\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "Arxiu sense el camp paquet" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %s no té una entrada dominant\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " el mantenidor de %s és %s, no %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr " %s no té una entrada dominant de font\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s no té una entrada dominant de binari\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - No s'ha pogut assignar espai en memòria" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "No es pot obrir %s" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "LÃnia predominant %s malformada %llu núm 1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "No s'ha pogut llegir la lÃnia predominant del fitxer %s" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, c-format msgid "Malformed override %s line %llu #1" msgstr "LÃnia predominant %s malformada %llu núm 1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, c-format msgid "Malformed override %s line %llu #2" msgstr "LÃnia predominant %s malformada %llu núm 2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, c-format msgid "Malformed override %s line %llu #3" msgstr "LÃnia predominant %s malformada %llu núm 3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "Algorisme de compressió desconegut '%s'" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "La sortida comprimida %s necessita un joc de compressió" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "No s'ha pogut crear FILE*" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "No s'ha pogut bifurcar" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "Comprimeix el fil" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "S'ha produït un error intern, no s'ha pogut crear %s" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "Ha fallat l'E/S del subprocés sobre el fitxer" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "No s'ha pogut llegir mentre es calculava la suma MD5" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "S'ha trobat un problema treient l'enllaç %s" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "No s'ha pogut canviar el nom de %s a %s" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -2140,157 +2170,157 @@ msgstr "" " -c=? Llegeix aquest fitxer de configuració\n" " -o=? Estableix una opció de configuració, p. ex: -o dir::cache=/tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "No es poden crear els conductes" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "No es pot executar el gzip " -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "Arxiu corromput" -#: apt-inst/contrib/extracttar.cc:201 +#: 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:306 +#: apt-inst/contrib/extracttar.cc:308 #, c-format msgid "Unknown TAR header type %u, member %s" msgstr "Capçalera TAR desconeguda del tipus %u, membre %s" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "Signatura de l'arxiu no và lida" -#: apt-inst/contrib/arfile.cc:82 +#: 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:94 +#: apt-inst/contrib/arfile.cc:96 #, 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:106 +#: 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:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "L'arxiu és massa petit" -#: apt-inst/contrib/arfile.cc:139 +#: 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/filelist.cc:382 +#: 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:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "No s'ha trobat l'element diseminat!" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "No s'ha pogut assignar la desviació" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "S'ha produït un error intern en AddDiversion" -#: apt-inst/filelist.cc:479 +#: apt-inst/filelist.cc:477 #, 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" -#: apt-inst/filelist.cc:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "Afegit doble d'una desviació %s -> %s" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "Fitxer de conf. duplicat %s/%s" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format msgid "Failed to write file %s" msgstr "No s'ha pogut escriure el fitxer %s" -#: apt-inst/dirstream.cc:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "Ha fallat el tancament del fitxer %s" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format msgid "The path %s is too long" msgstr "La ruta %s és massa llarga" -#: apt-inst/extract.cc:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "S'està desempaquetant %s més d'una vegada" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "El directori %s està desviat" -#: apt-inst/extract.cc:145 +#: 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" -#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 msgid "The diversion path is too long" msgstr "La ruta de desviació és massa llarga" -#: apt-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "El directori %s està sent reemplaçat per un no-directori" -#: apt-inst/extract.cc:282 +#: 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:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "La ruta és massa llarga" -#: apt-inst/extract.cc:414 +#: apt-inst/extract.cc:421 #, c-format msgid "Overwrite package match with no version for %s" msgstr "S'està sobreescrivint el corresponent paquet sense versió per a %s" -#: apt-inst/extract.cc:431 +#: apt-inst/extract.cc:438 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "El fitxer %s/%s sobreescriu al que està en el paquet %s" -#: apt-inst/extract.cc:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "No es pot veure l'estat de %s" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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 "Aquest no és un arxiu DEB và lid, falta el membre «%s»" -#: apt-inst/deb/debfile.cc:124 +#: apt-inst/deb/debfile.cc:132 #, c-format msgid "Internal error, could not locate member %s" msgstr "Error intern, no s'ha pogut localitzar al membre %s" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "El fitxer de control no es pot analitzar" @@ -2351,210 +2381,205 @@ msgstr "" "està deshabilitat per l'usuari." #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lid %lih %limin %lis" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "%lih %limin %lis" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "%limin %lis" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "%lis" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "No s'ha trobat la selecció %s" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Abreujament de tipus no reconegut: «%c»" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "S'està obrint el fitxer de configuració %s" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Error sintà ctic %s:%u: No comença el camp amb un nom." -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Error sintà ctic %s:%u: Etiqueta malformada" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Error sintà ctic %s:%u Text extra després del valor" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, 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" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Error sintà ctic %s:%u: Hi ha masses fitxers include niats" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Error sintà ctic %s:%u: Inclusió des d'aquÃ" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Error sintà ctic %s:%u: Directriu no suportada «%s»" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-pkg/contrib/configuration.cc:900 #, c-format msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" "Error sintà ctic %s:%u: la directiva clear requereix un arbre d'opcions com a " "argument" -#: apt-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Error sintà ctic %s:%u: Text extra al final del fitxer" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s… Error!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s… Fet" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "…" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, c-format msgid "%c%s... %u%%" msgstr "%c%s… %u%%" -#: apt-pkg/contrib/cmndline.cc:116 +#: 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-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: 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-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "L'opció de la lÃnia d'ordres %s precisa un parà metre." -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "Opció %s: Parà metre de configuració ha de ser en la forma =<val>" -#: apt-pkg/contrib/cmndline.cc:273 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format msgid "Option %s requires an integer argument, not '%s'" msgstr "L'opció %s precisa un parà metre numèric, no '%s'" -#: apt-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "L'opció '%s' és massa llarga" -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "El sentit %s no s'entén, proveu «true» (vertader) o «false» (fals)." -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "Operació no và lida %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format msgid "Unable to stat the mount point %s" msgstr "No es pot obtenir informació del punt de muntatge %s" -#: apt-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "No s'ha pogut fer «stat» del cdrom" -#: apt-pkg/contrib/fileutl.cc:95 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Ha hagut un problema en tancar el fitxer gzip %s" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "" "No s'empren blocats per a llegir el fitxer de blocat de sols lectura %s" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "No es pot resoldre el fitxer de blocat %s" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "No s'empren blocats per al fitxer de blocat %s de muntar nfs" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "No s'ha pogut blocar %s" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, 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-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, 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-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, 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-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" @@ -2562,280 +2587,290 @@ msgstr "" "S'està descartant «%s» al directori «%s» perquè té una extensió del nom de " "fitxer invà lida" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "El sub-procés %s ha rebut una violació de segment." -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, c-format msgid "Sub-process %s received signal %u." msgstr "El sub-procés %s ha rebut un senyal %u." -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 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-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "El sub-procés %s ha sortit inesperadament" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Ha hagut un problema en tancar el fitxer gzip %s" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "No s'ha pogut obrir el fitxer %s" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, c-format msgid "Could not open file descriptor %d" msgstr "No s'ha pogut obrir el descriptor del fitxer %d" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "No s'ha pogut crear el subprocés IPC" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "No s'ha pogut executar el compressor " -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, c-format msgid "read, still have %llu to read but none left" msgstr "llegits, falten %llu per llegir, però no queda res" -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, c-format msgid "write, still have %llu to write but couldn't" msgstr "escrits, falten %llu per escriure però no s'ha pogut" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, c-format msgid "Problem closing the file %s" msgstr "Ha hagut un problema en tancar el fitxer %s" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, c-format msgid "Problem renaming the file %s to %s" msgstr "Ha hagut un problema en reanomenar el fitxer %s a %s" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, c-format msgid "Problem unlinking the file %s" msgstr "Ha hagut un problema en desenllaçar el fitxer %s" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "Ha hagut un problema en sincronitzar el fitxer" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "no s'ha pogut canviar el nom, %s (%s -> %s)." + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, c-format msgid "No keyring installed in %s." msgstr "No s'ha instaÅ€lat cap clauer a %s." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "Memòria cau de paquets és buida" -#: apt-pkg/pkgcache.cc:154 +#: 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:159 +#: 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:162 +#: 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:167 +#: apt-pkg/pkgcache.cc:174 #, 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:172 +#: 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:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "Depèn" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "Predepèn" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "Suggereix" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "Recomana" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "Entra en conflicte" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "Reemplaça" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "Fa obsolet" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "Trenca" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "Millora" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "important" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "requerit" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "està ndard" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "opcional" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "extra" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: 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:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "Versions candidates" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "Dependències que genera" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: 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:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "No s'ha pogut obrir el fitxer d'estat %s" -#: apt-pkg/depcache.cc:250 +#: 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-pkg/tagfile.cc:138 +#: 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-pkg/tagfile.cc:235 +#: 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-pkg/sourcelist.cc:118 +#: 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-pkg/sourcelist.cc:161 +#: 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-pkg/sourcelist.cc:164 +#: 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:175 +#: 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-pkg/sourcelist.cc:181 +#: 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-pkg/sourcelist.cc:184 +#: apt-pkg/sourcelist.cc:193 #, c-format msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" "LÃnia %lu malformada en la llista de fonts %s ([%s] la clau %s no té valor)" -#: apt-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "LÃnia %lu malformada en la llista de fonts %s (URI)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "LÃnia %lu malformada en la llista de fonts %s (dist)" -#: apt-pkg/sourcelist.cc:202 +#: apt-pkg/sourcelist.cc:211 #, 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)" -#: apt-pkg/sourcelist.cc:208 +#: apt-pkg/sourcelist.cc:217 #, 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)" -#: apt-pkg/sourcelist.cc:215 +#: apt-pkg/sourcelist.cc:224 #, 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)" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "S'està obrint %s" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, 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." -#: apt-pkg/sourcelist.cc:362 +#: 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)" -#: apt-pkg/sourcelist.cc:366 +#: 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" -#: apt-pkg/sourcelist.cc:407 +#: 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-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2844,12 +2879,12 @@ msgstr "" "No s'ha pogut realitzar la configuració immediata de «%s». Vegeu man 5 apt." "conf, sota APT::Immediate-Configure per a més detalls. (%d)" -#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, c-format msgid "Could not configure '%s'. " msgstr "No s'ha pogut configurar «%s»." -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2861,19 +2896,19 @@ msgstr "" "dolenta, però si realment desitgeu fer-la, activeu l'opció APT::Force-" "LoopBreak." -#: apt-pkg/pkgrecords.cc:34 +#: 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" -#: apt-pkg/algorithms.cc:266 +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" "El paquet %s necessita ser reinstaÅ€lat, però no se li pot trobar un arxiu." -#: apt-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2881,92 +2916,92 @@ msgstr "" "Error, pkgProblemResolver::Resolve ha generat pauses, això pot haver estat " "causat per paquets retinguts." -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 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/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, c-format msgid "List directory %spartial is missing." msgstr "Falta el directori de llistes %spartial." -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, c-format msgid "Archives directory %spartial is missing." msgstr "Falta el directori d'arxius %spartial." -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, c-format msgid "Unable to lock directory %s" msgstr "No es pot blocar el directori %s" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "S'està obtenint el fitxer %li de %li (falten %s)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "S'està obtenint el fitxer %li de %li" -#: apt-pkg/acquire-worker.cc:113 +#: 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." -#: apt-pkg/acquire-worker.cc:115 +#: 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" -#: apt-pkg/acquire-worker.cc:166 +#: 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" -#: apt-pkg/acquire-worker.cc:452 +#: 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." -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "El sistema d'empaquetament «%s» no està suportat" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "No es pot determinar un tipus de sistema d'empaquetament adequat." -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "No es pot veure l'estat de %s." -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "Heu de posar algunes URI 'font' en el vostre sources.list" -#: apt-pkg/cachefile.cc:87 +#: 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." -#: apt-pkg/cachefile.cc:91 +#: 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:109 +#: 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/policy.cc:75 +#: apt-pkg/policy.cc:83 #, c-format msgid "" "The value '%s' is invalid for APT::Default-Release as such a release is not " @@ -2975,104 +3010,99 @@ 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:414 +#: 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" -#: apt-pkg/policy.cc:436 +#: 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" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "No hi ha prioritat especificada per al pin (o és zero)" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 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:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "S'ha produït un error en processar %s (%s%d)" -#: apt-pkg/pkgcachegen.cc:251 +#: 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." -#: apt-pkg/pkgcachegen.cc:254 +#: 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." -#: apt-pkg/pkgcachegen.cc:257 +#: 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. " -#: apt-pkg/pkgcachegen.cc:260 +#: apt-pkg/pkgcachegen.cc:266 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." -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:576 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "No s'ha trobat el paquet %s %s en processar les dependències del fitxer" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "No s'ha pogut llegir la llista de paquets font %s" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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" -#: apt-pkg/pkgcachegen.cc:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "S'estan recollint els fitxers que proveeixen" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: 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" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "no s'ha pogut canviar el nom, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "La suma resum no concorda" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "La mida no concorda" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "Operació no và lida %s" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, c-format msgid "" "Unable to find expected entry '%s' in Release file (Wrong sources.list entry " @@ -3081,16 +3111,16 @@ msgstr "" "No s'ha trobat l'entrada «%s» esperada, al fitxer Release (entrada errònia " "al sources.list o fitxer malformat)" -#: apt-pkg/acquire-item.cc:1586 +#: apt-pkg/acquire-item.cc:1595 #, 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" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 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" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " @@ -3099,12 +3129,12 @@ msgstr "" "El fitxer Release per a %s ha caducat (invà lid des de %s). Les " "actualitzacions per a aquest dipòsit no s'aplicaran." -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Distribució en conflicte: %s (s'esperava %s però s'ha obtingut %s)" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3115,12 +3145,12 @@ msgstr "" "%s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "S'ha produït un error amb el GPG: %s: %s" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3130,12 +3160,12 @@ msgstr "" "significar que haureu d'arreglar aquest paquet manualment (segons " "arquitectura)." -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, 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:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -3143,71 +3173,67 @@ msgstr "" "L'Ãndex dels fitxers en el paquet està corromput. Fitxer no existent: camp " "per al paquet %s." -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, c-format msgid "Unable to parse Release file %s" msgstr "No es pot analitzar el fitxer Release %s" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, c-format msgid "No sections in Release file %s" msgstr "No hi ha seccions al fitxer Release %s" -#: apt-pkg/indexrecords.cc:112 +#: 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-pkg/indexrecords.cc:125 +#: 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-pkg/indexrecords.cc:144 +#: 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-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "El camp del proveïdor %s no té una empremta digital" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format 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:583 -msgid "Unmounting CD-ROM\n" -msgstr "S'està desmuntant el CD-ROM\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "S'està desmuntant el CD-ROM…\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "S'està esperant al disc…\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "S'està muntant el CD-ROM…\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " msgstr "S'està identificant…" -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "S'ha emmagatzemat l'etiqueta: %s\n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "S'esta desmuntant el CD-ROM…\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" msgstr "S'està analitzant el disc per a fitxers d'Ãndex…\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3216,7 +3242,7 @@ msgstr "" "S'han trobat %zu Ãndexos de paquets, %zu Ãndexos de fonts, %zu indexos de " "traduccions i %zu signatures\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" @@ -3224,16 +3250,16 @@ msgstr "" "No s'ha trobat cap fitxer de paquets, potser no és un disc de Debian o la " "arquitectura és incorrecta?" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "S'ha trobat l'etiqueta «%s»\n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 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:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3242,34 +3268,34 @@ msgstr "" "El disc es diu:\n" "«%s»\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "S'estan copiant les llistes de paquets…" -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "S'està escrivint una nova llista de fonts\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "Les entrades de la llista de fonts per a aquest disc són:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format msgid "Wrote %i records.\n" msgstr "S'han escrit %i registres.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:777 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "S'han escrit %i registres, on falten %i fitxers.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:780 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "S'han escrit %i registres, on hi ha %i fitxers no coincidents\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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 "" @@ -3286,39 +3312,39 @@ msgstr "No s'ha pogut trobar el registre d'autenticatió per a: %s" msgid "Hash mismatch for: %s" msgstr "El resum no coincideix per a: %s" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "No s'ha trobat la versió puntual «%s» per a «%s»" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "No s'ha trobat la versió «%s» per a «%s»" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, c-format msgid "Couldn't find task '%s'" msgstr "No s'ha pogut trobar la tasca «%s»" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, 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:605 +#: apt-pkg/cacheset.cc:613 #, 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:616 +#: apt-pkg/cacheset.cc:624 #, 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-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " @@ -3327,57 +3353,57 @@ 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:637 +#: apt-pkg/cacheset.cc:645 #, 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-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" "No s'ha pogut seleccionar la versió candidata del paquet %s ja que no té " "candidata" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "" "No s'ha pogut seleccionar la versió instaÅ€lada del paquet %s ja que no està " "instaÅ€lada" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "Envia l'escenari al resoledor" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "Envia la petició al resoledor" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "Prepara per a rebre una solució" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "El resoledor extern ha fallat sense un missatge d'error adient" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "Executa un resoledor extern" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "S'està executant dpkg" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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." @@ -3385,118 +3411,118 @@ msgstr "" "Alguns Ãndex no s'han pogut baixar. S'han descartat, o en el seu lloc s'han " "emprat els antics." -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "S'està instaÅ€lant %s" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: 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-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "S'està suprimint el paquet %s" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format msgid "Completely removing %s" msgstr "S'ha suprimit completament %s" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "S'està anotant la desaparició de %s" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "S'està executant l'activador de postinstaÅ€lació %s" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "Manca el directori «%s»" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: 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-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "S'està preparant el paquet %s" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "S'està desempaquetant %s" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "S'està preparant per a configurar el paquet %s" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "S'ha instaÅ€lat el paquet %s" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "S'està preparant per a la supressió del paquet %s" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "S'ha suprimit el paquet %s" -#: apt-pkg/deb/dpkgpm.cc:990 +#: 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-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "S'ha suprimit completament el paquet %s" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "No es pot escriure en %s" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "S'ha interromput l'operació abans que pogués finalitzar" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 msgid "No apport report written because MaxReports is reached already" msgstr "No s'ha escrit cap informe perquè ja s'ha superat MaxReports" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "S'han produït problemes de depències, es deixa sense configurar" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3504,7 +3530,7 @@ msgstr "" "No s'ha escrit cap informe perquè el missatge d'error indica que és un error " "consequent de una fallida anterior." -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" @@ -3512,7 +3538,7 @@ msgstr "" "No s'ha escrit cap informe perquè el missatge d'error indica una fallida per " "disc ple" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3520,7 +3546,7 @@ msgstr "" "No s'ha escrit cap informe perquè el missatge d'error indica una fallida per " "falta de memòria" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 #, fuzzy msgid "" "No apport report written because the error message indicates an issue on the " @@ -3529,14 +3555,14 @@ msgstr "" "No s'ha escrit cap informe perquè el missatge d'error indica una fallida per " "disc ple" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 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-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " @@ -3545,14 +3571,14 @@ msgstr "" "No s'ha pogut bloquejar el directori d'administració (%s), hi ha cap altre " "procés utilitzant-lo?" -#: apt-pkg/deb/debsystem.cc:87 +#: 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?" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " @@ -3560,7 +3586,7 @@ msgstr "" "S'ha interromput el dpkg, haurÃeu d'executar manualment «%s» per a corregir " "el problema." -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "No blocat" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2012-07-08 13:46+0200\n" "Last-Translator: Miroslav Kure <kurem@debian.cz>\n" "Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n" @@ -17,152 +17,153 @@ 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:140 +#: 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" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "Celkem názvů balÃků: " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 msgid "Total package structures: " msgstr "Celkem struktur balÃků: " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " NormálnÃch balÃků: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " ÄŒistÄ› virtuálnÃch balÃků: " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " Jednoduchých virtuálnÃch balÃků: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " SmÃÅ¡ených virtuálnÃch balÃků: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " ChybÄ›jÃcÃch: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "Celkem různých verzÃ: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "Celkem různých popisů: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "Celkem závislostÃ: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "Celkem vztahů ver/soubor: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "Celkem vztahů popis/soubor: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "Celkem poskytnutých mapovánÃ: " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "Celkem globovaných Å™etÄ›zců: " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "Celkem mÃsta závislých verzÃ: " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "Celkem jalového mÃsta: " -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "Celkem pÅ™iÅ™azeného mÃsta: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: 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ý." -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 msgid "You must give at least one search pattern" msgstr "MusÃte zadat alespoň jeden vyhledávacà vzor" -#: cmdline/apt-cache.cc:1411 +#: 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“." -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "Nelze najÃt balÃk %s" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "Soubory balÃku:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: 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" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "VypÃchnuté balÃky:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(nenalezeno)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " Instalovaná verze: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " Kandidát: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(žádná)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " VypÃchnutý balÃk: " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " Tabulka verzÃ:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: 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" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] showpkg pkg1 [pkg2 ...]\n" @@ -231,28 +232,28 @@ msgstr "" " -o=? Nastavà libovolnou volbu, napÅ™. -o dir::cache=/tmp\n" "VÃce informacà viz manuálové stránky apt-cache(8) a apt.conf(5).\n" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: cmdline/apt-cdrom.cc:76 msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "Zadejte prosÃm název tohoto média, napÅ™. „Debian 5.0.3 Disk 1“" -#: cmdline/apt-cdrom.cc:104 +#: cmdline/apt-cdrom.cc:91 msgid "Please insert a Disc in the drive and press enter" msgstr "Vložte prosÃm médium do mechaniky a stisknÄ›te enter" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, c-format msgid "Failed to mount '%s' to '%s'" msgstr "Selhalo pÅ™ipojenà „%s“ na „%s“" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Tento proces opakujte pro vÅ¡echna zbývajÃcà média." @@ -288,47 +289,47 @@ msgstr "" " -c=? NaÄte tento konfiguraÄnà soubor\n" " -o=? Nastavà libovolnou volbu, napÅ™. -o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:244 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format msgid "Can not find a package for architecture '%s'" msgstr "Nelze najÃt balÃk vyhovujÃcà regulárnÃmu výrazu „%s“" -#: cmdline/apt-get.cc:326 +#: cmdline/apt-get.cc:327 #, fuzzy, c-format msgid "Can not find a package '%s' with version '%s'" msgstr "Nelze najÃt balÃk vyhovujÃcà regulárnÃmu výrazu „%s“" -#: cmdline/apt-get.cc:329 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format msgid "Can not find a package '%s' with release '%s'" msgstr "Nelze najÃt balÃk vyhovujÃcà regulárnÃmu výrazu „%s“" -#: cmdline/apt-get.cc:366 +#: 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:422 +#: cmdline/apt-get.cc:423 #, fuzzy, c-format msgid "Can not find version '%s' of package '%s'" msgstr "Ignoruje se nedostupná verze „%s“ balÃku „%s“" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "Nelze najÃt balÃk %s" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "%s nastaven jako instalovaný ruÄnÄ›.\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: 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:468 cmdline/apt-mark.cc:116 +#: 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." @@ -336,19 +337,19 @@ msgstr "" "Tento pÅ™Ãkaz je zastaralý, použijte mÃsto nÄ›j „apt-mark auto“ a „apt-mark " "manual“." -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: 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:573 cmdline/apt-get.cc:610 +#: 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:725 +#: 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:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "Nelze najÃt zdrojový balÃk pro %s" @@ -373,80 +374,80 @@ msgstr "" "použijte:\n" "bzr branch %s\n" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "PÅ™eskakuji dÅ™Ãve stažený soubor „%s“\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "Nelze urÄit volné mÃsto v %s" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "Na %s nemáte dostatek volného mÃsta" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "PotÅ™ebuji stáhnout %sB/%sB zdrojových archivů.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "PotÅ™ebuji stáhnout %sB zdrojových archivů.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "Staženà zdroje %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "Staženà nÄ›kterých archivů selhalo." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "Stahovánà dokonÄeno v režimu pouze stáhnout" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "PÅ™eskakuji rozbalenà již rozbaleného zdroje v %s\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "PÅ™Ãkaz pro rozbalenà „%s“ selhal.\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Zkontrolujte, zda je nainstalován balÃÄek „dpkg-dev“.\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "PÅ™Ãkaz pro sestavenà „%s“ selhal.\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "Synovský proces selhal" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "" "MusÃte zadat alespoň jeden balÃk, pro který budou kontrolovány závislosti " "pro sestavenÃ" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -455,17 +456,17 @@ msgstr "" "O architektuÅ™e %s nejsou známy žádné informace. Pro nastavenà si pÅ™eÄtÄ›te " "Äást APT::Architectures v manuálové stránce apt.conf(5)" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Nelze zÃskat závislosti pro sestavenà %s" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s nemá žádné závislosti pro sestavenÃ.\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -474,20 +475,20 @@ msgstr "" "závislost %s pro %s nemůže být splnÄ›na, protože %s nenà na balÃcÃch „%s“ " "dovolena" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, 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:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Selhalo splnÄ›nà závislosti %s pro %s: Instalovaný balÃk %s je pÅ™ÃliÅ¡ nový" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -496,7 +497,7 @@ msgstr "" "závislost %s pro %s nemůže být splnÄ›na, protože kandidátská verze balÃku %s " "nesplňuje požadavek na verzi" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -505,30 +506,30 @@ msgstr "" "závislost %s pro %s nemůže být splnÄ›na, protože balÃk %s nemá kandidátskou " "verzi" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Selhalo splnÄ›nà závislosti %s pro %s: %s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Závislosti pro sestavenà %s nemohly být splnÄ›ny." -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "Chyba pÅ™i zpracovánà závislostà pro sestavenÃ" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, c-format msgid "Changelog for %s (%s)" msgstr "Seznam zmÄ›n %s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "Podporované moduly:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -615,53 +616,75 @@ msgstr "" "a apt.conf(5).\n" " Tato APT má schopnosti svaté krávy.\n" -#: cmdline/apt-mark.cc:57 +#: 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" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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 nemůže být oznaÄen, protože nenà nainstalovaný.\n" -#: cmdline/apt-mark.cc:63 +#: 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" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, c-format msgid "%s was already set to automatically installed.\n" msgstr "%s již byl nastaven jako instalovaný automaticky.\n" -#: cmdline/apt-mark.cc:230 +#: 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:232 +#: 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" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "ÄŒekal jsem na %s, ale nebyl tam" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: 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" -#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, 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:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "SpuÅ¡tÄ›nà dpkg selhalo. Jste root?" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 #, fuzzy msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" @@ -707,7 +730,7 @@ msgstr "" " -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)." -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -755,52 +778,52 @@ msgstr "Nelze odpojit CD-ROM v %s - možná se stále použÃvá." msgid "Disk not found." msgstr "Disk nebyl nalezen." -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "Soubor nebyl nalezen" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 msgid "Failed to stat" msgstr "Selhalo vyhodnocenÃ" -#: methods/copy.cc:82 methods/gzip.cc:113 methods/rred.cc:606 +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 msgid "Failed to set modification time" msgstr "Nelze nastavit Äas modifikace" -#: methods/file.cc:47 +#: methods/file.cc:48 msgid "Invalid URI, local URIS must not start with //" msgstr "Neplatné URI, lokálnà URI nesmà zaÄÃnat na //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "PÅ™ihlaÅ¡uji se" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "Nelze urÄit jméno druhé strany" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "Nelze urÄit lokálnà jméno" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: 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" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "USER selhal, server Å™ekl: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS selhal, server Å™ekl: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -808,121 +831,123 @@ msgstr "" "Byl zadán proxy server, ale ne pÅ™ihlaÅ¡ovacà skript. Acquire::ftp::ProxyLogin " "je prázdný." -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "PÅ™Ãkaz „%s“ pÅ™ihlaÅ¡ovacÃho skriptu selhal, server Å™ekl: %s" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE selhal, server Å™ekl: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 msgid "Connection timeout" msgstr "ÄŒas spojenà vyprÅ¡el" -#: methods/ftp.cc:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "Server uzavÅ™el spojenÃ" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "Chyba ÄtenÃ" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "OdpovÄ›Ä pÅ™eplnila buffer." -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "PoruÅ¡enà protokolu" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "Chyba zápisu" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 msgid "Could not create a socket" msgstr "Nelze vytvoÅ™it socket" -#: methods/ftp.cc:707 +#: methods/ftp.cc:712 msgid "Could not connect data socket, connection timed out" msgstr "Nelze pÅ™ipojit datový socket, Äas spojenà vyprÅ¡el" -#: methods/ftp.cc:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "Selhalo" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "Nelze pÅ™ipojit pasivnà socket." -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo nezÃskal naslouchajÃcà socket" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "Nelze navázat socket" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "Nelze naslouchat na socketu" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "Nelze urÄit jméno socketu" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "Nelze odeslat pÅ™Ãkaz PORT" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Neznámá rodina adres %u (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT selhal, server Å™ekl: %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "Spojenà datového socketu vyprÅ¡elo" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "Nelze pÅ™ijmout spojenÃ" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: 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" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Nelze stáhnout soubor, server Å™ekl „%s“" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "Datový socket vyprÅ¡el" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "PÅ™enos dat selhal, server Å™ekl „%s“" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "Dotaz" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "Nelze vyvolat " @@ -958,7 +983,7 @@ msgstr "Nelze se pÅ™ipojit k %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "PÅ™ipojuji se k %s" @@ -988,36 +1013,36 @@ msgstr "NÄ›co hodnÄ› oÅ¡klivého se pÅ™ihodilo pÅ™i pÅ™ekladu „%s:%s“ (%i - msgid "Unable to connect to %s:%s:" msgstr "Nelze se pÅ™ipojit k %s:%s:" -#: methods/gpgv.cc:166 +#: 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?!" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "Byl zaznamenán nejménÄ› jeden neplatný podpis. " -#: methods/gpgv.cc:172 +#: 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:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "Neznámá chyba pÅ™i spouÅ¡tÄ›nà gpgv" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "NásledujÃcà podpisy jsou neplatné:\n" -#: methods/gpgv.cc:229 +#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@ -1025,147 +1050,147 @@ msgstr "" "NásledujÃcà podpisy nemohly být ověřeny, protože nenà dostupný veÅ™ejný " "klÃÄ:\n" -#: methods/gzip.cc:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "Prázdné soubory nejsou platnými archivy" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "Chyba zápisu do souboru" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "Chyba Ätenà ze serveru. Druhá strana zavÅ™ela spojenÃ" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "Chyba Ätenà ze serveru" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "Chyba zápisu do souboru" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "VýbÄ›r selhal" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "ÄŒas spojenà vyprÅ¡el" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "Chyba zápisu do výstupnÃho souboru" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "ÄŒekám na hlaviÄky" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "Chybná hlaviÄka" -#: methods/server.cc:139 methods/server.cc:146 +#: 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:176 +#: 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:199 +#: 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:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "Tento HTTP server má porouchanou podporu rozsahů" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "Neznámý formát data" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "Å patné datové záhlavÃ" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "Spojenà selhalo" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "VnitÅ™nà chyba" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "VnitÅ™nà chyba, InstallPackages byl zavolán s poruÅ¡enými balÃky!" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "BalÃk je potÅ™eba odstranit ale funkce Odstranit je vypnuta." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "VnitÅ™nà chyba, tÅ™ÃdÄ›nà nedobÄ›hlo do konce" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +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" #. TRANSLATOR: The required 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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "PotÅ™ebuji stáhnout %sB/%sB archivů.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:171 +#: apt-private/private-install.cc:159 #, c-format msgid "Need to get %sB of archives.\n" msgstr "PotÅ™ebuji stáhnout %sB archivů.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:178 +#: apt-private/private-install.cc:166 #, 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" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:183 +#: apt-private/private-install.cc:171 #, 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" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "V %s nemáte dostatek volného mÃsta." -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "Vyskytly se problémy a -y bylo použito bez --force-yes" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Udáno „pouze triviálnÓ, ovÅ¡em toto nenà triviálnà operace." #. 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Ano, udÄ›lej to tak, jak Å™Ãkám!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1176,19 +1201,19 @@ msgstr "" "Pro pokraÄovánà opiÅ¡te frázi „%s“\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "PÅ™eruÅ¡eno." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "Chcete pokraÄovat?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "NÄ›které soubory nemohly být staženy" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1196,19 +1221,19 @@ msgstr "" "Nelze stáhnout nÄ›které archivy. Možná spusÅ¥te apt-get update nebo zkuste --" "fix-missing?" -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing a výmÄ›na média nejsou momentálnÄ› podporovány" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "Nelze opravit chybÄ›jÃcà balÃky." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "PÅ™eruÅ¡uji instalaci." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1225,15 +1250,15 @@ 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-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Poznámka: Toto má svůj důvod a dÄ›je se automaticky v dpkg." -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "NemÄ›li bychom mazat vÄ›ci, nemůžu spustit AutoRemover" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1251,15 +1276,15 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 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:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "VnitÅ™nà chyba, AutoRemover pokazil vÄ›ci" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1271,7 +1296,7 @@ msgstr[1] "" msgstr[2] "" "NásledujÃcà balÃky byly nainstalovány automaticky a již nejsou potÅ™eba:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1280,18 +1305,18 @@ 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:530 +#: apt-private/private-install.cc:518 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Pro jeho odstranÄ›nà použijte „apt-get autoremove“." msgstr[1] "Pro jejich odstranÄ›nà použijte „apt-get autoremove“." msgstr[2] "Pro jejich odstranÄ›nà použijte „apt-get autoremove“." -#: apt-private/private-install.cc:624 +#: apt-private/private-install.cc:612 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Pro opravenà následujÃcÃch můžete spustit „apt-get -f install“:" -#: apt-private/private-install.cc:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1299,7 +1324,7 @@ msgstr "" "NesplnÄ›né závislosti. Zkuste spustit „apt-get -f install“ bez balÃků (nebo " "navrhnÄ›te Å™eÅ¡enÃ)." -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1310,145 +1335,145 @@ msgstr "" "nemožnou situaci, nebo, pokud použÃváte nestabilnà distribuci, že\n" "vyžadované balÃky jeÅ¡tÄ› nebyly vytvoÅ™eny nebo pÅ™esunuty z PÅ™Ãchozà fronty." -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "PoÅ¡kozené balÃky" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "NásledujÃcà extra balÃky budou instalovány:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "Navrhované balÃky:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "DoporuÄované balÃky:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "VAROVÃNÃ: NásledujÃcà balÃky nemohou být autentizovány!" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "AutentizaÄnà varovánà potlaÄeno.\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "NÄ›které balÃky nemohly být autentizovány" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "Instalovat tyto balÃky bez ověřenÃ?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Selhalo staženà %s %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr "[Instalovaný]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr "[Instalovaný]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr "[Instalovaný]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr "[Instalovaný]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "NásledujÃcà balÃky majà nesplnÄ›né závislosti:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "ale %s je nainstalován" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "ale %s se bude instalovat" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "ale nedá se nainstalovat" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "ale je to virtuálnà balÃk" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "ale nenà nainstalovaný" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "ale nebude se instalovat" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " nebo" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "NásledujÃcà NOVÉ balÃky budou nainstalovány:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "NásledujÃcà balÃky budou ODSTRANÄšNY:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "NásledujÃcà balÃky jsou podrženy v aktuálnà verzi:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "NásledujÃcà balÃky budou aktualizovány:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "NásledujÃcà balÃky budou DEGRADOVÃNY:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "NásledujÃcà podržené balÃky budou zmÄ›nÄ›ny:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (kvůli %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1456,27 +1481,27 @@ 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-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu aktualizováno, %lu novÄ› instalováno, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu pÅ™einstalováno, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu degradováno, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu k odstranÄ›nà a %lu neaktualizováno.\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu instalováno nebo odstranÄ›no pouze ÄásteÄnÄ›.\n" @@ -1485,7 +1510,7 @@ msgstr "%lu instalováno nebo odstranÄ›no pouze ÄásteÄnÄ›.\n" #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "[Y/n]" @@ -1493,92 +1518,92 @@ msgstr "[Y/n]" #. 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:702 +#: apt-private/private-output.cc:708 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:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "Y" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "N" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "Chyba pÅ™i kompilaci regulárnÃho výrazu - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "Opravuji závislosti…" -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " selhalo." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "Nelze opravit závislosti" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "Nelze minimalizovat sadu pro aktualizaci" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " Hotovo" -#: apt-private/private-cachefile.cc:102 +#: 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-private/private-cachefile.cc:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "NesplnÄ›né závislosti. Zkuste použÃt -f." -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "PÅ™Ãkaz update neakceptuje žádné argumenty" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "PropoÄÃtávám aktualizaci… " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "VnitÅ™nà chyba, AllUpgrade pokazil vÄ›ci" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "Hotovo" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1590,43 +1615,43 @@ msgstr "" " 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-sources.cc:45 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format msgid "Failed to parse %s. Edit again? " msgstr "Selhalo pÅ™ejmenovánà %s na %s" -#: apt-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "CÃl " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "Mám:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "Ign " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Err " -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "Staženo %sB za %s (%sB/s)\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [Pracuji]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1639,19 +1664,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "Nelze ÄÃst %s" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "Nelze pÅ™ejÃt do %s" @@ -1680,11 +1705,11 @@ msgstr "Nelze ÄÃst soubor se zrcadly „%s“" msgid "[Mirror: %s]" msgstr "[Zrcadlo: %s]" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: 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:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "Spojenà bylo pÅ™edÄasnÄ› ukonÄeno" @@ -1745,40 +1770,45 @@ msgstr "" " -c=? NaÄte tento konfiguraÄnà soubor\n" " -o=? Nastavà libovolnou volbu, napÅ™. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Nelze vyhodnotit %s" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "Nelze zapsat do %s" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Nelze urÄit verzi programu debconf. Je debconf nainstalován?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "Seznam rozÅ¡ÃÅ™enà balÃku je pÅ™ÃliÅ¡ dlouhý" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "Chyba zpracovánà adresáře %s" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "Seznam zdrojových rozÅ¡ÃÅ™enà je pÅ™ÃliÅ¡ dlouhý" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "Chyba pÅ™i zapisovánà hlaviÄky do souboru" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "Chyba pÅ™i zpracovávánà obsahu %s" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1858,26 +1888,26 @@ msgstr "" " -c=? NaÄte tento konfiguraÄnà soubor\n" " -o=? Nastavà libovolnou volbu" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "Žádný výbÄ›r nevyhovÄ›l" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "NÄ›které soubory chybà v balÃkovém souboru skupiny %s" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, 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:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "DB je stará, zkouÅ¡Ãm aktualizovat %s" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -1885,192 +1915,192 @@ 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:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Nelze otevÅ™Ãt DB soubor %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "Nelze vyhodnotit %s" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "Archiv nemá kontrolnà záznam" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "Nelze zÃskat kurzor" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: Nelze ÄÃst adresář %s\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: Nelze vyhodnotit %s\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "E: Chyby se týkajà souboru " -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "Chyba pÅ™i zjišťovánà %s" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "Průchod stromem selhal" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "Nelze otevÅ™Ãt %s" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr "Odlinkovánà %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "Nelze pÅ™eÄÃst link %s" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "Nelze odlinkovat %s" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** NezdaÅ™ilo se slinkovat %s s %s" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Odlinkovacà limit %sB dosažen.\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "Archiv nemá pole Package" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %s nemá žádnou položku pro override\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " správce %s je %s, ne %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr " %s nemá žádnou zdrojovou položku pro override\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s nemá ani žádnou binárnà položku pro override\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - Selhal pokus o pÅ™idÄ›lenà pamÄ›ti" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "Nelze otevÅ™Ãt %s" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "Zkomolený override soubor %s, řádek %llu #1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "NezdaÅ™ilo se pÅ™eÄÃst override soubor %s" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, c-format msgid "Malformed override %s line %llu #1" msgstr "Zkomolený override soubor %s, řádek %llu #1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, c-format msgid "Malformed override %s line %llu #2" msgstr "Zkomolený override soubor %s, řádek %llu #2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, c-format msgid "Malformed override %s line %llu #3" msgstr "Zkomolený override soubor %s, řádek %llu #3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "Neznámý kompresnà algoritmus „%s“" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "Komprimovaný výstup %s potÅ™ebuje kompresnà sadu" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "Selhalo vytvoÅ™enà FILE*" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "Volánà fork() se nezdaÅ™ilo" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "Komprimovat potomka" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "Internà chyba, nezdaÅ™ilo se vytvoÅ™it %s" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "V/V operace s podprocesem/souborem selhala" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "Chyba Ätenà pÅ™i výpoÄtu MD5" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "Problém s odlinkovánÃm %s" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "Selhalo pÅ™ejmenovánà %s na %s" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -2122,157 +2152,157 @@ msgstr "" " -c=? NaÄte tento konfiguraÄnà soubor\n" " -o=? Nastavà libovolnou volbu, napÅ™. -o dir::cache=/tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "Selhalo vytvoÅ™enà roury" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "Selhalo spuÅ¡tÄ›nà gzipu " -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "PoruÅ¡ený archiv" -#: apt-inst/contrib/extracttar.cc:201 +#: 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:306 +#: apt-inst/contrib/extracttar.cc:308 #, c-format msgid "Unknown TAR header type %u, member %s" msgstr "Neznámá hlaviÄka TARu typ %u, Älen %s" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "Neplatný podpis archivu" -#: apt-inst/contrib/arfile.cc:82 +#: apt-inst/contrib/arfile.cc:84 msgid "Error reading archive member header" msgstr "Chyba pÅ™i Ätenà záhlavà prvku archivu" -#: apt-inst/contrib/arfile.cc:94 +#: apt-inst/contrib/arfile.cc:96 #, c-format msgid "Invalid archive member header %s" msgstr "Neplatné záhlavà prvku archivu %s" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "Neplatné záhlavà prvku archivu" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "Archiv je pÅ™ÃliÅ¡ krátký" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "Chyba pÅ™i Ätenà hlaviÄek archivu" -#: apt-inst/filelist.cc:382 +#: 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:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "Nelze lokalizovat hashovacà prvek!" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "Nelze alokovat diverzi" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "VnitÅ™nà chyba pÅ™i AddDiversion" -#: apt-inst/filelist.cc:479 +#: apt-inst/filelist.cc:477 #, c-format msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" msgstr "Pokus o pÅ™epsánà diverze, %s -> %s a %s/%s" -#: apt-inst/filelist.cc:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "Dvojà pÅ™idánà diverze %s -> %s" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "Duplicitnà konfiguraÄnà soubor %s/%s" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format msgid "Failed to write file %s" msgstr "Selhal zápis souboru %s" -#: apt-inst/dirstream.cc:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "Selhalo zavÅ™enà souboru %s" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format msgid "The path %s is too long" msgstr "Cesta %s je pÅ™ÃliÅ¡ dlouhá" -#: apt-inst/extract.cc:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "Rozbaluji %s vÃcekrát" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "Adresář %s je odklonÄ›n" -#: apt-inst/extract.cc:145 +#: apt-inst/extract.cc:152 #, 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:155 apt-inst/extract.cc:299 +#: 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-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "Adresář %s bude nahrazen neadresářem" -#: apt-inst/extract.cc:282 +#: 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-inst/extract.cc:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "Cesta je pÅ™ÃliÅ¡ dlouhá" -#: apt-inst/extract.cc:414 +#: apt-inst/extract.cc:421 #, c-format msgid "Overwrite package match with no version for %s" msgstr "PÅ™epsat vyhovujÃcà balÃk bez udánà verze pro %s" -#: apt-inst/extract.cc:431 +#: apt-inst/extract.cc:438 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "Soubor %s/%s pÅ™episuje ten z balÃku %s" -#: apt-inst/extract.cc:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "Nelze vyhodnotit %s" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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 "Toto nenà platný DEB archiv, chybà Äást „%s“" -#: apt-inst/deb/debfile.cc:124 +#: apt-inst/deb/debfile.cc:132 #, c-format msgid "Internal error, could not locate member %s" msgstr "VnitÅ™nà chyba, nemohu najÃt Äást %s" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "Nezpracovatelný kontrolnà soubor" @@ -2331,484 +2361,489 @@ msgstr "" "zakázáno." #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lid %lih %limin %lis" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "%lih %limin %lis" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "%limin %lis" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "%lis" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "VýbÄ›r %s nenalezen" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Nerozpoznaná zkratka typu: „%c“" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "OtevÃrám konfiguraÄnà soubor %s" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Syntaktická chyba %s:%u: Blok nezaÄÃná jménem." -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Syntaktická chyba %s:%u: Zkomolená znaÄka" -#: apt-pkg/contrib/configuration.cc:821 +#: 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-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "Syntaktická chyba %s:%u: Direktivy je možné provádÄ›t pouze na nejvyššà úrovni" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, 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-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Syntaktická chyba %s:%u: Zahrnuto odtud" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Syntaktická chyba %s:%u: Nepodporovaná direktiva „%s“" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-pkg/contrib/configuration.cc:900 #, 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Ã" -#: apt-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Syntaktická chyba %s:%u: Na konci souboru je zbyteÄné smetÃ" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s… Chyba!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s… Hotovo" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "…" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, c-format msgid "%c%s... %u%%" msgstr "%c%s… %u%%" -#: apt-pkg/contrib/cmndline.cc:116 +#: 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-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: 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-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: 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-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "Parametr %s: Zadánà konfiguraÄnà položky musà obsahovat =<hodn>." -#: apt-pkg/contrib/cmndline.cc:273 +#: 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-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "Volba „%s“ je pÅ™ÃliÅ¡ dlouhá" -#: apt-pkg/contrib/cmndline.cc:336 +#: 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-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "Neplatná operace %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format msgid "Unable to stat the mount point %s" msgstr "Nelze vyhodnotit pÅ™Ãpojný bod %s" -#: apt-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "NezdaÅ™ilo se vyhodnotit cdrom" -#: apt-pkg/contrib/fileutl.cc:95 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problém pÅ™i zavÃránà gzip souboru %s" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "NepoužÃvám zamykánà pro zámkový soubor %s, který je pouze pro ÄtenÃ" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "NeÅ¡lo otevÅ™Ãt zámkový soubor %s" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, 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-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "Nelze zÃskat zámek %s" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, 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-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, 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-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, 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-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, 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-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Podproces %s obdržel chybu segmentace." -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, c-format msgid "Sub-process %s received signal %u." msgstr "Podproces %s obdržel signál %u." -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 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-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Podproces %s neoÄekávanÄ› skonÄil" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problém pÅ™i zavÃránà gzip souboru %s" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "Nelze otevÅ™Ãt soubor %s" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, c-format msgid "Could not open file descriptor %d" msgstr "Nelze otevÅ™Ãt popisovaÄ souboru %d" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "Nelze vytvoÅ™it podproces IPC" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "NezdaÅ™ilo se spustit kompresor " -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, 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-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, c-format msgid "write, still have %llu to write but couldn't" msgstr "zápis, stále mám %llu k zápisu, ale nejde to" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, c-format msgid "Problem closing the file %s" msgstr "Problém pÅ™i zavÃránà souboru %s" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, c-format msgid "Problem renaming the file %s to %s" msgstr "Problém pÅ™i pÅ™ejmenovánà souboru %s na %s" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, c-format msgid "Problem unlinking the file %s" msgstr "Problém pÅ™i odstraňovánà souboru %s" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "Problém pÅ™i synchronizovánà souboru" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "pÅ™ejmenovánà selhalo, %s (%s -> %s)." + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, c-format msgid "No keyring installed in %s." msgstr "V %s nenà nainstalována žádná klÃÄenka." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "Cache balÃků je prázdná" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "Cache soubor balÃků je poÅ¡kozen" -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "Cache soubor balÃků má nekompatibilnà verzi" -#: apt-pkg/pkgcache.cc:162 +#: 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ý" -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, 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:172 +#: 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:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "Závisà na" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "PÅ™edzávisà na" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "Navrhuje" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "DoporuÄuje" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "Koliduje s" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "Nahrazuje" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "Zastarává" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "PoruÅ¡uje" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "RozÅ¡iÅ™uje" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "důležitý" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "vyžadovaný" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "standardnÃ" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "volitelný" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "extra" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "Vytvářà se strom závislostÃ" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "Kandidátské verze" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "Generovánà závislostÃ" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 msgid "Reading state information" msgstr "ÄŒtu stavové informace" -#: apt-pkg/depcache.cc:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "Nelze otevÅ™Ãt stavový soubor %s" -#: apt-pkg/depcache.cc:250 +#: apt-pkg/depcache.cc:256 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Nelze zapsat doÄasný stavový soubor %s" -#: apt-pkg/tagfile.cc:138 +#: apt-pkg/tagfile.cc:140 #, c-format msgid "Unable to parse package file %s (1)" msgstr "Nelze zpracovat soubor %s (1)" -#: apt-pkg/tagfile.cc:235 +#: apt-pkg/tagfile.cc:237 #, c-format msgid "Unable to parse package file %s (2)" msgstr "Nelze zpracovat soubor %s (2)" -#: apt-pkg/sourcelist.cc:118 +#: 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-pkg/sourcelist.cc:161 +#: 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])" -#: apt-pkg/sourcelist.cc:164 +#: 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-pkg/sourcelist.cc:175 +#: 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Ã)" -#: apt-pkg/sourcelist.cc:181 +#: 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ÃÄ)" -#: apt-pkg/sourcelist.cc:184 +#: 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)" -#: apt-pkg/sourcelist.cc:197 +#: 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)" -#: apt-pkg/sourcelist.cc:199 +#: 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)" -#: apt-pkg/sourcelist.cc:202 +#: 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)" -#: apt-pkg/sourcelist.cc:208 +#: 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)" -#: apt-pkg/sourcelist.cc:215 +#: apt-pkg/sourcelist.cc:224 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (zpracovánà dist)" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "OtevÃrám %s" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "Řádek %u v seznamu zdrojů %s je pÅ™ÃliÅ¡ dlouhý." -#: apt-pkg/sourcelist.cc:362 +#: apt-pkg/sourcelist.cc:371 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Zkomolený řádek %u v seznamu zdrojů %s (typ)" -#: apt-pkg/sourcelist.cc:366 +#: apt-pkg/sourcelist.cc:375 #, 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ý" -#: apt-pkg/sourcelist.cc:407 +#: 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-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2817,12 +2852,12 @@ msgstr "" "Nelze spustit okamžitou konfiguraci balÃku „%s“. Podrobnosti naleznete v man " "5 apt.conf v Äásti APT::Immediate-Configure. (%d)" -#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, c-format msgid "Could not configure '%s'. " msgstr "Nelze nastavit „%s“." -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2833,18 +2868,18 @@ msgstr "" "smyÄce v Conflicts/Pre-Depends. To je Äasto Å¡patné, ale pokud to skuteÄnÄ› " "chcete udÄ›lat, aktivujte možnost APT::Force-LoopBreak." -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "Indexový typ souboru „%s“ nenà podporován" -#: apt-pkg/algorithms.cc:266 +#: 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-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2852,89 +2887,89 @@ msgstr "" "Chyba, pkgProblemResolver::Resolve vytvářà poruchy, to může být způsobeno " "podrženými balÃky." -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "Nelze opravit problémy, nÄ›které balÃky držÃte v porouchaném stavu." -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, c-format msgid "List directory %spartial is missing." msgstr "Adresář seznamů %spartial chybÃ." -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, c-format msgid "Archives directory %spartial is missing." msgstr "Archivnà adresář %spartial chybÃ." -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, c-format msgid "Unable to lock directory %s" msgstr "Nelze uzamknout adresář %s" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Stahuji soubor %li z %li (%s zbývá)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "Stahuji soubor %li z %li" -#: apt-pkg/acquire-worker.cc:113 +#: 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." -#: apt-pkg/acquire-worker.cc:115 +#: 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" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "Metoda %s nebyla spuÅ¡tÄ›na správnÄ›" -#: apt-pkg/acquire-worker.cc:452 +#: 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." -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "BalÃÄkovacà systém „%s“ nenà podporován" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "Nebylo možno urÄit vhodný typ balÃÄkovacÃho systému" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "Nebylo možno vyhodnotit %s." -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "Do sources.list musÃte zadat „zdrojové“ URI" -#: apt-pkg/cachefile.cc:87 +#: 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." -#: apt-pkg/cachefile.cc:91 +#: 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:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "Nelze pÅ™eÄÃst seznam zdrojů." -#: apt-pkg/policy.cc:75 +#: apt-pkg/policy.cc:83 #, c-format msgid "" "The value '%s' is invalid for APT::Default-Release as such a release is not " @@ -2943,97 +2978,92 @@ msgstr "" "Hodnota „%s“ nenà v APT::Default-Release platná, protože toto vydánà nenà " "dostupné v sources.list" -#: apt-pkg/policy.cc:414 +#: 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:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "NerozumÃm vypÃchnutà typu %s" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "Pro vypÃchnutà nebyla zadána žádná (nebo nulová) priorita" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 msgid "Cache has an incompatible versioning system" msgstr "Cache má nekompatibilnà systém správy verzÃ" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Chyba pÅ™i zpracovánà %s (%s%d)" -#: apt-pkg/pkgcachegen.cc:251 +#: 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." -#: apt-pkg/pkgcachegen.cc:254 +#: 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." -#: apt-pkg/pkgcachegen.cc:257 +#: 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." -#: apt-pkg/pkgcachegen.cc:260 +#: 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." -#: apt-pkg/pkgcachegen.cc:570 +#: 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" -#: apt-pkg/pkgcachegen.cc:1199 +#: 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" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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ů" -#: apt-pkg/pkgcachegen.cc:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "Collecting File poskytuje" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: 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" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "pÅ™ejmenovánà selhalo, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "Neshoda kontrolnÃch souÄtů" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "Velikosti nesouhlasÃ" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "Neplatná operace %s" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, c-format msgid "" "Unable to find expected entry '%s' in Release file (Wrong sources.list entry " @@ -3042,16 +3072,16 @@ msgstr "" "V souboru Release nelze najÃt oÄekávanou položku „%s“ (chybný sources.list " "nebo poruÅ¡ený soubor)" -#: apt-pkg/acquire-item.cc:1586 +#: apt-pkg/acquire-item.cc:1595 #, 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:1628 +#: apt-pkg/acquire-item.cc:1637 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:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " @@ -3060,12 +3090,12 @@ msgstr "" "Soubor Release pro %s již expiroval (neplatný od %s). Aktualizace z tohoto " "repositáře se nepoužijÃ." -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Konfliktnà distribuce: %s (oÄekáváno %s, obdrženo %s)" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3075,12 +3105,12 @@ msgstr "" "se použijà pÅ™edchozà indexové soubory. Chyba GPG: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "Chyba GPG: %s: %s" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3089,83 +3119,79 @@ 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)" -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, 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“" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, 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." -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, c-format msgid "Unable to parse Release file %s" msgstr "Nelze zpracovat Release soubor %s" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, c-format msgid "No sections in Release file %s" msgstr "Release soubor %s neobsahuje žádné sekce" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "Release soubor %s neobsahuje Hash záznam" -#: apt-pkg/indexrecords.cc:125 +#: 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-pkg/indexrecords.cc:144 +#: 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-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "Blok výrobce %s neobsahuje otisk klÃÄe" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "PoužÃvám pÅ™Ãpojný bod %s\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "Odpojuji CD-ROM\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "Odpojuji CD-ROM…\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "ÄŒekám na disk…\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "PÅ™ipojuji CD-ROM…\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " msgstr "Rozpoznávám… " -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "Uložený název: %s \n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "Odpojuji CD-ROM…\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" msgstr "Hledám na disku indexové soubory…\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3174,7 +3200,7 @@ msgstr "" "Nalezeny indexy balÃků (%zu), indexy zdrojů (%zu), indexy popisů (%zu) a " "podpisy (%zu)\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" @@ -3182,16 +3208,16 @@ msgstr "" "Nenalezeny žádné balÃky. Možná to nenà disk s Debianem, nebo je pro jinou " "architekturu?" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "Nalezený název: „%s“\n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "Nejedná se o platné jméno, zkuste to znovu.\n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3200,34 +3226,34 @@ msgstr "" "Tento disk se nazývá: \n" "„%s“\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "KopÃruji seznamy balÃků…" -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "Zapisuji nový seznam balÃků\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "Seznamy zdrojů na tomto disku jsou:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format msgid "Wrote %i records.\n" msgstr "Zapsáno %i záznamů.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:777 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Zapsáno %i záznamů s chybÄ›jÃcÃmi soubory (%i).\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:780 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Zapsáno %i záznamů s nesouhlasÃcÃmi soubory (%i).\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "Zapsáno %i záznamů s chybÄ›jÃcÃmi (%i) a nesouhlasÃcÃmi (%i) soubory.\n" @@ -3242,37 +3268,37 @@ msgstr "Nelze najÃt autentizaÄnà záznam pro: %s" msgid "Hash mismatch for: %s" msgstr "Neshoda kontrolnÃch souÄtů pro: %s" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Vydánà „%s“ pro „%s“ nebylo nalezeno" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Verze „%s“ pro „%s“ nebyla nalezena" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, c-format msgid "Couldn't find task '%s'" msgstr "Nelze najÃt úlohu „%s“" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, c-format msgid "Couldn't find any package by regex '%s'" msgstr "Nelze najÃt balÃk vyhovujÃcà regulárnÃmu výrazu „%s“" -#: apt-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, 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:616 +#: apt-pkg/cacheset.cc:624 #, 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-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " @@ -3281,51 +3307,51 @@ msgstr "" "Nelze vybrat nainstalovanou ani kandidátskou verzi balÃku „%s“, protože " "žádné takové verze nemá" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, 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-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, 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-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, 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-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "Scénář odeslán Å™eÅ¡iteli" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "Požadavek odeslán Å™eÅ¡iteli" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "PÅ™Ãprava na obdrženà řeÅ¡enÃ" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 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:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "SpuÅ¡tÄ›nà externÃho Å™eÅ¡itele" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "SpouÅ¡tÃm dpkg" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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." @@ -3333,119 +3359,119 @@ msgstr "" "NÄ›které indexové soubory se nepodaÅ™ilo stáhnout. Jsou ignorovány, nebo jsou " "použity staršà verze." -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "Instaluji %s" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "Nastavuji %s" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "Odstraňuji %s" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format msgid "Completely removing %s" msgstr "KompletnÄ› odstraňuji %s" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "ZnaÄÃm si zmizenà %s" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "SpouÅ¡tÃm poinstalaÄnà spouÅ¡tÄ›Ä %s" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "Adresář „%s“ chybÃ" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format msgid "Could not open file '%s'" msgstr "Nelze otevÅ™Ãt soubor „%s“" -#: apt-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "PÅ™ipravuji %s" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "Rozbaluji %s" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "PÅ™ipravuji nastavenà %s" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "Nainstalován %s" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "PÅ™ipravuji odstranÄ›nà %s" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "OdstranÄ›n %s" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "PÅ™ipravuji úplné odstranÄ›nà %s" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "KompletnÄ› odstranÄ›n %s" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "Nelze zapsat do %s" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 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:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 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" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "problémy se závislostmi - ponechávám nezkonfigurované" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3453,7 +3479,7 @@ msgstr "" "Žádné apport hlášenà nebylo vytvoÅ™eno, protože chybová hláška naznaÄuje, že " "se jedná o chybu způsobenou pÅ™edchozà chybou." -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" @@ -3461,7 +3487,7 @@ msgstr "" "Žádné apport hlášenà nebylo vytvoÅ™eno, protože chybová hláška naznaÄuje, že " "je chyba způsobena zcela zaplnÄ›ným diskem." -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3469,7 +3495,7 @@ 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-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 #, fuzzy msgid "" "No apport report written because the error message indicates an issue on the " @@ -3478,34 +3504,34 @@ msgstr "" "Žádné apport hlášenà nebylo vytvoÅ™eno, protože chybová hláška naznaÄuje, že " "je chyba způsobena zcela zaplnÄ›ným diskem." -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" "Žádné apport hlášenà nebylo vytvoÅ™eno, protože chybová hláška naznaÄuje " "chybu V/V dpkg." -#: apt-pkg/deb/debsystem.cc:84 +#: 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-pkg/deb/debsystem.cc:87 +#: 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?" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: 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-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "Nenà uzamÄen" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: APT\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2005-06-06 13:46+0100\n" "Last-Translator: Dafydd Harries <daf@muse.19inch.net>\n" "Language-Team: Welsh <cy@pengwyn.linux.org.uk>\n" @@ -15,173 +15,174 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: cmdline/apt-cache.cc:140 +#: 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" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 #, fuzzy msgid "Total package names: " msgstr "Cyfanswm Enwau Pecynnau : " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 #, fuzzy msgid "Total package structures: " msgstr "Cyfanswm Enwau Pecynnau : " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 #, fuzzy msgid " Normal packages: " msgstr " Pecynnau Normal: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 #, fuzzy msgid " Pure virtual packages: " msgstr " Pecynnau Cwbl Rhithwir: " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 #, fuzzy msgid " Single virtual packages: " msgstr " Pecynnau Rhithwir Sengl: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 #, fuzzy msgid " Mixed virtual packages: " msgstr " Pecynnau Rhithwir Cymysg: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " Ar Goll: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 #, fuzzy msgid "Total distinct versions: " msgstr "Cyfanswm Fersiynau Gwahanol: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 #, fuzzy msgid "Total distinct descriptions: " msgstr "Cyfanswm Fersiynau Gwahanol: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 #, fuzzy msgid "Total dependencies: " msgstr "Cyfanswm Dibyniaethau: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 #, fuzzy msgid "Total ver/file relations: " msgstr "Cyfanswm perthyniadau fersiwn/ffeil: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 #, fuzzy msgid "Total Desc/File relations: " msgstr "Cyfanswm perthyniadau fersiwn/ffeil: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 #, fuzzy msgid "Total Provides mappings: " msgstr "Cyfanswm Mapiau Darpariath: " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 #, fuzzy msgid "Total globbed strings: " msgstr "Cyfanswm Llinynau Glob: " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 #, fuzzy msgid "Total dependency version space: " msgstr "Cyfanswm gofod Fersiwn Dibyniaeth: " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 #, fuzzy msgid "Total slack space: " msgstr "Cyfanswm gofod Slac: " -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 #, fuzzy msgid "Total space accounted for: " msgstr "Cyfanswm Gofod Cyfrifwyd: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: 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." -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 #, fuzzy msgid "You must give at least one search pattern" msgstr "Rhaid i chi ddarparu un patrwm yn union" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "Ni ellir lleoli'r pecyn %s" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 #, fuzzy msgid "Package files:" msgstr "Ffeiliau Pecynnau:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: 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" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 #, fuzzy msgid "Pinned packages:" msgstr "Pecynnau wedi eu Pinio:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(heb ganfod)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " Wedi Sefydlu: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " Ymgeisydd: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(dim)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 #, fuzzy msgid " Package pin: " msgstr " Pin Pecyn: " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 #, fuzzy msgid " Version table:" msgstr " Tabl Fersiynnau:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: cmdline/apt-sortpkgs.cc:147 #, fuzzy, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s ar gyfer %s %s wedi ei grynhow ar %s %s\n" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -254,19 +255,11 @@ msgstr "" " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: cmdline/apt-cdrom.cc:76 msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" -#: cmdline/apt-cdrom.cc:104 +#: cmdline/apt-cdrom.cc:91 #, fuzzy msgid "Please insert a Disc in the drive and press enter" msgstr "" @@ -274,12 +267,20 @@ msgstr "" " '%s'\n" "yn y gyrriant '%s' a gwasgwch Enter\n" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, fuzzy, c-format msgid "Failed to mount '%s' to '%s'" msgstr "Methwyd ailenwi %s at %s" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "" @@ -316,66 +317,66 @@ msgstr "" " -c=? Darllen y ffeil cyfluniad\n" " -o=? Gosod opsiwn cyfluniad mympwyol, ee -o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:244 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format msgid "Can not find a package for architecture '%s'" msgstr "Methwyd canfod pecyn %s" -#: cmdline/apt-get.cc:326 +#: cmdline/apt-get.cc:327 #, fuzzy, c-format msgid "Can not find a package '%s' with version '%s'" msgstr "Methwyd canfod pecyn %s" -#: cmdline/apt-get.cc:329 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format msgid "Can not find a package '%s' with release '%s'" msgstr "Methwyd canfod pecyn %s" -#: cmdline/apt-get.cc:366 +#: cmdline/apt-get.cc:367 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Methwyd stat() o'r rhestr pecyn ffynhonell %s" -#: cmdline/apt-get.cc:422 +#: cmdline/apt-get.cc:423 #, c-format msgid "Can not find version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "Methwyd canfod pecyn %s" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "ond mae %s yn mynd i gael ei sefydlu" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "ond mae %s yn mynd i gael ei sefydlu" -#: cmdline/apt-get.cc:468 cmdline/apt-mark.cc:116 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: 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:573 cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 msgid "Unable to lock the download directory" msgstr "Ni ellir cloi'r cyfeiriadur lawrlwytho" -#: cmdline/apt-get.cc:725 +#: cmdline/apt-get.cc:726 msgid "Must specify at least one package to fetch source for" msgstr "Rhaid penodi o leiaf un pecyn i gyrchi ffynhonell ar ei gyfer" -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "Ni ellir canfod pecyn ffynhonell ar gyfer %s" @@ -395,96 +396,96 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:840 +#: 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" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, fuzzy, c-format msgid "Couldn't determine free space in %s" msgstr "Does dim digon o le rhydd yn %s gennych" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "Does dim digon o le rhydd yn %s gennych" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Rhaid cyrchu %sB/%sB o archifau ffynhonell.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Rhaid cyrchu %sB o archifau ffynhonell.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, fuzzy, c-format msgid "Fetch source %s\n" msgstr "Cyrchu Ffynhonell %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "Methwyd cyrchu rhai archifau." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "Lawrlwytho yn gyflawn ac yn y modd lawrlwytho'n unig" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Yn hepgor dadbacio y ffynhonell wedi ei dadbacio eisioes yn %s\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Methodd y gorchymyn dadbacio '%s'.\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "Methodd y gorchymyn adeiladu '%s'.\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "Methodd proses plentyn" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "" "Rhaid penodi o leiaf un pecyn i wirio dibyniaethau adeiladu ar eu cyfer" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Ni ellir cyrchu manylion dibyniaeth adeiladu ar gyfer %s" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "Nid oes dibyniaethau adeiladu gan %s.\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -493,7 +494,7 @@ msgstr "" "Ni ellir bodloni dibyniaeth %s ar gyfer %s oherwydd ni ellir canfod y pecyn " "%s" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -502,14 +503,14 @@ msgstr "" "Ni ellir bodloni dibyniaeth %s ar gyfer %s oherwydd ni ellir canfod y pecyn " "%s" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Methwyd bodloni dibynniaeth %s am %s: Mae'r pecyn sefydliedig %s yn rhy " "newydd" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -518,7 +519,7 @@ msgstr "" "Ni ellir bodloni'r dibyniaeth %s ar gyfer %s oherwydd does dim fersiwn sydd " "ar gael o'r pecyn %s yn gallu bodloni'r gofynion ferswin" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -527,32 +528,32 @@ msgstr "" "Ni ellir bodloni dibyniaeth %s ar gyfer %s oherwydd ni ellir canfod y pecyn " "%s" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Methwyd bodloni dibyniaeth %s am %s: %s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Methwyd bodloni'r dibyniaethau adeiladu ar gyfer %s." -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "Methwyd prosesu dibyniaethau adeiladu" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "Yn cysylltu i %s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 #, fuzzy msgid "Supported modules:" msgstr "Modylau a Gynhelir:" # FIXME: split -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -639,53 +640,75 @@ msgstr "" "\n" " Mae gan yr APT hwn bŵerau buwch hudol.\n" -#: cmdline/apt-mark.cc:57 +#: 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" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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 "ond nid yw wedi ei sefydlu" -#: cmdline/apt-mark.cc:63 +#: 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" -#: cmdline/apt-mark.cc:65 +#: 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" -#: cmdline/apt-mark.cc:230 +#: 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" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, fuzzy, c-format msgid "%s was already not hold.\n" msgstr "Mae %s y fersiwn mwyaf newydd eisioes.\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, fuzzy, c-format msgid "Waited for %s but it wasn't there" msgstr "Arhoswyd am %s ond nid oedd e yna" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: 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" -#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, fuzzy, c-format msgid "Canceled hold on %s.\n" msgstr "Methwyd agor %s" -#: cmdline/apt-mark.cc:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" "\n" @@ -712,7 +735,7 @@ msgid "" "See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -764,52 +787,52 @@ msgstr "" msgid "Disk not found." msgstr "Ffeil heb ei ganfod" -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "Ffeil heb ei ganfod" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 msgid "Failed to stat" msgstr "Methwyd stat()" -#: methods/copy.cc:82 methods/gzip.cc:113 methods/rred.cc:606 +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 msgid "Failed to set modification time" msgstr "Methwyd gosod amser newid" -#: methods/file.cc:47 +#: methods/file.cc:48 msgid "Invalid URI, local URIS must not start with //" msgstr "URI annilys: rhaid i URIs lleol beidio a cychwyn efo \"//\"" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "Yn mewngofnodi" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "Ni ellir darganfod enw'r cymar" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "Ni ellir darganfod yr enw lleol" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, fuzzy, c-format msgid "The server refused the connection and said: %s" msgstr "Gwrthodwyd y gweinydd ein cysyllriad, a dwedodd: %s" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "Methodd gorchymyn USER; meddai'r gweinydd: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "Methodd gorchymyn PASS; meddai'r gweinydd: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -818,124 +841,126 @@ msgstr "" "ProxyLogin yn wag.)" # FIXME -#: methods/ftp.cc:275 +#: 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" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "Methodd gorchymyn TYPE; meddai'r gweinydd: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 msgid "Connection timeout" msgstr "Goramser cysylltu" -#: methods/ftp.cc:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "Caeodd y gweinydd y cysylltiad" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "Gwall darllen" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "Gorlifodd ateb y byffer." -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "Llygr protocol" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "Gwall ysgrifennu" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 msgid "Could not create a socket" msgstr "Methwyd creu soced" -#: methods/ftp.cc:707 +#: methods/ftp.cc:712 msgid "Could not connect data socket, connection timed out" msgstr "Methwyd cysylltu soced data, goramserodd y cyslltiad" -#: methods/ftp.cc:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "Methwyd" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 #, fuzzy msgid "Could not connect passive socket." msgstr "Methwyd cysylltu soced goddefol" # FIXME -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "Methodd getaddrinfo gael soced gwrando" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "Methwyd rhwymo soced" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "Methwyd gwrando ar y soced" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "Methwyd canfod enw'r soced" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "Methwyd danfod gorchymyn PORT" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Teulu cyfeiriad anhysbys %u (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "Methodd gorchymyn EPRT; meddai'r gweinydd: %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "Goramserodd cysylltiad y soced data" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "Methwyd derbyn cysylltiad" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "Problem wrth stwnshio ffeil" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Methwyd cyrchu ffeil; meddai'r gweinydd '%s'" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "Goramserodd soced data" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Methodd trosgludiad data; meddai'r gweinydd '%s'" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "Ymholiad" # FIXME -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "Methwyd gweithredu " @@ -971,7 +996,7 @@ msgstr "Methwyd cysylltu i %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "Yn cysylltu i %s" @@ -1001,190 +1026,190 @@ msgstr "Digwyddodd rhywbweth hyll wrth ddatrys '%s:%s' (%i)" msgid "Unable to connect to %s:%s:" msgstr "Methwyd cysylltu i %s %s:" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "" -#: methods/gpgv.cc:172 +#: methods/gpgv.cc:174 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" #. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: 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:229 +#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" msgstr "" -#: methods/gzip.cc:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "Gwall wrth ysgrifennu at y ffeil" -#: methods/http.cc:530 +#: methods/http.cc:522 #, fuzzy msgid "Error reading from server. Remote end closed connection" msgstr "Gwall wrth ddarllen o'r gweinydd: caeodd yr ochr pell y cysylltiad" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "Gwall wrth ddarllen o'r gweinydd" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "Gwall wrth ysgrifennu at ffeil" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "Methwyd dewis" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "Goramserodd y cysylltiad" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "Gwall wrth ysgrifennu i ffeil allbwn" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "Yn aros am benawdau" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "Llinell pennawd gwael" -#: methods/server.cc:139 methods/server.cc:146 +#: 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" -#: methods/server.cc:176 +#: methods/server.cc:171 #, fuzzy msgid "The HTTP server sent an invalid Content-Length header" msgstr "Danfonodd y gweinydd HTTP bennawd Content-Length annilys" -#: methods/server.cc:199 +#: methods/server.cc:194 #, fuzzy msgid "The HTTP server sent an invalid Content-Range header" msgstr "Danfonodd y gweinydd HTTP bennawd Content-Range annilys" -#: methods/server.cc:201 +#: methods/server.cc:196 #, fuzzy msgid "This HTTP server has broken range support" msgstr "Mae cynaliaeth amrediad y gweinydd hwn wedi torri" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "Fformat dyddiad anhysbys" -#: methods/server.cc:494 +#: methods/server.cc:489 #, fuzzy msgid "Bad header data" msgstr "Data pennawd gwael" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "Methodd y cysylltiad" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "Gwall mewnol" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 #, fuzzy msgid "Packages need to be removed but remove is disabled." msgstr "Rhaid tynnu pecynnau on mae Tynnu wedi ei analluogi." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 #, fuzzy msgid "Internal error, Ordering didn't finish" msgstr "Gwall Mewnol wrth ychwanegu dargyfeiriad" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Mae angeyn cyrchu %sB/%sB o archifau.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:171 +#: apt-private/private-install.cc:159 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Mae angen cyrchu %sB o archifau.\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:178 +#: apt-private/private-install.cc:166 #, 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" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:183 +#: apt-private/private-install.cc:171 #, 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" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, 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:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 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:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Penodwyd Syml Yn Unig ond nid yw hyn yn weithred syml." #. 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Ie, gwna fel rydw i'n dweud!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, fuzzy, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1195,19 +1220,19 @@ msgstr "" "Er mwyn mynd ymlaen, teipiwch y frawddeg '%s'\n" " ?]" -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "Erthylu." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "Ydych chi eisiau mynd ymlaen?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "Methodd rhai ffeiliau lawrlwytho" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1215,20 +1240,20 @@ msgstr "" "Ni ellir cyrchu rhai archifau, efallai dylwch rhedeg apt-get update, neu " "geidio defnyddio --fix-missing?" -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "Ni chynhelir cyfnewid cyfrwng efo --fix-missing ar hyn o bryd" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "Ni ellir cywiro pecynnau ar goll." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 #, fuzzy msgid "Aborting install." msgstr "Yn Erthylu'r Sefydliad." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1238,15 +1263,15 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1262,16 +1287,16 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 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:517 +#: apt-private/private-install.cc:505 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "Gwall Mewnol, torrodd AllUpgrade bethau" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1281,7 +1306,7 @@ msgid_plural "" msgstr[0] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" msgstr[1] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1289,18 +1314,18 @@ msgid_plural "" msgstr[0] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" msgstr[1] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-install.cc:624 +#: 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:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1309,7 +1334,7 @@ msgstr "" "pecyn (neu penodwch ddatrys)" # FIXME: needs commas -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1321,150 +1346,150 @@ msgstr "" "ansefydlog, fod rhai pecynnau angenrheidiol heb gael eu creu eto neu\n" "heb gael eu symud allan o Incoming." -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "Pecynnau wedi torri" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "Caiff y pecynnau canlynol ychwanegol eu sefydlu:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "Pecynnau a awgrymmir:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "Pecynnau a argymhellir:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 #, fuzzy msgid "WARNING: The following packages cannot be authenticated!" msgstr "RHYBUDD: Ni ellir dilysu'r pecynnau canlynol yn ddiogel!" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 #, fuzzy msgid "Some packages could not be authenticated" msgstr "RHYBUDD: Ni ellir dilysu'r pecynnau canlynol yn ddiogel!" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Methwyd cyrchu %s %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [Sefydliwyd]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [Sefydliwyd]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [Sefydliwyd]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [Sefydliwyd]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "Mae gan y pecynnau canlynol ddibyniaethau heb eu bodloni:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "ond mae %s wedi ei sefydlu" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "ond mae %s yn mynd i gael ei sefydlu" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "ond ni ellir ei sefydlu" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "ond mae'n becyn rhithwir" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "ond nid yw wedi ei sefydlu" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "ond nid yw'n mynd i gael ei sefydlu" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " neu" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "Caiff y pecynnau canlynol eu TYNNU:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 #, fuzzy msgid "The following packages have been kept back:" msgstr "Mae'r pecynnau canlynol wedi eu dal yn ôl" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 #, fuzzy msgid "The following packages will be upgraded:" msgstr "Caiff y pecynnau canlynol eu uwchraddio" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 #, fuzzy msgid "The following packages will be DOWNGRADED:" msgstr "Caiff y pecynnau canlynol eu ISRADDIO" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "Caiff y pecynnau wedi eu dal canlynol eu newid:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (oherwydd %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 #, fuzzy msgid "" "WARNING: The following essential packages will be removed.\n" @@ -1474,27 +1499,27 @@ msgstr "" "NI DDYLIR gwneud hyn os nad ydych chi'n gwybod yn union beth rydych chi'n\n" "ei wneud!" -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu wedi uwchraddio, %lu newydd eu sefydlu, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu wedi ailsefydlu, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu wedi eu israddio, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, 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:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu heb eu sefydlu na tynnu'n gyflawn.\n" @@ -1503,7 +1528,7 @@ msgstr "%lu heb eu sefydlu na tynnu'n gyflawn.\n" #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "" @@ -1511,92 +1536,92 @@ msgstr "" #. 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:702 +#: apt-private/private-output.cc:708 msgid "[y/N]" msgstr "" #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "I" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "Gwall crynhoi patrwm - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "Yn cywiro dibyniaethau..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " wedi methu." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "Ni ellir cywiro dibyniaethau" -#: apt-private/private-cachefile.cc:96 +#: 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:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " Wedi Gorffen" -#: apt-private/private-cachefile.cc:102 +#: 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:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "Dibyniaethau heb eu bodloni. Ceisiwch ddefnyddio -f." -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: 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-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 #, fuzzy msgid "Calculating upgrade... " msgstr "Yn Cyfrifo'r Uwchraddiad... " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "Gwall Mewnol, torrodd AllUpgrade bethau" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "Wedi Gorffen" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1604,43 +1629,43 @@ msgid "" " so don't depend on the relevance to the real current situation!" msgstr "" -#: apt-private/private-sources.cc:45 +#: 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:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "Presennol " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "Cyrchu:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "Anwybyddu " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Gwall " -#: apt-private/acqprogress.cc:143 +#: 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:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [Gweithio]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, fuzzy, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1653,19 +1678,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "Ni ellir darllen %s" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "Ni ellir newid i %s" @@ -1694,11 +1719,11 @@ msgstr "Methwyd agor ffeil %s" msgid "[Mirror: %s]" msgstr "" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: 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:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "Caewyd y cysylltiad yn gynnar" @@ -1767,41 +1792,46 @@ msgstr "" " -c=? Darllen y ffeil cyfluniad hwn\n" " -o=? Gosod opsiwn cyfluniad mympwyol e.e. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Ni ellir gwneud stat() o %s" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "Ni ellir ysgrifennu i %s" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Ni ellir cael fersiwn debconf. Ydi debconf wedi ei sefydlu?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "Mae'r rhestr estyniad pecyn yn rhy hir." -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, fuzzy, c-format msgid "Error processing directory %s" msgstr "Gwall wrth brosesu'r cyfeiriadur %s" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "Mae'r rhestr estyniad ffynhonell yn rhy hir" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "Gwall wrth ysgrifennu pennawd i'r ffeil cynnwys" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, fuzzy, c-format msgid "Error processing contents %s" msgstr "Gwall wrth Brosesu Cynnwys %s" # FIXME: full stops -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 #, fuzzy msgid "" "Usage: apt-ftparchive [options] command\n" @@ -1883,220 +1913,220 @@ msgstr "" " -c=? Darllen y ffeil cyfluniad hwn\n" " -o=? Gosod opsiwn cyfluniad mympwyol" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "Dim dewisiadau'n cyfateb" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Mae rhai ffeiliau ar goll yn y grŵp ffeiliau pecyn `%s'" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, 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:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "Hen gronfa data, yn ceisio uwchraddio %s" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 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:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Ni ellir agor y ffeil DB2 %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "Methodd stat() o %s" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "Does dim cofnod rheoli gan yr archif" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "Ni ellir cael cyrchydd" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "Rh: Ni ellir darllen y cyfeiriadur %s\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "Rh: Ni ellir gwneud stat() o %s\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "G: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "Rh: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "G: Mae gwallau yn cymhwyso i'r ffeil " -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "Methwyd datrys %s" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "Methwyd cerdded y goeden" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "Methwyd agor %s" # FIXME -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " DatGysylltu %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "Methwyd darllen y cyswllt %s" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "Methwyd datgysylltu %s" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Methwyd cysylltu %s at %s" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Tarwyd y terfyn cyswllt %sB.\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "Doedd dim maes pecyn gan yr archif" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " Does dim cofnod gwrthwneud gan %s\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " Cynaliwr %s yw %s nid %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, fuzzy, c-format msgid " %s has no source override entry\n" msgstr " Does dim cofnod gwrthwneud gan %s\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, fuzzy, c-format msgid " %s has no binary override entry either\n" msgstr " Does dim cofnod gwrthwneud gan %s\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - Methwyd neilltuo cof" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "Ni ellir agor %s" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "Gwrthwneud camffurfiol %s llinell %lu #1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "Methwydd darllen y ffeil dargyfeirio %s" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, fuzzy, c-format msgid "Malformed override %s line %llu #1" msgstr "Gwrthwneud camffurfiol %s llinell %lu #1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, fuzzy, c-format msgid "Malformed override %s line %llu #2" msgstr "Gwrthwneud camffurfiol %s llinell %lu #2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, fuzzy, c-format msgid "Malformed override %s line %llu #3" msgstr "Gwrthwneud camffurfiol %s llinell %lu #3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, fuzzy, c-format msgid "Unknown compression algorithm '%s'" msgstr "Dull Cywasgu Anhysbys '%s'" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "Mae'r allbwn cywasgiedig %s angen cywasgiad wedi ei osod" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "Methwyd creu FILE*" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "Methodd fork()" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 #, fuzzy msgid "Compress child" msgstr "Plentyn Cywasgu" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, fuzzy, c-format msgid "Internal error, failed to create %s" msgstr "Gwall Mewnol, Methwyd creu %s" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "Methodd MA i isbroses/ffeil" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "Methwyd darllen wrth gyfrifo MD5" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "Gwall wrth datgysylltu %s" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "Methwyd ailenwi %s at %s" # FIXME: "debian" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -2150,162 +2180,162 @@ msgstr "" " -c=? Darllen y ffeil cyfluniad hwn\n" " -o=? Gosod opsiwn cyfluniad mympwyol, ee -o dir::cache=/tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "Methwyd creu pibau" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "Methwyd gweithredu gzip" -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "Archif llygredig" -#: apt-inst/contrib/extracttar.cc:201 +#: 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:306 +#: apt-inst/contrib/extracttar.cc:308 #, c-format msgid "Unknown TAR header type %u, member %s" msgstr "Math pennawd TAR anhysbys %u, aelod %s" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "Llofnod archif annilys" -#: apt-inst/contrib/arfile.cc:82 +#: apt-inst/contrib/arfile.cc:84 msgid "Error reading archive member header" msgstr "Gwall wrth ddarllen pennawd aelod archif" -#: apt-inst/contrib/arfile.cc:94 +#: apt-inst/contrib/arfile.cc:96 #, fuzzy, c-format msgid "Invalid archive member header %s" msgstr "Pennawd aelod archif annilys" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "Pennawd aelod archif annilys" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "Mae'r archif yn rhy fyr" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "Methwyd darllen pennawdau'r archif" -#: apt-inst/filelist.cc:382 +#: 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-inst/filelist.cc:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "Methyd lleoli yr elfen <hash>!" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "Methwyd neilltuo dargyfeiriad" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 #, fuzzy msgid "Internal error in AddDiversion" msgstr "Gwall Mewnol yn AddDiversion" -#: apt-inst/filelist.cc:479 +#: 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" # FIXME: "the" -#: apt-inst/filelist.cc:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "Ychwanegiad dwbl o'r dargyfeiriad %s -> %s" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "Ffeil cyfluniad dyblyg %s/%s" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: 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:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "Methwyd cau ffeil %s" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format msgid "The path %s is too long" msgstr "Mae'r llwybr %s yn rhy hir" -#: apt-inst/extract.cc:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "Yn dadbacio %s mwy nag unwaith" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "Mae'r cyfeiriadur %s wedi ei ddargyfeirio" -#: apt-inst/extract.cc:145 +#: apt-inst/extract.cc:152 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "Mae'r pecyn yn ceisio ysgrifennu i'r targed dargyfeiriad %s/%s" -#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 +#: 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-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "" "Mae'r cyfeiriadur %s yn cael ei amnewid efo rhywbeth nid cyfeiriadur ydyw" -#: apt-inst/extract.cc:282 +#: 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:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "Mae'r llwybr yn rhy hir" # FIXME: wtf? -#: apt-inst/extract.cc:414 +#: apt-inst/extract.cc:421 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Cyfatebiad pecyn trosysgrifo gyda dim fersiwn am %s" -#: apt-inst/extract.cc:431 +#: apt-inst/extract.cc:438 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "Mae'r ffeil %s/%s yn trosysgrifo'r un yn y pecyn %s" -#: apt-inst/extract.cc:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "Ni ellir gwneud stat() o %s" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format msgid "This is not a valid DEB archive, missing '%s' member" msgstr "Nid yw hyn yn archif DEB dilys, aelod '%s' ar goll" -#: apt-inst/deb/debfile.cc:124 +#: apt-inst/deb/debfile.cc:132 #, fuzzy, c-format msgid "Internal error, could not locate member %s" msgstr "Gwall Mewnol, methwyd lleoli aelod %s" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 #, fuzzy msgid "Unparsable control file" msgstr "Ffeil rheoli ni ellir ei ramadegu" @@ -2365,513 +2395,518 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "Ni chanfuwyd y dewis %s" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Talgryniad math anhysbys: '%c'" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "Yn agor y ffeil cyfluniad %s" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Gwall cystrawen %s:%u: Mae bloc yn cychwyn efo dim enw." # FIXME -#: apt-pkg/contrib/configuration.cc:804 +#: 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-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Gwall cystrawen %s:%u: Sbwriel ychwanegol ar ôl y gwerth" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "Gwall cystrawen %s:%u: Ceir defnyddio cyfarwyddyd ar y lefel dop yn unig" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Gwall cystrawen %s:%u: Gormod o gynhwysion nythol" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Gwall cystrawen %s:%u: Cynhwyswyd o fan hyn" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Gwall cystrawen %s:%u: Cyfarwyddyd ni gynhelir '%s'" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-pkg/contrib/configuration.cc:900 #, 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-pkg/contrib/configuration.cc:934 +#: 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-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... Gwall!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... Wedi Gorffen" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s... Wedi Gorffen" # FIXME -#: apt-pkg/contrib/cmndline.cc:116 +#: 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-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: 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-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: 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-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "Opsiwn %s: Rhaid i benodiad eitem cyfluniad gael =<gwerth>." -#: apt-pkg/contrib/cmndline.cc:273 +#: 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-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "Opsiwn '%s' yn rhy hir" # FIXME: 'Sense'? -#: apt-pkg/contrib/cmndline.cc:336 +#: 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-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "Gweithred annilys %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: 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-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "Methwyd gwneud stat() o'r CD-ROM" -#: apt-pkg/contrib/fileutl.cc:95 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Gwall wrth gau'r ffeil" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "Ddim yn cloi'r ffeil clo darllen-yn-unig %s" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "Methwyd agor y ffeil clo %s" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "Ddim yn cloi'r ffeil clo ar NFS %s" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "Methwyd cael y clo %s" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Derbyniodd is-broses %s wall segmentu." -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "Derbyniodd is-broses %s wall segmentu." -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 apt-pkg/contrib/gpgv.cc:239 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Dychwelodd is-broses %s gôd gwall (%u)" -#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Gorffenodd is-broses %s yn annisgwyl" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Gwall wrth gau'r ffeil" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "Methwyd agor ffeil %s" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "Methwyd agor pibell ar gyfer %s" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "Methwyd creu isbroses IPC" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "Methwyd gweithredu cywasgydd " # FIXME -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, fuzzy, c-format msgid "read, still have %llu to read but none left" msgstr "o hyd %lu i ddarllen ond dim ar ôl" # FIXME -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, fuzzy, c-format msgid "write, still have %llu to write but couldn't" msgstr "o hyd %lu i ysgrifennu ond methwyd" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "Gwall wrth gau'r ffeil" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "Gwall wrth gyfamseru'r ffeil" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "Gwall wrth dadgysylltu'r ffeil" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "Gwall wrth gyfamseru'r ffeil" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "methwyd ailenwi, %s (%s -> %s)." + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, fuzzy, c-format msgid "No keyring installed in %s." msgstr "Yn Erthylu'r Sefydliad." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "Storfa pecyn gwag" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "Mae'r ffeil storfa pecyn yn llygredig" -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "Mae'r ffeil storfa pecyn yn fersiwn anghyflawn" -#: apt-pkg/pkgcache.cc:162 +#: 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" # FIXME: capitalisation? -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, fuzzy, c-format msgid "This APT does not support the versioning system '%s'" msgstr "Nid yw'r APT yma yn cefnogi'r system fersiwn '%s'" -#: apt-pkg/pkgcache.cc:172 +#: apt-pkg/pkgcache.cc:179 msgid "The package cache was built for a different architecture" msgstr "Adeiladwyd y storfa pecyn ar gyfer pernsaerniaeth gwahanol" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "Dibynnu" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "CynDdibynnu" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "Awgrymu" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "Argymell" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "Gwrthdaro" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "Amnewid" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "Darfodi" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "pwysig" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "angenrheidiol" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "safonnol" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "opsiynnol" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "ychwanegol" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 #, fuzzy msgid "Building dependency tree" msgstr "Yn Aideladu Coeden Dibyniaeth" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 #, fuzzy msgid "Candidate versions" msgstr "Fersiynau Posib" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 #, fuzzy msgid "Dependency generation" msgstr "Cynhyrchaid Dibyniaeth" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: 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:244 +#: apt-pkg/depcache.cc:250 #, fuzzy, c-format msgid "Failed to open StateFile %s" msgstr "Methwyd agor %s" -#: apt-pkg/depcache.cc:250 +#: apt-pkg/depcache.cc:256 #, fuzzy, c-format msgid "Failed to write temporary StateFile %s" msgstr "Methwyd ysgrifennu ffeil %s" # FIXME: number? -#: apt-pkg/tagfile.cc:138 +#: apt-pkg/tagfile.cc:140 #, c-format msgid "Unable to parse package file %s (1)" msgstr "Ni ellir gramadegu ffeil becynnau %s (1)" -#: apt-pkg/tagfile.cc:235 +#: apt-pkg/tagfile.cc:237 #, c-format msgid "Unable to parse package file %s (2)" msgstr "Ni ellir gramadegu ffeil becynnau %s (2)" -#: apt-pkg/sourcelist.cc:118 +#: 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:161 +#: 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:164 +#: 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:175 +#: 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:181 +#: 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:184 +#: 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)" -#: apt-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (URI)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (dosranniad)" -#: apt-pkg/sourcelist.cc:202 +#: 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)" -#: apt-pkg/sourcelist.cc:208 +#: 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)" -#: apt-pkg/sourcelist.cc:215 +#: 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)" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "Yn agor %s" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "Llinell %u yn rhy hir yn y rhestr ffynhonell %s." -#: apt-pkg/sourcelist.cc:362 +#: 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)" -#: apt-pkg/sourcelist.cc:366 +#: 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-pkg/sourcelist.cc:407 +#: 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-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, 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:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "Methwyd agor ffeil %s" # FIXME: %s may have an arbirrary length -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2882,12 +2917,12 @@ msgstr "" "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/pkgrecords.cc:34 +#: 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/algorithms.cc:266 +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." @@ -2895,7 +2930,7 @@ msgstr "" "Mae angen ailsefydlu'r pecyn %s, ond dydw i ddim yn gallu canfod archif ar " "ei gyfer." -#: apt-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2903,54 +2938,54 @@ msgstr "" "Gwall: Cynhyrchodd pkgProblemResolver::Resolve doriadau. Fe all hyn fod wedi " "ei achosi gan pecynnau wedi eu dal." -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 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/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, fuzzy, c-format msgid "List directory %spartial is missing." msgstr "Mae'r cyfeiriadur rhestrau %spartial ar goll." -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, fuzzy, c-format msgid "Archives directory %spartial is missing." msgstr "Mae'r cyfeiriadur archif %spartial ar goll." -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, fuzzy, c-format msgid "Unable to lock directory %s" msgstr "Ni ellir cloi'r cyfeiriadur rhestr" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, fuzzy, c-format msgid "Retrieving file %li of %li" msgstr "Yn Darllen Rhestr Ffeiliau" -#: apt-pkg/acquire-worker.cc:113 +#: 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:115 +#: apt-pkg/acquire-worker.cc:118 #, c-format msgid "Is the package %s installed?" msgstr "" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "Ni gychwynodd y dull %s yn gywir" -#: apt-pkg/acquire-worker.cc:452 +#: apt-pkg/acquire-worker.cc:455 #, fuzzy, c-format msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "" @@ -2958,39 +2993,39 @@ msgstr "" " '%s'\n" "yn y gyrriant '%s' a gwasgwch Enter\n" -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Ni chynhelir y system pecynnu '%s'" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 #, fuzzy msgid "Unable to determine a suitable packaging system type" msgstr "Ni ellir canfod math system addas" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "Ni ellir gwneud stat() o %s." # FIXME: ...file -#: apt-pkg/srcrecords.cc:47 +#: 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" -#: apt-pkg/cachefile.cc:87 +#: 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." -#: apt-pkg/cachefile.cc:91 +#: 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." -#: apt-pkg/cachefile.cc:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "Methwyd darllen y rhestr ffynhonellau." -#: apt-pkg/policy.cc:75 +#: apt-pkg/policy.cc:83 #, c-format msgid "" "The value '%s' is invalid for APT::Default-Release as such a release is not " @@ -2998,103 +3033,98 @@ msgid "" msgstr "" # FIXME: literal -#: apt-pkg/policy.cc:414 +#: apt-pkg/policy.cc:422 #, fuzzy, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "Cofnod annilys yn y ffeil hoffterau, dim pennawd 'Package'" # FIXME: tense -#: apt-pkg/policy.cc:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "Methwyd daeall y math pin %s" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "Dim blaenoriath (neu sero) wedi ei benodi ar gyfer pin" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 msgid "Cache has an incompatible versioning system" msgstr "Mae can y storfa system fersiwn anghyfaddas" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, fuzzy, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Digwyddod gwall wrth brosesu %s (FindPkg)" -#: apt-pkg/pkgcachegen.cc:251 +#: 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." -#: apt-pkg/pkgcachegen.cc:254 +#: apt-pkg/pkgcachegen.cc:260 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "Jiw, rhagoroch chi'r nifer o fersiynau mae'r APT hwn yn gallu ei drin." -#: apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:263 #, fuzzy msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "Jiw, rhagoroch chi'r nifer o fersiynau mae'r APT hwn yn gallu ei drin." -#: apt-pkg/pkgcachegen.cc:260 +#: 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." -#: apt-pkg/pkgcachegen.cc:570 +#: 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" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "Methwyd stat() o'r rhestr pecyn ffynhonell %s" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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" -#: apt-pkg/pkgcachegen.cc:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "Yn Casglu Darpariaethau Ffeil" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: 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" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "methwyd ailenwi, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 #, fuzzy msgid "Hash Sum mismatch" msgstr "Camgyfatebiaeth swm MD5" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "Camgyfatebiaeth maint" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "Gweithred annilys %s" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, c-format msgid "" "Unable to find expected entry '%s' in Release file (Wrong sources.list entry " @@ -3102,28 +3132,28 @@ msgid "" msgstr "" # FIXME: number? -#: apt-pkg/acquire-item.cc:1586 +#: apt-pkg/acquire-item.cc:1595 #, fuzzy, c-format msgid "Unable to find hash sum for '%s' in Release file" msgstr "Ni ellir gramadegu ffeil becynnau %s (1)" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " "repository will not be applied." msgstr "" -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3131,13 +3161,13 @@ msgid "" msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "" # FIXME: case -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3146,12 +3176,12 @@ 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:1922 +#: apt-pkg/acquire-item.cc:1931 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -3159,132 +3189,128 @@ msgstr "" "Mae'r ffeiliau mynegai pecyn yn llygr. Dim maes Filename: gan y pecyn %s." # FIXME: number? -#: apt-pkg/indexrecords.cc:73 +#: 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:81 +#: apt-pkg/indexrecords.cc:86 #, fuzzy, c-format msgid "No sections in Release file %s" msgstr "Sylwer, yn dewis %s yn hytrach na %s\n" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "" -#: apt-pkg/indexrecords.cc:125 +#: 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:144 +#: 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/vendorlist.cc:78 +#: 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" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +#, fuzzy +msgid "Unmounting CD-ROM...\n" +msgstr "CD Anghywir" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 #, fuzzy msgid "Waiting for disc...\n" msgstr "Yn aros am benawdau" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " msgstr "" -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -#, fuzzy -msgid "Unmounting CD-ROM...\n" -msgstr "CD Anghywir" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" msgstr "" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " "%zu signatures\n" msgstr "" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" "'%s'\n" msgstr "" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 #, fuzzy msgid "Copying package lists..." msgstr "Yn Darllen Rhestrau Pecynnau" -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 #, fuzzy msgid "Writing new source list\n" msgstr "Llinell %u yn rhy hir yn y rhestr ffynhonell %s." -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format msgid "Wrote %i records.\n" msgstr "" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:777 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:780 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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 "" @@ -3299,88 +3325,88 @@ msgstr "" msgid "Hash mismatch for: %s" msgstr "Camgyfatebiaeth swm MD5" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Ni chanfuwyd y rhyddhad '%s' o '%s'" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Ni chanfuwyd y fersiwn '%s' o '%s' " -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, fuzzy, c-format msgid "Couldn't find task '%s'" msgstr "Methwyd canfod pecyn %s" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, fuzzy, c-format msgid "Couldn't find any package by regex '%s'" msgstr "Methwyd canfod pecyn %s" -#: apt-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "Methwyd canfod pecyn %s" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, c-format msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " "neither of them" msgstr "" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, c-format msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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 " @@ -3389,167 +3415,167 @@ msgstr "" "Methwodd rhai ffeiliau mynegai lawrlwytho: maent wedi eu anwybyddu, neu hen " "rai eu defnyddio yn lle." -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, fuzzy, c-format msgid "Installing %s" msgstr " Wedi Sefydlu: " -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, fuzzy, c-format msgid "Configuring %s" msgstr "Yn cysylltu i %s" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, fuzzy, c-format msgid "Removing %s" msgstr "Yn agor %s" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, fuzzy, c-format msgid "Completely removing %s" msgstr "Methwyd dileu %s" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, fuzzy, c-format msgid "Directory '%s' missing" msgstr "Mae'r cyfeiriadur rhestrau %spartial ar goll." -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, fuzzy, c-format msgid "Could not open file '%s'" msgstr "Methwyd agor ffeil %s" -#: apt-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, fuzzy, c-format msgid "Preparing %s" msgstr "Yn agor %s" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, fuzzy, c-format msgid "Unpacking %s" msgstr "Yn agor %s" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, fuzzy, c-format msgid "Preparing to configure %s" msgstr "Yn agor y ffeil cyfluniad %s" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, fuzzy, c-format msgid "Installed %s" msgstr " Wedi Sefydlu: " -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, fuzzy, c-format msgid "Removed %s" msgstr "Argymell" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, fuzzy, c-format msgid "Preparing to completely remove %s" msgstr "Yn agor y ffeil cyfluniad %s" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, fuzzy, c-format msgid "Completely removed %s" msgstr "Methwyd dileu %s" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "Ni ellir ysgrifennu i %s" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 msgid "" "No apport report written because the error message indicates an issue on the " "local system" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " "it?" msgstr "" -#: apt-pkg/deb/debsystem.cc:87 +#: 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" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " msgstr "" -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "" @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2013-12-14 23:51+0200\n" "Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n" "Language-Team: Danish <debian-l10n-danish@lists.debian.org>\n" @@ -20,155 +20,156 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: cmdline/apt-cache.cc:140 +#: cmdline/apt-cache.cc:149 #, c-format msgid "Package %s version %s has an unmet dep:\n" msgstr "Pakken %s version %s har en uopfyldt afhængighed:\n" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "Samlet antal pakkenavne: " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 msgid "Total package structures: " msgstr "Samlet antal pakkestrukturer: " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " Normale pakker: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " Rene virtuelle pakker: " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " Enkelte virtuelle pakker: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " Blandede virtuelle pakker: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " Manglende: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "Totale forskellige versioner: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "Sammenlagt forskellige beskrivelser: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "Sammenlagt afhængigheder: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "Sammenlagt version/fil-relationer: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "Sammenlagt version/fil-relationer: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "Sammenlagt »Tilbyder«-markeringer: " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "Totalle søgemønsterstrenge: " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "Total afhængighedsversions-plads: " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "Total »Slack«-plads: " -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "Total plads, der kan gøres rede for: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format msgid "Package file %s is out of sync." msgstr "Pakkefilen %s er ude af trit." -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 msgid "No packages found" msgstr "Fandt ingen pakker" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 msgid "You must give at least one search pattern" msgstr "Du skal angive mindst ét søgemønster" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" "Denne kommando er forældet. Brug venligst »apt-mark showauto« i stedet for." -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "Kunne ikke lokalisere pakken %s" # Overskriften til apt-cache policy, # forkorter "Package" væk. CH -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "Pakkefiler:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 msgid "Cache is out of sync, can't x-ref a package file" msgstr "Mellemlageret er ude af trit, kan ikke krydsreferere en pakkefil" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "»Pinned« pakker:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(ikke fundet)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " Installeret: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " Kandidat: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(ingen)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " Pakke-pin: " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " Versionstabel:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s for %s kompileret pÃ¥ %s %s\n" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] showpkg pkg1 [pkg2 ...]\n" @@ -238,33 +239,34 @@ msgstr "" " -o=? Angiv et opsætningstilvalg. F.eks. -o dir::cache=/tmp\n" "Se manualsiderne for apt-cache(8) og apt.conf(5) for flere oplysninger.\n" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" -"Der kunne ikke detekteres et cd-rom-drev eller findes et monteringspunkt.\n" -"Du kan prøve tilvalget --cdrom for at angive cd-rom-monteringspunktet. Se " -"»man apt-cdrom« for yderligere information om automatisk detektering af cd-" -"rom og monteringspunkt." - -#: cmdline/apt-cdrom.cc:89 +#: cmdline/apt-cdrom.cc:76 msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" "Angiv venligst et navn for denne disk, som f.eks. »Debian 5.0.3 Disk 1«" -#: cmdline/apt-cdrom.cc:104 +#: cmdline/apt-cdrom.cc:91 msgid "Please insert a Disc in the drive and press enter" msgstr "Indsæt en disk i drevet og tryk retur" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, c-format msgid "Failed to mount '%s' to '%s'" msgstr "Kunne ikke montere %s til %s" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +#, fuzzy +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" +"Der kunne ikke detekteres et cd-rom-drev eller findes et monteringspunkt.\n" +"Du kan prøve tilvalget --cdrom for at angive cd-rom-monteringspunktet. Se " +"»man apt-cdrom« for yderligere information om automatisk detektering af cd-" +"rom og monteringspunkt." + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Gentag processen for resten af cd'erne i dit sæt." @@ -300,47 +302,47 @@ msgstr "" " -c=? Læs denne opsætningsfil\n" " -o=? Angiv et opsætningstilvalg. F.eks. -o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:244 +#: cmdline/apt-get.cc:245 #, c-format msgid "Can not find a package for architecture '%s'" msgstr "Kan ikke finde en pakke for arkitektur »%s«" -#: cmdline/apt-get.cc:326 +#: cmdline/apt-get.cc:327 #, c-format msgid "Can not find a package '%s' with version '%s'" msgstr "Kan ikke finde en pakke »%s« med version »%s«" -#: cmdline/apt-get.cc:329 +#: cmdline/apt-get.cc:330 #, c-format msgid "Can not find a package '%s' with release '%s'" msgstr "Kan ikke finde en pakke »%s« med udgivelse »%s«" -#: cmdline/apt-get.cc:366 +#: cmdline/apt-get.cc:367 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Vælger »%s« som kildepakke fremfor »%s«\n" -#: cmdline/apt-get.cc:422 +#: cmdline/apt-get.cc:423 #, c-format msgid "Can not find version '%s' of package '%s'" msgstr "Kan ikke finde version »%s« for pakke »%s«" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "Kunne ikke finde pakken %s" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "%s sat til manuelt installeret.\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s sat til automatisk installation.\n" -#: cmdline/apt-get.cc:468 cmdline/apt-mark.cc:116 +#: 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." @@ -348,19 +350,19 @@ msgstr "" "Denne kommando er forældet. Brug venligst »apt-mark auto« og »apt-mark " "manual« i stedet for." -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 msgid "Internal error, problem resolver broke stuff" msgstr "Intern fejl. Problemløseren ødelagde noget" -#: cmdline/apt-get.cc:573 cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 msgid "Unable to lock the download directory" msgstr "Kunne ikke lÃ¥se nedhentningsmappen" -#: cmdline/apt-get.cc:725 +#: cmdline/apt-get.cc:726 msgid "Must specify at least one package to fetch source for" msgstr "Du skal angive mindst én pakke at hente kildeteksten til" -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "Kunne ikke finde kildetekstpakken for %s" @@ -385,78 +387,78 @@ msgstr "" "bzr branch %s\n" "for at hente de seneste (muligvis ikke udgivet) opdateringer til pakken.\n" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Overspringer allerede hentet fil »%s«\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "Kunne ikke bestemme ledig plads i %s" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "Du har ikke nok ledig plads i %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "%sB/%sB skal hentes fra kildetekst-arkiverne.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "%sB skal hentes fra kildetekst-arkiverne.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "Henter kildetekst %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "Nogle arkiver kunne ikke hentes." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "Nedhentning afsluttet i »hent-kun«-tilstand" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Overspringer udpakning af allerede udpakket kildetekst i %s\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Udpakningskommandoen »%s« fejlede.\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Tjek om pakken »dpkg-dev« er installeret.\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "Opbygningskommandoen »%s« fejlede.\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "Barneprocessen fejlede" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "Skal angive mindst én pakke at tjekke opbygningsafhængigheder for" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -465,17 +467,17 @@ msgstr "" "Ingen arkitekturinformation tilgængelig for %s. Se apt.conf(5) APT::" "Architectures for opsætning" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Kunne ikke hente oplysninger om opbygningsafhængigheder for %s" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s har ingen opbygningsafhængigheder.\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -483,7 +485,7 @@ msgid "" msgstr "" "Afhængigheden %s for %s kan ikke opfyldes, da %s ikke er tilladt pÃ¥ »%s«" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -491,14 +493,14 @@ msgid "" msgstr "" "Afhængigheden %s for %s kan ikke opfyldes, da pakken %s ikke blev fundet" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Kunne ikke opfylde %s-afhængigheden for %s: Den installerede pakke %s er for " "ny" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -507,7 +509,7 @@ msgstr "" "Afhængigheden %s for %s kan ikke opfyldes, da ingen af de tilgængelige " "kandidater for pakken %s kan tilfredsstille versionskravene" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -516,30 +518,30 @@ msgstr "" "%s-afhængigheden for %s kan ikke opfyldes, da pakken %s ikke har en " "kandidatversion" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Kunne ikke opfylde %s-afhængigheden for %s: %s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Opbygningsafhængigheden for %s kunne ikke opfyldes." -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "Kunne ikke behandler opbygningsafhængighederne" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, c-format msgid "Changelog for %s (%s)" msgstr "Ændringslog for %s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "Understøttede moduler:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -627,53 +629,75 @@ msgstr "" "for flere oplysninger og tilvalg.\n" " Denne APT har »Super Cow Powers«.\n" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Du skal angive mindst én pakke at hente kildeteksten til" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" +msgstr "" + +#: cmdline/apt-mark.cc:68 #, c-format msgid "%s can not be marked as it is not installed.\n" msgstr "%s kan ikke markeres, da den ikke er installeret.\n" -#: cmdline/apt-mark.cc:63 +#: cmdline/apt-mark.cc:74 #, c-format msgid "%s was already set to manually installed.\n" msgstr "%s var allerede sat til manuelt installeret.\n" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, c-format msgid "%s was already set to automatically installed.\n" msgstr "%s var allerede sat til automatisk installeret.\n" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, c-format msgid "%s was already set on hold.\n" msgstr "%s var allerede sat i bero.\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, c-format msgid "%s was already not hold.\n" msgstr "%s var allerede ikke i bero.\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Ventede pÃ¥ %s, men den var der ikke" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format msgid "%s set on hold.\n" msgstr "%s sat i bero.\n" -#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format msgid "Canceled hold on %s.\n" msgstr "Afbrød i bero for %s.\n" -#: cmdline/apt-mark.cc:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "Kørsel af dpkg fejlede. Er du root (administrator)?" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 #, fuzzy msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" @@ -721,7 +745,7 @@ msgstr "" "tmp\n" "Se manualsiderne apt-mark(8) og apt.conf(5) for yderligere information." -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 #, fuzzy msgid "" "Usage: apt [options] command\n" @@ -783,52 +807,52 @@ msgstr "Kunne ikke afmontere cdrommen i %s, den er muligvis stadig i brug." msgid "Disk not found." msgstr "Disk blev ikke fundet." -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "Fil blev ikke fundet" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 msgid "Failed to stat" msgstr "Kunne ikke finde" -#: methods/copy.cc:82 methods/gzip.cc:113 methods/rred.cc:606 +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 msgid "Failed to set modification time" msgstr "Kunne ikke angive ændringstidspunkt" -#: methods/file.cc:47 +#: methods/file.cc:48 msgid "Invalid URI, local URIS must not start with //" msgstr "Ugyldig URI, lokale URI'er mÃ¥ ikke starte med //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "Logget pÃ¥" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "Kunne ikke bestemme serverens navn" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "Kunne ikke bestemme det lokale navn" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format msgid "The server refused the connection and said: %s" msgstr "Serveren nægtede os forbindelse og sagde: %s" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "angivelse af brugernavn mislykkedes, serveren sagde: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "angivelse af adgangskode mislykkedes, serveren sagde: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -836,121 +860,123 @@ msgstr "" "Der blev angivet en proxyserver men intet logpÃ¥-skript; Acquire::ftp::" "ProxyLogin er tom." -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "LogpÃ¥-skriptets kommando »%s« mislykkedes. Serveren sagde: %s" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE mislykkedes. Serveren sagde: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 msgid "Connection timeout" msgstr "Tidsudløb pÃ¥ forbindelsen" -#: methods/ftp.cc:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "Serveren lukkede forbindelsen" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "Læsefejl" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "Mellemlageret blev overfyldt af et svar." -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "Protokolfejl" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "Skrivefejl" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 msgid "Could not create a socket" msgstr "Kunne ikke oprette sokkel" -#: methods/ftp.cc:707 +#: methods/ftp.cc:712 msgid "Could not connect data socket, connection timed out" msgstr "Kunne ikke forbinde datasokkel, tidsudløb pÃ¥ forbindelsen" -#: methods/ftp.cc:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "Mislykkedes" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "Kunne ikke forbinde passiv sokkel." -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo kunne ikke fÃ¥ en lyttesokkel" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "Kunne ikke tilknytte en sokkel" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "Kunne ikke lytte pÃ¥ soklen" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "Kunne ikke finde soklens navn" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "Kunne ikke sende PORT-kommando" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Ukendt adressefamilie %u (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT mislykkedes. Serveren sagde: %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "Tidsudløb pÃ¥ datasokkel-forbindelse" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "Kunne ikke acceptere forbindelse" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "Problem ved \"hashing\" af fil" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Kunne ikke hente fil. Serveren sagde »%s«" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "Tidsudløb ved datasokkel" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Dataoverførsel mislykkedes, serveren sagde »%s«" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "Forespørgsel" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "Kunne ikke udføre " @@ -986,7 +1012,7 @@ msgstr "Kunne ikke forbinde til %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "Forbinder til %s" @@ -1016,23 +1042,23 @@ msgstr "Der skete noget underligt under opløsning af »%s:%s« (%i - %s)" msgid "Unable to connect to %s:%s:" msgstr "Kunne ikke forbinde til %s:%s:" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Intern fejl: Gyldig signatur, men kunne ikke afgøre nøgle-fingeraftryk?!" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "Stødte pÃ¥ mindst én ugyldig signatur." -#: methods/gpgv.cc:172 +#: methods/gpgv.cc:174 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "Kunne ikke køre »gpgv« for at verificere signaturen (er gpgv installeret?)" #. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " @@ -1041,15 +1067,15 @@ msgstr "" "Clearsigned-fil er ikke gyldig, fik »%s« (kræver netværket ikke " "autentificering?)" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "Ukendt fejl ved kørsel af gpgv" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Følgende signaturer var ugyldige:\n" -#: methods/gpgv.cc:229 +#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@ -1057,148 +1083,149 @@ msgstr "" "Følgende signaturer kunne ikke verificeret, da den offentlige nøgle ikke er " "tilgængelig:\n" -#: methods/gzip.cc:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "Tomme filer kan ikke være gyldige arkiver" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "Fejl ved skrivning til filen" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "Fejl ved læsning fra serveren. Den fjerne ende lukkede forbindelsen" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "Fejl ved læsning fra server" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "Fejl ved skrivning til fil" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "Valg mislykkedes" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "Tidsudløb pÃ¥ forbindelsen" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "Fejl ved skrivning af uddatafil" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "Afventer hoveder" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "Ugyldig linje i hovedet" -#: methods/server.cc:139 methods/server.cc:146 +#: methods/server.cc:134 methods/server.cc:141 msgid "The HTTP server sent an invalid reply header" msgstr "Http-serveren sendte et ugyldigt svarhovede" -#: methods/server.cc:176 +#: methods/server.cc:171 msgid "The HTTP server sent an invalid Content-Length header" msgstr "Http-serveren sendte et ugyldigt Content-Length-hovede" -#: methods/server.cc:199 +#: methods/server.cc:194 msgid "The HTTP server sent an invalid Content-Range header" msgstr "Http-serveren sendte et ugyldigt Content-Range-hovede" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "" "Denne http-servere har fejlagtig understøttelse af intervaller (»ranges«)" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "Ukendt datoformat" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "Ugyldige hoved-data" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "Forbindelsen mislykkedes" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "Intern fejl" # mÃ¥ske visning, kategorisering -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "Listing" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Intern fejl. InstallPackages blev kaldt med ødelagte pakker!" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "Pakker skal afinstalleres, men Remove er deaktiveret." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "Intern fejl. Sortering blev ikke fuldført" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" -msgstr "Mystisk.. Størrelserne passede ikke, skriv til apt@packages.debian.org" +#: apt-private/private-install.cc:147 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Mystisk... Størrelserne passede ikke, skriv til apt@packages.debian.org" #. TRANSLATOR: The required 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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "%sB/%sB skal hentes fra arkiverne.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:171 +#: apt-private/private-install.cc:159 #, c-format msgid "Need to get %sB of archives.\n" msgstr "%sB skal hentes fra arkiverne.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:178 +#: apt-private/private-install.cc:166 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "Efter denne handling, vil %sB yderligere diskplads være brugt.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:183 +#: apt-private/private-install.cc:171 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Efter denne handling, vil %sB diskplads blive frigjort.\n" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "Du har ikke nok ledig plads i %s." -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "Der er problemer og -y blev brugt uden --force-yes" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 msgid "Trivial Only specified but this is not a trivial operation." msgstr "»Trivial Only« angivet, men dette er ikke en triviel handling." #. 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Ja, gør som jeg siger!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1209,19 +1236,19 @@ msgstr "" "For at fortsætte, skal du skrive »%s«\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "Afbryder." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "Vil du fortsætte?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "Nedhentningen af filer mislykkedes" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1229,19 +1256,19 @@ msgstr "" "Kunne ikke hente nogle af arkiverne. Prøv evt. at køre »apt-get update« " "eller prøv med --fix-missing." -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing og medieskift understøttes endnu ikke" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "Kunne ikke rette manglende pakker." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "Afbryder installationen." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1255,17 +1282,17 @@ msgstr[1] "" "De følgende pakker forsvandt fra dit system, da\n" "alle filer er blevet overskrevet af andre pakker:" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Bemærk: Dette sker automatisk og med vilje af dpkg." -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "Det er ikke meningen, at vi skal slette ting og sager, kan ikke starte " "AutoRemover" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1283,15 +1310,15 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 msgid "The following information may help to resolve the situation:" msgstr "Følgende oplysninger kan hjælpe dig med at klare situationen:" -#: apt-private/private-install.cc:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "Intern fejl. AutoRemover ødelagde noget" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1302,7 +1329,7 @@ msgstr[0] "" msgstr[1] "" "Følgende pakker blev installeret automatisk, og behøves ikke længere:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1311,17 +1338,17 @@ msgstr[0] "Pakken %lu blev installeret automatisk, og behøves ikke længere.\n" msgstr[1] "" "Pakkerne %lu blev installeret automatisk, og behøves ikke længere.\n" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Brug »apt-get autoremove« til at fjerne den." msgstr[1] "Brug »apt-get autoremove« til at fjerne dem." -#: apt-private/private-install.cc:624 +#: apt-private/private-install.cc:612 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Du kan muligvis rette det ved at køre »apt-get -f install«:" -#: apt-private/private-install.cc:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1329,7 +1356,7 @@ msgstr "" "Uopfyldte afhængigheder. Prøv »apt-get -f install« uden pakker (eller angiv " "en løsning)." -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1340,142 +1367,142 @@ msgstr "" "en umulig situation eller bruger den ustabile distribution, hvor enkelte\n" "pakker endnu ikke er lavet eller gjort tilgængelige." -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "Ødelagte pakker" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "Følgende yderligere pakker vil blive installeret:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "ForeslÃ¥ede pakker:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "Anbefalede pakker:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ADVARSEL: Følgende pakkers autenticitet kunne ikke verificeres!" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "Autentifikationsadvarsel tilsidesat.\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "Nogle pakker kunne ikke autentificeres" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "Installér disse pakker uden verifikation?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Kunne ikke hente %s %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr "installeret,kan opgraderes til: " -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 msgid "[installed,local]" msgstr "[Installeret,lokalt]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "[installeret,kan auto-fjernes]" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 msgid "[installed,automatic]" msgstr "[Installeret,automatisk]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 msgid "[installed]" msgstr "[Installeret]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, fuzzy, c-format msgid "[upgradable from: %s]" msgstr "[kan opgraderes fra: " -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "[residual-konfig]" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "Følgende pakker har uopfyldte afhængigheder:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "men %s er installeret" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "men %s forventes installeret" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "men den kan ikke installeres" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "men det er en virtuel pakke" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "men den er ikke installeret" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "men den bliver ikke installeret" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " eller" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "Følgende NYE pakker vil blive installeret:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "Følgende pakker vil blive AFINSTALLERET:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "Følgende pakker er blevet holdt tilbage:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "Følgende pakker vil blive opgraderet:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "Følgende pakker vil blive NEDGRADERET:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "Følgende tilbageholdte pakker vil blive ændret:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (grundet %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1483,27 +1510,27 @@ msgstr "" "ADVARSEL: Følgende essentielle pakker vil blive afinstalleret\n" "Dette bør IKKE ske medmindre du er helt klar over, hvad du laver!" -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu opgraderes, %lu nyinstalleres, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu geninstalleres, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu nedgraderes, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu afinstalleres og %lu opgraderes ikke.\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu ikke fuldstændigt installerede eller afinstallerede.\n" @@ -1512,7 +1539,7 @@ msgstr "%lu ikke fuldstændigt installerede eller afinstallerede.\n" #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "[J/n]" @@ -1520,90 +1547,90 @@ msgstr "[J/n]" #. 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:702 +#: apt-private/private-output.cc:708 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:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "J" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "N" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "Fejl ved tolkning af regulært udtryk - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "Retter afhængigheder ..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " mislykkedes." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "Kunne ikke rette afhængigheder" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "Kunne ikke minimere opgraderingssættet" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " Færdig" -#: apt-private/private-cachefile.cc:102 +#: apt-private/private-cachefile.cc:108 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "Du kan muligvis rette dette ved at køre »apt-get -f install«." -#: apt-private/private-cachefile.cc:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "Uopfyldte afhængigheder. Prøv med -f." -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "Sortering" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "»update«-kommandoen benytter ingen parametre" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "Beregner opgraderingen ... " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 msgid "Internal error, Upgrade broke stuff" msgstr "Intern fejl, opgradering blev afbrudt" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "Færdig" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "Fuldtekst-søgning" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "ikke en reel pakke (virtuel)" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1615,43 +1642,43 @@ msgstr "" " Husk ogsÃ¥ at lÃ¥sning er deaktiveret,\n" " sÃ¥ stol ikke pÃ¥ relevansen for den reelle aktuelle situation!" -#: apt-private/private-sources.cc:45 +#: apt-private/private-sources.cc:58 #, c-format msgid "Failed to parse %s. Edit again? " msgstr "Kunne ikke fortolke %s. Rediger igen? " -#: apt-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "Din »%s« fil blev ændret, kør venligst »apt-get update«." -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "Havde " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "Henter:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "Ignorerer " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Fejl " -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "Hentede %sB pÃ¥ %s (%sB/s)\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [Arbejder]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1664,19 +1691,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "Kunne ikke læse %s" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "Kunne ikke skifte til %s" @@ -1705,11 +1732,11 @@ msgstr "Ingen post fundet i spejlfil »%s«" msgid "[Mirror: %s]" msgstr "[Spejl: %s]" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 msgid "Failed to create IPC pipe to subprocess" msgstr "Kunne ikke oprette IPC-videreførsel til underproces" -#: methods/rsh.cc:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "Forbindelsen lukkedes for hurtigt" @@ -1776,40 +1803,45 @@ msgstr "" " -c=? Læs denne opsætningsfil\n" " -o=? Angiv et opsætningstilvalg. F.eks. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Kunne ikke finde %s" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "Kunne ikke skrive til %s" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Kan ikke finde debconfs version. Er debconf installeret?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "Pakkeudvidelseslisten er for lang" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "Fejl under behandling af mappen %s" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "Kildeudvidelseslisten er for lang" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "Fejl under skrivning af hovedet til indholdsfil" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "Fejl under behandling af indhold %s" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1889,26 +1921,26 @@ msgstr "" " -c=? Læs denne opsætningsfil\n" " -o=? Sæt en opsætnings-indstilling" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "Ingen valg passede" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Visse filer mangler i pakkefilgruppen »%s«" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "DB var ødelagt, filen omdøbt til %s.old" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "DB er gammel, forsøger at opgradere %s" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -1916,193 +1948,193 @@ msgstr "" "Databaseformatet er ugyldigt. Hvis du har opgraderet fra en ældre version af " "apt, sÃ¥ fjern og genskab databasen." -#: ftparchive/cachedb.cc:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Kunne ikke Ã¥bne DB-filen %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "Kunne ikke finde %s" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "Arkivet har ingen kontrolindgang" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "Kunne skaffe en markør" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "A: Kunne ikke læse mappen %s\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: Kunne ikke finde %s\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "F: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "A: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "F: Fejlene vedrører filen " -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "Kunne ikke omsætte navnet %s" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "Trævandring mislykkedes" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "Kunne ikke Ã¥bne %s" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "Kunne ikke »readlink« %s" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "Kunne ikke frigøre %s" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Kunne ikke lænke %s til %s" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " NÃ¥ede DeLink-begrænsningen pÃ¥ %sB.\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "Arkivet havde intet package-felt" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %s har ingen tvangs-post\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " pakkeansvarlig for %s er %s, ikke %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr " %s har ingen linje med tilsidesættelse af standard for kildefiler\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr "" " %s har ingen linje med tilsidesættelse af standard for binøre filer\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - Kunne ikke allokere hukommelse" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "Kunne ikke Ã¥bne %s" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "Ugyldig gennemtvangs %s-linje %llu #1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "Kunne ikke læse gennemtvangsfilen %s" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, c-format msgid "Malformed override %s line %llu #1" msgstr "Ugyldig gennemtvangs %s-linje %llu #1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, c-format msgid "Malformed override %s line %llu #2" msgstr "Ugyldig gennemtvangs %s-linje %llu #2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, c-format msgid "Malformed override %s line %llu #3" msgstr "Ugyldig gennemtvangs %s-linje %llu #3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "Ukendt komprimeringsalgoritme »%s«" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "Komprimerede uddata %s kræver et komprimeringssæt" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "Kunne ikke oprette FILE*" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "Kunne ikke spalte" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "Komprimer barn" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "Intern fejl. Kunne ikke oprette %s" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "IO til underproces/fil mislykkedes" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "Kunne ikke læse under beregning af MD5" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "Problem under aflænkning af %s" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "Kunne ikke omdøbe %s til %s" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -2155,157 +2187,157 @@ msgstr "" " -c=? Læs denne opsætningsfil\n" " -o=? Angiv en opsætningsindstilling. F.eks. -o dir::cache=/tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "Kunne ikke oprette videreførsler" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "Kunne ikke udføre gzip " -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "Ødelagt arkiv" -#: apt-inst/contrib/extracttar.cc:201 +#: apt-inst/contrib/extracttar.cc:203 msgid "Tar checksum failed, archive corrupted" msgstr "Tar-tjeksum fejlede, arkivet er ødelagt" -#: apt-inst/contrib/extracttar.cc:306 +#: apt-inst/contrib/extracttar.cc:308 #, c-format msgid "Unknown TAR header type %u, member %s" msgstr "Ukendt TAR-hovedtype %u, element %s" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "Ugyldig arkivsignatur" -#: apt-inst/contrib/arfile.cc:82 +#: apt-inst/contrib/arfile.cc:84 msgid "Error reading archive member header" msgstr "Fejl under læsning af arkivelements hoved" -#: apt-inst/contrib/arfile.cc:94 +#: apt-inst/contrib/arfile.cc:96 #, c-format msgid "Invalid archive member header %s" msgstr "Ugyldigt arkivelementhoved %s" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "Ugyldigt arkivelementhoved" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "Arkivet er for kort" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "Kunne ikke læse arkivhovederne" -#: apt-inst/filelist.cc:382 +#: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" msgstr "DropNode kaldt med endnu forbundet knude" -#: apt-inst/filelist.cc:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "Kunne ikke finde hash-element!" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "Kunne ikke allokere omrokering" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "Intern fejl i AddDiversion" -#: apt-inst/filelist.cc:479 +#: apt-inst/filelist.cc:477 #, c-format msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" msgstr "Forsøger at overskrive en omrokering, %s -> %s og %s/%s" -#: apt-inst/filelist.cc:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "Dobbelt tilføjelse af omrokering %s -> %s" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "Dobbelt opsætningsfil %s/%s" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format msgid "Failed to write file %s" msgstr "Kunne ikke skrive filen %s" -#: apt-inst/dirstream.cc:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "Kunne ikke lukke filen %s" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format msgid "The path %s is too long" msgstr "Stien %s er for lang" -#: apt-inst/extract.cc:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "Pakkede %s ud flere gange" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "Mappen %s er omrokeret" -#: apt-inst/extract.cc:145 +#: apt-inst/extract.cc:152 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "Pakken forsøger at skrive til omrokeret mÃ¥l %s/%s" -#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 msgid "The diversion path is too long" msgstr "Omrokeringsstien er for lang" -#: apt-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "Mappen %s bliver erstattet af en ikke-mappe" -#: apt-inst/extract.cc:282 +#: apt-inst/extract.cc:289 msgid "Failed to locate node in its hash bucket" msgstr "Kunne ikke finde knuden i sin hash-bucket" -#: apt-inst/extract.cc:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "Stien er for lang" -#: apt-inst/extract.cc:414 +#: apt-inst/extract.cc:421 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Overskriv pakkematch uden version for %s" -#: apt-inst/extract.cc:431 +#: apt-inst/extract.cc:438 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "File %s/%s overskriver filen i pakken %s" -#: apt-inst/extract.cc:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "Kunne ikke finde %s" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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 "Dette er ikke et gyldigt DEB-arkiv, mangler »%s«-elementet" -#: apt-inst/deb/debfile.cc:124 +#: apt-inst/deb/debfile.cc:132 #, c-format msgid "Internal error, could not locate member %s" msgstr "Intern fejl, kunne ikke finde elementet %s" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "Ikke-tolkbar kontrolfil" @@ -2366,481 +2398,486 @@ msgstr "" "bruger." #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lid %lih %limin %lis" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "%lih %limin %lis" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "%limin %lis" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "%lis" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "Det valgte %s blev ikke fundet" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Ukendt type-forkortelse: »%c«" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "Ã…bner konfigurationsfilen %s" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Syntaksfejl %s:%u: Blokken starter uden navn." -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Syntaksfejl %s:%u: Forkert udformet mærke" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Syntaksfejl %s:%u: Overskydende affald efter værdien" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "Syntaksfejl %s:%u: Direktiver kan kun angives i topniveauet" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Syntaksfejl %s:%u: For mange sammenkædede inkluderinger" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Syntaksfejl %s:%u: Inkluderet herfra" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Syntaksfejl %s:%u: Ikke-understøttet direktiv »%s«" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-pkg/contrib/configuration.cc:900 #, c-format msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "Syntaksfejl %s:%u: ryd direktiv kræver et tilvalgstræ som argument" -#: apt-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Syntaksfejl %s:%u: Overskydende affald i slutningen af filen" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... Fejl!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... Færdig" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "..." #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, c-format msgid "%c%s... %u%%" msgstr "%c%s... %u%%" -#: apt-pkg/contrib/cmndline.cc:116 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format msgid "Command line option '%c' [from %s] is not known." msgstr "Kommandolinjetilvalget »%c« [fra %s] kendes ikke." -#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 #, c-format msgid "Command line option %s is not understood" msgstr "Kommandolinjetilvalget %s blev ikke forstÃ¥et" -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format msgid "Command line option %s is not boolean" msgstr "Kommandolinjetilvalget %s er ikke boolsk" -#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "Tilvalget %s kræver et parameter." -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "Tilvalg %s: Opsætningspostens specifikation skal have en =<værdi>." -#: apt-pkg/contrib/cmndline.cc:273 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format msgid "Option %s requires an integer argument, not '%s'" msgstr "Tilvalget %s kræver et heltalligt parameter, ikke »%s«" -#: apt-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "Tilvalget »%s« er for langt" -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "%s blev ikke forstÃ¥et, prøv med »true« eller »false«." -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "Ugyldig handling %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format msgid "Unable to stat the mount point %s" msgstr "Kunne ikke finde monteringspunktet %s" -#: apt-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "Kunne ikke finde cdrommen" -#: apt-pkg/contrib/fileutl.cc:95 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problem under lukning af gzip-filen %s" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "Benytter ikke lÃ¥sning for skrivebeskyttet lÃ¥sefil %s" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "Kunne ikke Ã¥bne lÃ¥sefilen %s" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "Benytter ikke lÃ¥sning for nfs-monteret lÃ¥sefil %s" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "Kunne ikke opnÃ¥ lÃ¥sen %s" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "Liste over filer kan ikke oprettes da »%s« ikke er en mappe" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "Ignorerer »%s« i mappe »%s« da det ikke er en regulær fil" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "Ignorerer fil »%s« i mappe »%s« da den ikke har en filendelse" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "Ignorerer fil »%s« i mappe »%s« da den har en ugyldig filendelse" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Underprocessen %s modtog en segmenteringsfejl." -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, c-format msgid "Sub-process %s received signal %u." msgstr "Underprocessen %s modtog en signal %u." -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 apt-pkg/contrib/gpgv.cc:239 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Underprocessen %s returnerede en fejlkode (%u)" -#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Underprocessen %s afsluttedes uventet" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problem under lukning af gzip-filen %s" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "Kunne ikke Ã¥bne filen %s" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, c-format msgid "Could not open file descriptor %d" msgstr "Kunne ikke Ã¥bne filbeskrivelse %d" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "Kunne ikke oprette underproces IPC" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "Kunne ikke udføre komprimeringsprogram " -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, c-format msgid "read, still have %llu to read but none left" msgstr "læs, mangler stadig at læse %llu men der er ikke flere" -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, c-format msgid "write, still have %llu to write but couldn't" msgstr "skriv, mangler stadig at skrive %llu men kunne ikke" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, c-format msgid "Problem closing the file %s" msgstr "Problem under lukning af filen %s" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, c-format msgid "Problem renaming the file %s to %s" msgstr "Problem under omdøbning af filen %s til %s" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, c-format msgid "Problem unlinking the file %s" msgstr "Fejl ved frigivelse af filen %s" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "Problem under synkronisering af fil" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "omdøbning mislykkedes, %s (%s -> %s)." + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, c-format msgid "No keyring installed in %s." msgstr "Ingen nøglering installeret i %s." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "Tomt pakke-mellemlager" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "Pakke-mellemlagerets fil er ødelagt" -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "Pakke-mellemlagerets fil er af en inkompatibel version" -#: apt-pkg/pkgcache.cc:162 +#: apt-pkg/pkgcache.cc:169 msgid "The package cache file is corrupted, it is too small" msgstr "Pakke-mellemlagerets fil er ødelagt, den er for lille" -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "Denne APT understøtter ikke versionssystemet »%s«" -#: apt-pkg/pkgcache.cc:172 +#: apt-pkg/pkgcache.cc:179 msgid "The package cache was built for a different architecture" msgstr "Pakke-mellemlageret er lavet til en anden arkitektur" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "Afhængigheder" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "Præ-afhængigheder" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "ForeslÃ¥ede" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "Anbefalede" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "Konflikter" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "Erstatter" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "Overflødiggør" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "Ødelægger" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "Forbedringer" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "vigtig" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "krævet" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "standard" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "frivillig" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "ekstra" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "Opbygger afhængighedstræ" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "Kandidatversioner" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "Afhængighedsgenerering" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 msgid "Reading state information" msgstr "Læser tilstandsoplysninger" -#: apt-pkg/depcache.cc:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "Kunne ikke Ã¥bne StateFile %s" -#: apt-pkg/depcache.cc:250 +#: apt-pkg/depcache.cc:256 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Kunne ikke skrive den midlertidige StateFile %s" -#: apt-pkg/tagfile.cc:138 +#: apt-pkg/tagfile.cc:140 #, c-format msgid "Unable to parse package file %s (1)" msgstr "Kunne ikke tolke pakkefilen %s (1)" -#: apt-pkg/tagfile.cc:235 +#: apt-pkg/tagfile.cc:237 #, c-format msgid "Unable to parse package file %s (2)" msgstr "Kunne ikke tolke pakkefilen %s (2)" -#: apt-pkg/sourcelist.cc:118 +#: apt-pkg/sourcelist.cc:127 #, fuzzy, c-format msgid "Malformed stanza %u in source list %s (URI parse)" msgstr "Ugyldig linje %lu i kildelisten %s (tolkning af URI)" -#: apt-pkg/sourcelist.cc:161 +#: apt-pkg/sourcelist.cc:170 #, c-format msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "Ugyldig linje %lu i kildelisten %s ([tilvalg] kunne ikke fortolkes)" -#: apt-pkg/sourcelist.cc:164 +#: apt-pkg/sourcelist.cc:173 #, c-format msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "Ugyldig linje %lu i kildelisten %s ([tilvalg] for kort)" -#: apt-pkg/sourcelist.cc:175 +#: apt-pkg/sourcelist.cc:184 #, c-format msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" msgstr "Ugyldig linje %lu i kildelisten %s ([%s] er ikke en opgave)" -#: apt-pkg/sourcelist.cc:181 +#: apt-pkg/sourcelist.cc:190 #, c-format msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "Ugyldig linje %lu i kildelisten %s ([%s] har ingen nøgle)" -#: apt-pkg/sourcelist.cc:184 +#: apt-pkg/sourcelist.cc:193 #, c-format msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "Ugyldig linje %lu i kildelisten %s ([%s] nøgle %s har ingen værdi)" -#: apt-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "Ugyldig linje %lu i kildelisten %s (URI)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "Ugyldig linje %lu i kildelisten %s (dist)" -#: apt-pkg/sourcelist.cc:202 +#: apt-pkg/sourcelist.cc:211 #, c-format msgid "Malformed line %lu in source list %s (URI parse)" msgstr "Ugyldig linje %lu i kildelisten %s (tolkning af URI)" -#: apt-pkg/sourcelist.cc:208 +#: apt-pkg/sourcelist.cc:217 #, c-format msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "Ugyldig linje %lu i kildelisten %s (absolut dist)" -#: apt-pkg/sourcelist.cc:215 +#: apt-pkg/sourcelist.cc:224 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" msgstr "Ugyldig linje %lu i kildelisten %s (tolkning af dist)" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "Ã…bner %s" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "Linjen %u er for lang i kildelisten %s." -#: apt-pkg/sourcelist.cc:362 +#: apt-pkg/sourcelist.cc:371 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Ugyldig linje %u i kildelisten %s (type)" -#: apt-pkg/sourcelist.cc:366 +#: apt-pkg/sourcelist.cc:375 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Typen »%s« er ukendt pÃ¥ linje %u i kildelisten %s" -#: apt-pkg/sourcelist.cc:407 +#: apt-pkg/sourcelist.cc:416 #, fuzzy, c-format msgid "Type '%s' is not known on stanza %u in source list %s" msgstr "Typen »%s« er ukendt pÃ¥ linje %u i kildelisten %s" -#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2849,12 +2886,12 @@ msgstr "" "Kunne ikke udføre øjeblikkelig konfiguration pÃ¥ »%s«. Se venligst man 5 apt." "conf under APT:Immediate-Cinfigure for detaljer. (%d)" -#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, c-format msgid "Could not configure '%s'. " msgstr "Kunne ikke Ã¥bne filen »%s«. " -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2866,19 +2903,19 @@ msgstr "" "ide, men hvis du virkelig vil gøre det, kan du aktivere valget »APT::Force-" "LoopBreak«." -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "Indeksfiler af typen »%s« understøttes ikke" -#: apt-pkg/algorithms.cc:266 +#: 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 skal geninstalleres, men jeg kan ikke finde noget arkiv med den." -#: apt-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2886,89 +2923,89 @@ msgstr "" "Fejl, pkgProblemResolver::Resolve satte stopklodser op, det kan skyldes " "tilbageholdte pakker." -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Kunne ikke korrigere problemerne, da du har tilbageholdt ødelagte pakker." -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, c-format msgid "List directory %spartial is missing." msgstr "Listemappen %spartial mangler." -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, c-format msgid "Archives directory %spartial is missing." msgstr "Arkivmappen %spartial mangler." -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, c-format msgid "Unable to lock directory %s" msgstr "Kunne ikke lÃ¥se mappen %s" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Henter fil %li ud af %li (%s tilbage)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "Henter fil %li ud af %li" -#: apt-pkg/acquire-worker.cc:113 +#: apt-pkg/acquire-worker.cc:116 #, c-format msgid "The method driver %s could not be found." msgstr "Metodedriveren %s blev ikke fundet." -#: apt-pkg/acquire-worker.cc:115 +#: apt-pkg/acquire-worker.cc:118 #, fuzzy, c-format msgid "Is the package %s installed?" msgstr "Tjek om pakken »dpkg-dev« er installeret.\n" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "Metoden %s startede ikke korrekt" -#: apt-pkg/acquire-worker.cc:452 +#: apt-pkg/acquire-worker.cc:455 #, c-format msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "Indsæt disken med navnet: »%s« i drevet »%s« og tryk retur." -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Pakkesystemet »%s« understøttes ikke" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "Kunne ikke bestemme en passende pakkesystemtype" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "Kunne ikke finde %s." -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "Du skal have nogle »source«-URI'er i din sources.list" -#: apt-pkg/cachefile.cc:87 +#: apt-pkg/cachefile.cc:94 msgid "The package lists or status file could not be parsed or opened." msgstr "Pakkelisterne eller statusfilen kunne ikke tolkes eller Ã¥bnes." -#: apt-pkg/cachefile.cc:91 +#: apt-pkg/cachefile.cc:98 msgid "You may want to run apt-get update to correct these problems" msgstr "Du kan muligvis rette problemet ved at køre »apt-get update«" -#: apt-pkg/cachefile.cc:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "Listen med kilder kunne ikke læses." -#: apt-pkg/policy.cc:75 +#: apt-pkg/policy.cc:83 #, c-format msgid "" "The value '%s' is invalid for APT::Default-Release as such a release is not " @@ -2977,98 +3014,93 @@ msgstr "" "Værdien »%s« er ugyldig for APT::Default-Release da sÃ¥dan en udgivelse ikke " "er tilgængelig i kilderne" -#: apt-pkg/policy.cc:414 +#: apt-pkg/policy.cc:422 #, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "Ugyldig indgang i indstillingsfilen %s, pakkehovedet mangler" -#: apt-pkg/policy.cc:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "Kunne ikke forstÃ¥ pin-type %s" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "Ingen prioritet (eller prioritet nul) angivet ved pin" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 msgid "Cache has an incompatible versioning system" msgstr "Mellemlageret benytter en inkompatibel versionsstyring" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Der opstod en fejl under behandlingen af %s (%s%d)" -#: apt-pkg/pkgcachegen.cc:251 +#: apt-pkg/pkgcachegen.cc:257 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "Hold da op! Du nÃ¥ede over det antal pakkenavne, denne APT kan hÃ¥ndtere." -#: apt-pkg/pkgcachegen.cc:254 +#: apt-pkg/pkgcachegen.cc:260 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "Hold da op! Du nÃ¥ede over det antal versioner, denne APT kan hÃ¥ndtere." -#: apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:263 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "Hold da op! Du nÃ¥ede over det antal versioner, denne APT kan hÃ¥ndtere." -#: apt-pkg/pkgcachegen.cc:260 +#: apt-pkg/pkgcachegen.cc:266 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" "Hold da op! Du nÃ¥ede over det antal afhængigheder, denne APT kan hÃ¥ndtere." -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:576 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Pakken %s %s blev ikke fundet under behandlingen af filafhængigheder" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "Kunne ikke finde kildepakkelisten %s" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 msgid "Reading package lists" msgstr "Indlæser pakkelisterne" -#: apt-pkg/pkgcachegen.cc:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "Samler filudbud" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 msgid "IO Error saving source cache" msgstr "IO-fejl ved gemning af kilde-mellemlageret" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "omdøbning mislykkedes, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "Hashsum stemmer ikke" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "Størrelsen stemmer ikke" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 msgid "Invalid file format" msgstr "Ugyldigt filformat" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, c-format msgid "" "Unable to find expected entry '%s' in Release file (Wrong sources.list entry " @@ -3077,17 +3109,17 @@ msgstr "" "Kunne ikke finde uventet punkt »%s« i udgivelsesfil (forkert sources.list-" "punkt eller forkert udformet fil)" -#: apt-pkg/acquire-item.cc:1586 +#: apt-pkg/acquire-item.cc:1595 #, c-format msgid "Unable to find hash sum for '%s' in Release file" msgstr "Kunne ikke finde hashsum for »%s« i udgivelsesfilen" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "" "Der er ingen tilgængelige offentlige nøgler for følgende nøgle-ID'er:\n" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " @@ -3096,12 +3128,12 @@ msgstr "" "Udgivelsesfil for %s er udløbet (ugyldig siden %s). Opdateringer for dette " "arkiv vil ikke blive anvendt." -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Konfliktdistribution: %s (forventede %s men fik %s)" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3111,12 +3143,12 @@ msgstr "" "og den forrige indeksfil vil blive brugt. GPG-fejl: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "GPG-fejl: %s: %s" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3125,82 +3157,78 @@ msgstr "" "Jeg kunne ikke lokalisere filen til %s-pakken. Det betyder muligvis at du er " "nødt til manuelt at reparere denne pakke. (grundet manglende arch)" -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "Kan ikke finde en kilde til at hente version »%s« for »%s«" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "Pakkeindeksfilerne er i stykker. Intet »Filename:«-felt for pakken %s." -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, c-format msgid "Unable to parse Release file %s" msgstr "Kunne ikke fortolke udgivelsesfil %s" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, c-format msgid "No sections in Release file %s" msgstr "Ingen afsnit i udgivelsesfil %s" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "Intet hashpunkt i udgivelsesfil %s" -#: apt-pkg/indexrecords.cc:125 +#: apt-pkg/indexrecords.cc:130 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Ugyldigt punkt »Valid-Until« i udgivelsesfil %s" -#: apt-pkg/indexrecords.cc:144 +#: apt-pkg/indexrecords.cc:149 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Ugyldigt punkt »Date« i udgivelsesfil %s" -#: apt-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "Leverandørblok %s inderholder intet fingeraftryk" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" -msgstr "Bruger cdrom-monteringspunktet %s\n" +msgstr "Bruger CD-ROM-monteringspunktet %s\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "Afmonterer cdrom\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "Afmonterer CD-ROM ...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "Venter pÃ¥ disken ...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" -msgstr "Monterer cdrom ...\n" +msgstr "Monterer CD-ROM ...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " -msgstr "Identificerer .. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " +msgstr "Identificerer ... " -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "Gemt mærkat: %s \n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "Afmonterer cdrom ...\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" -msgstr "Skanner disken for indeksfiler ..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" +msgstr "Skanner disken for indeksfiler ...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3209,7 +3237,7 @@ msgstr "" "Fandt %zu pakkeindekser, %zu kildeindekser, %zu oversættelsesindekser og %zu " "signaturer\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" @@ -3217,16 +3245,16 @@ msgstr "" "Kunne ikke finde nogen pakkefiler, det er muligvis ikke en Debiandisk eller " "den forkerte arkitektur?" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "Fandt mærkatet »%s«\n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "Det er ikke et gyldigt navn, prøv igen.\n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3235,34 +3263,34 @@ msgstr "" "Denne disk hedder: \n" "»%s«\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "Kopierer pakkelisterne ..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "Skriver ny kildeliste\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "Denne disk har følgende kildeliste-indgange:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: 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:777 +#: 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" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:780 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Skrev %i poster med %i ikke-trufne filer\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "Skrev %i poster med %i manglende filer og %i ikke-trufne filer\n" @@ -3277,37 +3305,37 @@ msgstr "Kan ikke finde godkendelsesregistrering for: %s" msgid "Hash mismatch for: %s" msgstr "Hashsum stemmer ikke: %s" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Udgaven »%s« for »%s« blev ikke fundet" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Versionen »%s« for »%s« blev ikke fundet" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, c-format msgid "Couldn't find task '%s'" msgstr "Kunne ikke finde opgaven »%s«" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, c-format msgid "Couldn't find any package by regex '%s'" msgstr "Kunne ikke finde nogle pakker med regulært udtryk »%s«" -#: apt-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "Kunne ikke finde nogle pakker med regulært udtryk »%s«" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, c-format msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "Kan ikke vælge versioner fra pakke »%s« som er vitalt" -#: apt-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " @@ -3316,53 +3344,53 @@ msgstr "" "Kan ikke vælge installeret eller kandidatversion fra pakke »%s« da den ikke " "har nogen af dem" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, c-format msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "Kan ikke vælge nyeste version fra pakke »%s« som er vital" -#: apt-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" "Kan ikke vælge kandidatversion fra pakke %s da den ikke har nogen kandidat" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "" "Kan ikke vælge installeret version fra pakke %s da den ikke er installeret" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "Send scenarie til problemløser" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "Send forespørgsel til problemløser" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "Forbered for modtagelse af løsning" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "Ekstern problemløser fejlede uden en korrekt fejlbesked" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "Kør ekstern problemløser" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "Status: [%3i%%]" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "Kører dpkg" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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." @@ -3370,119 +3398,119 @@ msgstr "" "Nogle indeksfiler kunne ikke hentes. De er blevet ignoreret eller de gamle " "bruges i stedet." -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "Installerer %s" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "Sætter %s op" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "Fjerner %s" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format msgid "Completely removing %s" msgstr "Fjerner %s helt" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "Bemærker forsvinding af %s" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "Kører førinstallationsudløser %s" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "Mappe »%s« mangler" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format msgid "Could not open file '%s'" msgstr "Kunne ikke Ã¥bne filen »%s«" -#: apt-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "Klargør %s" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "Pakker %s ud" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "Gør klar til at sætte %s op" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "Installerede %s" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "Gør klar til afinstallation af %s" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "Fjernede %s" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "Gør klar til at fjerne %s helt" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "Fjernede %s helt" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, c-format msgid "Can not write log (%s)" msgstr "Kan ikke skrive log (%s)" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "Er /dev/pts monteret?" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "Er standardud en terminal?" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "Handling blev afbrudt før den kunne afsluttes" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 msgid "No apport report written because MaxReports is reached already" msgstr "" "Ingen apportrapport skrevet da MaxReports (maks rapporter) allerede er nÃ¥et" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "afhængighedsproblemer - efterlader ukonfigureret" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3490,14 +3518,14 @@ msgstr "" "Ingen apportrapport skrevet da fejlbeskeden indikerer, at det er en " "opfølgningsfejl fra en tidligere fejl." -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" "Ingen apportrapport skrevet da fejlbeskeden indikerer en fuld disk-fejl" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3505,7 +3533,7 @@ msgstr "" "Ingen apportrapport skrevet da fejlbeskeden indikerer en ikke nok " "hukommelsesfejl" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 msgid "" "No apport report written because the error message indicates an issue on the " "local system" @@ -3513,12 +3541,12 @@ msgstr "" "Ingen apportrapport skrevet da fejlbeskeden indikerer en fejl pÃ¥ det lokale " "system" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "Ingen apportrapport skrevet da fejlbeskeden indikerer en dpkg I/O-fejl" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " @@ -3526,20 +3554,20 @@ msgid "" msgstr "" "Kunne ikke lÃ¥se administrationsmappen (%s), bruger en anden proces den?" -#: apt-pkg/deb/debsystem.cc:87 +#: apt-pkg/deb/debsystem.cc:94 #, c-format msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Kunne ikke lÃ¥se administrationsmappen (%s), er du rod (root)?" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " msgstr "dpkg blev afbrudt, du skal manuelt køre »%s« for at rette problemet." -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "Ikke lÃ¥st" @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.2\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2012-06-27 10:55+0200\n" "Last-Translator: Holger Wansing <linux@wansing-online.de>\n" "Language-Team: Debian German <debian-l10n-german@lists.debian.org>\n" @@ -20,156 +20,157 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;>\n" -#: cmdline/apt-cache.cc:140 +#: 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:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "Gesamtzahl an Paketnamen: " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 msgid "Total package structures: " msgstr "Gesamtzahl an Paketstrukturen: " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " davon gewöhnliche Pakete: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " davon rein virtuelle Pakete: " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " davon einzelne virtuelle Pakete: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " davon gemischte virtuelle Pakete: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " davon fehlend: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "Gesamtzahl an unterschiedlichen Versionen: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "Gesamtzahl an unterschiedlichen Beschreibungen: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "Gesamtzahl an Abhängigkeiten: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "Gesamtzahl an Version/Datei-Beziehungen: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "Gesamtzahl an Beschreibung/Datei-Beziehungen: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "Gesamtzahl an Bereitstellungen: " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "Gesamtzahl an Mustern: " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "Gesamtmenge des Abhängigkeits-/Versionsspeichers: " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "Gesamtmenge an Slack: " -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "Gesamtmenge an Speicher: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: 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." -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 msgid "You must give at least one search pattern" msgstr "Sie müssen mindestens ein Suchmuster angeben" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" "Dieser Befehl ist überholt. Bitte verwenden Sie stattdessen »apt-mark " "showauto«." -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "Paket %s kann nicht gefunden werden." -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "Paketdateien:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: 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" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "Mit Pinning verwaltete Pakete:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(nicht gefunden)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " Installiert: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " Installationskandidat: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(keine)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " Paket-Pinning: " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " Versionstabelle:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s für %s, kompiliert am %s %s\n" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] showpkg pkg1 [pkg2 ...]\n" @@ -240,32 +241,32 @@ msgstr "" "Weitere Informationen finden Sie in den Handbuchseiten von apt-cache(8)\n" "und apt.conf(5).\n" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: cmdline/apt-cdrom.cc:76 msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" "Bitte geben Sie einen Namen für dieses Medium an, wie zum Beispiel »Debian " "5.0.3 Disk 1«" -#: cmdline/apt-cdrom.cc:104 +#: cmdline/apt-cdrom.cc:91 msgid "Please insert a Disc in the drive and press enter" msgstr "" "Bitte legen Sie ein Medium in das Laufwerk ein und drücken Sie die " "Eingabetaste (Enter)." -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, c-format msgid "Failed to mount '%s' to '%s'" msgstr "»%s« konnte nicht in »%s« eingebunden werden." -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "" "Wiederholen Sie dieses Prozedere für die restlichen Disks Ihres Satzes." @@ -303,47 +304,47 @@ msgstr "" " -c=? Diese Konfigurationsdatei lesen\n" " -o=? Eine beliebige Konfigurationsoption setzen, z.B. -o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:244 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format msgid "Can not find a package for architecture '%s'" msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden." -#: cmdline/apt-get.cc:326 +#: cmdline/apt-get.cc:327 #, fuzzy, c-format msgid "Can not find a package '%s' with version '%s'" msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden." -#: cmdline/apt-get.cc:329 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format msgid "Can not find a package '%s' with release '%s'" msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden." -#: cmdline/apt-get.cc:366 +#: cmdline/apt-get.cc:367 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Als Quellpaket wird »%s« statt »%s« gewählt.\n" -#: cmdline/apt-get.cc:422 +#: cmdline/apt-get.cc:423 #, fuzzy, c-format msgid "Can not find version '%s' of package '%s'" msgstr "Nicht verfügbare Version »%s« von Paket »%s« wird ignoriert." -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "Paket %s konnte nicht gefunden werden" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "%s wurde als manuell installiert festgelegt.\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s wurde als automatisch installiert festgelegt.\n" -#: cmdline/apt-get.cc:468 cmdline/apt-mark.cc:116 +#: 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." @@ -351,21 +352,21 @@ msgstr "" "Dieser Befehl ist überholt. Bitte verwenden Sie stattdessen »apt-mark auto« " "und »apt-mark manual«." -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 msgid "Internal error, problem resolver broke stuff" msgstr "Interner Fehler, der Problemlöser hat etwas beschädigt." -#: cmdline/apt-get.cc:573 cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 msgid "Unable to lock the download directory" msgstr "Das Downloadverzeichnis konnte nicht gesperrt werden." -#: cmdline/apt-get.cc:725 +#: cmdline/apt-get.cc:726 msgid "Must specify at least one package to fetch source for" msgstr "" "Es muss mindestens ein Paket angegeben werden, dessen Quellen geholt werden " "sollen." -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "Quellpaket für %s kann nicht gefunden werden." @@ -392,80 +393,80 @@ msgstr "" "um die neuesten (möglicherweise noch unveröffentlichten) Aktualisierungen\n" "für das Paket abzurufen.\n" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Bereits heruntergeladene Datei »%s« wird übersprungen.\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "Freier Platz in %s konnte nicht bestimmt werden." -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "Sie haben nicht genügend freien Speicherplatz in %s." #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Es müssen noch %sB von %sB an Quellarchiven heruntergeladen werden.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Es müssen %sB an Quellarchiven heruntergeladen werden.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "Quelle %s wird heruntergeladen.\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "Einige Archive konnten nicht heruntergeladen werden." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "Herunterladen abgeschlossen; Nur-Herunterladen-Modus aktiv" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Das Entpacken der bereits entpackten Quelle in %s wird übersprungen.\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Entpackbefehl »%s« fehlgeschlagen.\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Überprüfen Sie, ob das Paket »dpkg-dev« installiert ist.\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "Build-Befehl »%s« fehlgeschlagen.\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "Kindprozess fehlgeschlagen" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "" "Es muss mindestens ein Paket angegeben werden, dessen Bauabhängigkeiten " "überprüft werden sollen." -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -474,18 +475,18 @@ msgstr "" "Keine Architekturinformation für %s verfügbar. Weiteres zur Einrichtung " "finden Sie unter apt.conf(5) APT::Architectures." -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" "Informationen zu Bauabhängigkeiten für %s konnten nicht gefunden werden." -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s hat keine Bauabhängigkeiten.\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -494,7 +495,7 @@ msgstr "" "»%s«-Abhängigkeit für %s kann nicht erfüllt werden, da %s bei »%s«-Paketen " "nicht erlaubt ist." -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -503,14 +504,14 @@ msgstr "" "»%s«-Abhängigkeit für %s kann nicht erfüllt werden, da Paket %s nicht " "gefunden werden kann." -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "»%s«-Abhängigkeit für %s kann nicht erfüllt werden: Installiertes Paket %s " "ist zu neu." -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -520,7 +521,7 @@ msgstr "" "Installationskandidaten für das Paket %s die Versionsanforderungen nicht " "erfüllen kann." -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -529,30 +530,30 @@ msgstr "" "»%s«-Abhängigkeit für %s kann nicht erfüllt werden, da für Paket %s kein " "Installationskandidat existiert." -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "»%s«-Abhängigkeit für %s konnte nicht erfüllt werden: %s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Bauabhängigkeiten für %s konnten nicht erfüllt werden." -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "Verarbeitung der Bauabhängigkeiten fehlgeschlagen" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, c-format msgid "Changelog for %s (%s)" msgstr "Änderungsprotokoll (Changelog) für %s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "Unterstützte Module:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -647,54 +648,78 @@ msgstr "" "bezüglich weitergehender Informationen und Optionen.\n" " Dieses APT hat Super-Kuh-Kräfte.\n" -#: cmdline/apt-mark.cc:57 +#: 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:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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:63 +#: cmdline/apt-mark.cc:74 #, c-format msgid "%s was already set to manually installed.\n" msgstr "%s wurde bereits auf manuell installiert gesetzt.\n" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, c-format msgid "%s was already set to automatically installed.\n" msgstr "%s wurde bereits auf automatisch installiert gesetzt.\n" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, c-format msgid "%s was already set on hold.\n" msgstr "%s wurde bereits auf Halten gesetzt.\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, c-format msgid "%s was already not hold.\n" msgstr "Die Halten-Markierung für %s wurde bereits entfernt.\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Es wurde auf %s gewartet, war jedoch nicht vorhanden" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format msgid "%s set on hold.\n" msgstr "%s auf Halten gesetzt.\n" -#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format msgid "Canceled hold on %s.\n" msgstr "Halten-Markierung für %s entfernt.\n" -#: cmdline/apt-mark.cc:334 +#: 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:381 +#: cmdline/apt-mark.cc:392 #, fuzzy msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" @@ -742,7 +767,7 @@ msgstr "" "Siehe auch die Handbuchseiten apt-mark(8) und apt.conf(5) bezüglich\n" "weitergehender Informationen und Optionen." -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -792,53 +817,53 @@ msgstr "" msgid "Disk not found." msgstr "Medium nicht gefunden" -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: 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:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: 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:82 methods/gzip.cc:113 methods/rred.cc:606 +#: 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:47 +#: 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:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "Anmeldung läuft" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "Name des Kommunikationspartners kann nicht bestimmt werden." -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "Lokaler Name kann nicht bestimmt werden." -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format msgid "The server refused the connection and said: %s" msgstr "Verbindung durch Server abgelehnt; Server meldet: %s" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "Befehl USER fehlgeschlagen, Server meldet: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "Befehl PASS fehlgeschlagen, Server meldet: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -846,123 +871,125 @@ msgstr "" "Es war ein Proxy-Server angegeben, aber kein Login-Skript, Acquire::ftp::" "ProxyLogin ist leer." -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Befehl »%s« des Login-Skriptes fehlgeschlagen, Server meldet: %s" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "Befehl TYPE fehlgeschlagen: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: 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:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "Verbindung durch Server geschlossen" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "Lesefehler" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: 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:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "Protokoll beschädigt" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "Schreibfehler" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 msgid "Could not create a socket" msgstr "Socket konnte nicht erzeugt werden." -#: methods/ftp.cc:707 +#: methods/ftp.cc:712 msgid "Could not connect data socket, connection timed out" msgstr "Daten-Socket konnte wegen Zeitüberschreitung nicht verbunden werden." -#: methods/ftp.cc:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "Fehlgeschlagen" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "Passiver Socket konnte nicht verbunden werden." -#: methods/ftp.cc:730 +#: 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." -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "Verbindung des Sockets nicht möglich" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "Warten auf Verbindungen auf dem Socket nicht möglich" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "Name des Sockets konnte nicht bestimmt werden." -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "PORT-Befehl konnte nicht gesendet werden." -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Unbekannte Adressfamilie %u (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "Befehl EPRT fehlgeschlagen: %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "Zeitüberschreitung bei Datenverbindungsaufbau" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "Verbindung konnte nicht angenommen werden." -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "Problem bei Bestimmung des Hashwertes einer Datei" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Datei konnte nicht heruntergeladen werden; Server meldet: »%s«" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "Zeitüberschreitung bei Datenverbindung" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Datenübertragung fehlgeschlagen; Server meldet: »%s«" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "Abfrage" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "Aufruf nicht möglich: " @@ -1000,7 +1027,7 @@ msgstr "Verbindung mit %s:%s nicht möglich (%s)" #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "Verbindung mit %s" @@ -1030,40 +1057,40 @@ msgstr "Beim Auflösen von »%s:%s« ist etwas Schlimmes passiert (%i - %s)." msgid "Unable to connect to %s:%s:" msgstr "Verbindung mit %s:%s nicht möglich:" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Interner Fehler: Gültige Signatur, Fingerabdruck des Schlüssels konnte " "jedoch nicht ermittelt werden?!" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "Mindestens eine ungültige Signatur wurde entdeckt." -#: methods/gpgv.cc:172 +#: methods/gpgv.cc:174 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" 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:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "Unbekannter Fehler beim Ausführen von gpgv" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Die folgenden Signaturen waren ungültig:\n" -#: methods/gpgv.cc:229 +#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@ -1072,153 +1099,153 @@ msgstr "" "öffentlicher\n" "Schlüssel nicht verfügbar ist:\n" -#: methods/gzip.cc:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "Leere Dateien können kein gültiges Archiv sein." -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "Fehler beim Schreiben der Datei" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "" "Fehler beim Lesen vom Server: Verbindung wurde durch den Server auf der " "anderen Seite geschlossen." -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "Fehler beim Lesen vom Server" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "Fehler beim Schreiben in Datei" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "Auswahl fehlgeschlagen" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "Zeitüberschreitung bei Verbindung" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "Fehler beim Schreiben der Ausgabedatei" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "Warten auf Kopfzeilen" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "Ungültige Kopfzeile" -#: methods/server.cc:139 methods/server.cc:146 +#: 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." -#: methods/server.cc:176 +#: methods/server.cc:171 msgid "The HTTP server sent an invalid Content-Length header" msgstr "" "Vom HTTP-Server wurde eine ungültige »Content-Length«-Kopfzeile gesandt." -#: methods/server.cc:199 +#: methods/server.cc:194 msgid "The HTTP server sent an invalid Content-Range header" msgstr "" "Vom HTTP-Server wurde eine ungültige »Content-Range«-Kopfzeile gesandt." -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "" "Teilweise Dateiübertragung wird vom HTTP-Server nur fehlerhaft unterstützt." -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "Unbekanntes Datumsformat" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "Fehlerhafte Kopfzeilendaten" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "Verbindung fehlgeschlagen" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "Interner Fehler" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Interner Fehler, InstallPackages mit defekten Paketen aufgerufen!" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "Pakete müssen entfernt werden, aber Entfernen ist abgeschaltet." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "Interner Fehler, Anordnung beendete nicht" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +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)." #. TRANSLATOR: The required 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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Es müssen noch %sB von %sB an Archiven heruntergeladen werden.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:171 +#: apt-private/private-install.cc:159 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Es müssen %sB an Archiven heruntergeladen werden.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:178 +#: apt-private/private-install.cc:166 #, 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" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:183 +#: apt-private/private-install.cc:171 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Nach dieser Operation werden %sB Plattenplatz freigegeben.\n" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "Sie haben nicht genug Platz in %s." -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "Es gab Probleme und -y wurde ohne --force-yes verwendet." -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 msgid "Trivial Only specified but this is not a trivial operation." msgstr "»Nur triviale« angegeben, aber dies ist keine triviale Operation." #. 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Ja, tue was ich sage!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1229,19 +1256,19 @@ msgstr "" "Zum Fortfahren geben Sie bitte »%s« ein.\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "Abbruch." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "Möchten Sie fortfahren?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "Einige Dateien konnten nicht heruntergeladen werden." -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1249,19 +1276,19 @@ msgstr "" "Einige Archive konnten nicht heruntergeladen werden; vielleicht »apt-get " "update« ausführen oder mit »--fix-missing« probieren?" -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing und Wechselmedien werden derzeit nicht unterstützt." -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "Fehlende Pakete konnten nicht korrigiert werden." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "Installation abgebrochen." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1275,16 +1302,16 @@ msgstr[1] "" "Die folgenden Pakete verschwanden von Ihrem System, da alle\n" "Dateien von anderen Paketen überschrieben wurden:" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Hinweis: Dies wird automatisch und absichtlich von dpkg durchgeführt." -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "Es soll nichts gelöscht werden, AutoRemover kann nicht gestartet werden." -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1303,16 +1330,16 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 msgid "The following information may help to resolve the situation:" msgstr "" "Die folgenden Informationen helfen Ihnen vielleicht, die Situation zu lösen:" -#: apt-private/private-install.cc:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "Interner Fehler, AutoRemover hat etwas beschädigt." -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1325,7 +1352,7 @@ msgstr[1] "" "Die folgenden Pakete wurden automatisch installiert und werden nicht mehr " "benötigt:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1335,17 +1362,17 @@ msgstr[0] "" msgstr[1] "" "%lu Pakete wurden automatisch installiert und werden nicht mehr benötigt.\n" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Verwenden Sie »apt-get autoremove«, um es zu entfernen." msgstr[1] "Verwenden Sie »apt-get autoremove«, um sie zu entfernen." -#: apt-private/private-install.cc:624 +#: apt-private/private-install.cc:612 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Probieren Sie »apt-get -f install«, um dies zu korrigieren:" -#: apt-private/private-install.cc:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1353,7 +1380,7 @@ msgstr "" "Unerfüllte Abhängigkeiten. Versuchen Sie »apt-get -f install« ohne Angabe " "eines Pakets (oder geben Sie eine Lösung an)." -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1365,146 +1392,146 @@ msgstr "" "Unstable-Distribution verwenden, dass einige erforderliche Pakete noch\n" "nicht erstellt wurden oder Incoming noch nicht verlassen haben." -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "Beschädigte Pakete" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "Die folgenden zusätzlichen Pakete werden installiert:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "Vorgeschlagene Pakete:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "Empfohlene Pakete:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "WARNUNG: Die folgenden Pakete können nicht authentifiziert werden!" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "Authentifizierungswarnung überstimmt.\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "Einige Pakete konnten nicht authentifiziert werden." -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "Diese Pakete ohne Überprüfung installieren?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Fehlschlag beim Holen von %s %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [Installiert]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [Installiert]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [Installiert]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [Installiert]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "Die folgenden Pakete haben unerfüllte Abhängigkeiten:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "aber %s ist installiert" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "aber %s soll installiert werden" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "ist aber nicht installierbar" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "ist aber ein virtuelles Paket" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "ist aber nicht installiert" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "soll aber nicht installiert werden" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " oder" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "Die folgenden NEUEN Pakete werden installiert:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "Die folgenden Pakete werden ENTFERNT:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "Die folgenden Pakete sind zurückgehalten worden:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "Die folgenden Pakete werden aktualisiert (Upgrade):" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "" "Die folgenden Pakete werden durch eine ÄLTERE VERSION ERSETZT (Downgrade):" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "Die folgenden zurückgehaltenen Pakete werden verändert:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (wegen %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1512,27 +1539,27 @@ 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:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu aktualisiert, %lu neu installiert, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu erneut installiert, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu durch eine ältere Version ersetzt, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu zu entfernen und %lu nicht aktualisiert.\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu nicht vollständig installiert oder entfernt.\n" @@ -1541,7 +1568,7 @@ msgstr "%lu nicht vollständig installiert oder entfernt.\n" #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "[J/n]" @@ -1549,91 +1576,91 @@ msgstr "[J/n]" #. 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:702 +#: apt-private/private-output.cc:708 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:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "J" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "N" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "Fehler beim Kompilieren eines regulären Ausdrucks - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "Abhängigkeiten werden korrigiert ..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " fehlgeschlagen." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "Abhängigkeiten konnten nicht korrigiert werden." -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "Menge der zu aktualisierenden Pakete konnte nicht minimiert werden." -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " Fertig" -#: apt-private/private-cachefile.cc:102 +#: 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-private/private-cachefile.cc:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "Unerfüllte Abhängigkeiten. Versuchen Sie, -f zu benutzen." -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "Der Befehl »update« akzeptiert keine Argumente." -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "Paketaktualisierung (Upgrade) wird berechnet... " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "Interner Fehler, AllUpgrade hat etwas beschädigt." -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "Fertig" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1646,43 +1673,43 @@ msgstr "" " sind, verlassen Sie sich also bezüglich des reellen aktuellen\n" " Status der Sperre nicht darauf!" -#: apt-private/private-sources.cc:45 +#: 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-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "OK " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "Holen: " -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "Ign " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Fehl " -#: apt-private/acqprogress.cc:143 +#: 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" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [Wird verarbeitet]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1695,19 +1722,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "%s kann nicht gelesen werden." -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "Es konnte nicht nach %s gewechselt werden." @@ -1736,12 +1763,12 @@ msgstr "Datei »%s« von Spiegelserver kann nicht gelesen werden." msgid "[Mirror: %s]" msgstr "[Spiegelserver: %s]" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: 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:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "Verbindung vorzeitig beendet" @@ -1807,41 +1834,46 @@ msgstr "" " -c=? Diese Konfigurationsdatei lesen\n" " -o=? Eine beliebige Konfigurationsoption setzen, z.B. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: 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:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "Schreiben nach %s nicht möglich" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "" "Debconf-Version konnte nicht ermittelt werden. Ist debconf installiert?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "Paketerweiterungsliste ist zu lang." -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "Fehler beim Verarbeiten von Verzeichnis %s" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "Quellerweiterungsliste ist zu lang." -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "Fehler beim Schreiben der Kopfzeilen in die Inhaltsdatei" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "Fehler beim Verarbeiten der Inhalte %s" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1928,26 +1960,26 @@ msgstr "" " -c=? diese Konfigurationsdatei lesen\n" " -o=? eine beliebige Konfigurationsoption setzen" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "Keine Auswahl traf zu" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Einige Dateien fehlen in der Paketdateigruppe »%s«." -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "Datenbank wurde beschädigt, Datei umbenannt in %s.old" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "Datenbank ist veraltet; es wird versucht, %s zu erneuern." -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -1956,192 +1988,192 @@ msgstr "" "einer älteren apt-Version gemacht haben, entfernen Sie bitte die Datenbank " "und erstellen Sie sie neu." -#: ftparchive/cachedb.cc:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Datenbankdatei %s kann nicht geöffnet werden: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "%s mit »stat« abfragen fehlgeschlagen" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "Archiv hat keinen Steuerungsdatensatz." -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "Unmöglich, einen Cursor zu bekommen" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: Verzeichnis %s kann nicht gelesen werden.\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: %s mit »stat« abfragen nicht möglich.\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "F: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "F: Fehler gehören zu Datei " -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "%s konnte nicht aufgelöst werden." -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "Durchlaufen des Verzeichnisbaums fehlgeschlagen" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "Öffnen von %s fehlgeschlagen" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "readlink von %s fehlgeschlagen" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "Entfernen (unlink) von %s fehlgeschlagen" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Erzeugen einer Verknüpfung von %s zu %s fehlgeschlagen" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " DeLink-Limit von %sB erreicht\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "Archiv hatte kein Feld »package«" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %s hat keinen Eintrag in der Override-Liste.\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s-Betreuer ist %s und nicht %s.\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr " %s hat keinen Eintrag in der Source-Override-Liste.\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s hat keinen Eintrag in der Binary-Override-Liste.\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - Speicheranforderung fehlgeschlagen" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "%s konnte nicht geöffnet werden." #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "Missgestaltetes Override %s Zeile %llu #1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "Override-Datei %s konnte nicht gelesen werden." -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, c-format msgid "Malformed override %s line %llu #1" msgstr "Missgestaltetes Override %s Zeile %llu #1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, c-format msgid "Malformed override %s line %llu #2" msgstr "Missgestaltetes Override %s Zeile %llu #2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, c-format msgid "Malformed override %s line %llu #3" msgstr "Missgestaltetes Override %s Zeile %llu #3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "Unbekannter Komprimierungsalgorithmus »%s«" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "Komprimierte Ausgabe %s benötigt einen Komprimierungssatz." -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "FILE* konnte nicht erzeugt werden." -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "Fork fehlgeschlagen" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "Komprimierungs-Kindprozess" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "Interner Fehler, %s konnte nicht erzeugt werden." -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "E/A zu Kindprozess/Datei fehlgeschlagen" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "Lesevorgang während der MD5-Berechnung fehlgeschlagen" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "Problem beim Entfernen (unlink) von %s" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "%s konnte nicht in %s umbenannt werden." -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -2195,157 +2227,157 @@ msgstr "" " -c=? Diese Konfigurationsdatei lesen\n" " -o=? Eine beliebige Konfigurationsoption setzen, z.B. -o dir::cache=/tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "Pipes (Weiterleitungen) konnten nicht erzeugt werden." -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "gzip konnte nicht ausgeführt werden." -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "Beschädigtes Archiv" -#: apt-inst/contrib/extracttar.cc:201 +#: 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:306 +#: apt-inst/contrib/extracttar.cc:308 #, c-format msgid "Unknown TAR header type %u, member %s" msgstr "Unbekannter Tar-Kopfzeilen-Typ %u, Bestandteil %s" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "Ungültige Archiv-Signatur" -#: apt-inst/contrib/arfile.cc:82 +#: apt-inst/contrib/arfile.cc:84 msgid "Error reading archive member header" msgstr "Fehler beim Lesen der Archivdatei-Kopfzeilen" -#: apt-inst/contrib/arfile.cc:94 +#: apt-inst/contrib/arfile.cc:96 #, c-format msgid "Invalid archive member header %s" msgstr "Ungültige Archivbestandteil-Kopfzeile %s" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "Ungültige Archivdatei-Kopfzeilen" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "Archiv ist zu kurz." -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "Archiv-Kopfzeilen konnten nicht gelesen werden." -#: apt-inst/filelist.cc:382 +#: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" msgstr "»DropNode« auf noch verknüpften Knoten aufgerufen" -#: apt-inst/filelist.cc:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "Hash-Element konnte nicht gefunden werden!" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "Umleitung konnte nicht reserviert werden." -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "Interner Fehler in »AddDiversion«" -#: apt-inst/filelist.cc:479 +#: 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-inst/filelist.cc:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "Doppelte Hinzufügung der Umleitung %s -> %s" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "Doppelte Konfigurationsdatei %s/%s" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format msgid "Failed to write file %s" msgstr "Datei %s konnte nicht geschrieben werden." -#: apt-inst/dirstream.cc:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "Datei %s konnte nicht geschlossen werden." -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format msgid "The path %s is too long" msgstr "Der Pfad %s ist zu lang." -#: apt-inst/extract.cc:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "%s mehr als einmal entpackt" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "Das Verzeichnis %s ist umgeleitet." -#: apt-inst/extract.cc:145 +#: apt-inst/extract.cc:152 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "Schreibversuch vom Paket auf das Umleitungsziel %s/%s" -#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 msgid "The diversion path is too long" msgstr "Der Umleitungspfad ist zu lang." -#: apt-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "Das Verzeichnis %s wird durch ein Nicht-Verzeichnis ersetzt." -#: apt-inst/extract.cc:282 +#: apt-inst/extract.cc:289 msgid "Failed to locate node in its hash bucket" msgstr "Knoten konnte nicht in seinem Hash gefunden werden." -#: apt-inst/extract.cc:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "Der Pfad ist zu lang." -#: apt-inst/extract.cc:414 +#: apt-inst/extract.cc:421 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Pakettreffer ohne Version für %s wird überschrieben." -#: apt-inst/extract.cc:431 +#: apt-inst/extract.cc:438 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "Durch die Datei %s/%s wird die Datei in Paket %s überschrieben." -#: apt-inst/extract.cc:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "%s mit »stat« abfragen nicht möglich" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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." -#: apt-inst/deb/debfile.cc:124 +#: apt-inst/deb/debfile.cc:132 #, c-format msgid "Internal error, could not locate member %s" msgstr "Interner Fehler, Bestandteil %s konnte nicht gefunden werden" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "Auswerten der »control«-Datei nicht möglich" @@ -2406,211 +2438,206 @@ msgstr "" "MMap vom Benutzer deaktiviert ist." #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "%li d %li h %li min %li s" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "%li h %li min %li s" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "%li min %li s" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "%li s" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "Auswahl %s nicht gefunden" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Nicht erkannte Typabkürzung: »%c«" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "Konfigurationsdatei %s wird geöffnet" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Syntaxfehler %s:%u: Block beginnt ohne Namen." -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Syntaxfehler %s:%u: Missgestaltete Markierung" -#: apt-pkg/contrib/configuration.cc:821 +#: 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-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, 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" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Syntaxfehler %s:%u: Zu viele verschachtelte Einbindungen (includes)" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Syntaxfehler %s:%u: Eingefügt von hier" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Syntaxfehler %s:%u: Nicht unterstützte Direktive »%s«" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-pkg/contrib/configuration.cc:900 #, 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" -#: apt-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Syntaxfehler %s:%u: Zusätzlicher Unsinn am Dateiende" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... Fehler!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... Fertig" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s... Fertig" -#: apt-pkg/contrib/cmndline.cc:116 +#: 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-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format msgid "Command line option %s is not boolean" msgstr "Befehlszeilenoption %s ist nicht Bool'sch." -#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: 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-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "Option %s: Konfigurationswertspezifikation benötigt ein »=<Wert>«." -#: apt-pkg/contrib/cmndline.cc:273 +#: 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-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "Option »%s« ist zu lang." # Check for boolean; -1 is unspecified, 0 is yes 1 is no -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "Der Sinn von »%s« ist nicht klar, versuchen Sie »true« oder »false«." -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "Ungültige Operation %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: 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-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "CD-ROM mit »stat« abfragen fehlgeschlagen" -#: apt-pkg/contrib/fileutl.cc:95 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problem beim Schließen der gzip-Datei %s" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, 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-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "Sperrdatei %s konnte nicht geöffnet werden." -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, 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-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "Konnte Sperre %s nicht bekommen" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, 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-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, 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-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, 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-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" @@ -2618,283 +2645,293 @@ msgstr "" "Datei »%s« in Verzeichnis »%s« wird ignoriert, da sie eine ungültige " "Dateinamen-Erweiterung hat." -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Unterprozess %s hat einen Speicherzugriffsfehler empfangen." -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, c-format msgid "Sub-process %s received signal %u." msgstr "Unterprozess %s hat das Signal %u empfangen." -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 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-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Unterprozess %s unerwartet beendet" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problem beim Schließen der gzip-Datei %s" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "Datei %s konnte nicht geöffnet werden." -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, c-format msgid "Could not open file descriptor %d" msgstr "Datei-Deskriptor %d konnte nicht geöffnet werden." -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "" "Interprozesskommunikation mit Unterprozess konnte nicht aufgebaut werden." -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "Fehler beim Ausführen von Komprimierer " -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, c-format msgid "read, still have %llu to read but none left" msgstr "" "Lesevorgang: es verbleiben noch %llu zu lesen, jedoch ist nichts mehr übrig." -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, c-format msgid "write, still have %llu to write but couldn't" msgstr "" "Schreibvorgang: es verbleiben noch %llu zu schreiben, Schreiben ist jedoch " "nicht möglich." -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, c-format msgid "Problem closing the file %s" msgstr "Problem beim Schließen der Datei %s" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, c-format msgid "Problem renaming the file %s to %s" msgstr "Problem beim Umbenennen der Datei %s nach %s" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, c-format msgid "Problem unlinking the file %s" msgstr "Problem beim Entfernen (unlink) der Datei %s" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "Problem beim Synchronisieren der Datei" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "Umbenennen fehlgeschlagen, %s (%s -> %s)." + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, c-format msgid "No keyring installed in %s." msgstr "Kein Schlüsselring in %s installiert" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "Leerer Paketzwischenspeicher" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "Die Paketzwischenspeicher-Datei ist beschädigt." -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "" "Die Paketzwischenspeicher-Datei liegt in einer inkompatiblen Version vor." -#: apt-pkg/pkgcache.cc:162 +#: 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." -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, 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:172 +#: 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:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "Hängt ab von" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "Hängt ab von (vorher)" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "Schlägt vor" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "Empfiehlt" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "Kollidiert mit" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "Ersetzt" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "Löst ab" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "Beschädigt" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "Wertet auf" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "wichtig" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "erforderlich" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "standard" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "optional" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "extra" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "Abhängigkeitsbaum wird aufgebaut." -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "Installationskandidat-Versionen" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "Abhängigkeitsgenerierung" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: 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:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "StateFile %s konnte nicht geöffnet werden." -#: apt-pkg/depcache.cc:250 +#: apt-pkg/depcache.cc:256 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Temporäres StateFile %s konnte nicht geschrieben werden." -#: apt-pkg/tagfile.cc:138 +#: apt-pkg/tagfile.cc:140 #, c-format msgid "Unable to parse package file %s (1)" msgstr "Paketdatei %s konnte nicht verarbeitet werden (1)." -#: apt-pkg/tagfile.cc:235 +#: apt-pkg/tagfile.cc:237 #, c-format msgid "Unable to parse package file %s (2)" msgstr "Paketdatei %s konnte nicht verarbeitet werden (2)." -#: apt-pkg/sourcelist.cc:118 +#: 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-pkg/sourcelist.cc:161 +#: 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-pkg/sourcelist.cc:164 +#: 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-pkg/sourcelist.cc:175 +#: 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-pkg/sourcelist.cc:181 +#: 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-pkg/sourcelist.cc:184 +#: apt-pkg/sourcelist.cc:193 #, c-format msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" "Missgestaltete Zeile %lu in Quellliste %s ([%s] Schlüssel %s hat keinen Wert)" -#: apt-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "Missgestaltete Zeile %lu in Quellliste %s (»URI«)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "Missgestaltete Zeile %lu in Quellliste %s (»dist«)" -#: apt-pkg/sourcelist.cc:202 +#: apt-pkg/sourcelist.cc:211 #, c-format msgid "Malformed line %lu in source list %s (URI parse)" msgstr "Missgestaltete Zeile %lu in Quellliste %s (»URI parse«)" -#: apt-pkg/sourcelist.cc:208 +#: 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«)" -#: apt-pkg/sourcelist.cc:215 +#: apt-pkg/sourcelist.cc:224 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" msgstr "Missgestaltete Zeile %lu in Quellliste %s (»dist parse«)" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "%s wird geöffnet." -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "Zeile %u in Quellliste %s zu lang." -#: apt-pkg/sourcelist.cc:362 +#: apt-pkg/sourcelist.cc:371 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Missgestaltete Zeile %u in Quellliste %s (»type«)" -#: apt-pkg/sourcelist.cc:366 +#: apt-pkg/sourcelist.cc:375 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Typ »%s« in Zeile %u der Quellliste %s ist unbekannt." -#: apt-pkg/sourcelist.cc:407 +#: 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-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2903,12 +2940,12 @@ msgstr "" "»%s« konnte nicht unmittelbar konfiguriert werden. Lesen Sie »man 5 apt." "conf« unter APT::Immediate-Configure bezüglich weiterer Details. (%d)" -#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, c-format msgid "Could not configure '%s'. " msgstr "»%s« konnte nicht konfiguriert werden. " -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2920,12 +2957,12 @@ msgstr "" "ist oft schlimm, aber wenn Sie es wirklich tun wollen, aktivieren Sie bitte " "die Option APT::Force-LoopBreak." -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "Indexdateityp »%s« wird nicht unterstützt." -#: apt-pkg/algorithms.cc:266 +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." @@ -2933,7 +2970,7 @@ msgstr "" "Das Paket %s muss neu installiert werden, es kann jedoch kein Archiv dafür " "gefunden werden." -#: apt-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2941,96 +2978,96 @@ msgstr "" "Fehler: Unterbrechungen durch pkgProblemResolver::Resolve hervorgerufen; " "dies könnte durch zurückgehaltene Pakete verursacht worden sein." -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 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/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, c-format msgid "List directory %spartial is missing." msgstr "Listenverzeichnis %spartial fehlt." -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, c-format msgid "Archives directory %spartial is missing." msgstr "Archivverzeichnis %spartial fehlt." -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, c-format msgid "Unable to lock directory %s" msgstr "Das Verzeichnis %s kann nicht gesperrt werden." #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Holen der Datei %li von %li (noch %s)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "Holen der Datei %li von %li" -#: apt-pkg/acquire-worker.cc:113 +#: 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." -#: apt-pkg/acquire-worker.cc:115 +#: 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" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "Methode %s ist nicht korrekt gestartet." -#: apt-pkg/acquire-worker.cc:452 +#: apt-pkg/acquire-worker.cc:455 #, c-format msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "" "Bitte legen Sie das Medium mit dem Namen »%s« in Laufwerk »%s« ein und " "drücken Sie die Eingabetaste (Enter)." -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Paketierungssystem »%s« wird nicht unterstützt." -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "Bestimmung eines passenden Paketierungssystemtyps nicht möglich" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "%s mit stat abfragen nicht möglich" -#: apt-pkg/srcrecords.cc:47 +#: 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." -#: apt-pkg/cachefile.cc:87 +#: 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." -#: apt-pkg/cachefile.cc:91 +#: 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:109 +#: 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/policy.cc:75 +#: apt-pkg/policy.cc:83 #, c-format msgid "" "The value '%s' is invalid for APT::Default-Release as such a release is not " @@ -3039,107 +3076,102 @@ msgstr "" "Der Wert »%s« ist für APT::Default-Release ungültig, da solch eine " "Veröffentlichung in den Paketquellen nicht verfügbar ist." -#: apt-pkg/policy.cc:414 +#: apt-pkg/policy.cc:422 #, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "" "Ungültiger Eintrag in Einstellungsdatei %s, keine »Package«-Kopfzeile(n)" -#: apt-pkg/policy.cc:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "Pinning-Typ %s kann nicht interpretiert werden." -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "Keine Priorität (oder Null) für Pin angegeben" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 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:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Fehler aufgetreten beim Verarbeiten von %s (%s%d)" -#: apt-pkg/pkgcachegen.cc:251 +#: apt-pkg/pkgcachegen.cc:257 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "Na so was, Sie haben die Anzahl an Paketen überschritten, mit denen diese " "APT-Version umgehen kann." -#: apt-pkg/pkgcachegen.cc:254 +#: apt-pkg/pkgcachegen.cc:260 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" "Na so was, Sie haben die Anzahl an Versionen überschritten, mit denen diese " "APT-Version umgehen kann." -#: apt-pkg/pkgcachegen.cc:257 +#: 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." -#: apt-pkg/pkgcachegen.cc:260 +#: apt-pkg/pkgcachegen.cc:266 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." -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:576 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "Paket %s %s wurde beim Verarbeiten der Dateiabhängigkeiten nicht gefunden." -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "Die Quellpaket-Liste %s konnte nicht mit »stat« abgefragt werden" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 msgid "Reading package lists" msgstr "Paketlisten werden gelesen" -#: apt-pkg/pkgcachegen.cc:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "Sammeln der angebotenen Funktionalitäten (Provides) aus den Dateien" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: 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" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "Umbenennen fehlgeschlagen, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "Hash-Summe stimmt nicht überein" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "Größe stimmt nicht überein" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "Ungültige Operation %s" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, c-format msgid "" "Unable to find expected entry '%s' in Release file (Wrong sources.list entry " @@ -3148,17 +3180,17 @@ msgstr "" "Erwarteter Eintrag »%s« konnte in Release-Datei nicht gefunden werden " "(falscher Eintrag in sources.list oder missgebildete Datei)." -#: apt-pkg/acquire-item.cc:1586 +#: apt-pkg/acquire-item.cc:1595 #, c-format msgid "Unable to find hash sum for '%s' in Release file" msgstr "Hash-Summe für »%s« kann in Release-Datei nicht gefunden werden." -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 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" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " @@ -3167,12 +3199,12 @@ msgstr "" "Release-Datei für %s ist abgelaufen (ungültig seit %s). Aktualisierungen für " "dieses Depot werden nicht angewendet." -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Konflikt bei Distribution: %s (%s erwartet, aber %s bekommen)" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3183,12 +3215,12 @@ msgstr "" "GPG-Fehler: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "GPG-Fehler: %s: %s" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3198,85 +3230,81 @@ msgstr "" "Sie dieses Paket von Hand korrigieren müssen (aufgrund fehlender " "Architektur)." -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, 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." -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format 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." -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, c-format msgid "Unable to parse Release file %s" msgstr "Release-Datei %s kann nicht verarbeitet werden." -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, c-format msgid "No sections in Release file %s" msgstr "Keine Bereiche (Sections) in Release-Datei %s" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "Kein Hash-Eintrag in Release-Datei %s" -#: apt-pkg/indexrecords.cc:125 +#: 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-pkg/indexrecords.cc:144 +#: 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-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "Herstellerblock %s enthält keinen Fingerabdruck." -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Verwendeter CD-ROM-Einbindungspunkt: %s\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "Lösen der CD-ROM-Einbindung\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "Einbindung der CD-ROM wird gelöst ...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "Warten auf Medium ...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "CD-ROM wird eingebunden ...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " msgstr "Identifizieren ... " -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "Gespeicherte Kennzeichnung: %s\n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "Einbindung der CD-ROM wird gelöst ...\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" msgstr "Durchsuchen des Mediums nach Index-Dateien ...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3285,7 +3313,7 @@ msgstr "" "%zu Paketindizes, %zu Quellindizes, %zu Übersetzungsindizes und %zu " "Signaturen gefunden\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" @@ -3293,16 +3321,16 @@ 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:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "Kennzeichnung »%s« gefunden\n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "Dies ist kein gültiger Name, versuchen Sie es erneut.\n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3311,34 +3339,34 @@ msgstr "" "Dieses Medium heißt: \n" "»%s«\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "Kopieren der Paketlisten ..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "Schreiben der neuen Quellliste\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "Quelllisteneinträge für dieses Medium sind:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format msgid "Wrote %i records.\n" msgstr "Es wurden %i Datensätze geschrieben.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:777 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Es wurden %i Datensätze mit %i fehlenden Dateien geschrieben.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:780 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Es wurden %i Datensätze mit %i nicht passenden Dateien geschrieben.\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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 "" @@ -3355,39 +3383,39 @@ msgstr "Authentifizierungs-Datensatz konnte nicht gefunden werden für: %s" msgid "Hash mismatch for: %s" msgstr "Hash-Summe stimmt nicht überein für: %s" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Veröffentlichung »%s« für »%s« konnte nicht gefunden werden." -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Version »%s« für »%s« konnte nicht gefunden werden." -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, c-format msgid "Couldn't find task '%s'" msgstr "Task »%s« konnte nicht gefunden werden." -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, c-format msgid "Couldn't find any package by regex '%s'" msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden." -#: apt-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden." -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, 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-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " @@ -3396,58 +3424,58 @@ msgstr "" "Es kann weder eine installierte Version noch ein Installationskandidat von " "Paket »%s« ausgewählt werden, da beide nicht existieren." -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, 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-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" "Es kann kein Installationskandidat von Paket »%s« ausgewählt werden, da kein " "solcher existiert." -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "" "Die installierte Version von Paket »%s« kann nicht ausgewählt werden, da es " "nicht installiert ist." -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "Szenario an Problemlöser senden" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "Anfrage an Problemlöser senden" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "Vorbereiten, eine Lösung zu erhalten" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "" "Externer Problemlöser ist ohne ordnungsgemäße Fehlermeldung fehlgeschlagen." -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "Externen Problemlöser ausführen" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "Ausführen von dpkg" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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." @@ -3455,120 +3483,120 @@ msgstr "" "Einige Indexdateien konnten nicht heruntergeladen werden. Sie wurden " "ignoriert oder alte an ihrer Stelle benutzt." -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "%s wird installiert." -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "%s wird konfiguriert." -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "%s wird entfernt." -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format msgid "Completely removing %s" msgstr "%s wird vollständig entfernt." -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "Verschwinden von %s festgestellt" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "Aufruf des Nach-Installations-Triggers %s" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "Verzeichnis »%s« fehlt" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format msgid "Could not open file '%s'" msgstr "Datei »%s« konnte nicht geöffnet werden." -#: apt-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "%s wird vorbereitet." -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "%s wird entpackt." -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "Konfiguration von %s wird vorbereitet." -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "%s installiert" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "Entfernen von %s wird vorbereitet." -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "%s entfernt" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "Vollständiges Entfernen von %s wird vorbereitet." -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "%s vollständig entfernt" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "Schreiben nach %s nicht möglich" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "Operation wurde unterbrochen, bevor sie beendet werden konnte." -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 msgid "No apport report written because MaxReports is reached already" msgstr "" "Es wurde kein Apport-Bericht verfasst, da das Limit MaxReports bereits " "erreicht ist." #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "Abhängigkeitsprobleme - verbleibt unkonfiguriert" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3576,7 +3604,7 @@ msgstr "" "Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung darauf " "hindeutet, dass dies lediglich ein Folgefehler eines vorherigen Problems ist." -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" @@ -3584,7 +3612,7 @@ msgstr "" "Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung auf einen Fehler " "wegen voller Festplatte hindeutet." -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3592,7 +3620,7 @@ msgstr "" "Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung auf einen Fehler " "wegen erschöpftem Arbeitsspeicher hindeutet." -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 #, fuzzy msgid "" "No apport report written because the error message indicates an issue on the " @@ -3601,14 +3629,14 @@ msgstr "" "Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung auf einen Fehler " "wegen voller Festplatte hindeutet." -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 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-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " @@ -3617,7 +3645,7 @@ msgstr "" "Sperren des Administrationsverzeichnisses (%s) nicht möglich, wird es von " "einem anderen Prozess verwendet?" -#: apt-pkg/deb/debsystem.cc:87 +#: apt-pkg/deb/debsystem.cc:94 #, c-format msgid "Unable to lock the administration directory (%s), are you root?" msgstr "" @@ -3625,7 +3653,7 @@ msgstr "" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " @@ -3633,7 +3661,7 @@ msgstr "" "Der dpkg-Prozess wurde unterbrochen; Sie müssen manuell »%s« ausführen, um " "das Problem zu beheben." -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "Nicht gesperrt" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po.pot\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2006-09-19 09:49+0530\n" "Last-Translator: Kinley Tshering <gasepkuenden2k3@hotmail.com>\n" "Language-Team: Dzongkha <pgeyleg@dit.gov.bt>\n" @@ -19,157 +19,158 @@ msgstr "" "X-Poedit-Country: Bhutan\n" "X-Poedit-SourceCharset: utf-8\n" -#: cmdline/apt-cache.cc:140 +#: cmdline/apt-cache.cc:149 #, c-format msgid "Package %s version %s has an unmet dep:\n" msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ %s à½à½¼à½“་རིམ་ %s ལུ་ ཌེཔ་མ་ཚང་ཅིག་འདུག:\n" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་བསྡོམས་ཀྱི་མིང་ཚུ:" -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 #, fuzzy msgid "Total package structures: " msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་བསྡོམས་ཀྱི་མིང་ཚུ:" -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr "སྤྱིར་བà½à½„་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུà¼" -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr "བར་ཅུ་ཡལ་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གཙང་མ་ཚུ:" -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr "བར་ཅུ་ཡལ་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་རà¾à¾±à½„་པ་ཚུ:" -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr "བར་ཅུ་ཡལ་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་སླ་བསྲེ་ཡོད་མི་ཚུ:" -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr "བརླག་སྟོར་ཞུགས་པ:" -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "à½à¾±à½‘་རྟགས་ཅན་གྱི་à½à½¼à½“་རིམ་ཚུ་གི་བསྡོམས:" -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 #, fuzzy msgid "Total distinct descriptions: " msgstr "à½à¾±à½‘་རྟགས་ཅན་གྱི་à½à½¼à½“་རིམ་ཚུ་གི་བསྡོམས:" -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "རྟེན་འབྲེལ་བསྡོམས:" -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "à½à½ºà½“་རིམ་/ཡིག་སྣོད་ མà½à½´à½“་འབྲེལ་གྱི་བསྡོམས:" -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 #, fuzzy msgid "Total Desc/File relations: " msgstr "à½à½ºà½“་རིམ་/ཡིག་སྣོད་ མà½à½´à½“་འབྲེལ་གྱི་བསྡོམས:" -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "ཡོངས་བསྡོམས་ཀྱིས་ས་à½à¾²à¼‹à½–ཟོ་བ་ཚུ་བྱིནམ་ཨིན:" -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "སྤུངས་ཡོད་པའི་ཡིག་རྒྱུན་གྱི་བསྡོམས:" -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "རྟེན་འབྲེལ་à½à½¼à½“་རིམ་བར་སྟོང་གྱི་བསྡོམས:" -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "བར་སྟོང་ལྷུག་ལྷུག་གི་བསྡོམས:" -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "གི་དོན་ལུ་རྩིས་à½à½¼à¼‹à½–à½à½¼à½“་ཡོད་པའི་བར་སྟོང:" -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: 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འདི་མཉམ་འབྱུང་གི་ཕྱི་à½à½¢à¼‹à½¨à½²à½“་པསà¼" -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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 "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་མ་à½à½¼à½–à¼" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 #, fuzzy msgid "You must give at least one search pattern" msgstr "à½à¾±à½¼à½‘་ཀྱིས་à½à½‚་à½à½‚་སྦེ་དཔེ་གཞི་གཅིག་བྱིན་དགོ" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "%sà½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་ག་ཡོད་ཟཚོལ་མ་à½à½¼à½–à¼" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གྱི་ཡིག་སྣོད:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 msgid "Cache is out of sync, can't x-ref a package file" msgstr "" "འདྲ་མཛོད་འདི་མཉམ་བྱུང་གི་ཕྱི་à½à½¢à¼‹à½¨à½²à½“་པས་ à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཡིག་སྣོད་ཅིག་ལུ་ ཨེགསི་-རེཕ་འབད་མི་ཚུགས་པསà¼" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "à½à½–་གཟེར་བà½à½–་ཡོད་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(མ་à½à½¼à½–à¼)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr "གཞི་བཙུགས་འབད་ཡོདཔà¼" -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr "མི་ངོ:" -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(ཅི་མེདà¼)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གྱི་à½à½–་གཟེར:" #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr "à½à½¼à½“་རིམ་à½à½²à½‚་à½à¾²à½˜à¼:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: 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" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -244,29 +245,29 @@ msgstr "" "cache=/tmp\n" " ཧེང་བཀལ་བརྡ་དོན་གི་དོན་ལུ་ ཨེ་apt-cache(8)དང་apt.conf(5)ལག་à½à½¼à½‚་ཤོག་ལེབ་ཚུ་བལྟà¼.\n" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: 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:104 +#: cmdline/apt-cdrom.cc:91 msgid "Please insert a Disc in the drive and press enter" msgstr "ཌིསིཀ་ཅིག་འདྲེན་འཕྲུལ་ནང་བཙུགས་བཞིནམ་ལས་ལོག་ལྡེ་འདི་ཨེབà¼" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, fuzzy, c-format msgid "Failed to mount '%s' to '%s'" msgstr "%s་ལུ་%s་བསà¾à¾±à½¢à¼‹à½˜à½²à½„་བà½à½‚ས་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "à½à¾±à½¼à½‘་ཀྱི་ཆ་ཚན་ནང་གི་སི་ཌི་ལྷག་ལུས་ཡོད་མི་གི་དོན་ལུ་འ་ནི་ལས་སྦྱོར་དེ་ཡང་བསà¾à¾±à½¢à¼‹à½ བདà¼" @@ -302,65 +303,65 @@ msgstr "" " -c=? འདི་གིས་འ་ནི་རིམ་སྒྲིག་ཡིག་སྣོད་འདི་ལྷགཔ་ཨིནà¼\n" " -o=? མà½à½´à½“་སྒྲིག་གི་རིམ་སྒྲིག་འདི་གཞི་སྒྲིག་འབདà½à¼‹à½¨à½²à½“་ དཔེར་ན་-o dir::cache=/tmp་བཟུམà¼\n" -#: cmdline/apt-get.cc:244 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format msgid "Can not find a package for architecture '%s'" msgstr "%s་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འཚོལ་མ་à½à½¼à½–à¼" -#: cmdline/apt-get.cc:326 +#: cmdline/apt-get.cc:327 #, fuzzy, c-format msgid "Can not find a package '%s' with version '%s'" msgstr "%s་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འཚོལ་མ་à½à½¼à½–à¼" -#: cmdline/apt-get.cc:329 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format msgid "Can not find a package '%s' with release '%s'" msgstr "%s་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འཚོལ་མ་à½à½¼à½–à¼" -#: cmdline/apt-get.cc:366 +#: cmdline/apt-get.cc:367 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "འབྱུང་à½à½´à½„ས་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གྱི་à½à½¼à¼‹à½¡à½²à½‚་%s་དེ་ངོ་བཤུས་འབད་མ་ཚུགསà¼" -#: cmdline/apt-get.cc:422 +#: cmdline/apt-get.cc:423 #, c-format msgid "Can not find version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "%s་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འཚོལ་མ་à½à½¼à½–à¼" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "འདི་འབདà½à¼‹à½‘་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིནà¼" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "འདི་འབདà½à¼‹à½‘་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིནà¼" -#: cmdline/apt-get.cc:468 cmdline/apt-mark.cc:116 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 msgid "Internal error, problem resolver broke stuff" msgstr "ནང་འà½à½¼à½‘་འཛོལ་བ་ དཀའ་ངལ་མོས་མà½à½´à½“་འབད་མི་ཅ་ཆས་ཚུ་མེདཔ་à½à½£à¼‹à½¡à½¼à½‘à¼" -#: cmdline/apt-get.cc:573 cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 msgid "Unable to lock the download directory" msgstr "ཕབ་ལེན་འབད་ནིའི་སྣོད་ཡིག་འདི་ལྡེ་མིག་རà¾à¾±à½–ས་མ་ཚུགས་པསà¼" -#: cmdline/apt-get.cc:725 +#: cmdline/apt-get.cc:726 msgid "Must specify at least one package to fetch source for" msgstr "གི་དོན་ལུ་འབྱུང་à½à½´à½„ས་ལེན་ནི་ལུ་ཉུང་མà½à½ ་རང་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གཅིག་ལེན་དགོ" -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "%s་གི་དོན་ལུ་འབྱུང་à½à½´à½„ས་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཅིག་འཚོལ་མ་འà½à½¼à½–" @@ -380,116 +381,116 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "གོམ་འགྱོ་གིས་ཧེ་མ་ལས་རང་'%s'་ཡིག་སྣོད་དེ་ཕབ་ལེན་འབད་ནུག\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "%s་ནང་བར་སྟོང་" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr " %s་ནང་à½à¾±à½¼à½‘་ལུ་བར་སྟོང་ཚུ་ལངམ་སྦེ་མིན་འདུག་" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "%sB་ལེན་དགོཔ་འདུག་ འབྱུང་à½à½´à½„ས་ཡིག་མཛོད་ཀྱི་%sBà¼\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "འབྱུང་à½à½´à½„ས་ཡིག་མཛོད་ཚུ་ཀྱི་%sB་ལེན་དགོ་པསསà¼\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "%s་འབྱུང་à½à½´à½„ས་ལེནà¼\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "ཡིག་མཛོད་ལ་ལུ་ཅིག་ལེན་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "ཕབ་ལེན་à½à½–ས་ལམ་རà¾à¾±à½„མ་གཅིག་ནང་མཇུག་བསྡུà½à¼‹à½¦à¾¦à½ºà¼‹à½¢à½„་ཕབ་ལེན་འབདà¼" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "%s་ནང་ཧེ་མ་ལས་སྦུང་ཚན་བཟོ་བཤོལ་ཨིན་མའི་སྦུང་ཚན་བཟོ་བཤོལ་གོམ་འགྱོ་འབད་དོà¼\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "'%s'སྦུང་ཚན་བཟོ་བཤོལ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "'dpkg-dev'་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་དེ་གཞི་བཙུགས་འབད་ཡོད་པ་ཅིན་ཨེབ་གà½à½„་འབདà¼\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "'%s'་བཟོ་བརྩིགས་བརྡ་བཀོད་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "ཆ་ལག་ལས་སྦྱོར་དེ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ནུག" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "builddeps ཞིབ་དཔྱད་འབད་ནིའི་དོན་ལུ་ཉུང་མà½à½ ་རང་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གཅིག་གསལ་བཀོད་འབད་དགོ" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "%s་གི་དོན་ལུ་བཟོ་བརྩིགས་-རྟེན་འབྲེལ་བརྡ་དོན་དེ་ལེན་མ་ཚུགསà¼" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s ལུ་བཟོ་བརྩིགས་རྟེན་འབྲེལ་མིན་འདུག\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " "packages" msgstr "%sà½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་འà½à½¼à½–་མ་ཚུགསཔ་ལས་བརྟེན་ %sགི་དོན་ལུ་%s རྟེན་འབྲེལ་དེ་ངལ་རང་མ་ཚུགས་པསà¼" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, 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:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "%s:གི་དོན་ལུ་%s་རྟེན་འབྲེལ་དེ་གི་རེ་བ་སà¾à½¼à½„་ནི་འདི་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདཔ་ཨིན་ གཞི་བཙུགས་འབད་ཡོད་པའི་à½à½´à½˜à¼‹" "སྒྲིལ་%s་དེ་གནམ་མེད་ས་མེད་གསརཔ་ཨིན་པསà¼" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -498,37 +499,37 @@ msgstr "" "%s གི་དོན་ལུ་%s་རྟེན་འབྲེལ་འདི་གི་རེ་བ་སà¾à½¼à½„་མི་ཚུགས་ནུག་ག་ཅི་འབད་ཟེར་བ་ཅིན་à½à½´à½˜à¼‹à½¦à¾’རིལ་%s་གི་འà½à½¼à½“་རིམ་" "ཚུ་འà½à½¼à½–་མ་ཚུགསཔ་ལས་བརྟེན་འà½à½¼à½“་རིམ་དགོས་མà½à½¼à¼‹à½šà½´à¼‹à½‚ི་རེ་བ་དོ་སà¾à½¼à½„་མ་ཚུགས་པསà¼" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " "version" msgstr "%sà½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་འà½à½¼à½–་མ་ཚུགསཔ་ལས་བརྟེན་ %sགི་དོན་ལུ་%s རྟེན་འབྲེལ་དེ་ངལ་རང་མ་ཚུགས་པསà¼" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "%s: %s་གི་དོན་ལུ་་%s་རྟེན་འབྲེལ་འདི་ངལ་རངས་འབད་ནི་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ནུག" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr " %s་གི་དོན་ལུ་བཟོ་བརྩིགས་-རྟེན་འབྲེལ་འདི་ངལ་རངས་མ་ཚུགས་པསà¼" -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "བཟོ་བརྩིགས་རྟེན་འབྲེལ་འདི་ལས་སྦྱོར་འབད་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདཔ་ཨིནà¼" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "%s (%s)་ལུ་མà½à½´à½‘་དོà¼" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "རྒྱབ་སà¾à¾±à½¼à½¢à¼‹à½ བད་ཡོད་པའི་ཚད་གཞི་ཚུ:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -617,53 +618,75 @@ msgstr "" "ཤོག་ལེབ་ཚུ་ལུ་བལྟà¼\n" " འ་ནི་ ཨེ་ཊི་པི་འདི་ལུ་ཡང་དག་ ཀའུ་ ནུས་ཤུགས་ཚུ་ཡོདà¼\n" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "གི་དོན་ལུ་འབྱུང་à½à½´à½„ས་ལེན་ནི་ལུ་ཉུང་མà½à½ ་རང་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གཅིག་ལེན་དགོ" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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:63 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format msgid "%s was already set to manually installed.\n" msgstr "འདི་འབདà½à¼‹à½‘་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིནà¼" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, fuzzy, c-format msgid "%s was already set to automatically installed.\n" msgstr "འདི་འབདà½à¼‹à½‘་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིནà¼" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format msgid "%s was already set on hold.\n" msgstr "%s ་འདི་ཧེ་མ་ལས་རང་འà½à½¼à½“་རིམ་གསར་ཤོས་ཅིག་ཨིནà¼\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, fuzzy, c-format msgid "%s was already not hold.\n" msgstr "%s ་འདི་ཧེ་མ་ལས་རང་འà½à½¼à½“་རིམ་གསར་ཤོས་ཅིག་ཨིནà¼\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "%s་གི་དོན་ལུ་བསྒུག་སྡོད་ཅི་ འདི་འབདà½à¼‹à½‘་ཕར་མིན་འདུག" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: 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:264 cmdline/apt-mark.cc:316 +#: 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:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" "\n" @@ -690,7 +713,7 @@ msgid "" "See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -739,52 +762,52 @@ msgstr "" msgid "Disk not found." msgstr "ཌིཀསི་དེ་འཚོལ་མ་à½à½¼à½–à¼" -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "ཡིག་སྣོད་འཚོལ་མ་à½à½¼à½–à¼" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 msgid "Failed to stat" msgstr "ངོ་བཤུས་འབད་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: methods/copy.cc:82 methods/gzip.cc:113 methods/rred.cc:606 +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 msgid "Failed to set modification time" msgstr "ཆུ་ཚོད་ལེགས་བཅོས་གཞི་སྒྲིག་འབà½à¼‹à½“ི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: methods/file.cc:47 +#: 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:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "ནང་བསà¾à¾±à½¼à½‘་འབད་དོà¼" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "དོ་བཉམ་གི་མིང་འདི་གà½à½“་འབེབས་བཟོ་མ་ཚུགསà¼" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "ཉེ་གནས་མིང་འདི་གà½à½“་འབེེབས་བཟོ་མ་ཚུགསà¼" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format msgid "The server refused the connection and said: %s" msgstr "སར་བར་འདི་གིས་ མà½à½´à½‘་ལམ་འདི་ངོས་ལེན་འབད་མ་བà½à½´à½–་པར་སླབ་མས: %s" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "ལག་ལེན་པ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོད་ སར་བར་གྱིས་སླབ་མས་: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "རྩི་སྤྲོད་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོད་ སར་བར་གྱིས་སླབ་མས་: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -792,121 +815,123 @@ msgstr "" "པོརོ་སི་སར་བར་ཅིག་གསལ་བཀོད་འབད་ཡོད་འདི་འབདà½à¼‹à½‘་ ནང་བསà¾à¾±à½¼à½‘་ཡིག་ཚུགས་མིན་འདུག་ Acquire::ftp::" "ProxyLoginའདི་སྟོངམ་ཨིན་པསà¼" -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "ནང་བསà¾à¾±à½¼à½‘་ཡིག་ཚུགས་ བརྡ་བཀོད་'%s'་འདི་འà½à½¼à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོད་ སར་བར་གྱིས་སླབ་མས:%s" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "ཡིག་དཔར་རà¾à¾±à½–་མ་བà½à½´à½–་སར་བར་གྱིས་སླབ་མས༠%s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 msgid "Connection timeout" msgstr "མà½à½´à½‘་ལམ་ངལ་མཚམས" -#: methods/ftp.cc:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "སར་བར་གྱིས་མà½à½´à½‘་ལམ་འདི་à½à¼‹à½–སྡམས་à½à½ºà¼‹à½¡à½¼à½‘པ་ཨིནà¼" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "འཛོལ་བ་ལྷབà¼" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "ལན་གྱིས་ གནད་à½à½¼à½„ས་གུར་ལས་ ལུད་སོང་སྟེ་ཡོདཔ་ཨིནà¼" -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "གནད་སྤེལ་ལམ་ལུགས་ ངན་ཅནà¼" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "འཛོལ་བ་འབྲིà¼" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 msgid "Could not create a socket" msgstr "སོ་ཀེཊི་ཅིག་གསར་བསà¾à¾²à½´à½“་འབད་མ་ཚུགས་པར་ཡོདཔ་ཨིནà¼" -#: methods/ftp.cc:707 +#: methods/ftp.cc:712 msgid "Could not connect data socket, connection timed out" msgstr "གནད་སྡུད་སོ་ཀེཊི་མà½à½´à½‘་མ་ཚུགས་པར་ཡོདཔ་ཨིན་ མà½à½´à½‘་ལམ་ངལ་མཚམསà¼" -#: methods/ftp.cc:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "བྱ་ཡུལ་གྱི་སོ་ཀེཊི་མà½à½´à½‘་མ་ཚུགསà¼" -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo་འདི་གིས་ཉན་ནིའི་སོ་ཀེཊི་ཅིག་ལེན་མ་ཚུགསà¼" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "སོ་ཀེཊི་ཅིག་བསྡམས་མ་ཚུགསà¼" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "སོ་ཀེཊི་གུར་ཉེན་མ་ཚུགསà¼" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "སོ་ཀེཊི་གི་མིང་འདི་གà½à½“་འབེབས་བཟོ་མ་ཚུགསà¼" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "འདྲེན་ལམ་གྱི་བརྡ་བཀོད་འདི་བà½à½„་མ་ཚུགསà¼" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "མ་ཤེས་པའི་à½à¼‹à½–ྱང་གི་རིགས་ཚན་%u (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "ཨི་པི་ཨར་ཊི་ འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོད་ སར་བར་གིས་སླབ་མས:%s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "གནད་སྡུད་སོ་ཀེཊི་ མà½à½´à½‘་ནི་ངལ་མཚམས་བྱུང་ནུག" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "མà½à½´à½‘་ལམ་འདི་དང་ལེན་འབད་མ་ཚུགསà¼" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "ཡིག་སྣོད་ལུ་་དྲà¾à¼‹à½¢à¾Ÿà½‚ས་བཀལ་བའི་བསྒང་དཀའ་ངལà¼" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "ཡིག་སྣོད་ལེན་མ་ཚུགས་ སར་བར་'%s'གིས་སླབ་མས" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "གནད་སྡུད་སོ་ཀེཊི་ངལ་མཚམསà¼" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "གནད་སྡུད་གནས་སོར་དེ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོད་ སར་བར་'%s'་གིས་སླབ་མསà¼" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "འདྲི་དཔྱདà¼" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "ལས་བཀོལ་འབད་མ་ཚུགསà¼" @@ -942,7 +967,7 @@ msgstr " %s:%s (%s)ལུ་མà½à½´à½‘་མ་ཚུགསà¼" #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "%s་ལུ་མà½à½´à½‘་དོà¼" @@ -972,190 +997,190 @@ msgstr "'%s:%s' (%i)་མོས་མà½à½´à½“་འབདà½à¼‹à½‘་ངན་ msgid "Unable to connect to %s:%s:" msgstr "%s %s:ལུ་མà½à½´à½‘་མ་ཚུགསà¼" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "ནང་འà½à½¼à½‘་འཛོལ་བ: མིང་རྟགས་འདི་ལེགས་ཤོམ་ཅིག་འདུག་ འདི་འབདà½à¼‹à½‘་མཛུབ་རྗེས་ལྡེ་མིག་དེ་གà½à½“་འབེབས་བཟོ་" "མ་ཚུགས?!" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "ཉུང་མà½à½ ་རང་ནུས་མེད་ཀྱི་མིང་རྟགས་ཅིག་གདོང་à½à½´à½‚་བྱུང་སྟེ་ཡོདཔ་ཨིནà¼" -#: methods/gpgv.cc:172 +#: methods/gpgv.cc:174 #, fuzzy msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "མིང་རྟགས་བདེན་སྦྱོར་འབད་ནི་ལུ་'%s'འདི་ལག་ལེན་འà½à½–་མ་ཚུགས༠(gpgv་དེ་à½à½žà½²à¼‹à½–ཙུགས་འབད་ཡོདཔ་ཨིན་ནà¼?)" #. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "gpgv་ལག་ལེན་འà½à½–་ནི་ལུ་མ་ཤེས་པའི་འཛོལ་བ་à¼" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "འོག་གི་མིང་རྟགས་ཚུ་ནུས་མེད་ཨིན་པསà¼:\n" -#: methods/gpgv.cc:229 +#: 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:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "ཡིག་སྣོད་འདི་ལུ་འབྲིà½à¼‹à½‘་འཛོལ་བà¼" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "སར་བར་ནང་ལས་ལྷག་པའི་བསྒང་འཛོལ་བ༠à½à½‚་རིང་མཇུག་གི་མà½à½´à½‘་ལམ་དེ་à½à¼‹à½–སྡམསà¼" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "སར་བར་ནང་ལས་ལྷག་པའི་བསྒང་འཛོལ་བà¼" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "ཡིག་སྣོད་ལུ་འབྲིà½à¼‹à½‘་འཛོལ་བà¼" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "སེལ་འà½à½´à¼‹à½ à½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "མà½à½´à½‘་ལམ་ངལ་མཚམས་འབད་ཡོདà¼" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "ཨའུཊི་པུཊི་ཡིག་སྣོད་ལུ་འབྲིà½à¼‹à½‘་འཛོལ་བà¼" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "མགོ་ཡིག་ཚུ་གི་དོན་ལུ་བསྒ྄ག་དོà¼" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "མགོ་ཡིག་གི་གྲལ་à½à½²à½‚་བྱང་ཉེསà¼" -#: methods/server.cc:139 methods/server.cc:146 +#: methods/server.cc:134 methods/server.cc:141 msgid "The HTTP server sent an invalid reply header" msgstr "ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ནུས་མེད་ལན་གསལ་གི་མགོ་ཡིག་ཅིག་བà½à½„་ཡོདà¼" -#: methods/server.cc:176 +#: methods/server.cc:171 msgid "The HTTP server sent an invalid Content-Length header" msgstr "ཨེཆི་ཊི་ཊི་པི་སར་བར་འདི་གིས་ནུས་མེད་ནང་དོན་རིང་-ཚད་ཀྱི་མགོ་ཡིག་ཅིག་བà½à½„་ཡོདà¼" -#: methods/server.cc:199 +#: methods/server.cc:194 msgid "The HTTP server sent an invalid Content-Range header" msgstr "ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ ནུས་མེད་ ནང་དོན་-à½à¾±à½–་ཚད་ཀྱི་མགོ་ཡིག་ཅིག་བà½à½„་ཡོདà¼" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "འ་ནི་ ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ à½à¾±à½–་ཚད་ཀྱི་རྒྱབ་སà¾à¾±à½¼à½¢à¼‹à½‘ེ་ཆད་པ་བཟོ་བà½à½„་ནུག" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "མ་ཤེས་པའི་ཚེས་རྩ་སྒྲིག" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "མགོ་ཡིག་གནད་སྡུད་བྱང་ཉེསà¼" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "བà½à½´à½‘་ལམ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "ནང་འà½à½¼à½‘་འཛོལ་བà¼" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" "ནང་འà½à½¼à½‘་ཀྱི་འཛོལ་བ་ གཞི་བཙུགས་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་ ཆད་པ་ཡོད་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་དང་གཅིག་à½à½¢à¼‹à½–ོད་བརྡ་འབད་འདི་" "ཡོད!" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་རྩ་བསà¾à¾²à½‘་བà½à½„་དགོཔ་འདུག་འདི་འབདགà½à¼‹à½‘་རྩ་བསà¾à¾²à½‘་གà½à½„་ནི་འདི་ལྕོགས་མིན་à½à½£à¼‹à½à½ºà¼‹à½ དུག" -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "ནང་འà½à½¼à½‘་འཛོལ་བ་ གོ་རིམ་བཟོ་ནི་ཚུ་མཇུག་མ་བསྡུ་བསà¼" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" "ག་ཅི་གི་ཡ་མཚན་ཆེ་མི་ཆེ་ ཚད་འདི་གིས་ email apt@packages.debian.org་ལུ་མà½à½´à½“་སྒྲིག་མི་འབད་" "བསà¼" #. TRANSLATOR: The required 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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "%sBལེན་ནི་ལུ་དགོཔ་པས༠ཡིག་མཛོད་ཚི་གི་%sB་\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:171 +#: apt-private/private-install.cc:159 #, 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:178 +#: apt-private/private-install.cc:166 #, fuzzy, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "à½à¼‹à½¦à¾à½¼à½„་གི་%sB་འདི་བཤུབ་པའི་ཤུལ་ལས་ཌིཀསི་གི་བར་སྟོང་དེ་ལག་ལེན་འà½à½–་འོང་à¼\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:183 +#: apt-private/private-install.cc:171 #, fuzzy, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "%sB་འདི་ཤུབ་པའི་ཤུལ་ལས་ཀྱི་བར་སྟོང་དེ་དལà½à¼‹à½¦à¾¦à½ºà¼‹à½£à½´à½¦à¼‹à½ ོང་à¼\n" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "%s ནང་à½à¾±à½¼à½‘་ལུ་བར་སྟོང་དལà½à¼‹à½£à½„མ་སྦེ་མིན་འདུག" -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "དཀའ་ངལ་ཚུ་ཡོདཔ་ལས་-y ་འདི་ --force-yes་མེདà½à½¼à½‚་ལས་ལག་ལེན་འà½à½–་སྟེ་ཡོདà¼" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "ཨིན་ ང་གིས་སླབ་དོ་བཟུམ་སྦེ་རང་འབད!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1166,20 +1191,20 @@ msgstr "" "འཕྲོ་མà½à½´à½‘་འབད་ནིའི་དོན་ལུ་'%s'ཚིག་ཚན་ནང་ལུ་ཡིག་དཔར་རà¾à¾±à½–སà¼\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "བར་བཤོལ་འབདà¼" -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 #, fuzzy msgid "Do you want to continue?" msgstr "à½à¾±à½¼à½“་ཀྱི་འཕྲོ་མà½à½´à½‘་ནི་འབད་ནི་ཨིན་ན་" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "ཡིག་སྣོད་ལ་ལུ་ཅིག་ཕབ་ལེན་འབད་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1187,19 +1212,19 @@ msgstr "" "ཡིག་མཛོད་ལ་ལུ་ཅིག་ལེན་མི་ཚུགས་པས་ apt-get་དུས་མà½à½´à½“་བཟོ་ནི་གཡོག་བཀོལ་ནི་ཨིན་ན་ཡང་ན་--fix-" "missing་དང་གཅིག་à½à½¢à¼‹à½ བད་རྩོལ་བསà¾à¾±à½ºà½‘་ནི་ཨིན་ན་?" -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing་དང་བརྡ་ལམ་བརྗེ་སོར་འབད་ནི་འདི་ད་ལྟོ་ལས་རང་རྒྱབ་སà¾à¾±à½¼à½¢à¼‹à½˜à½²à¼‹à½ བད་བསà¼" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "བརླག་སྟོར་ཞུགས་ཡོད་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་ནོར་བཅོས་འབད་མི་ཚུགས་པསà¼" -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "གཞི་བཙུགས་བར་བཤོལ་འབད་དོà¼" -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1209,15 +1234,15 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1233,16 +1258,16 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 msgid "The following information may help to resolve the situation:" msgstr "འོག་གི་བརྡ་དོན་དེ་གིས་དུས་སà¾à½–ས་འདི་མོས་མà½à½´à½“་བཟོ་ནི་ལུ་གྲོགས་རམ་འབད་འོང་:" -#: apt-private/private-install.cc:517 +#: apt-private/private-install.cc:505 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "ནང་འà½à½¼à½‘་འཛོལ་བ་ དཀའ་ངལ་མོས་མà½à½´à½“་འབད་མི་ཅ་ཆས་ཚུ་མེདཔ་à½à½£à¼‹à½¡à½¼à½‘à¼" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1252,7 +1277,7 @@ msgid_plural "" msgstr[0] "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིས་གསརཔ་འདི་ཚུ་à½à½žà½²à¼‹à½–ཙུགས་འབད་འོང་:" msgstr[1] "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིས་གསརཔ་འདི་ཚུ་à½à½žà½²à¼‹à½–ཙུགས་འབད་འོང་:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1260,17 +1285,17 @@ msgid_plural "" msgstr[0] "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིས་གསརཔ་འདི་ཚུ་à½à½žà½²à¼‹à½–ཙུགས་འབད་འོང་:" msgstr[1] "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིས་གསརཔ་འདི་ཚུ་à½à½žà½²à¼‹à½–ཙུགས་འབད་འོང་:" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-install.cc:624 +#: 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:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1278,7 +1303,7 @@ msgstr "" "མ་ཚང་བའི་རྟེན་འབྲེལ་ à½à½´à½¦à¼‹à½¦à¾’ྲིལ་མེད་མི་ཚུ་དང་གཅིག་à½à½¢à¼‹ 'apt-get -f install'དེ་འབà½à¼‹à½¢à¾©à½¼à½£à¼‹à½–སà¾à¾±à½ºà½‘པà¼" "(ཡང་ན་à½à½–ས་ཤེས་ཅིག་གསལ་བཀོད་འབདà¼)" -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1289,146 +1314,146 @@ msgstr "" "འབད་འབདà½à¼‹à½ ོང་ནི་མས་ ཡང་ན་ད་ལྟོ་ཡང་གསར་བསà¾à¾²à½´à½“་མ་འབད་བར་ཡོད་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ལ་ལུ་ཅིག་ཡང་ན་ནང་" "འབྱོར་གྱི་ཕྱི་à½à½¢à¼‹à½¢à¾©à¼‹à½–སà¾à¾²à½‘་བà½à½„་ཡོད་པའི་རྩ་བརྟན་མེད་པའི་བགོ་འགྲེམ་ཚུ་ལག་ལེན་འà½à½–་དོ་ཡོདཔ་འོང་ནི་ཨིན་པསà¼" -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "ཆད་པ་ཡོད་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུà¼" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་à½à½ºà½–ས་ཚུ་གཞི་བཙུགས་འབད་འོང་:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "བསམ་འཆར་བཀོད་ཡོད་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "འོས་སྦྱོར་འབད་ཡོད་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ཉེན་བརྡ:འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་ཚུ་བདེན་བཤད་འབད་མི་བà½à½´à½–་པསà¼" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "བདེན་བཤད་ཉེན་བརྡ་འདི་ཟུར་འབད་ཡོདà¼\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ལ་ལུ་ཅིག་བདེན་བཤད་འབད་མ་ཚུགསà¼" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 #, fuzzy msgid "Install these packages without verification?" msgstr "བདེན་སྦྱོར་མ་འབད་བར་འ་ནི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་ཚུ་གཞི་བཙུགས་འབད་ནི་ཨིན་ན་" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s %s་ ལེན་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [གཞི་བཙུགས་འབད་ཡོདà¼]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [གཞི་བཙུགས་འབད་ཡོདà¼]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [གཞི་བཙུགས་འབད་ཡོདà¼]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [གཞི་བཙུགས་འབད་ཡོདà¼]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་ལུ་རྟེན་འབྲེལ་མ་ཚང་པས:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "འདི་འབདà½à¼‹à½‘་%s་འདི་གཞི་བཙུགས་འབད་ཡོདà¼" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "འདི་འབདà½à¼‹à½‘་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིནà¼" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "འདི་འབདà½à¼‹à½‘་%s་འདི་གཟི་བཙུགས་འབད་མི་བà½à½´à½–་པསà¼" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "འདི་འབདà½à¼‹à½‘་ འདི་བར་ཅུ་ཡལ་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཅིག་ཨིན་པསà¼" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "འདི་འབདà½à¼‹à½‘་འདི་གཞི་བཙུགས་མ་འབད་བསà¼" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "འདི་འབདà½à¼‹à½‘་འདི་གཞི་བཙུགས་མི་འབད་ནི་ཨིན་པསà¼" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr "ཡང་ནà¼" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིས་གསརཔ་འདི་ཚུ་à½à½žà½²à¼‹à½–ཙུགས་འབད་འོང་:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་ཚུ་རྩ བསà¾à¾²à½‘་གà½à½„་འོང་:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་ཚུ་ལོག་སྟེ་རང་བཞག་ནུག:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་ཚུ་ཡར་བསà¾à¾±à½ºà½‘་འབད་འོང་:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲལ་འདི་ཚུ་མར་ཕབ་འབད་འོང་:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "འོག་གི་འཆང་ཡོད་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་བསྒྱུར་བཅོས་འབད་འོང་:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s( %s་གིས་སྦེ)" -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1436,27 +1461,27 @@ msgstr "" "ཉེན་བརྡ:འོག་གི་ཉོ་མà½à½¼à¼‹à½–འི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་རྩ་བསà¾à¾²à½‘་གà½à½„་འོང་à¼\n" "à½à¾±à½¼à½‘་ཀྱིས་à½à¾±à½¼à½‘་རང་ག་ཅི་འབདà½à¼‹à½¨à½²à½“་ན་ངེས་སྦེ་མ་ཤེས་ཚུན་འདི་འབད་ནི་མི་འོང་à¼!" -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu་ཡར་བསà¾à¾±à½ºà½‘་འབད་ཡོད་ %lu་འདི་གསརཔ་སྦེ་གཞི་བཙུགས་འབད་ཡོདà¼" -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu་འདི་ལོག་གཞི་བཙུགས་འབད་ཡོདà¼" -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu་འདི་མར་ཕབ་འབད་ཡོདà¼" -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "རྩ་བསà¾à¾²à½‘་འབད་ནི་ལུ་%lu་དང་%lu་ཡར་བསà¾à¾±à½ºà½‘་མ་འབད་བསà¼\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu་འདི་ཆ་ཚང་སྦེ་གཞི་བཙུགས་མ་འབད་ཡང་ན་རྩ་བསà¾à¾²à½‘་མ་གà½à½„་པསà¼\n" @@ -1465,7 +1490,7 @@ msgstr "%lu་འདི་ཆ་ཚང་སྦེ་གཞི་བཙུགས #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "" @@ -1473,91 +1498,91 @@ msgstr "" #. 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:702 +#: apt-private/private-output.cc:708 msgid "[y/N]" msgstr "" #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "à½à½ ིà¼" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "རི་ཇེགསི་ཕྱོགས་སྒྲིག་འཛོལ་བ་- %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "རྟེན་འབྲེལ་ནོར་བཅོས་འབད་དོà¼" -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr "འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "རྟེན་འབྲེལ་འདི་ནོར་བཅོས་འབད་མི་ཚུགས་པསà¼" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "ཡར་བསà¾à¾±à½ºà½‘་འབད་ཡོད་པའི་ཆ་ཚན་འདི་ཆུང་ཀུ་བཟོ་མི་ཚུགས་པསà¼" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr "འབད་ཚར་ཡིà¼" -#: apt-private/private-cachefile.cc:102 +#: 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:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "མ་ཚང་པའི་རྟེན་འབྲེལ་ཚུ༠-f ལག་ལེན་འà½à½–་སྟེ་འབད་རྩོལ་བསà¾à¾±à½ºà½‘à¼" -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "དུས་མà½à½´à½“་བཟོ་བའི་བརྡ་བཀོད་འདི་གིས་སྒྲུབ་རྟགས་ཚུ་མི་འབག་འབདà¼" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "ཡར་བསà¾à¾±à½ºà½‘་རྩིས་བà½à½¼à½“་དོ་... " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "ནང་འགོད་འཛོལ་བ་ ཡར་བསà¾à¾±à½ºà½‘་ཀྱི་ཅ་ཆས་ཆ་མཉམ་མེདཔ་à½à½£à¼‹à½¡à½¼à½‘à¼" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "འབད་ཚར་ཡིà¼" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1565,43 +1590,43 @@ msgid "" " so don't depend on the relevance to the real current situation!" msgstr "" -#: apt-private/private-sources.cc:45 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format msgid "Failed to parse %s. Edit again? " msgstr "%s་ལུ་%s་བསà¾à¾±à½¢à¼‹à½˜à½²à½„་བà½à½‚ས་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: apt-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "ཨེབà¼" -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "ལེན:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "ཨེལ་ཇི་ཨེན:" -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "ཨི་ཨར་ཨརà¼" -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "%s (%sB/s)་ནང་ལུ་%sB་དེ་ལེན་ཡོདཔ་ཨིནà¼\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [ལཱ་འབད་དོà¼]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1614,19 +1639,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "%s་འདི་ལུ་ལྷག་མ་ཚུགསà¼" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "%s་ལུ་བསྒྱུར་བཅོས་འབད་མ་ཚུགསà¼" @@ -1655,11 +1680,11 @@ msgstr "%s་ཡིག་སྣོད་འདི་à½à¼‹à½•ྱེ་མ་ཚà msgid "[Mirror: %s]" msgstr "" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 msgid "Failed to create IPC pipe to subprocess" msgstr "ཡན་ལག་ལས་སྦྱོར་ལུ་ཨའི་པི་སི་རྒྱུད་དུང་གསར་བསà¾à¾²à½´à½“་འབད་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདཔà¼" -#: methods/rsh.cc:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "དུས་སུ་མ་འབབ་པ་རང་མà½à½´à½‘་ལམ་འདི་ག་བསྡམས་ཡོདà¼" @@ -1727,40 +1752,45 @@ msgstr "" " -o=? འདི་གིས་མà½à½´à½“་སྒྲིག་རིམ་སྒྲིག་གདམ་à½à¼‹à½…ིག་གཞི་སྒྲིག་འབདà½à¼‹à½¨à½²à½“་ དཔེར་ན་-o dir::cache=/tmp་" "བཟུམà¼\n" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "%s་འདི་ལུ་ངོ་བཤུས་འབད་མ་ཚུགསà¼" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr " %sལུ་འབྲི་མ་ཚུགསà¼" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "debconf ་་འà½à½¼à½“་རིམ་འདི་ལེན་མ་ཚུགས༠debconf འདི་གཞི་བཙུགས་འབད་ཡི་ག་?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་རྒྱ་བསà¾à¾±à½ºà½‘་à½à½¼à½‚་ཡིག་འདི་གནམ་མེད་ས་མེད་རིངམ་འདུག" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "སྣོད་à½à½¼à¼‹%s་ལས་སྦྱོར་འབདà½à¼‹à½‘་འཛོལ་བ་འà½à½¼à½“་ཡིà¼" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "འབྱུང་à½à½´à½„ས་རྒྱ་བསà¾à¾±à½ºà½‘་ཀྱི་à½à½¼à½‚་ཡིག་འདི་གནམ་མེད་ས་མེད་རིང་པསà¼" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "ནང་དོན་ཡིག་སྣོད་ལུ་མགོ་ཡིག་འཛོལ་བ་འབྲི་ནིའི་མགོ་ཡིག" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "%sའཛོལ་བ་ལས་སྦྱོར་འབད་ནིའི་ནང་དོནà¼" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1844,26 +1874,26 @@ msgstr "" " -c=? འ་ནི་རིམ་སྒྲིག་ཡིག་སྣོད་འདི་ལྷག\n" " -o=? མà½à½´à½“་སྒྲིག་རིམ་སྒྲིག་གི་གདམ་à½à¼‹à½…ིག་གཞི་སྒྲིག་འབདà¼" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "སེལ་འà½à½´à¼‹à½šà½´à¼‹à½˜à½à½´à½“་སྒྲིག་མིན་འདུག" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "ཡིག་སྣོད་ལ་ལུ་ཅིག་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཡིག་སྣོད་སྡེ་ཚན་`%s'ནང་བརླག་སྟོར་ཞུགས་ནུག" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "ཌི་བི་ངན་ཅན་བྱུང་ནུག་ %s.རྒསཔ་ལུ་ཡིག་སྣོད་འདི་བསà¾à¾±à½¢à¼‹à½˜à½²à½„་བà½à½‚ས་ཡིà¼" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "ཌི་བི་འདི་རྙིངམ་ཨིན་པས་ %s་ཡར་བསà¾à¾±à½ºà½‘་འབད་ནིའི་དོན་ལུ་དཔའ་བཅམ་དོà¼" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 #, fuzzy msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " @@ -1872,192 +1902,192 @@ msgstr "" "ཌི་བི་རྩ་སྒྲིག་འདི་ ནུས་མེད་ཨིན་པས༠à½à¾±à½¼à½‘་ཀྱི་ apt་ གྱི་འà½à½¼à½“་རིམ་རྙིངམ་ཅིག་ནང་ལས་ ཡར་བསà¾à¾±à½ºà½‘་འབད་ཡོད་" "པ་ཅིན་ རྩ་བསà¾à¾²à½‘་གà½à½„་ཞིནམ་ལས་ གནད་སྡུད་གཞི་རྟེན་འདི་ ལོག་དེ་གསར་བསà¾à¾²à½´à½“་འབད༠" -#: ftparchive/cachedb.cc:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "%s: %s་ཌི་བི་ཡིག་སྣོད་འདི་à½à¼‹à½•ྱེ་མ་ཚུགསà¼" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "%s་སིཊེཊི་འབད་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདཔà¼" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "ཡིག་མཛོད་འདི་ལུ་ཚད་འཛིན་དྲན་à½à½¼à¼‹à½˜à½²à½“་འདུག" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "འོད་རྟགས་ལེན་མ་ཚུགསà¼" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "ཌབ་ལུ:%sསྣོད་à½à½¼à¼‹à½ དི་ལྷག་མ་ཚུགསà¼\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "ཌབ་ལུ་ %s སིཊེཊི་འབད་མ་ཚུགསà¼\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "ཨི:" -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "ཌབ་ལུ:" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "ཨི:འཛོལ་བ་ཚུ་ཡིག་སྣོད་ལུ་འཇུག་སྤྱོད་འབདà¼" -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "%s་མོས་མà½à½´à½“་འབད་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདཔà¼" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "རྩ་འབྲེལ་ཕྱིར་བགྲོད་འབད་ནི་ལུ་འà½à½´à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདཔà¼" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "%s་ག་ཕྱེ་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདཔà¼" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "%s་འབྲེལ་ལམ་ལྷག་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདཔà¼" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "%s་འབྲེལ་ལམ་མེད་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདཔà¼" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** %s་ལས་%sལུ་འབྲེལ་འà½à½´à½‘་འབད་ནི་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདཔà¼" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr "%sB་ཧེང་བཀལ་བཀྲམ་ནིའི་འབྲེལ་མེད་བཅད་མཚམསà¼\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "ཡིག་མཛོད་ལུ་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཅི་ཡང་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½˜à¼‹à½–ྱུང་à¼" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %sལུ་ཟུར་བཞག་à½à½¼à¼‹à½–ཀོད་མེདà¼\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s ་རྒྱུན་སà¾à¾±à½¼à½„་པ་འདི་ %s ཨིན་ %s མེནà¼\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr " %s ལུ་འབྱུང་à½à½´à½„ས་མེདཔ་གà½à½„་ནིའི་à½à½¼à¼‹à½–ཀོད་འདི་མེདà¼\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr " %sལུ་ཟུང་ལྡན་མེདཔ་གà½à½„་ནིའི་་à½à½¼à¼‹à½–ཀོད་གང་རུང་ཡང་མིན་འདུགà¼\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "དྲན་ཚད་སྤྲོད་ནིའི་དོན་ལུ་ རི་ཨེ་ལོཀ་ འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "%s་à½à¼‹à½•ྱེ་མ་ཚུགསà¼" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "བཟོ་ཉེས་གྱུར་བའི་ཟུར་བཞག་%s གྲལ་à½à½²à½‚་%lu #1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "ཟུར་བཞག་ཡིག་སྣོད་%sའདི་ལྷག་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, fuzzy, c-format msgid "Malformed override %s line %llu #1" msgstr "བཟོ་ཉེས་གྱུར་བའི་ཟུར་བཞག་%s གྲལ་à½à½²à½‚་%lu #1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, fuzzy, c-format msgid "Malformed override %s line %llu #2" msgstr "བཟོ་ཉེས་གྱུར་བའི་ཟུར་བཞག་%sགྲལ་à½à½²à½‚%lu #2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, fuzzy, c-format msgid "Malformed override %s line %llu #3" msgstr "བཟོ་ཉེས་གྱུར་བའི་ཟུར་བཞག་%sགྲལ་à½à½²à½‚%lu #3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr " མ་ཤེས་ཨེབ་བཙུགས་ཨཱལ་གོ་རི་དམ'%s'" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "ཨེབ་བཙུགས་འབད་ཡོད་པའི་ཨའུཊི་པུཊི་%sལུ་ཨེབ་བཙུགས་ཆ་ཚན་ཅིག་དགོཔ་འདུག" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "ཡིག་སྣོད་*་ གསར་བསà¾à¾²à½´à½“་འབད་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "à½à¼‹à½¦à¾¤à½ºà½£à¼‹à½ བད་ནི་ལུ་འà½à½´à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "ཆ་ལག་ཨེབ་བཙུགས་འབདà¼" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "ནང་འà½à½¼à½‘་འཛོལ་བ་ %s་གསར་བསà¾à¾²à½´à½“་འབད་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "ཡན་ལག་ལས་སྦྱོར་ལུ་IO/ཡིག་སྣོད་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "ཨེམ་ཌི་༥་གློག་རིག་རà¾à¾±à½–་པའི་སà¾à½–ས་ལྷག་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "%s་འབྲེལ་འà½à½´à½‘་མེདཔ་བཟོ་ནི་ལུ་དཀའ་ངལà¼" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "%s་ལུ་%s་བསà¾à¾±à½¢à¼‹à½˜à½²à½„་བà½à½‚ས་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -2112,157 +2142,157 @@ msgstr "" " -o=? འདི་གིས་ མà½à½´à½“་སྒྲིག་ རིམ་སྒྲིག་གི་གདམ་à½à¼‹à½šà½´à¼‹à½à½žà½²à¼‹à½¦à¾’ྲིག་འབདà½à¼‹à½¨à½²à½“་ དཔེར་ན་-o dir::cache=/" "tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "རྒྱུད་དུང་ཚུ་གསར་བསà¾à¾²à½´à½“་འབད་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "ཇི་ཛིཔ་འདི་ལག་ལེན་འà½à½–་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "ངན་ཅན་གྱི་ཡིག་མཛོདà¼" -#: apt-inst/contrib/extracttar.cc:201 +#: apt-inst/contrib/extracttar.cc:203 msgid "Tar checksum failed, archive corrupted" msgstr "ཊར་ཅེག་སམ་དེ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོད་ ཡིག་མཛོད་ངན་ཅན་བྱུང་ནུག" -#: apt-inst/contrib/extracttar.cc:306 +#: apt-inst/contrib/extracttar.cc:308 #, c-format msgid "Unknown TAR header type %u, member %s" msgstr "མ་ཤེས་པའི་ ཊཱར་་མགོ་ཡིག་་དབྱེ་བ་ %u་ འà½à½´à½¦à¼‹à½˜à½²à¼‹ %sà¼" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "ནུས་མེད་ཡིག་མཛོད་ཀྱི་མིང་རྟགསà¼" -#: apt-inst/contrib/arfile.cc:82 +#: apt-inst/contrib/arfile.cc:84 msgid "Error reading archive member header" msgstr "ཡིག་མཛོད་འà½à½´à½¦à¼‹à½˜à½²à¼‹à½˜à½‚ོ་ཡིག་ལྷག་ནིའི་འཛོལ་བà¼" -#: apt-inst/contrib/arfile.cc:94 +#: apt-inst/contrib/arfile.cc:96 #, fuzzy, c-format msgid "Invalid archive member header %s" msgstr "ནུས་མེད་ཡིག་མཛོད་འà½à½´à½¦à¼‹à½˜à½²à¼‹à½‚ི་མགོ་ཡིག་" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "ནུས་མེད་ཡིག་མཛོད་འà½à½´à½¦à¼‹à½˜à½²à¼‹à½‚ི་མགོ་ཡིག་" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "ཡིག་མཛོད་འདི་གནམ་མེད་ས་མེད་à½à½´à½„་ཀུ་འདུག" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "ཡིག་མཛོད་མགོ་ཡིག་ཚུ་ལྷག་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: apt-inst/filelist.cc:382 +#: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" msgstr "ད་ལྟོ་ཡང་འབྲེལ་ལམ་ཡོད་པའི་མà½à½´à½‘་མཚམས་གུར་བཀོག་བཞག་མà½à½´à½‘་མཚམས་དེ་བོད་བརྡ་འབད་འདི་ཡོདà¼" -#: apt-inst/filelist.cc:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "དྲà¾à¼‹à½¢à¾Ÿà½‚ས་རྒྱུ་རྫས་འདི་ག་ཡོད་འཚོལ་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོད!" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "à½à¼‹à½•ྱོགས་སྤྲོད་བཞག་འབད་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "à½à¼‹à½•ྱོགས་à½à¼‹à½¦à¾à½¼à½„་རà¾à¾±à½–་ནི་ནང་ ནང་འà½à½¼à½‘་ཀྱི་འཛོལ་བà¼" -#: apt-inst/filelist.cc:479 +#: 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:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "%s -> %s་à½à¼‹à½•ྱོགས་ཀྱི་ལོག་བལྟབ་à½à¼‹à½¦à¾à½¼à½„་à¼" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "རིམ་སྒྲིག་ཡིག་སྣོད་%s/%s་འདི་ངོ་བཤུས་བཟོà¼" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: 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:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "%s་ཡིག་སྣོད་འདི་à½à¼‹à½–སྡམས་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: 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:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "སྦུང་ཚན་བཟོ་བཤོལ་%s་གཅིག་ལས་ལྷག་སྟེ་འདུག" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "སྣོད་à½à½¼à¼‹%s་འདི་à½à¼‹à½•ྱོགས་སྒྱུར་དེ་ཡོདà¼" -#: apt-inst/extract.cc:145 +#: 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:155 apt-inst/extract.cc:299 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 msgid "The diversion path is too long" msgstr "à½à¼‹à½¦à¾’ྱུར་འགྲུལ་ལམ་འདི་གནམ་མེད་ས་མེད་རིངམ་ཨིན་པསà¼" -#: apt-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "སྣོད་ཡིག་%s་འདི་སྣོད་ཡིག་མེན་མི་ཅིག་གིས་ཚབ་བཙུག་དེ་ཡོདཔ་ཨིནà¼" -#: apt-inst/extract.cc:282 +#: apt-inst/extract.cc:289 msgid "Failed to locate node in its hash bucket" msgstr "à½à½¼à½„་རའི་དྲà¾à¼‹à½¢à¾Ÿà½‚ས༠(#)རྡོབ་ནང་ལུ་མà½à½´à½‘་མཚམས་ག་ཡོད་འཚོལ་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: apt-inst/extract.cc:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "འགྲུལ་ལམ་དེ་གནམ་མེད་ས་མེད་རིངམ་ཅིག་ཨིན་པསà¼" -#: apt-inst/extract.cc:414 +#: apt-inst/extract.cc:421 #, c-format msgid "Overwrite package match with no version for %s" msgstr "%s་གི་དོན་ལུ་ཚབ་སྲུང་འབད་བའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་དེ་གིས་འà½à½¼à½“་རིམ་གཅིག་ད་ཡང་མà½à½´à½“་སྒྲིག་མི་འབད་བསà¼" -#: apt-inst/extract.cc:431 +#: 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:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "%s་འདི་ལུ་ངོ་བཤུས་འབད་མ་ཚུགསà¼" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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'འà½à½´à½¦à¼‹à½˜à½²à¼‹à½–རླག་སྟོར་ཞུགས་དོà¼" -#: apt-inst/deb/debfile.cc:124 +#: apt-inst/deb/debfile.cc:132 #, c-format msgid "Internal error, could not locate member %s" msgstr "ནང་འà½à½¼à½‘་འཛོལ་བ་གིས་འà½à½´à½¦à¼‹à½˜à½²à¼‹%sའདི་ག་ཡོད་འཚོལ་མ་འà½à½¼à½–à¼" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "མིང་དཔྱད་འབད་མ་བà½à½´à½–་པའི་ཚད་འཛིན་ཡིག་སྣོདà¼" @@ -2320,496 +2350,501 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "སེལ་འà½à½´à¼‹%s ་མ་འà½à½¼à½–à¼" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "ངོ་མ་ཤེས་པའི་སྡུད་ཚིག་གི་དབྱེ་བ:'%c'" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "རིམ་སྒྲིག་ཡིག་སྣོད་%s་འདི་à½à¼‹à½•ྱེ་དོà¼" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "་ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: སྡེབ་ཚན་གྱིས་མིང་མེད་མི་དང་གཅིག་à½à½¢à¼‹à½ གོ་བཙུགསཔ་ཨིན" -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:བཟོ་ཉེས་འགྱུར་བའི་ངོ་རྟགསà¼" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:གནས་གོང་གི་ཤུལ་ལས་མà½à½¼à¼‹à½˜à½ºà½‘་à½à½ºà½–སà¼" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:བཀོད་རྒྱ་ཚུ་ཆེ་རིམ་ནང་རà¾à¾±à½„མ་ཅིག་བྱིན་ཚུགསà¼" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:འདུ་འཛོམས་འབད་འབདà½à¼‹à½£à½ºà¼‹à½¤à½±à¼‹à½‚ྲངས་སུ་བཙུགསཔ་ཨིནà¼" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: ནཱ་ལས་རང་འགོ་བཙུགས་གྲངས་སུ་བཙུགས་à½à½ºà¼‹à½¡à½¼à½‘à¼" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: རྒྱབ་སà¾à¾±à½¼à½¢à¼‹à½˜à¼‹à½ བད་བར་ཡོད་པའི་'%s'བཀོད་རྒྱà¼" -#: apt-pkg/contrib/configuration.cc:884 +#: 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-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: ཡིག་སྣོད་ཀྱི་མཇུག་ལུ་མà½à½¼à¼‹à½˜à½ºà½‘་à½à½ºà½–སà¼" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... འཛོལ་བ་!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... འབད་ཚར་ཡོདà¼" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s... འབད་ཚར་ཡོདà¼" -#: apt-pkg/contrib/cmndline.cc:116 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format msgid "Command line option '%c' [from %s] is not known." msgstr "བརྡ་བཀོད་གྲལ་à½à½²à½‚་གྱི་གདམ་à½à¼‹'%c'[%s་ནང་ལས་]འདི་མ་ཤེས་པསà¼" -#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format msgid "Command line option %s is not boolean" msgstr "བརྡ་བཀོད་གྲལ་à½à½²à½‚་གི་གདམ་à½à¼‹%s་འདི་བུ་ལིན་མེན་པསà¼" -#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "གདམ་à½à¼‹%s་ལུ་སྒྲུབ་རྟགས་ཅིག་དགོ་པསà¼" -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "གདམ་à½à¼‹%s:རིམ་སྒྲིག་གི་རྣམ་གྲངས་གསལ་བཀོད་ལུ་ =<val> ་ཅིག་དགོཔ་ཨིནà¼" -#: apt-pkg/contrib/cmndline.cc:273 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format msgid "Option %s requires an integer argument, not '%s'" msgstr "གདམ་à½à¼‹ %s ་ལུ་'%s'་མེན་པར་ ཧྲིལ་ཨང་སྒྲུབ་རྟགས་ཅིག་དགོས་མà½à½¼à¼‹à½¡à½¼à½‘པ་ཨིན" -#: apt-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "གདམ་à½à¼‹'%s'འདི་གནམ་མེད་ས་མེད་རིངམ་འདུག" -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "དྲན་ཤེས་ %s་འདི་ཧ་གོ་མ་ཚུགས་པས་ བདེན་པ་ཡང་ན་རྫུན་པ་ལུ་འབད་རྩོལ་བསà¾à¾±à½ºà½‘པà¼" -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "ནུས་མེད་བཀོལ་སྤྱོད་%s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format msgid "Unable to stat the mount point %s" msgstr "སྦྱར་བརྩེགས་ས་ཚིགས་%s་འདི་ངོ་བཤུས་འབད་མ་ཚུགསà¼" -#: apt-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "སི་ཌི་རོམ་འདི་ངོ་བཤུས་འབད་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: apt-pkg/contrib/fileutl.cc:95 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "ཡིག་སྣོད་འདི་à½à¼‹à½–སྡམས་པའི་བསྒང་དཀའ་ངལà¼" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "%s ལྷག་ནི་རà¾à¾±à½„མ་ཅིག་འབད་མི་ལྡེ་མིག་ཡིག་སྣོད་འདི་གི་དོན་ལུ་ལྡེ་མིག་རà¾à¾±à½–་ནི་ལག་ལེན་མི་འà½à½–་པསà¼" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "ལྡེ་མིག་རà¾à¾±à½–ས་ཡོད་པའི་ཡིག་སྣོད་%s་འདི་à½à¼‹à½•ྱེ་མ་ཚུགསà¼" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "" "ཨེན་ཨེཕ་ཨེསི་ %s སྦྱར་བརྩེགས་འབད་ཡོད་པའི་ལྡེ་མིག་ཡིག་སྣོད་ཀྱི་དོན་ལུ་ལྡེ་མིག་རà¾à¾±à½–་ནི་ལག་ལེན་མི་འà½à½–་པསà¼" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "%sལྡེ་མིག་རà¾à¾±à½–་ནི་ལེན་མ་ཚུགསà¼" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "ཡན་ལག་ལས་སྦྱོར་%s་ལུ་ཆ་བགོས་ཀྱི་སà¾à¾±à½¼à½“་ཅིག་à½à½¼à½–་ཡོདཔ་ཨིནà¼" -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "ཡན་ལག་ལས་སྦྱོར་%s་ལུ་ཆ་བགོས་ཀྱི་སà¾à¾±à½¼à½“་ཅིག་à½à½¼à½–་ཡོདཔ་ཨིནà¼" -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 apt-pkg/contrib/gpgv.cc:239 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "ཡན་ལག་ལས་སྦྱོར་%s་གིས་འཛོལ་བའི་ཨང་རྟགས་(%u)ཅིག་སླར་ལོག་འབད་ཡོདཔ་ཨིནà¼" -#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "ཡན་ལག་ལས་སྦྱོར་་%s་གིས་རེ་བ་མེད་པར་ཕྱིར་à½à½¼à½“་ཡོདཔ་ཨིནà¼" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "ཡིག་སྣོད་འདི་à½à¼‹à½–སྡམས་པའི་བསྒང་དཀའ་ངལà¼" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "%s་ཡིག་སྣོད་འདི་à½à¼‹à½•ྱེ་མ་ཚུགསà¼" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "%s་གི་དོན་ལུ་རྒྱུད་དུང་འདི་à½à¼‹à½•ྱེ་མ་ཚུགསà¼" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "ཡན་ལག་ལས་སྦྱོར་ ཨའི་པི་སི་ གསར་བསà¾à¾²à½´à½“་འབད་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "ཨེབ་འཕྲུལ་ལག་ལེན་འà½à½–་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, fuzzy, c-format msgid "read, still have %llu to read but none left" msgstr "ལྷག་ ད་ལྟོ་ཡང་ལྷག་ནི་ལུ་%lu་ཡོད་འདི་འབདà½à¼‹à½‘་ཅི་ཡང་ལྷག་ལུས་མིན་འདུག" -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, fuzzy, c-format msgid "write, still have %llu to write but couldn't" msgstr "འབྲི་ ད་ལྟོ་ཡང་འབྲི་ནི་ལུ་%lu་ཡོད་འདི་འདབà½à¼‹à½‘་འབད་མ་ཚུགསà¼" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "ཡིག་སྣོད་འདི་à½à¼‹à½–སྡམས་པའི་བསྒང་དཀའ་ངལà¼" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "ཡིག་སྣོད་མཉམ་བྱུང་འབདà½à¼‹à½‘་དཀའ་ངལà¼" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "ཡིག་སྣོད་འདི་འབྲེལལམ་མེདཔ་བཟོ་བའི་བསྒང་དཀའ་ངལà¼" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "ཡིག་སྣོད་མཉམ་བྱུང་འབདà½à¼‹à½‘་དཀའ་ངལà¼" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "%s (%s -> %s)བསà¾à¾±à½¢à¼‹à½˜à½²à½„་བà½à½‚ས་ནི་འདི་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདཔ་ཨིནà¼" + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, fuzzy, c-format msgid "No keyring installed in %s." msgstr "གཞི་བཙུགས་བར་བཤོལ་འབད་དོà¼" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདྲ་མཛོད་སྟོངམà¼" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདྲ་མཛོད་ཡིག་སྣོད་འདི་ངན་ཅན་ཨིན་པསà¼" -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིས་འདྲ་མཛོད་ཡིག་སྣོད་འདི་ མི་མà½à½´à½“་པའི་འà½à½¼à½“་རིམ་ཅིག་ཨིན་པསà¼" -#: apt-pkg/pkgcache.cc:162 +#: apt-pkg/pkgcache.cc:169 #, fuzzy msgid "The package cache file is corrupted, it is too small" msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདྲ་མཛོད་ཡིག་སྣོད་འདི་ངན་ཅན་ཨིན་པསà¼" -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "འ་ནི་ཨེ་པི་ཊི་ འདི་གིས་ '%s'འà½à½¼à½“་རིམ་བཟོ་ནིའི་རིམ་ལུགས་དེ་ལུ་རྒྱབ་སà¾à¾±à½¼à½¢à¼‹à½˜à½²à¼‹à½ བད་བསà¼" -#: apt-pkg/pkgcache.cc:172 +#: apt-pkg/pkgcache.cc:179 msgid "The package cache was built for a different architecture" msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདྲ་མཛོད་འདི་བཟོ་བཀོད་སོ་སོ་ཅིག་གི་དོན་ལུ་བཟོ་བརྩིགས་འབད་འབདà½à¼‹à½¨à½²à½“པསà¼" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "རྟེནམ་ཨིནà¼" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "སྔོན་གོང་མ་རྟེནམ་ཨིནà¼" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "བསམ་འཆར་བཀོདཔ་ཨིནà¼" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "འོས་སྦྱོར་འབདà½à¼‹à½¨à½²à½“à¼" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "མི་མà½à½´à½“མ་ཨིནà¼" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "ཚབ་བཙུགསཔ་ཨིནà¼" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "ཕན་མེདཔ་བཟོà½à¼‹à½¨à½²à½“à¼" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "གལ་ཅནà¼" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "དགོས་མà½à½¼à¼‹à½¡à½¼à½‘པà¼" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "ཚད་ལྡནà¼" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "གདམ་à½à¼‹à½…ནà¼" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "à½à½ºà½–སà¼" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "རྟེན་འབྲེལ་གྱི་རྩ་འབྲེལ་བཟོ་བརྩིགས་འབད་དོà¼" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "མི་ངོ་འà½à½¼à½“་རིམཚུà¼" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "བརྟེན་པའི་བཟོ་བà½à½¼à½“à¼" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: 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:244 +#: apt-pkg/depcache.cc:250 #, fuzzy, c-format msgid "Failed to open StateFile %s" msgstr "%s་ག་ཕྱེ་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདཔà¼" -#: apt-pkg/depcache.cc:250 +#: apt-pkg/depcache.cc:256 #, fuzzy, c-format msgid "Failed to write temporary StateFile %s" msgstr "%s་ཡིག་སྣོད་འདི་འབྲི་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: apt-pkg/tagfile.cc:138 +#: apt-pkg/tagfile.cc:140 #, c-format msgid "Unable to parse package file %s (1)" msgstr "%s (༡་)་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགསà¼" -#: apt-pkg/tagfile.cc:235 +#: apt-pkg/tagfile.cc:237 #, c-format msgid "Unable to parse package file %s (2)" msgstr "%s (༢་)་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགསà¼" -#: apt-pkg/sourcelist.cc:118 +#: 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:161 +#: 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:164 +#: 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:175 +#: 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:181 +#: 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:184 +#: 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-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་à½à½²à½‚་ %lu འབྱུང་à½à½´à½„ས་à½à½¼à¼‹à½¡à½²à½‚་ %s (ཡུ་ཨར་ཨའི་)གི་ནང་ནà¼" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་à½à½²à½‚་ %lu་ འབྱུང་à½à½´à½„ས་à½à½¼à¼‹à½¡à½²à½‚་%s (dist)གི་ནང་ནà¼" -#: apt-pkg/sourcelist.cc:202 +#: apt-pkg/sourcelist.cc:211 #, c-format msgid "Malformed line %lu in source list %s (URI parse)" msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་à½à½²à½‚་%lu་ འབྱུང་à½à½¼à¼‹à½¡à½²à½‚་ %s(ཡུ་ཨར་ཨའི་ མིང་དཔྱད་འབད་ནི)གི་ནང་ནà¼" -#: apt-pkg/sourcelist.cc:208 +#: apt-pkg/sourcelist.cc:217 #, c-format msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་à½à½²à½‚་%lu་ འབྱུང་à½à½´à½„ས་à½à½¼à¼‹à½¡à½²à½‚་%s(ཡང་དག་ dist)གི་ནང་ནà¼" -#: apt-pkg/sourcelist.cc:215 +#: apt-pkg/sourcelist.cc:224 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་à½à½²à½‚་%lu་ འབྱུང་à½à½´à½„ས་à½à½¼à¼‹à½¡à½²à½‚་%s(dist མིང་དཔྱད་འབད་ནི་)ནང་ནà¼" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "%s་à½à¼‹à½•ྱེ་དོà¼" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "གྲལ་à½à½²à½‚་%u་འདི་འབྱུང་à½à½´à½„ས་à½à½¼à¼‹à½¡à½²à½‚་%s་ནང་ལུ་གནམ་མེད་ས་མེད་རིངམོ་འདུག" -#: apt-pkg/sourcelist.cc:362 +#: apt-pkg/sourcelist.cc:371 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་à½à½²à½‚་%u་ འབྱུང་à½à½´à½„ས་à½à½¼à¼‹à½¡à½²à½‚་%s (དབྱེ་བ)་ནང་ནà¼" -#: apt-pkg/sourcelist.cc:366 +#: apt-pkg/sourcelist.cc:375 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "དབྱེ་བ་'%s'་འདི་གྲལ་à½à½²à½‚་%u་གུར་ལུ་ཡོདཔ་འབྱུང་à½à½´à½„ས་à½à½¼à¼‹à½¡à½²à½‚་%s་གི་ནང་ན་མ་ཤེས་པསà¼" -#: apt-pkg/sourcelist.cc:407 +#: 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/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, 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:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "%s་ཡིག་སྣོད་འདི་à½à¼‹à½•ྱེ་མ་ཚུགསà¼" -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2821,12 +2856,12 @@ msgstr "" "འདི་འབདà½à¼‹à½‘་à½à¾±à½¼à½‘་ཀྱི་à½à½‘་རི་འབའ་རི་འབད་དགོཔ་ཨིན་པ་ཅིན་ APT::Force-LoopBreak གདམ་à½à¼‹à½ དི་ཤུགས་" "ལྡན་བཟོà¼" -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "ཟུར་à½à½¼à¼‹à½¡à½²à½‚་སྣོད་ཀྱི་དབྱེ་བ་ '%s' འདི་རྒྱབ་སà¾à¾±à½¼à½¢à¼‹à½˜à¼‹à½ བད་བསà¼" -#: apt-pkg/algorithms.cc:266 +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." @@ -2834,7 +2869,7 @@ msgstr "" "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་%s་འདི་ལོག་འདི་རང་གཞི་བཙུགས་འབད་དགོཔ་འདུག་ འདི་འབདà½à¼‹à½‘་འདི་གི་དོན་ལུ་ཡིག་མཛོད་ཅིག་འཚོལ་" "མ་à½à½¼à½–à¼" -#: apt-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2842,216 +2877,211 @@ msgstr "" "འཛོལ་བ་ pkgProblemResolver::གིས་བཟོ་བà½à½¼à½“་འབད་ཡོད་པའི་མཚམས་དེ་ཚུ་མོས་མà½à½´à½“་བཟོà½à¼‹à½¨à½²à½“ འ་ནི་à½à½´à½˜à¼‹" "སྒྲིལ་ཚུ་འཛིན་པའི་རྒྱུ་རà¾à¾±à½ºà½“་ལས་བརྟེན་ཨིན་པསà¼" -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "དཀའ་ངལ་འདི་ནོར་བཅོས་འབད་མ་ཚུགས་ à½à¾±à½¼à½‘་ཀྱི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཆད་པ་ཚུ་འཆང་འདི་འདུག" -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, fuzzy, c-format msgid "List directory %spartial is missing." msgstr "à½à½¼à¼‹à½–ཀོད་འབད་མི་སྣོད་à½à½¼à¼‹%s་ཆ་ཤས་འདི་བརླག་སྟོར་ཟུགས་à½à½ºà¼‹à½ དུག" -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, fuzzy, c-format msgid "Archives directory %spartial is missing." msgstr "ཡིག་མཛོད་སྣོད་à½à½¼à¼‹ %s་ ཆ་ཤས་འདི་བརླག་སྟོར་ཞུགས་à½à½ºà¼‹à½ དུག" -#: apt-pkg/acquire.cc:93 +#: 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:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "%li་ གི་བརླག་སྟོར་ཞུགས་པའི་ཡིག་སྣོད་%li (%s ལྷག་ལུས་དོà¼)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr " %li་གི་བརླག་སྟོར་ཟུགསཔའི་ཡིག་སྣོད་ %li" -#: apt-pkg/acquire-worker.cc:113 +#: apt-pkg/acquire-worker.cc:116 #, c-format msgid "The method driver %s could not be found." msgstr "à½à½–ས་ལམ་འདྲེན་བྱེད་%s་འདི་མ་འà½à½¼à½–à¼" -#: apt-pkg/acquire-worker.cc:115 +#: apt-pkg/acquire-worker.cc:118 #, fuzzy, c-format msgid "Is the package %s installed?" msgstr "'dpkg-dev'་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་དེ་གཞི་བཙུགས་འབད་ཡོད་པ་ཅིན་ཨེབ་གà½à½„་འབདà¼\n" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "à½à½–ས་ལམ་ %s འདི་ངེས་བདེན་སྦེ་འགོ་མ་བཙུགས་འབདà¼" -#: apt-pkg/acquire-worker.cc:452 +#: apt-pkg/acquire-worker.cc:455 #, c-format msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "à½à¼‹à½¡à½²à½‚་བཀོད་ཡོད་པའི་ ཌིསི་འདི་བཙུགས་གནང་༠'%s'འདྲེན་འཕྲུལ་ནང་'%s' དང་ལོག་ལྡེ་འདི་ཨེབà¼à¼‹" -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "སྦུང་ཚན་བཟོ་ནིའི་རིམ་ལུགས་ '%s' འདི་ལུ་རྒྱབ་སà¾à¾±à½¼à½¢à¼‹à½˜à¼‹à½ བད་བསà¼" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "འོས་འབབ་དང་ལྡན་པའི་སྦུང་ཚན་རིམ་ལུགས་ཀྱི་དབྱེ་བ་ཅིག་གà½à½“་འབེབས་བཟོ་མི་ཚུགས་པསà¼" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "%s་ ངོ་བཤུས་འབད་མ་ཚུགསà¼" -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "" "à½à¾±à½¼à½‘་རའི་sources.listགི་à½à½¼à¼‹à½¡à½²à½‚་ནང་ལུ་à½à¾±à½¼à½‘་ཀྱི་ 'འབྱུང་à½à½´à½„ས་' ཡུ་ཨར་ཨའི་ཚུ་་ལ་ལུ་ཅིག་བཙུགས་དགོ" -#: apt-pkg/cachefile.cc:87 +#: apt-pkg/cachefile.cc:94 msgid "The package lists or status file could not be parsed or opened." msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གྱི་à½à½¼à¼‹à½¡à½²à½‚་ཡང་ན་གནས་ཚད་ཡིག་སྣོད་ཚུ་ མིང་དཔྱད་ཡང་ན་à½à¼‹à½•ྱེ་མ་ཚུགསà¼" -#: apt-pkg/cachefile.cc:91 +#: 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:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "འབྱུང་à½à½´à½„ས་ཚུ་ཀྱི་à½à½¼à¼‹à½¡à½²à½‚་དེ་ལྷག་མི་ཚུགས་པསà¼" -#: apt-pkg/policy.cc:75 +#: 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 "" -#: apt-pkg/policy.cc:414 +#: apt-pkg/policy.cc:422 #, fuzzy, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "དགའ་གདམ་ཡིག་སྣོད་ནང་ལུ་ནུས་མེད་ཀྱི་དྲན་à½à½¼à¼‹ à½à½´à½˜à¼‹à½¦à¾’ྲིལ་མགོ་ཡིག་མིན་འདུག" -#: apt-pkg/policy.cc:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "ངོ་རྟགས་ཨང་གི་དབྱེ་བ་ %s འདི་ཧ་གོ་མ་ཚུགསà¼" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "གོ་རྟགས་ཨང་གི་དོན་ལུ་ གཙོ་རིམ་(ཡང་ན་ ཀླད་ཀོར་)ཚུ་གསལ་བཀོད་མ་འབད་བསà¼" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 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:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: 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 (པི་ཀེ་ཇི་འཚོལ་ནི)དེ་བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག" -#: apt-pkg/pkgcachegen.cc:251 +#: apt-pkg/pkgcachegen.cc:257 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "པའོ་་་à½à¾±à½¼à½‘་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་à½à½´à½–་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཨང་གྲངས་ལས་ལྷག་ནུག" -#: apt-pkg/pkgcachegen.cc:254 +#: apt-pkg/pkgcachegen.cc:260 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "པའོ་་་à½à¾±à½¼à½‘་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་à½à½´à½–་པའི་à½à½¼à½“་རིམ་ཨང་གྲངས་ལས་ལྷག་ནུག" -#: apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:263 #, fuzzy msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "པའོ་་་à½à¾±à½¼à½‘་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་à½à½´à½–་པའི་à½à½¼à½“་རིམ་ཨང་གྲངས་ལས་ལྷག་ནུག" -#: apt-pkg/pkgcachegen.cc:260 +#: apt-pkg/pkgcachegen.cc:266 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "པའོ་་་à½à¾±à½¼à½‘་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་à½à½´à½–་པའི་བརྟེན་པའི་ཨང་གྲངས་ལས་ལྷག་ནུག" -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:576 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "ཡིག་སྣོད་རྟེན་འབྲེལ་འདི་ཚུ་བཟོ་སྦྱོར་འབད་བའི་བསྒང་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ %s %s ་འདི་མ་à½à½¼à½–་པསà¼" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "འབྱུང་à½à½´à½„ས་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གྱི་à½à½¼à¼‹à½¡à½²à½‚་%s་དེ་ངོ་བཤུས་འབད་མ་ཚུགསà¼" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "ཡིག་སྣོད་བྱིན་མི་ཚུ་བསྡུ་ལེན་འབད་དོà¼" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 msgid "IO Error saving source cache" msgstr "IO འཛོལ་བ་འབྱུང་à½à½´à½„ས་འདྲ་མཛོད་སྲུང་བཞག་འབད་དོà¼" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "%s (%s -> %s)བསà¾à¾±à½¢à¼‹à½˜à½²à½„་བà½à½‚ས་ནི་འདི་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདཔ་ཨིནà¼" - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 #, fuzzy msgid "Hash Sum mismatch" msgstr "ཨེམ་ཌི་༥་ à½à¾±à½¼à½“་བསྡོམས་མ་མà½à½´à½“་པà¼" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "ཚད་མ་མà½à½´à½“à¼" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "ནུས་མེད་བཀོལ་སྤྱོད་%s" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, 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:1586 +#: apt-pkg/acquire-item.cc:1595 #, fuzzy, c-format msgid "Unable to find hash sum for '%s' in Release file" msgstr "%s (༡་)་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགསà¼" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "འོག་གི་ ཨའི་ཌི་་ ལྡེ་མིག་ཚུ་གི་དོན་ལུ་མི་དམང་གི་ལྡེ་མིག་འདི་འà½à½¼à½–་མི་ཚུགས་པས:\n" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " "repository will not be applied." msgstr "" -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3059,12 +3089,12 @@ msgid "" msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3073,106 +3103,102 @@ msgstr "" " %s་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གི་དོན་ལུ་ང་་གི་ཡིག་སྣོད་ཅིག་ག་ཡོད་འཚོལ་མི་འà½à½¼à½–་པས༠འདི་འབདà½à¼‹à½£à½¦à¼‹à½à¾±à½¼à½‘་ཀྱི་ལག་à½à½¼à½‚་ལས་ " "འ་ནི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་གི་དཀའ་ངལ་སེལ་དགོཔ་འདུག (arch འདི་བྱིག་སོངམ་ལས་བརྟེནà¼)" -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ ཟུར་à½à½¼à¼‹à½¡à½²à½‚་སྣོད་ཚུ་ངན་ཅན་འགྱོ་ནུག ཡིག་སྣོད་ཀྱི་མིང་མིན་འདུག: %s་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གྱི་དོན་ལུ་ས་སྒོà¼" -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, fuzzy, c-format msgid "Unable to parse Release file %s" msgstr "%s (༡་)་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགསà¼" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, fuzzy, c-format msgid "No sections in Release file %s" msgstr "%s་གི་ཚབ་ལུ་%s་སེལ་འà½à½´à¼‹à½ བད་ནི་སེམས་à½à½¢à¼‹à½–ཞག\n" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "" -#: apt-pkg/indexrecords.cc:125 +#: apt-pkg/indexrecords.cc:130 #, fuzzy, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "%s་à½à¼‹à½•ྱོགས་ཡིག་སྣོད་ནང་ནུས་མེད་གྲལ་à½à½²à½‚" -#: apt-pkg/indexrecords.cc:144 +#: apt-pkg/indexrecords.cc:149 #, fuzzy, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "%s (༡་)་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགསà¼" -#: apt-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "%sསིལ་ཚོང་པ་སྡེབ་ཚན་གྱི་ནང་ན་མཛུབ་རྗེས་མིན་འདུག" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr " %s སི་ཌི-རོམ་སྦྱར་བརྩེགས་ཀྱི་ས་ཚིགས་ལག་ལེན་འà½à½–་དོà¼\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "སི་ཌི་-རོམ་བརྩེགས་བཤོལ་འབད་དོà¼\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +#, fuzzy +msgid "Unmounting CD-ROM...\n" +msgstr "སི་ཌི་-རོམ་སྦྱར་བརྩེགས་མ་འབད་བར་བཞག་དོ..." -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "ཌིསིཀ་གི་དོན་ལུ་བསྒུག་དོ...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "སི་ཌི་-རོམ་སྦྱར་བརྩེགས་འབད་དོ...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " -msgstr "ངོས་འཛིན་འབད་དོ.." +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " +msgstr "ངོས་འཛིན་འབད་དོ..." -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "གསོག་འཇོག་འབད་ཡོད་པའི་à½à¼‹à½¡à½²à½‚:%s \n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -#, fuzzy -msgid "Unmounting CD-ROM...\n" -msgstr "སི་ཌི་-རོམ་སྦྱར་བརྩེགས་མ་འབད་བར་བཞག་དོ..." - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" -msgstr "ཟུར་à½à½¼à¼‹à½¡à½²à½‚་སྣོད་ཚུ་གི་དོན་ལུ་ ཌིསིཀ་ཞིབ་ལྟ་འབད་དོ..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" +msgstr "ཟུར་à½à½¼à¼‹à½¡à½²à½‚་སྣོད་ཚུ་གི་དོན་ལུ་ ཌིསིཀ་ཞིབ་ལྟ་འབད་དོ...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, fuzzy, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " "%zu signatures\n" msgstr "%i་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གྱི་ཟུར་à½à½¼à¼‹à½šà½´à¼‹à½à½¼à½–་ཅི་ %i་འབྱུང་à½à½´à½„ས་ཟུར་à½à½¼à¼‹à½šà½´à¼‹à½‘ང་ %iམིང་རྟགས་ཚུà¼\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, fuzzy, c-format msgid "Found label '%s'\n" msgstr "གསོག་འཇོག་འབད་ཡོད་པའི་à½à¼‹à½¡à½²à½‚:%s \n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "དེ་ནུས་ཅན་གྱི་མིང་ཅིག་མེན་པས་ ལོག་སྟེ་རང་འབད་རྩོལ་བསà¾à¾±à½ºà½‘à¼\n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3181,34 +3207,34 @@ msgstr "" "ཌིསིཀ་འདི་བོད་བརྡ་འབད་དོ་ཡོདཔ་ཨིནà¼\n" "'%s'\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གྱིà½à½¼à¼‹à½¡à½²à½‚་ཚུ་འདྲ་བཤུས་རà¾à¾±à½–་དོ..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "འབྱུང་à½à½´à½„ས་ཀྱི་à½à½¼à¼‹à½¡à½²à½‚་གསརཔ་ཅིག་འབྲི་དོà¼\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "འ་ནི་ ཌིསིཀ་གི་དོན་ལུ་ འབྱུང་à½à½´à½„ས་ཧྲིལ་བུ་ཚུ་:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: 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:777 +#: 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:780 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i་མà½à½´à½“་སྒྲིག་མེདཔ་པའི་ཡིག་སྣོད་ཚུ་དང་གཅིག་à½à½¢à¼‹ %i་དྲན་à½à½¼à¼‹à½šà½´à¼‹à½–ྲིས་བཞག་ཡོདཔ་ཨིནà¼\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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 "" @@ -3225,88 +3251,88 @@ msgstr "" msgid "Hash mismatch for: %s" msgstr "ཨེམ་ཌི་༥་ à½à¾±à½¼à½“་བསྡོམས་མ་མà½à½´à½“་པà¼" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "%sགི་དོན་ལུ་འཛིན་གྲོལ་'%s'་དེ་མ་འà½à½¼à½–་པསà¼" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "'%s'་གི་དོན་ལུ་འà½à½¼à½“་རིམ་'%s'་དེ་མ་འà½à½¼à½–་པསà¼" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, fuzzy, c-format msgid "Couldn't find task '%s'" msgstr "%s་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འཚོལ་མ་à½à½¼à½–à¼" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, fuzzy, c-format msgid "Couldn't find any package by regex '%s'" msgstr "%s་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འཚོལ་མ་à½à½¼à½–à¼" -#: apt-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "%s་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འཚོལ་མ་à½à½¼à½–à¼" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, c-format msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " "neither of them" msgstr "" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, c-format msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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 " @@ -3315,167 +3341,167 @@ msgstr "" "ཟུར་à½à½¼à¼‹à½¡à½²à½‚་སྣོད་ལ་ལུ་ཅིག་ཕབ་ལེན་འབད་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ནུག་ འདི་ཚུ་སྣང་མེད་སྦེ་བཞགཔ་མ་ཚད་ ཚབ་ལུ་" "རྙིངམ་འདི་ཚུ་ལག་ལེན་འà½à½–་ནུག" -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, fuzzy, c-format msgid "Installing %s" msgstr "གཞི་བཙུགས་འབད་ཡོད་པའི་%sà¼" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "%s་རིམ་སྒྲིག་འབད་དོà¼" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "%s་རྩ་བསà¾à¾²à½‘་གà½à½„་དོà¼" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, fuzzy, c-format msgid "Completely removing %s" msgstr "%s མཇུག་བསྡུà½à¼‹à½¦à¾¦à½ºà¼‹à½¢à½„་རྩ་བསà¾à¾²à½‘་བà½à½„་ཡོདà¼" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, fuzzy, c-format msgid "Directory '%s' missing" msgstr "à½à½¼à¼‹à½–ཀོད་འབད་མི་སྣོད་à½à½¼à¼‹%s་ཆ་ཤས་འདི་བརླག་སྟོར་ཟུགས་à½à½ºà¼‹à½ དུག" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: 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:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "%s་ གྲ་སྒྲིག་འབད་དོà¼" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr " %s་ གི་སྦུང་ཚན་བཟོ་བཤོལ་འབད་དོà¼" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "%s་ རིམ་སྒྲིག་ལུ་གྲ་སྒྲིག་འབད་དོà¼" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "གཞི་བཙུགས་འབད་ཡོད་པའི་%sà¼" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "%s་ རྩ་བསà¾à¾²à½‘་གà½à½„་ནིའི་དོན་ལུ་གྲ་སྒྲིག་འབད་དོà¼" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "རྩ་བསà¾à¾²à½‘་བà½à½„་ཡོད་པའི་%s" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "%s མཇུག་བསྡུà½à¼‹à½¦à¾¦à½ºà¼‹à½¢à½„་རྩ་བསà¾à¾²à½‘་གà½à½„་ནིའི་དོན་ལུ་གྲ་སྒྲིག་འབད་དོà¼" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "%s མཇུག་བསྡུà½à¼‹à½¦à¾¦à½ºà¼‹à½¢à½„་རྩ་བསà¾à¾²à½‘་བà½à½„་ཡོདà¼" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr " %sལུ་འབྲི་མ་ཚུགསà¼" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 msgid "" "No apport report written because the error message indicates an issue on the " "local system" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " "it?" msgstr "" -#: apt-pkg/deb/debsystem.cc:87 +#: 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:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " msgstr "" -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "" @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_el\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2008-08-26 18:25+0300\n" "Last-Translator: Θανάσης Îάτσης <natsisthanasis@gmail.com>\n" "Language-Team: Greek <debian-l10n-greek@lists.debian.org>\n" @@ -28,153 +28,154 @@ msgstr "" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: cmdline/apt-cache.cc:140 +#: cmdline/apt-cache.cc:149 #, c-format msgid "Package %s version %s has an unmet dep:\n" msgstr "Το πακÎτο %s με Îκδοση %s Îχει ανικανοποίητες εξαÏτήσεις:\n" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "Συνολικά Ονόματα ΠακÎτων : " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 msgid "Total package structures: " msgstr "Συνολο Δομών ΠακÎτου : " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " Κανονικά ΠακÎτα: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " ΠλήÏως Εικονικά ΠακÎτα: " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " Μονά Εικονικά ΠακÎτα: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " Μικτά Εικονικά ΠακÎτα: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr "ΑγνοοÏμενα: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "ΣÏνολο ΔιαφοÏετικών Εκδόσεων: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "ΣÏνολο ΔιαφοÏετικών Εκδόσεων: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "ΣÏνολο ΕξαÏτήσεων: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "ΣÏνολο σχÎσεων Εκδ/ΑÏχείων: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "ΣÏνολο σχÎσεων Εκδ/ΑÏχείων: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "ΣÏνολο Αντιστοιχίσεων ΠαÏοχών: " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "ΣÏνολο Κοινών ΣτοιχειοσειÏών : " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "Συνολικός χώÏος ΕξαÏτήσεων Εκδόσεων: " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "ΣÏνολο χώÏου ασφαλείας: " -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "Συνολικός ΚαταμετÏημÎνος ΧώÏος: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: 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 δεν είναι ενημεÏωμÎνο." -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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 "Δε βÏÎθηκαν πακÎτα" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 msgid "You must give at least one search pattern" msgstr "Î ÏÎπει να δώσετε τουλάχιστον Îνα μοτίβο αναζήτησης" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "Αδυναμία ÎµÎ½Ï„Î¿Ï€Î¹ÏƒÎ¼Î¿Ï Ï„Î¿Ï… πακÎτου %s" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "ΑÏχεία ΠακÎτου:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: 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 δεν είναι ενημεÏωμÎνη, αδυναμία παÏαπομπής σε Îνα αÏχείο πακÎτου" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "ΚαθηλωμÎνα ΠακÎτα:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(δε βÏÎθηκαν)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " ΕγκατεστημÎνα: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " Υποψήφιο: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(κανÎνα)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " Καθήλωση ΠακÎτου: " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " Πίνακας Έκδοσης:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: 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:1740 +#: cmdline/apt-cache.cc:1749 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -249,29 +250,29 @@ msgstr "" " -o=? ΧÏήση μιας αυθαίÏετη επιλογής Ïυθμίσεων, πχ -o dir::cache=/tmp\n" "Δείτε τις σελίδες man του apt-cache(8) και apt.conf(5) για πληÏοφοÏίες.\n" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: 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:104 +#: cmdline/apt-cdrom.cc:91 msgid "Please insert a Disc in the drive and press enter" msgstr "ΠαÏακαλώ εισάγετε το δίσκο στη συσκευή και πατήστε enter" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, c-format msgid "Failed to mount '%s' to '%s'" msgstr "Αποτυχία σÏνδεσης του %s σε %s" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Επαναλάβετε την διαδικασία για τα υπόλοιπα CD από το σετ σας." @@ -308,69 +309,69 @@ msgstr "" " -c=? Read this configuration file\n" " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:244 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format msgid "Can not find a package for architecture '%s'" msgstr "ΑδÏνατη η εÏÏεση του πακÎτου %s" -#: cmdline/apt-get.cc:326 +#: cmdline/apt-get.cc:327 #, fuzzy, c-format msgid "Can not find a package '%s' with version '%s'" msgstr "ΑδÏνατη η εÏÏεση του πακÎτου %s" -#: cmdline/apt-get.cc:329 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format msgid "Can not find a package '%s' with release '%s'" msgstr "ΑδÏνατη η εÏÏεση του πακÎτου %s" -#: cmdline/apt-get.cc:366 +#: 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:422 +#: cmdline/apt-get.cc:423 #, c-format msgid "Can not find version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "ΑδÏνατη η εÏÏεση του πακÎτου %s" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "το %s Îχει εγκατασταθεί με το χÎÏι\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: 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:468 cmdline/apt-mark.cc:116 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 msgid "Internal error, problem resolver broke stuff" msgstr "" "ΕσωτεÏικό Σφάλμα, η Ï€Ïοσπάθεια επίλυσης του Ï€Ïοβλήματος \"Îσπασε\" κάποιο " "υλικό" -#: cmdline/apt-get.cc:573 cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 msgid "Unable to lock the download directory" msgstr "ΑδÏνατο το κλείδωμα του καταλόγου μεταφόÏτωσης" -#: cmdline/apt-get.cc:725 +#: cmdline/apt-get.cc:726 msgid "Must specify at least one package to fetch source for" msgstr "" "Θα Ï€ÏÎπει να καθοÏίσετε τουλάχιστον Îνα πακÎτο για να μεταφοÏτώσετε τον " "κωδικάτου" -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "Αδυναμία ÎµÎ½Ï„Î¿Ï€Î¹ÏƒÎ¼Î¿Ï Ï„Î¿Ï… κώδικά του πακÎτου %s" @@ -390,96 +391,96 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "ΠαÏάκαμψη του ήδη μεταφοÏτωμÎνου αÏχείου `%s`\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "Δεν μπόÏεσα να Ï€ÏοσδιοÏίσω τον ελεÏθεÏο χώÏο στο %s" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "Δεν διαθÎτετε αÏκετό ελεÏθεÏο χώÏο στο %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "ΧÏειάζεται να μεταφοÏτωθοÏν %sB/%sB πηγαίου κώδικα.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "ΧÏειάζεται να μεταφοÏτωθοÏν %sB πηγαίου κώδικα.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "ΜεταφόÏτωση Κωδικα %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "Αποτυχία μεταφόÏτωσης μεÏικών αÏχειοθηκών." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "ΟλοκληÏώθηκε η μεταφόÏτωση μόνο" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "ΠαÏάκαμψη της αποσυμπίεσης ήδη μεταφοÏτωμÎνου κώδικα στο %s\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "ΑπÎτυχε η εντολή αποσυμπίεσης %s\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "ΕλÎγξτε αν είναι εγκαταστημÎνο το πακÎτο 'dpkg-dev'.\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "ΑπÎτυχε η εντολή χτισίματος %s.\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "Η απογονική διεÏγασία απÎτυχε" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "" "Θα Ï€ÏÎπει να καθοÏίσετε τουλάχιστον Îνα πακÎτο για Îλεγχο των εξαÏτήσεων του" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "ΑδÏνατη η εÏÏεση πληÏοφοÏιών χτισίματος για το %s" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "το %s δεν Îχει εξαÏτήσεις χτισίματος.\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -488,7 +489,7 @@ msgstr "" "%s εξαÏτήσεις για το %s δεν ικανοποιοÏνται επειδή το %s δεν επιτÏÎπεται στο " "πακÎτο %s" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -496,14 +497,14 @@ msgid "" msgstr "" "%s εξαÏτήσεις για το %s δεν ικανοποιοÏνται επειδή το πακÎτο %s δεν βÏÎθηκε" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Αποτυχία ικανοποίησης %s εξαÏτήσεων για το %s: Το εγκατεστημÎνο πακÎτο %s " "είναι νεώτεÏο" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -512,7 +513,7 @@ msgstr "" "%s εξαÏτήσεις για το %s δεν ικανοποιοÏνται επειδή δεν υπάÏχουν διαθÎσιμες " "εκδόσεις του πακÎτου %s που να ικανοποιοÏν τις απαιτήσεις της Îκδοσης" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -521,30 +522,30 @@ msgstr "" "%s εξαÏτήσεις για το %s δεν ικανοποιοÏνται επειδή το πακÎτο %s δεν Îχει " "υποψήφιαÎκδοση" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Αποτυχία ικανοποίησης %s εξάÏτησης για το %s: %s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Οι εξαÏτήσεις χτισίματος για το %s δεν ικανοποιοÏνται." -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "Αποτυχία επεξεÏγασίας εξαÏτήσεων χτισίματος" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, c-format msgid "Changelog for %s (%s)" msgstr "Changelog για %s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "ΥποστηÏιζόμενοι Οδηγοί:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -629,53 +630,77 @@ msgstr "" "για πεÏισσότεÏες πληÏοφοÏίες και επιλογÎÏ‚.\n" " This APT has Super Cow Powers.\n" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "" +"Θα Ï€ÏÎπει να καθοÏίσετε τουλάχιστον Îνα πακÎτο για να μεταφοÏτώσετε τον " +"κωδικάτου" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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:63 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format msgid "%s was already set to manually installed.\n" msgstr "το %s Îχει εγκατασταθεί με το χÎÏι\n" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, fuzzy, c-format msgid "%s was already set to automatically installed.\n" msgstr "το %s Îχει εγκατασταθεί με το χÎÏι\n" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format msgid "%s was already set on hold.\n" msgstr "το %s είναι ήδη η τελευταία Îκδοση.\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, fuzzy, c-format msgid "%s was already not hold.\n" msgstr "το %s είναι ήδη η τελευταία Îκδοση.\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Αναμονή του %s, αλλά δε βÏισκόταν εκεί" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: 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:264 cmdline/apt-mark.cc:316 +#: 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:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" "\n" @@ -702,7 +727,7 @@ msgid "" "See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -750,52 +775,52 @@ msgstr "Αδυναμία απόσυναÏμογής του CD-ROM στο %s, Î¼Ï msgid "Disk not found." msgstr "Ο δίσκος δεν βÏÎθηκε." -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "Το αÏχείο Δε Î’ÏÎθηκε" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 msgid "Failed to stat" msgstr "Αποτυχία εÏÏεσης της κατάστασης" -#: methods/copy.cc:82 methods/gzip.cc:113 methods/rred.cc:606 +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 msgid "Failed to set modification time" msgstr "Αποτυχία οÏÎ¹ÏƒÎ¼Î¿Ï Ï„Î¿Ï… χÏόνου Ï„Ïοποποίησης" -#: methods/file.cc:47 +#: 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:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "ΣÏνδεση στο σÏστημα" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "ΑδÏνατος ο καθοÏισμός του ονόματος του ομότιμου (peer)" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "ΑδÏνατος ο καθοÏισμός του Ï„Î¿Ï€Î¹ÎºÎ¿Ï Î¿Î½ÏŒÎ¼Î±Ï„Î¿Ï‚" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format msgid "The server refused the connection and said: %s" msgstr "Ο διακομιστής αÏνήθηκε την σÏνδεση με μήνυμα: %s" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "Η εντολή USER απÎτυχε, ο διακομιστής απάντησε: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "Η εντολή PASS απÎτυχε, ο διακομιστής απάντησε: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -803,121 +828,123 @@ msgstr "" "Ο διαμεσολαβητής Îχει οÏιστεί αλλά χωÏίς σενάÏιο εισόδου, το Acquire::ftp::" "ProxyLogin είναι άδειο" -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Η εντολή '%s' στο σενάÏιο εισόδου απÎτυχε, ο διακομιστής απάντησε: %s" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "Η εντολή TYPE απÎτυχε, ο διακομιστής απάντησε: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 msgid "Connection timeout" msgstr "Λήξη χÏόνου σÏνδεσης" -#: methods/ftp.cc:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "Ο διακομιστής Îκλεισε την σÏνδεση" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "Σφάλμα ανάγνωσης" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "Το μήνυμα απάντησης υπεÏχείλισε την ενδιάμεση μνήμη." -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "Αλλοίωση του Ï€Ïωτοκόλλου" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "Σφάλμα εγγÏαφής" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 msgid "Could not create a socket" msgstr "ΑδÏνατη η δημιουÏγία μιας υποδοχής (socket)" -#: methods/ftp.cc:707 +#: methods/ftp.cc:712 msgid "Could not connect data socket, connection timed out" msgstr "ΑδÏνατη η σÏνδεση υποδοχής δεδομÎνων, λήξη χÏόνου σÏνδεσης" -#: methods/ftp.cc:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "ΑπÎτυχε" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "ΑδÏνατη η σÏνδεση σε παθητική υποδοχή (socket)." -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "Το getaddrinfo ήταν αδÏνατο να δÎσμευση υποδοχή παÏακολοÏθησης" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "ΑδÏνατη η Ï€Ïόσδεση στην υποδοχή (socket)" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "ΑδÏνατη η παÏακολοÏθηση της υποδοχής (socket)" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "ΑδÏνατος ο καθοÏισμός του ονόματος της υποδοχής (socket)" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "ΑδÏνατη η αποστολή της εντολής PORT" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Άγνωστη οικογÎνεια διευθÏνσεων %u (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "Το EPRT απÎτυχε, ο διακομιστής απάντησε: %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "Λήξη χÏόνου σÏνδεσης στην υποδοχή δεδομÎνων" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "ΑδÏνατη η αποδοχή συνδÎσεων" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "Î Ïόβλημα κατά το hashing του αÏχείου" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Αδυναμία λήψης του αÏχείου, ο διακομιστής απάντησε '%s'" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "Λήξη χÏόνου υποδοχής δεδομÎνων" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Αποτυχία κατά τη μεταφοÏά δεδομÎνων, ο διακομιστής απάντησε '%s'" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "ΕπεÏώτηση" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "ΑδÏνατη η εκτÎλεση" @@ -953,7 +980,7 @@ msgstr "ΑδÏνατη η σÏνδεση στο %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "ΣÏνδεση στο %s" @@ -983,18 +1010,18 @@ msgstr "Κάτι παÏάξενο συνÎβη κατά την εÏÏεση το msgid "Unable to connect to %s:%s:" msgstr "ΑδÏνατη η σÏνδεση στο %s %s:" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "ΕσωτεÏικό σφάλμα: Η υπογÏαφή είναι καλή, αλλά αδυναμία Ï€ÏοσδιοÏÎ¹ÏƒÎ¼Î¿Ï Ï„Î¿Ï… " "αποτυπώματος?!" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "Î’ÏÎθηκε τουλάχιστον μια μη ÎγκυÏη υπογÏαφή." -#: methods/gpgv.cc:172 +#: methods/gpgv.cc:174 #, fuzzy msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" @@ -1002,22 +1029,22 @@ msgstr "" "εγκατεστημÎνο το gpgv;)" #. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "Άγνωστο σφάλμα κατά την εκτÎλεση του gpgv" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Οι παÏακάτω υπογÏαφÎÏ‚ ήταν μη ÎγκυÏες:\n" -#: methods/gpgv.cc:229 +#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@ -1025,119 +1052,119 @@ msgstr "" "Οι παÏακάτω υπογÏαφÎÏ‚ δεν ήταν δυνατόν να επαληθευτοÏν επειδή δεν ήταν " "διαθÎσιμο το δημόσιο κλειδί:\n" -#: methods/gzip.cc:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "Σφάλμα στην εγγÏαφή στο αÏχείο" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "" "Σφάλμα στην ανάγνωση από το διακομιστή, το άλλο άκÏο Îκλεισε τη σÏνδεση" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "Σφάλμα στην ανάγνωση από το διακομιστή" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "Σφάλμα στην εγγÏαφή στο αÏχείο" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "Η επιλογή απÎτυχε" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "Λήξη χÏόνου σÏνδεσης" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "Σφάλμα στην εγγÏαφή στο αÏχείο εξόδου" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "Αναμονή επικεφαλίδων" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "Ελαττωματική γÏαμμή επικεφαλίδας" -#: methods/server.cc:139 methods/server.cc:146 +#: methods/server.cc:134 methods/server.cc:141 msgid "The HTTP server sent an invalid reply header" msgstr "Ο διακομιστής http Îστειλε μια άκυÏη επικεφαλίδα απάντησης" -#: methods/server.cc:176 +#: methods/server.cc:171 msgid "The HTTP server sent an invalid Content-Length header" msgstr "Ο διακομιστής http Îστειλε μια άκυÏη επικεφαλίδα Content-Length" -#: methods/server.cc:199 +#: methods/server.cc:194 msgid "The HTTP server sent an invalid Content-Range header" msgstr "Ο διακομιστής http Îστειλε μια άκυÏη επικεφαλίδα Content-Range" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "Ο διακομιστής http δεν υποστηÏίζει πλήÏως το range" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "Άγνωστη μοÏφή ημεÏομηνίας" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "Ελαττωματικά δεδομÎνα επικεφαλίδας" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "Η σÏνδεση απÎτυχε" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "ΕσωτεÏικό Σφάλμα" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "ΕσωτεÏικό σφάλμα, Îγινε κλήση του Install Packages με σπασμÎνα πακÎτα!" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "" "ΜεÏικά πακÎτα Ï€ÏÎπει να αφαιÏεθοÏν αλλά η ΑφαίÏεση είναι απενεÏγοποιημÎνη." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "ΕσωτεÏικό Σφάλμα, η Ταξινόμηση δεν ολοκληÏώθηκε" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" "Î Î¿Î»Ï Ï€ÎµÏίεÏγο! Τα μεγÎθη δεν ταιÏιάζουν, στείλτε μήνυμα στο apt@packages." "debian.org" #. TRANSLATOR: The required 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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "ΧÏειάζεται να μεταφοÏτωθοÏν %sB/%sB από αÏχεία.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:171 +#: apt-private/private-install.cc:159 #, 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:178 +#: apt-private/private-install.cc:166 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" @@ -1145,31 +1172,31 @@ 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:183 +#: apt-private/private-install.cc:171 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Μετά από αυτή τη λειτουÏγία, θα ελευθεÏωθοÏν %sB χώÏου από το δίσκο.\n" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "Δεν διαθÎτετε αÏκετό ελεÏθεÏο χώÏο στο %s." -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "ΥπάÏχουν Ï€Ïοβλήματα και δώσατε -y χωÏίς το --force-yes" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Îαι, κανε ότι λÎω!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1180,19 +1207,19 @@ msgstr "" "Για να συνεχίσετε πληκτÏολογήστε τη φÏάση '%s'\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "Εγκατάλειψη." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "ΘÎλετε να συνεχίσετε;" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "Για μεÏικά αÏχεία απÎτυχε η μεταφόÏτωση" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1200,20 +1227,20 @@ msgstr "" "ΑδÏνατη η μεταφόÏτωση μεÏικών αÏχείων, ίσως αν δοκιμάζατε με apt-get update " "ή το --fix-missing;" -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "" "ο συνδυασμός --fix-missing με εναλλαγή μÎσων δεν υποστηÏίζεται για την ÏŽÏα" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "ΑδÏνατη η επίλυση των χαμÎνων πακÎτων." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "Εγκατάλειψη της εγκατάστασης." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1223,16 +1250,16 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "Δεν επιτÏÎπεται οποιαδήποτε διαγÏαφή· αδυναμία εκκίνησης του AutoRemover" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1250,15 +1277,15 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 msgid "The following information may help to resolve the situation:" msgstr "Οι ακόλουθες πληÏοφοÏίες ίσως βοηθήσουν στην επίλυση του Ï€Ïοβλήματος:" -#: apt-private/private-install.cc:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "ΕσωτεÏικό Σφάλμα, το AutoRemover δημιοÏÏγησε κάποιο Ï€Ïόβλημα" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1268,7 +1295,7 @@ msgstr[0] "Το ακόλουθο πακÎτο εγκαταστάθηκε Î±Ï…Ï„Ï msgstr[1] "" "Τα ακόλουθα πακÎτα εγκαταστάθηκαν αυτόματα και δεν χÏειάζονται πλÎον:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1278,17 +1305,17 @@ msgstr[0] "" msgstr[1] "" "%lu τα ακόλουθα πακÎτα εγκαταστάθηκαν αυτόματα και δεν χÏειάζονται πλÎον:" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "ΧÏησιμοποιήστε 'apt-get autoremove' για να το διαγÏάψετε." msgstr[1] "ΧÏησιμοποιήστε 'apt-get autoremove' για να τα διαγÏάψετε." -#: apt-private/private-install.cc:624 +#: apt-private/private-install.cc:612 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Aν Ï„ÏÎξετε 'apt-get -f install' ίσως να διοÏθώσετε αυτά τα Ï€Ïοβλήματα:" -#: apt-private/private-install.cc:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1296,7 +1323,7 @@ msgstr "" "Ανεπίλυτες εξαÏτήσεις. Δοκιμάστε 'apt-get -f install' χωÏίς να οÏίσετε " "πακÎτο (ή καθοÏίστε μια λÏση)." -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1308,145 +1335,145 @@ msgstr "" "διανομή, ότι μεÏικά από τα πακÎτα δεν Îχουν ακόμα δημιουÏγηθεί ή Îχουν\n" "μετακινηθεί από τα εισεÏχόμενα." -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "ΧαλασμÎνα πακÎτα" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "Τα ακόλουθα επιπλÎον πακÎτα θα εγκατασταθοÏν:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "Î Ïοτεινόμενα πακÎτα:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "Συνιστώμενα πακÎτα:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Τα ακόλουθα πακÎτα δεν εξακÏιβώθηκαν!" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "ΠαÏάκαμψη Ï€Ïοειδοποίησης ταυτοποίησης.\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "ΜεÏικά πακÎτα δεν εξαακÏιβώθηκαν" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "Εγκατάσταση των πακÎτων χωÏίς επαλήθευση;" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Αποτυχία ανάκτησης του %s %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [ΕγκατεστημÎνα]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [ΕγκατεστημÎνα]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [ΕγκατεστημÎνα]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [ΕγκατεστημÎνα]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "Τα ακόλουθα πακÎτα Îχουν ανεπίλυτες εξαÏτήσεις:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "αλλά το %s είναι εγκατεστημÎνο" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "αλλά το %s Ï€Ïόκειται να εγκατασταθεί" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "αλλά δεν είναι εγκαταστάσημο" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "αλλά είναι Îνα εικονικό πακÎτο" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "αλλά δεν είναι εγκατεστημÎνο" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "αλλά δεν Ï€Ïόκειται να εγκατασταθεί" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " η" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "Τα ακόλουθα ÎΕΑ πακÎτα θα εγκατασταθοÏν:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "Τα ακόλουθα πακÎτα θα ΑΦΑΙΡΕΘΟΥÎ:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "Τα ακόλουθα πακÎτα θα μείνουν ως Îχουν:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "Τα ακόλουθα πακÎτα θα αναβαθμιστοÏν:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "Τα ακόλουθα πακÎτα θα ΥΠΟΒΑΘΜΙΣΤΟΥÎ:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "Τα ακόλουθα κÏατημÎνα πακÎτα θα αλλαχθοÏν:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (λόγω του %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1454,27 +1481,27 @@ msgstr "" "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Τα ακόλουθα απαÏαίτητα πακÎτα θα αφαιÏεθοÏν\n" "Αυτό ΔΕΠθα ÎÏ€Ïεπε να συμβεί, εκτός αν ξÎÏετε τι ακÏιβώς κάνετε!" -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu αναβαθμίστηκαν, %lu νÎο εγκατεστημÎνα, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu επανεγκατεστημÎνα," -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu υποβαθμισμÎνα, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu θα αφαιÏεθοÏν και %lu δεν αναβαθμίζονται.\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu μη πλήÏως εγκατεστημÎνα ή αφαιÏÎθηκαν.\n" @@ -1483,7 +1510,7 @@ msgstr "%lu μη πλήÏως εγκατεστημÎνα ή αφαιÏÎθηκα #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "[Î/ο]" @@ -1491,93 +1518,93 @@ msgstr "[Î/ο]" #. 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:702 +#: apt-private/private-output.cc:708 msgid "[y/N]" msgstr "[ν/Ο]" #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "σφάλμα μεταγλωτισμου - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "ΔιόÏθωση εξαÏτήσεων..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " απÎτυχε." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "ΑδÏνατη η διόÏθωση των εξαÏτήσεων" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "ΑδÏνατη η ελαχιστοποίηση του συνόλου αναβαθμίσεων" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " Ετοιμο" -#: apt-private/private-cachefile.cc:102 +#: 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:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "Ανεπίλυτες εξαÏτήσεις. Δοκιμάστε με το -f." -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "Η εντολή update δεν παίÏνει οÏίσματα" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "Υπολογισμός της αναβάθμισης... " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "ΕσωτεÏικό Σφάλμα, η διαδικασία αναβάθμισης χάλασε" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "Ετοιμο" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1585,43 +1612,43 @@ msgid "" " so don't depend on the relevance to the real current situation!" msgstr "" -#: apt-private/private-sources.cc:45 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format msgid "Failed to parse %s. Edit again? " msgstr "Αποτυχία μετονομασίας του %s σε %s" -#: apt-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "Hit " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "ΦÎÏε:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "Αγνόησε " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Σφάλμα " -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "ΜεταφοÏτώθηκαν %sB σε %s (%sB/s)\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [ΕπεξεÏγασία]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1634,19 +1661,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "ΑδÏνατη η ανάγνωση του %s" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "ΑδÏνατη η αλλαγή σε %s" @@ -1675,11 +1702,11 @@ msgstr "ΑδÏνατο το άνοιγμα του αÏχείου %s" msgid "[Mirror: %s]" msgstr "" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 msgid "Failed to create IPC pipe to subprocess" msgstr "Αποτυχία κατά τη δημιουÏγία διασωλήνωσης IPC στην υποδιεÏγασία" -#: methods/rsh.cc:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "Η σÏνδεση Îκλεισε Ï€ÏόωÏα" @@ -1747,40 +1774,45 @@ msgstr "" " -c=? Ανάγνωση Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… αÏχείου Ïυθμίσεων\n" " -o=? ΚαθοÏισμός αυθαίÏετης επιλογής παÏαμÎÏ„Ïου, πχ -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "ΑδÏνατη η εÏÏεση της κατάστασης του %s" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "ΑδÏνατη η εγγÏαφή στο %s" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Δεν βÏÎθηκε η Îκδοση του debconf. Είναι το debconf εγκατεστημÎνο;" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "Ο κατάλογος επεκτάσεων του πακÎτου είναι υπεÏβολικά μακÏÏÏ‚" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "Σφάλμα επεξεÏγασίας του καταλόγου %s" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "Ο κατάλογος επεκτάσεων των πηγών είναι υπεÏβολικά μακÏÏÏ‚" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "Σφάλμα εγγÏαφής κεφαλίδων στο αÏχείο πεÏιεχομÎνων" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "Σφάλμα επεξεÏγασίας πεÏιεχομÎνων του %s" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1864,26 +1896,26 @@ msgstr "" " -c=? ΧÏήση Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… αÏχείου Ïυθμίσεων\n" " -o=? ΟÏισμός αυθαίÏετης επιλογής ÏÏθμισης" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "Δεν ταιÏιαξε καμία επιλογή" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Λείπουν μεÏικά αÏχεία από την ομάδα πακÎτων '%s'" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "Η βάση είναι κατεστÏαμμÎνη, το αÏχείο μετονομάστηκε σε %s.old" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "Η βάση δεν είναι ενημεÏωμÎνη, γίνεται Ï€Ïοσπάθεια να αναβαθμιστεί το %s" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 #, fuzzy msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " @@ -1892,192 +1924,192 @@ msgstr "" "Το φοÏμά της βάσης δεν είναι ÎγκυÏο. Εάν αναβαθμίσατε το apt σε νεότεÏη " "Îκδοση, παÏακαλώ αφαιÏÎστε και δημιουÏγήστε τη βάση εκ νÎου." -#: ftparchive/cachedb.cc:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Το άνοιγμά του αÏχείου της βάσης %s: %s απÎτυχε" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "Αποτυχία εÏÏεσης της κατάστασης του %s." -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "Η αÏχειοθήκη δεν πεÏιÎχει πεδίο ελÎγχου" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "ΑδÏνατη η Ï€Ïόσβαση σε δείκτη" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: ΑδÏνατη η ανάγνωση του καταλόγου %s\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: ΑδÏνατη η εÏÏεση της κατάστασης του %s\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "E: Σφάλματα στο αÏχείο" -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "ΑδÏνατη η εÏÏεση του %s" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "Αποτυχία ανεÏÏεσης" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "Αποτυχία ανοίγματος του %s" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr "ΑποσÏνδεση %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "Αποτυχία ανάγνωσης του %s" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "Αποτυχία αποσÏνδεσης του %s" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr " Αποτυχία σÏνδεσης του %s με το %s" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " ΑποσÏνδεση οÏίου του %sB hit.\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "Η αÏχειοθήκη δεν πεÏιÎχει πεδίο πακÎτων" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %s δεν πεÏιÎχει εγγÏαφή παÏάκαμψης\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s συντηÏητής είναι ο %s όχι ο %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr " %s δεν Îχει εγγÏαφή πηγαίας παÏάκαμψης\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s δεν Îχει οÏτε εγγÏαφή δυαδικής παÏάκαμψης\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realoc - Αδυναμία εκχώÏησης μνήμης" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "ΑδÏνατο το άνοιγμα του %s" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "ΚακογÏαμμÎνη παÏακαμπτήÏια %s γÏαμμή %lu #1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "Αποτυχία ανάγνωσης του αÏχείου παÏάκαμψης %s" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, fuzzy, c-format msgid "Malformed override %s line %llu #1" msgstr "ΚακογÏαμμÎνη παÏακαμπτήÏια %s γÏαμμή %lu #1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, fuzzy, c-format msgid "Malformed override %s line %llu #2" msgstr "ΚακογÏαμμÎνη παÏακαμπτήÏια %s γÏαμμή %lu #2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, fuzzy, c-format msgid "Malformed override %s line %llu #3" msgstr "ΚακογÏαμμÎνη παÏακαμπτήÏια %s γÏαμμή %lu #3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "Άγνωστος ΑλγόÏιθμος Συμπίεσης '%s'" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "Η συμπιεσμÎνη Îξοδος του %s χÏειάζεται καθοÏισμό συμπίεσης" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "Αποτυχία δημιουÏγίας του ΑΡΧΕΙΟΥ" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "Αποτυχία αγκίστÏωσης" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "Συμπίεση απογόνου" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "ΕσωτεÏικό Σφάλμα, Αποτυχία δημιουÏγίας του %s" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "απÎτυχε η Ε/Ε στην υποδιεÏγασία/αÏχείο" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "Αποτυχία ανάγνωσης κατά τον υπολογισμό MD5" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "Î Ïόβλημα κατά την αποσÏνδεση του %s" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "Αποτυχία μετονομασίας του %s σε %s" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -2131,157 +2163,157 @@ msgstr "" " -c=? Ανάγνωση Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… αÏχείου Ïυθμίσεων\n" " -o=? ΘÎσε μια αυθαίÏετη παÏάμετÏο,πχ -o dir::cache=/tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "Αποτυχία κατά τη δημιουÏγία διασωληνώσεων" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "Αποτυχία κατά την εκτÎλεση του gzip " -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "ΚατεστÏαμμÎνη αÏχειοθήκη" -#: apt-inst/contrib/extracttar.cc:201 +#: apt-inst/contrib/extracttar.cc:203 msgid "Tar checksum failed, archive corrupted" msgstr "Το Checksum του tar απÎτυχε, η αÏχείοθήκη είναι κατεστÏαμμÎνη" -#: apt-inst/contrib/extracttar.cc:306 +#: apt-inst/contrib/extracttar.cc:308 #, c-format msgid "Unknown TAR header type %u, member %s" msgstr "Άγνωστη επικεφαλίδα TAR Ï„Ïπος %u, μÎλος %s" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "Μη ÎγκυÏη υπογÏαφή αÏχειοθήκης" -#: apt-inst/contrib/arfile.cc:82 +#: apt-inst/contrib/arfile.cc:84 msgid "Error reading archive member header" msgstr "Σφάλμα κατά την ανάγνωση της επικεφαλίδας του μÎλους της αÏχειοθήκης" -#: apt-inst/contrib/arfile.cc:94 +#: apt-inst/contrib/arfile.cc:96 #, fuzzy, c-format msgid "Invalid archive member header %s" msgstr "Μη ÎγκυÏη επικεφαλίδα μÎλος της αÏχειοθήκης" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "Μη ÎγκυÏη επικεφαλίδα μÎλος της αÏχειοθήκης" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "Η αÏχειοθήκη είναι Ï€Î¿Î»Ï Î¼Î¹ÎºÏή" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "Αποτυχία ανάγνωσης των επικεφαλίδων της αÏχειοθήκης" -#: apt-inst/filelist.cc:382 +#: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" msgstr "Κλήση του DropNode σε Îναν ήδη συνδεδεμÎνο κόμβο" -#: apt-inst/filelist.cc:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "Αποτυχία ÎµÎ½Ï„Î¿Ï€Î¹ÏƒÎ¼Î¿Ï Ï„Î¿Ï… στοιχείου hash!" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "Αδυναμία ÎµÎ½Ï„Î¿Ï€Î¹ÏƒÎ¼Î¿Ï ÎµÎºÏ„Ïοπής" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "ΕσωτεÏικό Σφάλμα στο AddDiversion" -#: apt-inst/filelist.cc:479 +#: 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:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "Διπλή Ï€Ïοσθήκη εκτÏοπής %s -> %s" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "Διπλό αÏχείο Ïυθμίσεων %s/%s" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: 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:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "Αποτυχία στο κλείσιμο του αÏχείου %s" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: 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:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "Αποσυμπίεση του %s πάνω από μια φοÏά" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "Ο φάκελος %s Îχει εκτÏαπεί" -#: apt-inst/extract.cc:145 +#: 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:155 apt-inst/extract.cc:299 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 msgid "The diversion path is too long" msgstr "Η διαδÏομή εκτÏοπής Îχει υπεÏβολικό μήκος" -#: apt-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "Ο φάκελος %s αντικαθίσταται από Îνα μη-φάκελο" -#: apt-inst/extract.cc:282 +#: apt-inst/extract.cc:289 msgid "Failed to locate node in its hash bucket" msgstr "Αποτυχία ÎµÎ½Ï„Î¿Ï€Î¹ÏƒÎ¼Î¿Ï Ï„Î¿Ï… κόμβου στην ομάδα hash του" -#: apt-inst/extract.cc:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "Η διαδÏομή Îχει υπεÏβολικό μήκος" -#: apt-inst/extract.cc:414 +#: apt-inst/extract.cc:421 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Αντικατάσταση πακÎτου χωÏίς καμία Îκδοση %s" -#: apt-inst/extract.cc:431 +#: 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:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "ΑδÏνατη η εÏÏεση της κατάστασης του %s" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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:124 +#: apt-inst/deb/debfile.cc:132 #, c-format msgid "Internal error, could not locate member %s" msgstr "ΕσωτεÏικό Σφάλμα, αδυναμία ÎµÎ½Ï„Î¿Ï€Î¹ÏƒÎ¼Î¿Ï Ï„Î¿Ï… μÎλους %s" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "Μη αναλÏσιμο αÏχείο control" @@ -2339,500 +2371,505 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "Η επιλογή %s δε βÏÎθηκε" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Μη αναγνωÏισμÎνος Ï„Ïπος σÏντμησης: '%c'" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "Άνοιγμα του αÏχείου Ïυθμίσεων %s" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Συντακτικό σφάλμα %s:%u: Το block αÏχίζει χωÏίς όνομα." -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Συντακτικό σφάλμα %s:%u: Λάθος μοÏφή ΕτικÎτας (Tag)" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Συντακτικό σφάλμα %s:%u: ΆχÏηστοι χαÏακτήÏες μετά την τιμή" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "Συντακτικό σφάλμα %s:%u: Οι οδηγίες βÏίσκονται μόνο στο ανώτατο επίπεδο" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Συντακτικό σφάλμα %s:%u: ΥπεÏβολικός αÏιθμός συνδυασμÎνων includes" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Συντακτικό σφάλμα %s:%u: ΣυμπεÏιλαμβάνεται από εδώ" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Συντακτικό σφάλμα %s:%u: Μη υποστηÏιζόμενη εντολή '%s'" -#: apt-pkg/contrib/configuration.cc:884 +#: 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-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Συντακτικό σφάλμα %s:%u: ΆχÏηστοι χαÏακτήÏες στο Ï„Îλος του αÏχείου" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... Σφάλμα!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... ΟλοκληÏώθηκε" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s... ΟλοκληÏώθηκε" -#: apt-pkg/contrib/cmndline.cc:116 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format msgid "Command line option '%c' [from %s] is not known." msgstr "Η επιλογή γÏαμμής εντολών '%c' [από %s] δεν είναι γνωστή." -#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format msgid "Command line option %s is not boolean" msgstr "Η επιλογή γÏαμμής εντολών %s δεν είναι boolean" -#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "Η επιλογή %s απαιτεί Îνα ÏŒÏισμα." -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "" "Επιλογή %s: Οι Ï€ÏοδιαγÏαφÎÏ‚ του αντικειμÎνου Ïυθμίσεων απαιτοÏν =<val>." -#: apt-pkg/contrib/cmndline.cc:273 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format msgid "Option %s requires an integer argument, not '%s'" msgstr "Επιλογή %s: απαιτείται Îνας ακÎÏαιος αÏιθμός ως ÏŒÏισμα, όχι '%s'" -#: apt-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "Η επιλογή '%s' Îχει υπεÏβολικό μήκος" -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "Η τιμή %s δεν είναι κατανοητή, δοκιμάστε σωστό (true) ή λάθος (false)." -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "Μη ÎγκυÏη λειτουÏγία %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format msgid "Unable to stat the mount point %s" msgstr "ΑδÏνατη η εÏÏεση της κατάστασης του σημείου επαφής %s" -#: apt-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "ΑδÏνατη η εÏÏεση της κατάστασης του cdrom" -#: apt-pkg/contrib/fileutl.cc:95 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Î Ïόβλημα κατά το κλείσιμο του αÏχείου" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "" "Δε θα χÏησιμοποιηθεί κλείδωμα για το ανάγνωσης μόνο αÏχείο κλειδώματος %s" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "ΑδÏνατο το άνοιγμα του αÏχείου κλειδώματος %s" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "" "Δε θα χÏησιμοποιηθεί κλείδωμα για το συναÏμοσμÎνο από nfs αÏχείο κλειδώματος " "%s" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "ΑδÏνατο το κλείδωμα %s" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Η υποδιεÏγασία %s Îλαβε Îνα σφάλμα καταμεÏÎ¹ÏƒÎ¼Î¿Ï (segfault)" -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "Η υποδιεÏγασία %s Îλαβε Îνα σφάλμα καταμεÏÎ¹ÏƒÎ¼Î¿Ï (segfault)" -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 apt-pkg/contrib/gpgv.cc:239 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Η υποδιεÏγασία %s επÎστÏεψε Îνα κωδικός σφάλματος (%u)" -#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Η υποδιεÏγασία %s εγκατÎλειψε απÏόσμενα" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Î Ïόβλημα κατά το κλείσιμο του αÏχείου" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "ΑδÏνατο το άνοιγμα του αÏχείου %s" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "ΑδÏνατο το άνοιγμα διασωλήνωσης για το %s" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "Αποτυχία δημιουÏγίας IPC στην υποδιεÏγασία" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "Αποτυχία εκτÎλεσης του συμπιεστή " -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, fuzzy, c-format msgid "read, still have %llu to read but none left" msgstr "αναγνώστηκαν, απομÎνουν ακόμη %lu για ανάγνωση αλλά δεν απομÎνουν άλλα" -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, fuzzy, c-format msgid "write, still have %llu to write but couldn't" msgstr "γÏάφτηκαν, απομÎνουν %lu για εγγÏαφή αλλά χωÏίς επιτυχία" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "Î Ïόβλημα κατά το κλείσιμο του αÏχείου" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "Î Ïόβλημα κατά τον συγχÏονισμό του αÏχείου" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "Î Ïόβλημα κατά την διαγÏαφή του αÏχείου" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "Î Ïόβλημα κατά τον συγχÏονισμό του αÏχείου" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "απÎτυχε η μετονομασία, %s (%s -> %s)." + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, fuzzy, c-format msgid "No keyring installed in %s." msgstr "Εγκατάλειψη της εγκατάστασης." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "Άδειο cache πακÎτων" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "Το αÏχείο cache των πακÎτων είναι κατεστÏαμμÎνο" -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "Το αÏχείο cache των πακÎτων είναι ασÏμβατης Îκδοσης" -#: apt-pkg/pkgcache.cc:162 +#: apt-pkg/pkgcache.cc:169 #, fuzzy msgid "The package cache file is corrupted, it is too small" msgstr "Το αÏχείο cache των πακÎτων είναι κατεστÏαμμÎνο" -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "Αυτό το APT δεν υποστηÏίζει το ΣÏστημα Απόδοσης Έκδοσης '%s'" -#: apt-pkg/pkgcache.cc:172 +#: apt-pkg/pkgcache.cc:179 msgid "The package cache was built for a different architecture" msgstr "Η cache πακÎτων κατασκευάστηκε για μια διαφοÏετική αÏχιτεκτονική" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "ΕξαÏτάται από" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "Î ÏοΕξαÏτάται από" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "Î Ïοτείνει" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "Συστήνει" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "ΑσÏμβατο με" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "Αντικαθιστά" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "ΑπαÏχαιώνει" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "Χαλάει" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "σημαντικό" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "απαιτοÏμενο" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "καθιεÏωμÎνο" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "Ï€ÏοαιÏετικό" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "επιπλÎον" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "Κατασκευή ΔÎνδÏου ΕξαÏτήσεων" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "Υποψήφιες Εκδόσεις" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "ΠαÏαγωγή ΕξαÏτήσεων" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 msgid "Reading state information" msgstr "Ανάγνωση πεÏιγÏαφής της Ï„ÏÎχουσας κατάσταση" -#: apt-pkg/depcache.cc:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "Αποτυχία ανοίγματος του αÏχείου κατάστασης %s" -#: apt-pkg/depcache.cc:250 +#: apt-pkg/depcache.cc:256 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Αποτυχία εγγÏαφής του αÏχείου κατάστασης %s" -#: apt-pkg/tagfile.cc:138 +#: apt-pkg/tagfile.cc:140 #, c-format msgid "Unable to parse package file %s (1)" msgstr "ΑδÏνατη η ανάλυση του αÏχείου πακÎτου %s (1)" -#: apt-pkg/tagfile.cc:235 +#: apt-pkg/tagfile.cc:237 #, c-format msgid "Unable to parse package file %s (2)" msgstr "ΑδÏνατη η ανάλυση του αÏχείου πακÎτου %s (2)" -#: apt-pkg/sourcelist.cc:118 +#: apt-pkg/sourcelist.cc:127 #, fuzzy, c-format msgid "Malformed stanza %u in source list %s (URI parse)" msgstr "Λάθος μοÏφή της γÏαμμής %lu στη λίστα πηγών %s (Ανάλυση URI)" -#: apt-pkg/sourcelist.cc:161 +#: 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:164 +#: 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:175 +#: 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:181 +#: 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:184 +#: 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-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "Λάθος μοÏφή της γÏαμμής %lu στη λίστα πηγών %s (URI)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "Λάθος μοÏφή της γÏαμμής %lu στη λίστα πηγών %s (dist)" -#: apt-pkg/sourcelist.cc:202 +#: apt-pkg/sourcelist.cc:211 #, c-format msgid "Malformed line %lu in source list %s (URI parse)" msgstr "Λάθος μοÏφή της γÏαμμής %lu στη λίστα πηγών %s (Ανάλυση URI)" -#: apt-pkg/sourcelist.cc:208 +#: apt-pkg/sourcelist.cc:217 #, c-format msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "Λάθος μοÏφή της γÏαμμής %lu στη λίστα πηγών %s (Απόλυτο dist)" -#: apt-pkg/sourcelist.cc:215 +#: apt-pkg/sourcelist.cc:224 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" msgstr "Λάθος μοÏφή της γÏαμμής %lu στη λίστα πηγών %s (Ανάλυση dist)" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "Άνοιγμα του %s" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "Η γÏαμμή %u Îχει υπεÏβολικό μήκος στη λίστα πηγών %s." -#: apt-pkg/sourcelist.cc:362 +#: apt-pkg/sourcelist.cc:371 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Λάθος μοÏφή της γÏαμμής %u στη λίστα πηγών %s (Ï„Ïπος)" -#: apt-pkg/sourcelist.cc:366 +#: apt-pkg/sourcelist.cc:375 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Ο Ï„Ïπος '%s' στη γÏαμμή %u στη λίστα πηγών %s είναι άγνωστος " -#: apt-pkg/sourcelist.cc:407 +#: 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/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, 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:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "ΑδÏνατο το άνοιγμα του αÏχείου %s" -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2844,12 +2881,12 @@ msgstr "" "είναι καλό, αλλά εάν Ï€Ïαγματικά θÎλετε να συνεχίσετε ενεÏγοποιήστε την " "επιλογή APT::Force-LoopBreak option." -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "Ο Ï„Ïπος αÏχείου ευÏετηÏίου '%s' δεν υποστηÏίζεται" -#: apt-pkg/algorithms.cc:266 +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." @@ -2857,7 +2894,7 @@ msgstr "" "Το πακÎτο '%s' χÏειάζεται να επανεγκατασταθεί, αλλά είναι αδÏνατη η εÏÏεση " "κάποιας κατάλληλης αÏχείοθήκης." -#: apt-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2865,222 +2902,217 @@ msgstr "" "Σφάλμα, το pkgProblemResolver::Resolve παÏήγαγε διακοπÎÏ‚, αυτό ίσως " "Ï€Ïοκλήθηκε από κÏατοÏμενα πακÎτα." -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "ΑδÏνατη η διόÏθωση Ï€Ïοβλημάτων, Îχετε κÏατοÏμενα ελαττωματικά πακÎτα." -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, fuzzy, c-format msgid "List directory %spartial is missing." msgstr "Ο φάκελος λιστών %spartial αγνοείται." -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, fuzzy, c-format msgid "Archives directory %spartial is missing." msgstr "Ο φάκελος αÏχειοθηκών %spartial αγνοείται." -#: apt-pkg/acquire.cc:93 +#: 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:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "ΚατÎβασμα του αÏχείου %li του %li (απομÎνουν %s)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "Λήψη αÏχείου %li του %li" -#: apt-pkg/acquire-worker.cc:113 +#: apt-pkg/acquire-worker.cc:116 #, c-format msgid "The method driver %s could not be found." msgstr "Ο οδηγός μεθόδου %s δεν μποÏεί να εντοπιστεί." -#: apt-pkg/acquire-worker.cc:115 +#: apt-pkg/acquire-worker.cc:118 #, fuzzy, c-format msgid "Is the package %s installed?" msgstr "ΕλÎγξτε αν είναι εγκαταστημÎνο το πακÎτο 'dpkg-dev'.\n" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "Η μÎθοδος %s δεν εκκινήθηκε σωστά" -#: apt-pkg/acquire-worker.cc:452 +#: 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." -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Το σÏστημα συσκευασίας '%s' δεν υποστηÏίζεται" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "ΑδÏνατος ο καθοÏισμός ενός κατάλληλου Ï„Ïπου συστήματος πακÎτων" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "ΑδÏνατη η εÏÏεση της κατάστασης του %s." -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "Î ÏÎπει να τοποθετήσετε μεÏικά URI 'πηγών' στο sources.list" -#: apt-pkg/cachefile.cc:87 +#: apt-pkg/cachefile.cc:94 msgid "The package lists or status file could not be parsed or opened." msgstr "" "ΑδÏνατο το άνοιγμα ή η ανάλυση των λιστών πακÎτων ή του αÏχείου κατάστασης." -#: apt-pkg/cachefile.cc:91 +#: 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:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "ΑδÏνατη η ανάγνωση της λίστας πηγών." -#: apt-pkg/policy.cc:75 +#: 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 "" -#: apt-pkg/policy.cc:414 +#: 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:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "ΑδÏνατη η κατανόηση του Ï„Ïπου καθήλωσης %s" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "" "Δεν Îχει οÏιστεί Ï€ÏοτεÏαιότητα (ή Îχει οÏιστεί μηδενική) για την καθήλωση" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 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:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: 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)" -#: apt-pkg/pkgcachegen.cc:251 +#: apt-pkg/pkgcachegen.cc:257 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "Εκπληκτικό, υπεÏβήκατε τον αÏιθμό των ονομάτων πακÎτων που υποστηÏίζει το " "APT." -#: apt-pkg/pkgcachegen.cc:254 +#: apt-pkg/pkgcachegen.cc:260 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "Εκπληκτικό, υπεÏβήκατε τον αÏιθμό των εκδόσεων που υποστηÏίζει το APT." -#: apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:263 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" "Εκπληκτικό, υπεÏβήκατε τον αÏιθμό των πεÏιγÏαφών που υποστηÏίζει το APT." -#: apt-pkg/pkgcachegen.cc:260 +#: apt-pkg/pkgcachegen.cc:266 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" "Εκπληκτικό, υπεÏβήκατε τον αÏιθμό των εξαÏτήσεων που υποστηÏίζει το APT." -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:576 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Το πακÎτο %s %s δε βÏÎθηκε κατά την επεξεÏγασία εξαÏτήσεων του αÏχείου" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "ΑδÏνατη η εÏÏεση της κατάστασης της λίστας πηγαίων πακÎτων %s" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "Συλλογή ΠαÏοχών ΑÏχείου" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 msgid "IO Error saving source cache" msgstr "Σφάλμα IO κατά την αποθήκευση της cache πηγών" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "απÎτυχε η μετονομασία, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "Ανόμοιο MD5Sum" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "Ανόμοιο μÎγεθος" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "Μη ÎγκυÏη λειτουÏγία %s" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, 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:1586 +#: apt-pkg/acquire-item.cc:1595 #, fuzzy, c-format msgid "Unable to find hash sum for '%s' in Release file" msgstr "ΑδÏνατη η ανάλυση του αÏχείου πακÎτου %s (1)" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "Δεν υπάÏχει διαθÎσιμο δημόσιο κλειδί για τα ακολουθα κλειδιά:\n" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " "repository will not be applied." msgstr "" -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3088,12 +3120,12 @@ msgid "" msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3102,12 +3134,12 @@ msgstr "" "ΑδÏνατος ο εντοπισμός ενός αÏχείου για το πακÎτο %s. Αυτό ίσως σημαίνει ότι " "χÏειάζεται να διοÏθώσετε χειÏοκίνητα το πακÎτο. (λόγω χαμÎνου αÏχείου)" -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -3115,71 +3147,67 @@ msgstr "" "ΚατεστÏαμμÎνα αÏχεία ευÏετηÏίου πακÎτων. Δεν υπάÏχει πεδίο Filename: στο " "πακÎτο %s." -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, fuzzy, c-format msgid "Unable to parse Release file %s" msgstr "ΑδÏνατη η ανάλυση του αÏχείου πακÎτου %s (1)" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, fuzzy, c-format msgid "No sections in Release file %s" msgstr "Σημείωση, επιλÎχθηκε το %s αντί του%s\n" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "" -#: apt-pkg/indexrecords.cc:125 +#: apt-pkg/indexrecords.cc:130 #, fuzzy, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Μη ÎγκυÏη γÏαμμή στο αÏχείο παÏακάμψεων: %s" -#: apt-pkg/indexrecords.cc:144 +#: apt-pkg/indexrecords.cc:149 #, fuzzy, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "ΑδÏνατη η ανάλυση του αÏχείου πακÎτου %s (1)" -#: apt-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "Η εγγÏαφή κατασκευαστή %s δεν πεÏιÎχει ταυτότητα" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "ΧÏησιμοποιείται το σημείο Ï€ÏοσάÏτησης %s\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "ΑποπÏοσάÏτηση του CD-ROM\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "ΑποπÏοσάÏτηση του CD-ROM...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "Αναμονή για δίσκο...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "Î ÏοσάÏτηση του CD-ROM...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " msgstr "ΑναγνώÏιση..." -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "Αποθήκευση ΕτικÎτας: %s \n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "ΑποπÏοσάÏτηση του CD-ROM...\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" msgstr "ΣάÏωση του δίσκου για πεÏιεχόμενα...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3188,22 +3216,22 @@ msgstr "" "Î’ÏÎθηκαν %zu κατάλογοι πακÎτων, %zu κατάλογοι πηγαίων, %zu κατάλογοι " "μεταφÏάσεων και %zu υπογÏαφÎÏ‚\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "ΕÏÏεση ετικÎτας: %s \n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "Αυτό δεν είναι ÎγκυÏο όνομα, Ï€Ïοσπαθείστε ξανά. \n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3212,34 +3240,34 @@ msgstr "" "Ο δίσκος αυτός ονομάζεται: \n" "'%s'\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "ΑντιγÏαφή λιστών πακÎτων..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "EγγÏαφή νÎας λίστας πηγών\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "Οι κατάλογοι με τις πηγÎÏ‚ Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… δίσκου είναι: \n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: 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:777 +#: 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:780 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Εγιναν %i εγγÏαφÎÏ‚ με %i ασÏμβατα αÏχεία.\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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" @@ -3254,88 +3282,88 @@ msgstr "" msgid "Hash mismatch for: %s" msgstr "Ανόμοιο MD5Sum" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Η Îκδοση %s για το %s δεν βÏÎθηκε" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Η Îκδοση %s για το %s δεν βÏÎθηκε" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, fuzzy, c-format msgid "Couldn't find task '%s'" msgstr "ΑδÏνατη η εÏÏεση του συνόλου πακÎτων %s" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, fuzzy, c-format msgid "Couldn't find any package by regex '%s'" msgstr "ΑδÏνατη η εÏÏεση του πακÎτου %s" -#: apt-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "ΑδÏνατη η εÏÏεση του πακÎτου %s" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, c-format msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " "neither of them" msgstr "" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, c-format msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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 " @@ -3344,167 +3372,167 @@ msgstr "" "ΜεÏικά αÏχεία δεν μεταφοÏτώθηκαν, αγνοήθηκαν ή χÏησιμοποιήθηκαν παλαιότεÏα " "στη θÎση τους." -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "Εγκατάσταση του %s" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "ΡÏθμιση του %s" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "ΑφαιÏÏŽ το %s" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, fuzzy, c-format msgid "Completely removing %s" msgstr "Το %s διαγÏάφηκε πλήÏως" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "ΕκτÎλεση του post-installation trigger %s" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "Ο φάκελος %s αγνοείται." -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: 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:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "Î Ïοετοιμασία του %s" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "ΞεπακετάÏισμα του %s" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "Î Ïοετοιμασία ÏÏθμισης του %s" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "Έγινε εγκατάσταση του %s" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "Î Ïοετοιμασία για την αφαίÏεση του %s" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "ΑφαίÏεσα το %s" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "Î Ïοετοιμασία πλήÏης αφαίÏεσης του %s" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "Το %s διαγÏάφηκε πλήÏως" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "ΑδÏνατη η εγγÏαφή στο %s" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 msgid "" "No apport report written because the error message indicates an issue on the " "local system" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " "it?" msgstr "" -#: apt-pkg/deb/debsystem.cc:87 +#: 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:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " msgstr "" -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "" @@ -33,7 +33,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.8.10\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2011-01-24 11:47+0100\n" "Last-Translator: Javier Fernández-Sanguino Peña <jfs@debian.org>\n" "Language-Team: Debian Spanish <debian-l10n-spanish@lists.debian.org>\n" @@ -72,154 +72,155 @@ msgstr "" "X-POFile-SpellExtra: autoclean showsrc desactualizados clean gzip TYPE\n" "X-POFile-SpellExtra: sinfo Acquire\n" -#: cmdline/apt-cache.cc:140 +#: 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" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "Nombres de paquetes totales: " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 msgid "Total package structures: " msgstr "Estructuras de paquetes totales: " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " Paquetes normales: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " Paquetes virtuales puros: " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " Paquetes virtuales únicos: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " Paquetes virtuales mixtos: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " Faltan: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "Versiones diferentes totales: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "Descripciones diferentes totales: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "Dependencias totales: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "Relaciones versión/archivo totales: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "Relaciones descripción/archivo totales: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "Mapeo Total de Provisiones: " # globbed -> globalizadas ? (jfs) -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "Cadenas globalizadas totales: " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "Espacio de versión de dependencias total: " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "Espacio desperdiciado total: " -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "Espacio registrado total: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format msgid "Package file %s is out of sync." msgstr "El archivo de paquetes %s está desincronizado." -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 msgid "You must give at least one search pattern" msgstr "Debe proporcionar al menos un patrón de búsqueda" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "No se ha podido localizar el paquete %s" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "Archivos de paquetes:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 msgid "Cache is out of sync, can't x-ref a package file" msgstr "" "Caché fuera de sincronismo, no se puede hacer x-ref a un archivo de paquetes" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "Paquetes con pin:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(no encontrado)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " Instalados: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " Candidato: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(ninguno)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " Pin del paquete: " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " Tabla de versión:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s para %s compilado en %s %s\n" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -297,29 +298,29 @@ msgstr "" " 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:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: 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»" -#: cmdline/apt-cdrom.cc:104 +#: 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" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, c-format msgid "Failed to mount '%s' to '%s'" msgstr "No se pudo montar «%s» como «%s»" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Repita este proceso para el resto de los CDs del conjunto." @@ -356,66 +357,66 @@ msgstr "" " -o=? Establece una opción de configuración arbitraria, p. ej. -o dir::\n" " cache=/tmp\n" -#: cmdline/apt-get.cc:244 +#: 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:326 +#: 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»" -#: cmdline/apt-get.cc:329 +#: 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»" -#: cmdline/apt-get.cc:366 +#: cmdline/apt-get.cc:367 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Escogiendo «%s» como paquete fuente en lugar de «%s»\n" -#: cmdline/apt-get.cc:422 +#: 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»" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "No se pudo encontrar el paquete %s" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "fijado %s como instalado manualmente.\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: 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:468 cmdline/apt-mark.cc:116 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: 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" -#: cmdline/apt-get.cc:573 cmdline/apt-get.cc:610 +#: 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:725 +#: 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" -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "No se pudo encontrar un paquete de fuentes para %s" @@ -442,97 +443,97 @@ msgstr "" "para obtener las últimas actualizaciones (posiblemente no publicadas aún) " "del paquete.\n" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Omitiendo el fichero ya descargado «%s»\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "No pude determinar el espacio libre en %s" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "No tiene suficiente espacio libre en %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Necesito descargar %sB/%sB de archivos fuente.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Necesito descargar %sB de archivos fuente.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "Fuente obtenida %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "No se pudieron obtener algunos archivos." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "Descarga completa y en modo de sólo descarga" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Ignorando desempaquetamiento de paquetes ya desempaquetados en %s\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Falló la orden de desempaquetamiento «%s».\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Compruebe que el paquete «dpkg-dev» esté instalado.\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "Falló la orden de construcción «%s».\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "Falló el proceso hijo" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "" "Debe especificar al menos un paquete para verificar sus dependencias de " "construcción" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "No se pudo obtener información de dependencias de construcción para %s" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s no tiene dependencias de construcción.\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -541,7 +542,7 @@ msgstr "" "La dependencia %s en %s no puede satisfacerse porque no se puede encontrar " "el paquete %s" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -550,14 +551,14 @@ msgstr "" "La dependencia %s en %s no puede satisfacerse porque no se puede encontrar " "el paquete %s" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "No se pudo satisfacer la dependencia %s para %s: El paquete instalado %s es " "demasiado nuevo" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -566,7 +567,7 @@ msgstr "" "La dependencia %s en %s no puede satisfacerse porque ninguna versión " "disponible del paquete %s satisface los requisitos de versión" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -575,30 +576,30 @@ msgstr "" "La dependencia %s en %s no puede satisfacerse porque no se puede encontrar " "el paquete %s" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "No se pudo satisfacer la dependencia %s para %s: %s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "No se pudieron satisfacer las dependencias de construcción de %s." -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "No se pudieron procesar las dependencias de construcción" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "Conectando a %s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "Módulos soportados:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -689,53 +690,75 @@ msgstr "" "para más información y opciones.\n" " Este APT tiene poderes de Super Vaca.\n" -#: cmdline/apt-mark.cc:57 +#: 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" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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 "pero no está instalado" -#: cmdline/apt-mark.cc:63 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format msgid "%s was already set to manually installed.\n" msgstr "fijado %s como instalado manualmente.\n" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, fuzzy, c-format msgid "%s was already set to automatically installed.\n" msgstr "fijado %s como instalado automáticamente.\n" -#: cmdline/apt-mark.cc:230 +#: 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" -#: cmdline/apt-mark.cc:232 +#: 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" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Esperaba %s pero no estaba allÃ" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: 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" -#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316 +#: 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" -#: cmdline/apt-mark.cc:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" "\n" @@ -762,7 +785,7 @@ msgid "" "See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -810,52 +833,52 @@ msgstr "No pude desmontar el CD-ROM de %s, tal vez todavÃa este en uso." msgid "Disk not found." msgstr "Disco no encontrado." -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "Fichero no encontrado" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: 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:82 methods/gzip.cc:113 methods/rred.cc:606 +#: 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:47 +#: 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:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "Entrando" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "No pude determinar el nombre del par" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "Imposible determinar el nombre local" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: 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" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "Usuario (USER) falló, el servidor dijo: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "Clave (PASS) falló, el servidor dijo: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -863,121 +886,123 @@ msgstr "" "Se especificó un servidor proxy pero no un script de entrada, «Acquire::ftp::" "ProxyLogin» está vacÃo." -#: methods/ftp.cc:275 +#: 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" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "Tipo (TYPE) falló, el servidor dijo: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: 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:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "El servidor cerró la conexión" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "Error de lectura" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "No pude crear un socket." -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "Fallo del protocolo" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "Error de escritura" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: 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:707 +#: 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:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "Falló" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "No pude conectar un socket pasivo." -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo no pude obtener un socket oyente" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "No pude ligar un socket" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "No pude escuchar en el socket" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "No pude determinar el nombre del socket" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "No pude mandar la orden PORT" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Dirección de familia %u desconocida (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT falló, el servidor dijo: %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "Expiró conexión a socket de datos" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "No pude aceptar la conexión" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: 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" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Imposible traer archivo, el servidor dijo «%s»" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "Expiró el socket de datos" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Falló transferencia de datos, el servidor dijo «%s»" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "Consulta" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "No pude invocar " @@ -1013,7 +1038,7 @@ msgstr "No pude conectarme a %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "Conectando a %s" @@ -1043,39 +1068,39 @@ msgstr "Algo raro pasó al resolver «%s:%s» (%i - %s)" msgid "Unable to connect to %s:%s:" msgstr "No se pudo conectar a %s:%s:" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Error interno: Firma correcta, ¡¿pero no se pudo determinar su huella " "digital?!" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "Se encontró al menos una firma inválida." -#: methods/gpgv.cc:172 +#: 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?)" #. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "Error desconocido ejecutando gpgv" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Las siguientes firms fueron inválidas:\n" -#: methods/gpgv.cc:229 +#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@ -1083,119 +1108,119 @@ msgstr "" "Las firmas siguientes no se pudieron verificar porque su llave pública no " "está disponible:\n" -#: methods/gzip.cc:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "Error escribiendo al archivo" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "Error leyendo del servidor, el lado remoto cerró la conexión." -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "Error leyendo del servidor" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "Error escribiendo a archivo" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "Falló la selección" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "Expiró la conexión" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "Error escribiendo al archivo de salida" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "Esperando las cabeceras" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "Mala lÃnea de cabecera" -#: methods/server.cc:139 methods/server.cc:146 +#: 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" -#: methods/server.cc:176 +#: 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" -#: methods/server.cc:199 +#: 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" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "Éste servidor de http tiene el soporte de alcance roto" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "Formato de fecha desconocido" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "Mala cabecera Data" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "Fallo la conexión" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "Error interno" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Error interno, ¡se llamó a «InstallPackages» con paquetes rotos!" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "" "Los paquetes necesitan eliminarse pero está deshabilitado la posibilidad de " "eliminar." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "Error interno, no terminó la ordenación" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" -"Qué raro.. Los tamaños no concuerdan, mande un correo a apt@packages.debian." +"Qué raro... Los tamaños no concuerdan, mande un correo a apt@packages.debian." "org" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Se necesita descargar %sB/%sB de archivos.\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:171 +#: apt-private/private-install.cc:159 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Necesito descargar %sB de archivos.\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:178 +#: apt-private/private-install.cc:166 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" @@ -1203,31 +1228,31 @@ 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:183 +#: apt-private/private-install.cc:171 #, 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" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "No tiene suficiente espacio libre en %s." -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "Hay problemas y se utilizó -y sin --force-yes" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Se especificó Trivial Only pero ésta no es una operación trivial." #. 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "SÃ, ¡haga lo que le digo!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1238,19 +1263,19 @@ msgstr "" "Para continuar escriba la frase «%s»\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "Abortado." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "¿Desea continuar?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "No se pudieron descargar algunos archivos" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1258,19 +1283,19 @@ msgstr "" "No se pudieron obtener algunos archivos, ¿quizás deba ejecutar «apt-get " "update» o deba intentarlo de nuevo con --fix-missing?" -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "Actualmente no están soportados --fix-missing e intercambio de medio" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "No se pudieron corregir los paquetes que faltan." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "Abortando la instalación." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1284,16 +1309,16 @@ 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:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Nota: Dpkg realiza esto de forma automática y a propósito." -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 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»" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1311,15 +1336,15 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 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:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "Error interno, «AutoRemover» rompió cosas" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1332,7 +1357,7 @@ msgstr[1] "" "Los paquetes indicados a continuación se instalaron de forma automática y ya " "no son necesarios." -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1341,18 +1366,18 @@ 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-private/private-install.cc:530 +#: apt-private/private-install.cc:518 #, fuzzy msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Utilice «apt-get autoremove» para eliminarlos." msgstr[1] "Utilice «apt-get autoremove» para eliminarlos." -#: apt-private/private-install.cc:624 +#: apt-private/private-install.cc:612 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Tal vez quiera ejecutar «apt-get -f install» para corregirlo:" -#: apt-private/private-install.cc:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1360,7 +1385,7 @@ msgstr "" "Dependencias incumplidas. Intente «apt-get -f install» sin paquetes (o " "especifique una solución)." -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1372,145 +1397,145 @@ msgstr "" "inestable, que algunos paquetes necesarios no han sido creados o han\n" "sido movidos fuera de Incoming." -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "Paquetes rotos" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "Se instalarán los siguientes paquetes extras:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "Paquetes sugeridos:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "Paquetes recomendados:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "AVISO: ¡No se han podido autenticar los siguientes paquetes!" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "Aviso de autenticación ignorado.\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "Algunos paquetes no se pueden autenticar" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "¿Instalar estos paquetes sin verificación?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Imposible obtener %s %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [Instalado]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [Instalado]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [Instalado]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [Instalado]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "Los siguientes paquetes tienen dependencias incumplidas:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "pero %s está instalado" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "pero %s va a ser instalado" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "pero no es instalable" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "pero es un paquete virtual" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "pero no está instalado" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "pero no va a instalarse" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " o" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "Se instalarán los siguientes paquetes NUEVOS:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "Los siguientes paquetes se ELIMINARÃN:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "Los siguientes paquetes se han retenido:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "Se actualizarán los siguientes paquetes:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "Se DESACTUALIZARÃN los siguientes paquetes:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "Se cambiarán los siguientes paquetes retenidos:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (por %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1518,27 +1543,27 @@ msgstr "" "AVISO: Se van a eliminar los siguientes paquetes esenciales.\n" "¡NO debe hacerse a menos que sepa exactamente lo que está haciendo!" -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu actualizados, %lu se instalarán, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu reinstalados, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu desactualizados, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu para eliminar y %lu no actualizados.\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu no instalados del todo o eliminados.\n" @@ -1547,7 +1572,7 @@ msgstr "%lu no instalados del todo o eliminados.\n" #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "[S/n]" @@ -1555,91 +1580,91 @@ msgstr "[S/n]" #. 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:702 +#: apt-private/private-output.cc:708 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:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "S" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "Error de compilación de expresiones regulares - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "Corrigiendo dependencias..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " falló." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "No se puede corregir las dependencias" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "No se puede minimizar el conjunto de actualización" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " Listo" -#: apt-private/private-cachefile.cc:102 +#: 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-private/private-cachefile.cc:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "Dependencias incumplidas. Pruebe de nuevo usando -f." -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "El comando de actualización no toma argumentos" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "Calculando la actualización... " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "Error Interno, AllUpgrade rompió cosas" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "Listo" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1651,43 +1676,43 @@ msgstr "" " 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-sources.cc:45 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format msgid "Failed to parse %s. Edit again? " msgstr "No pude abrir %s.new" -#: apt-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "Obj " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "Des:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "Ign " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Err " -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "Descargados %sB en %s (%sB/s)\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [Trabajando]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1700,19 +1725,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "No pude leer %s" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "No se pudo cambiar a %s" @@ -1741,11 +1766,11 @@ msgstr "No se encontró un archivo de réplica «%s»" msgid "[Mirror: %s]" msgstr "[Réplica: %s]" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: 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" -#: methods/rsh.cc:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "La conexión se cerró prematuramente" @@ -1814,40 +1839,45 @@ msgstr "" " -o=? Establece una opción de configuración arbitraria, p. ej. -o dir::" "cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "No pude leer %s" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "No se puede escribir en %s" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "No se puede encontrar la versión de debconf. ¿Está debconf instalado?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "La lista de extensión de paquetes es demasiado larga" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "Error procesando el directorio %s" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "La lista de extensión de fuentes es demasiado larga" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "Error escribiendo cabeceras de archivos de contenido" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "Error procesando contenidos %s" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1932,26 +1962,26 @@ msgstr "" " -c=? Lee este archivo de configuración\n" " -o=? Establece una opción de configuración arbitraria" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "Ninguna selección coincide" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Faltan algunos archivos en el grupo de archivo de paquetes «%s»" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, 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:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "DB anticuada, intentando actualizar %s" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -1959,192 +1989,192 @@ 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:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "No se pudo abrir el archivo DB %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "No pude leer %s" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "No hay registro de control del archivo" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "No se pudo obtener un cursor" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "A: No se pudo leer directorio %s\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "A: No se pudo leer %s\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "A: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "E: Errores aplicables al archivo " -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "No se pudo resolver %s" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "Falló el recorrido por el árbol." -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "No se pudo abrir %s" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "No se pudo leer el enlace %s" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "No se pudo desligar %s" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** No pude enlazar %s con %s" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " DeLink se ha llegado al lÃmite de %sB.\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "Archivo no tiene campo de paquetes" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %s no tiene entrada de predominio\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " el encargado de %s es %s y no %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr " %s no tiene una entrada fuente predominante\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s tampoco tiene una entrada binaria predominante\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - No pudo reservar memoria" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "No se pudo abrir %s" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "Predominio mal formado %s lÃnea %lu #1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "No se pudo leer el archivo de predominio %s" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, fuzzy, c-format msgid "Malformed override %s line %llu #1" msgstr "Predominio mal formado %s lÃnea %lu #1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, fuzzy, c-format msgid "Malformed override %s line %llu #2" msgstr "Predominio mal formado %s lÃnea %lu #2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, fuzzy, c-format msgid "Malformed override %s line %llu #3" msgstr "Predominio mal formado %s lÃnea %lu #3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "Algoritmo desconocido de compresión «%s»" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "Salida comprimida %s necesita una herramienta de compresión" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "No se pudo crear FICHERO*" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "No se pudo bifurcar" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "Hijo compresión" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "Error interno, no se pudo crear %s" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "Falló la ES a subproceso/archivo" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "No se pudo leer mientras se computaba MD5" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "Se produjo un problema al desligar %s" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "Falló el renombre de %s a %s" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -2199,158 +2229,158 @@ msgstr "" " -o=? Establece una opción de configuración arbitraria, p. ej. -o dir::\n" "cache=/tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "No pude crear las tuberÃas" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "No pude ejecutar gzip" -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "Archivo dañado" -#: apt-inst/contrib/extracttar.cc:201 +#: 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:306 +#: 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-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "Firma del archivo inválida" -#: apt-inst/contrib/arfile.cc:82 +#: 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:94 +#: apt-inst/contrib/arfile.cc:96 #, c-format msgid "Invalid archive member header %s" msgstr "Cabecera de miembro del archivo inválida %s" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "Cabecera de miembro del archivo inválida" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "El archivo es muy pequeño" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "No pude leer las cabeceras del archivo" -#: apt-inst/filelist.cc:382 +#: 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:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "¡No pude localizar el elemento enlazado!" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "No pude asignar una desviación" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "Error interno en AddDiversion" -#: apt-inst/filelist.cc:479 +#: 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:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "Doble suma de desviación %s -> %s" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "Archivo de configuración duplicado %s/%s" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: 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:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "No pude cerrar el archivo %s" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: 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" -#: apt-inst/extract.cc:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "Desempaquetando %s más de una vez" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "El directorio %s está desviado" -#: apt-inst/extract.cc:145 +#: 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" -#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 msgid "The diversion path is too long" msgstr "La trayectoria de desviación es demasiado larga" -#: apt-inst/extract.cc:242 +#: 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" -#: apt-inst/extract.cc:282 +#: 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:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "La trayectoria es muy larga" -#: apt-inst/extract.cc:414 +#: 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:431 +#: 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:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "No pude leer %s" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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:124 +#: 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" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "Archivo de control inanalizable" @@ -2411,494 +2441,499 @@ msgstr "" "deshabilitado el crecimiento automático." #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lid %lih %limin. %liseg." #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "%lih %limin. %liseg." #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "%limin. %liseg." #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "%liseg." -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "Selección %s no encontrada" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Tipo de abreviación no reconocida: «%c»" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "Abriendo fichero de configuración %s" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Error de sintaxis %s:%u: No hay un nombre al comienzo del bloque." -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Error de sintaxis %s:%u: Marca mal formada" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Error de sintaxis %s:%u: Basura extra después del valor" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "Error de sintaxis %s:%u: Las directivas sólo se pueden poner en el primer " "nivel" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Error de sintaxis %s:%u: Demasiadas inclusiones anidadas" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Error de sintaxis %s:%u: Incluido desde aquÃ" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Error de sintaxis %s:%u: Directiva «%s» no soportada" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-pkg/contrib/configuration.cc:900 #, 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-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Error de sintaxis %s:%u: Basura extra al final del archivo" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... ¡Error!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... Hecho" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s... Hecho" -#: apt-pkg/contrib/cmndline.cc:116 +#: 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-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: 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-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: 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." -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "" "Opción %s: La especificación del elemento de configuración debe tener un " "=<val>." -#: apt-pkg/contrib/cmndline.cc:273 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format msgid "Option %s requires an integer argument, not '%s'" msgstr "La opción %s exige un argumento entero, no «%s»" -#: apt-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "Opción «%s» demasiado larga" -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "El sentido %s no se entiende, pruebe verdadero o falso." -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "Operación inválida: %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format msgid "Unable to stat the mount point %s" msgstr "No se puede obtener información del punto de montaje %s" -#: apt-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "No pude montar el cdrom" -#: apt-pkg/contrib/fileutl.cc:95 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Se produjo un problema al cerrar el fichero gzip %s" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "No se utiliza bloqueos para el fichero de bloqueo de sólo lectura %s" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "No se pudo abrir el fichero de bloqueo «%s»" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "No se utilizan bloqueos para el fichero de bloqueo de montaje nfs %s" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "No se pudo bloquear %s" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, 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:864 +#: apt-pkg/contrib/fileutl.cc:829 #, c-format msgid "Sub-process %s received signal %u." msgstr "El subproceso %s recibió la señal %u." -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 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-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "El subproceso %s terminó de forma inesperada" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Se produjo un problema al cerrar el fichero gzip %s" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "No pude abrir el fichero %s" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, c-format msgid "Could not open file descriptor %d" msgstr "No se pudo abrir el descriptor de fichero %d" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "No se pudo crear el subproceso IPC" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "No se pudo ejecutar el compresor " -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, 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-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, 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-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, c-format msgid "Problem closing the file %s" msgstr "Se produjo un problema al cerrar el fichero %s" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, c-format msgid "Problem renaming the file %s to %s" msgstr "Se produjo un problema al renombrar el fichero %s a %s" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, c-format msgid "Problem unlinking the file %s" msgstr "Se produjo un problema al desligar el fichero %s" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "Se produjo un problema al sincronizar el fichero" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "falló el cambio de nombre, %s (%s -> %s)." + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: 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-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "Caché de paquetes vacÃa." -#: apt-pkg/pkgcache.cc:154 +#: 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:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "El archivo de caché de paquetes es una versión incompatible" -#: apt-pkg/pkgcache.cc:162 +#: 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" -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "Esta versión de APT no soporta el sistema de versiones «%s»" -#: apt-pkg/pkgcache.cc:172 +#: 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:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "Depende" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "PreDepende" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "Sugiere" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "Recomienda" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "Entra en conflicto" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "Reemplaza" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "Hace obsoleto" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "Rompe" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "Mejora" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "importante" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "requiere" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "estándar" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "opcional" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "extra" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "Creando árbol de dependencias" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "Versiones candidatas" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "Generación de dependencias" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: 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:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "No se pudo abrir el fichero de estado %s" -#: apt-pkg/depcache.cc:250 +#: 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-pkg/tagfile.cc:138 +#: 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-pkg/tagfile.cc:235 +#: 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-pkg/sourcelist.cc:118 +#: 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-pkg/sourcelist.cc:161 +#: 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-pkg/sourcelist.cc:164 +#: 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-pkg/sourcelist.cc:175 +#: 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-pkg/sourcelist.cc:181 +#: 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-pkg/sourcelist.cc:184 +#: apt-pkg/sourcelist.cc:193 #, c-format 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)" -#: apt-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "LÃnea %lu mal formada en la lista de fuentes %s (URI)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "LÃnea %lu mal formada en la lista de fuentes %s (dist)" -#: apt-pkg/sourcelist.cc:202 +#: apt-pkg/sourcelist.cc:211 #, c-format msgid "Malformed line %lu in source list %s (URI parse)" msgstr "LÃnea %lu mal formada en la lista de fuentes %s (análisis de URI)" -#: apt-pkg/sourcelist.cc:208 +#: apt-pkg/sourcelist.cc:217 #, c-format msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "LÃnea %lu mal formada en la lista de fuentes %s (dist absoluta)" -#: apt-pkg/sourcelist.cc:215 +#: apt-pkg/sourcelist.cc:224 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" msgstr "LÃnea %lu mal formada en la lista de fuentes %s (análisis de dist)" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "Abriendo %s" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "LÃnea %u demasiado larga en la lista de fuentes %s." -#: apt-pkg/sourcelist.cc:362 +#: 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)" -#: apt-pkg/sourcelist.cc:366 +#: 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" -#: apt-pkg/sourcelist.cc:407 +#: 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-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2908,12 +2943,12 @@ msgstr "" "de manual con «man 5 apt.conf» bajo «APT::Immediate-Configure» para más " "información. (%d)" -#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "No pude abrir el fichero «%s»" -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2925,12 +2960,12 @@ msgstr "" "generalmente es malo, pero si realmente quiere hacerlo, active la opción |" "APT::Force-LoopBreak»." -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "No se da soporte para el tipo de archivo de Ãndice «%s»" -#: apt-pkg/algorithms.cc:266 +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." @@ -2938,7 +2973,7 @@ msgstr "" "El paquete %s necesita ser reinstalado, pero no se encuentra un archivo para " "éste." -#: apt-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2946,224 +2981,219 @@ msgstr "" "Error, pkgProblemResolver::Resolve generó cortes, esto puede haber sido " "causado por paquetes retenidos." -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "" "No se pudieron corregir los problemas, usted ha retenido paquetes rotos." -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, c-format msgid "List directory %spartial is missing." msgstr "Falta el directorio de listas %spartial." -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, c-format msgid "Archives directory %spartial is missing." msgstr "Falta el directorio de archivos %spartial." -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, c-format msgid "Unable to lock directory %s" msgstr "No se pudo bloquear el directorio %s" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Descargando fichero %li de %li (falta %s)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "Descargando fichero %li de %li" -#: apt-pkg/acquire-worker.cc:113 +#: 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:115 +#: 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:166 +#: 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:452 +#: apt-pkg/acquire-worker.cc:455 #, c-format msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "Por favor, inserte el disco «%s» en la unidad «%s» y pulse Intro." -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "No está soportado el sistema de paquetes «%s»" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "No se pudo determinar un tipo de sistema de paquetes adecuado" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "No se pudo leer %s." -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "Debe poner algunos URIs fuente («source») en su sources.list" -#: apt-pkg/cachefile.cc:87 +#: 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." -#: apt-pkg/cachefile.cc:91 +#: 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:109 +#: 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/policy.cc:75 +#: 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 "" -#: apt-pkg/policy.cc:414 +#: apt-pkg/policy.cc:422 #, c-format 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»" -#: apt-pkg/policy.cc:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "No se entiende el pin tipo %s" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "No hay prioridad especificada para pin (o es cero)" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 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:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: 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)" -#: apt-pkg/pkgcachegen.cc:251 +#: 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." -#: apt-pkg/pkgcachegen.cc:254 +#: 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." -#: apt-pkg/pkgcachegen.cc:257 +#: 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." -#: apt-pkg/pkgcachegen.cc:260 +#: 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." -#: apt-pkg/pkgcachegen.cc:570 +#: 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" -#: apt-pkg/pkgcachegen.cc:1199 +#: 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" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 msgid "Reading package lists" msgstr "Leyendo lista de paquetes" -#: apt-pkg/pkgcachegen.cc:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "Recogiendo archivos que proveen" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 msgid "IO Error saving source cache" msgstr "Error de E/S guardando caché fuente" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "falló el cambio de nombre, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "La suma hash difiere" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "El tamaño difiere" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "Operación inválida: %s" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, 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:1586 +#: apt-pkg/acquire-item.cc:1595 #, fuzzy, c-format msgid "Unable to find hash sum for '%s' in Release file" msgstr "No se pudo leer el archivo «Release» %s" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "" "No existe ninguna clave pública disponible para los siguientes " "identificadores de clave:\n" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " "repository will not be applied." msgstr "" -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Distribución conflictiva: %s (se esperaba %s, pero se obtuvo %s)" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3174,12 +3204,12 @@ msgstr "" "GPG es: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "Error de GPG: %s: %s" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3189,12 +3219,12 @@ msgstr "" "que necesita arreglar manualmente este paquete (debido a que falta una " "arquitectura)" -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -3202,71 +3232,67 @@ msgstr "" "Los archivos de Ãndice de paquetes están dañados. No existe un campo " "«Filename:» para el paquete %s." -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, c-format msgid "Unable to parse Release file %s" msgstr "No se pudo leer el archivo «Release» %s" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, c-format msgid "No sections in Release file %s" msgstr "No se encontraron secciones en el archivo «Release» %s" -#: apt-pkg/indexrecords.cc:112 +#: 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-pkg/indexrecords.cc:125 +#: 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-pkg/indexrecords.cc:144 +#: 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-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "Bloque de fabricante %s sin huella digital" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, 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:583 -msgid "Unmounting CD-ROM\n" -msgstr "Desmontando el CD-ROM\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "Desmontando el CD-ROM...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "Esperando el disco...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "Montando el CD-ROM...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " -msgstr "Identificando.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " +msgstr "Identificando... " -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "Etiqueta guardada: %s \n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "Desmontando el CD-ROM...\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" msgstr "Buscando en el disco archivos de Ãndices...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3275,7 +3301,7 @@ msgstr "" "Se encontraron %zu Ãndices de paquetes, %zu Ãndices de fuentes, %zu Ãndices " "de traducción y %zu firmas\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" @@ -3283,16 +3309,16 @@ msgstr "" "No pude localizar ningún archivo de paquete, ¿quizás este no sea un disco de " "Debian o sea de otra arquitectura?" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "Se encontró la etiqueta: «%s»\n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 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:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3301,34 +3327,34 @@ msgstr "" "Este disco se llama: \n" "«%s»\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "Copiando las listas de paquetes..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "Escribiendo nueva lista de fuente\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "Las entradas de la lista de fuentes para este disco son:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: 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:777 +#: 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:780 +#: 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:783 +#: 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 "" @@ -3344,39 +3370,39 @@ msgstr "No se pudo encontrar un registro de autenticación para: %s" msgid "Hash mismatch for: %s" msgstr "La suma hash difiere para: %s" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "No se encontró la Distribución «%s» para «%s»" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "No se encontró la versión «%s» para «%s»" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, c-format msgid "Couldn't find task '%s'" msgstr "No se pudo encontrar la tarea «%s»" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, 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:605 +#: apt-pkg/cacheset.cc:613 #, 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:616 +#: apt-pkg/cacheset.cc:624 #, 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-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " @@ -3385,57 +3411,57 @@ 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:637 +#: apt-pkg/cacheset.cc:645 #, 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-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, 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" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, 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" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "Ejecutando dpkg" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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 " @@ -3444,120 +3470,120 @@ msgstr "" "No se han podido descargar algunos archivos de Ãndice, se han ignorado, o se " "ha utilizado unos antiguos en su lugar." -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "Instalando %s" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "Configurando %s" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "Eliminando %s" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format msgid "Completely removing %s" msgstr "Borrando completamente %s" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "Se detectó la desaparición de %s" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "Ejecutando disparador post-instalación %s" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "Falta el directorio «%s»." -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: 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-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "Preparando %s" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "Desempaquetando %s" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "Preparándose para configurar %s" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "%s instalado" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "Preparándose para eliminar %s" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "%s eliminado" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "Preparándose para eliminar completamente %s" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "Se borró completamente %s" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "No se puede escribir en %s" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 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»" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "problemas de dependencias - dejando sin instalar" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3565,7 +3591,7 @@ msgstr "" "No se escribió un informe «apport» porque el mensaje de error indica que es " "un mensaje de error asociado a un fallo previo." -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" @@ -3573,7 +3599,7 @@ msgstr "" "No se escribió un informe «apport» porque el mensaje de error indica que el " "error es de disco lleno" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3581,7 +3607,7 @@ msgstr "" "No se escribió un informe «apport» porque el mensaje de error indica un " "error de memoria excedida" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 #, fuzzy msgid "" "No apport report written because the error message indicates an issue on the " @@ -3590,14 +3616,14 @@ msgstr "" "No se escribió un informe «apport» porque el mensaje de error indica que el " "error es de disco lleno" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 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-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " @@ -3606,14 +3632,14 @@ 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:87 +#: 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»" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " @@ -3621,7 +3647,7 @@ msgstr "" "se interrumpió la ejecución de dpkg, debe ejecutar manualmente «%s» para " "corregir el problema" -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "No bloqueado" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_eu\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2009-05-17 00:41+0200\n" "Last-Translator: Piarres Beobide <pi@beobide.net>\n" "Language-Team: Euskara <debian-l10n-basque@lists.debian.org>\n" @@ -18,156 +18,157 @@ msgstr "" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: cmdline/apt-cache.cc:140 +#: cmdline/apt-cache.cc:149 #, c-format msgid "Package %s version %s has an unmet dep:\n" msgstr "%s paketeak (%s bertsioa) mendekotasun arazo bat du:\n" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "Pakete Izenak Guztira : " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 #, fuzzy msgid "Total package structures: " msgstr "Pakete Izenak Guztira : " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " Pakete normalak:" -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " Pakete birtual puruak:" -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " Bakanako pakete birtualak: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " Nahastutako pakete birtualak: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " Falta direnak: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "Bertsio Ezberdinak Guztira: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "Azalpen Ezberdinak Guztira: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "Dependentziak Guztira: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "Guztira Bertsio/fitxategi erlazioak: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "Fitx/Azalpen erlazioak guztira: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "Guztira Saltzaile Mapatzea: " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "Guztira bateratutako kateak: " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "Guztira bertsio dependentzia lekua: " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "Guztira galdutako tokia:" -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "Guztira erregistratutako lekua: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: 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." -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 #, fuzzy msgid "You must give at least one search pattern" msgstr "Zehazki eredu bat eman behar duzu." -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "Ezin da %s paketea lokalizatu" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "Pakete Fitxategiak:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: 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" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "Pin duten Paketeak:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(ez da aurkitu)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " Instalatuta: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " Hautagaia: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(bat ere ez)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " Paketearen pin-a:" #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " Bertsio taula:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: 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" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -239,30 +240,30 @@ msgstr "" " -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:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: 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" -#: cmdline/apt-cdrom.cc:104 +#: 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:141 +#: cmdline/apt-cdrom.cc:139 #, fuzzy, c-format msgid "Failed to mount '%s' to '%s'" msgstr "Huts egin du %s izenaren ordez %s ipintzean" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Prozesu hau bildumako beste CD guztiekin errepikatu." @@ -298,65 +299,65 @@ msgstr "" " -c=? Irakurri konfigurazio fitxategi hau\n" " -o=? Ezarri konfigurazio aukera arbitrario bat. Adib.: -o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:244 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format msgid "Can not find a package for architecture '%s'" msgstr "Ezin izan da %s paketea aurkitu" -#: cmdline/apt-get.cc:326 +#: 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" -#: cmdline/apt-get.cc:329 +#: 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" -#: cmdline/apt-get.cc:366 +#: 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" -#: cmdline/apt-get.cc:422 +#: cmdline/apt-get.cc:423 #, c-format msgid "Can not find version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "Ezin izan da %s paketea aurkitu" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "%s eskuz instalatua bezala ezarri.\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: 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:468 cmdline/apt-mark.cc:116 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: 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:573 cmdline/apt-get.cc:610 +#: 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:725 +#: 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:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "Ezin da iturburu paketerik aurkitu %s(r)entzat" @@ -376,97 +377,97 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Dagoeneko deskargaturiko '%s' fitxategia saltatzen\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "Ezin da %s(e)n duzun leku librea atzeman." -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "Ez daukazu nahikoa leku libre %s(e)n." #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Iturburu artxiboetako %sB/%sB eskuratu behar dira.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Iturburu artxiboetako %sB eskuratu behar dira.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "Eskuratu %s iturburua\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "Huts egin du zenbat artxibo lortzean." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "Deskarga amaituta eta deskarga soileko moduan" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" "%s(e)n dagoeneko deskonprimitutako iturburua deskonprimitzea saltatzen\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Deskonprimitzeko '%s' komandoak huts egin du.\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Egiaztatu 'dpkg-dev' paketea instalaturik dagoen.\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "Eraikitzeko '%s' komandoak huts egin du.\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "Prozesu umeak huts egin du" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "" "Gutxienez pakete bat zehaztu behar duzu eraikitze mendekotasunak egiaztatzeko" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Ezin izan da %s(r)en eraikitze mendekotasunen informazioa eskuratu" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s: ez du eraikitze mendekotasunik.\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -474,7 +475,7 @@ msgid "" msgstr "" "%2$s(r)en %1$s mendekotasuna ezin da bete, %3$s paketea ezin delako aurkitu" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -482,14 +483,14 @@ msgid "" msgstr "" "%2$s(r)en %1$s mendekotasuna ezin da bete, %3$s paketea ezin delako aurkitu" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Huts egin du %2$s(r)en %1$s mendekotasuna betetzean: instalatutako %3$s " "paketea berriegia da" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -498,7 +499,7 @@ msgstr "" "%2$s(r)en %1$s mendekotasuna ezin da bete, ez baitago bertsio-eskakizunak " "betetzen dituen %3$s paketearen bertsio erabilgarririk" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -506,30 +507,30 @@ msgid "" msgstr "" "%2$s(r)en %1$s mendekotasuna ezin da bete, %3$s paketea ezin delako aurkitu" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Huts egin du %2$s(r)en %1$s mendekotasuna betetzean: %3$s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "%s(r)en eraikitze mendekotasunak ezin izan dira bete." -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "Huts egin du eraikitze mendekotasunak prozesatzean" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "Konektatzen -> %s.(%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "Onartutako Moduluak:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -616,53 +617,75 @@ msgstr "" "sources.list(5) eta apt.conf(5) orrialdeak eskuliburuan.\n" " APT honek Super Behiaren Ahalmenak ditu.\n" -#: cmdline/apt-mark.cc:57 +#: 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:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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 "baina ez dago instalatuta" -#: cmdline/apt-mark.cc:63 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format msgid "%s was already set to manually installed.\n" msgstr "%s eskuz instalatua bezala ezarri.\n" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, fuzzy, c-format msgid "%s was already set to automatically installed.\n" msgstr "%s eskuz instalatua bezala ezarri.\n" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format msgid "%s was already set on hold.\n" msgstr "%s bertsiorik berriena da jada.\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, fuzzy, c-format msgid "%s was already not hold.\n" msgstr "%s bertsiorik berriena da jada.\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "%s espero zen baina ez zegoen han" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, fuzzy, c-format msgid "%s set on hold.\n" msgstr "%s eskuz instalatua bezala ezarri.\n" -#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316 +#: 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" -#: cmdline/apt-mark.cc:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" "\n" @@ -689,7 +712,7 @@ msgid "" "See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -738,52 +761,52 @@ msgstr "" msgid "Disk not found." msgstr "Ez da diska aurkitu" -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "Ez da fitxategia aurkitu" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: 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:82 methods/gzip.cc:113 methods/rred.cc:606 +#: 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:47 +#: methods/file.cc:48 msgid "Invalid URI, local URIS must not start with //" msgstr "URI baliogabea. URI lokalek ezin dute // eduki hasieran" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "Sartzen" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "Ezin izan da peer edo parekoaren izena zehaztu" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "Ezin izan da izen lokala zehaztu" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: 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" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "USERek huts egin du, eta zerbitzariak hau esan du: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "PASSek huts egin du, eta zerbitzariak hau esan du: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -791,124 +814,126 @@ msgstr "" "Proxy zerbitzari bat zehaztu da, baina sarrerako script-ik ez. Acquire::ftp::" "ProxyLogin hutsik dago." -#: methods/ftp.cc:275 +#: 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" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPEk huts egin du, eta zerbitzariak hau esan du: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 msgid "Connection timeout" msgstr "Konexioa denboraz kanpo" -#: methods/ftp.cc:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "Zerbitzariak konexioa itxi du" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "Irakurketa errorea" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "Erantzun batek bufferrari gainez eragin dio." -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "Protokolo hondatzea" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "Idazketa errorea" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: 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" -#: methods/ftp.cc:707 +#: 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" -#: methods/ftp.cc:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "Huts egin du" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "Ezin izan da socket pasibora konektatu." -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo-k ezin izan du socket entzule bat eskuratu" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "Ezin izan da socket bat lotu" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "Ezin izan da socket-ean entzun" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "Ezin izan da socket-aren izena zehaztu" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "Ezin da PORT komandoa bidali" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Helbide familia ezezagunaa: %u (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRTek huts egin du, eta zerbitzariak hau esan du: %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "Datu-socket konexioak denbora muga gainditu du" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "Ezin da konexioa onartu" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "Arazoa fitxategiaren hash egitean" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Ezin da fitxategia lortu; zerbitzariak hau esan du: '%s'" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "Datu-socketak denbora muga gainditu du" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Datu transferentziak huts egin du, eta zerbitzariak hau esan du: '%s'" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "Kontsulta" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "Ezin da deitu " @@ -945,7 +970,7 @@ msgstr "Ezin izan da konektatu -> %s:%s (%s)" #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "Konektatzen -> %s..." @@ -975,37 +1000,37 @@ msgstr "Zerbait arraroa pasatu da '%s:%s' (%i) ebaztean" msgid "Unable to connect to %s:%s:" msgstr "Ezin da konektatu -> %s %s:" -#: methods/gpgv.cc:166 +#: 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:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "Beintza sinadura baliogabe bat aurkitu da." -#: methods/gpgv.cc:172 +#: 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?)" #. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "Errore ezezaguna gpgv exekutatzean" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Ondorengo sinadurak baliogabeak dira:\n" -#: methods/gpgv.cc:229 +#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@ -1013,148 +1038,148 @@ msgstr "" "Ondorengo sinadurak ezin dira egiaztatu gako publikoa ez bait dago " "eskuragarri:\n" -#: methods/gzip.cc:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "Errorea fitxategian idaztean" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "Errorea zerbitzaritik irakurtzen Urrunetik amaitutako konexio itxiera" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "Errorea zerbitzaritik irakurtzean" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "Errorea fitxategian idaztean" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "Hautapenak huts egin du" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "Konexioaren denbora muga gainditu da" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "Errorea irteerako fitxategian idaztean" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "Goiburuen zain" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "Okerreko goiburu-lerroa" -#: methods/server.cc:139 methods/server.cc:146 +#: methods/server.cc:134 methods/server.cc:141 msgid "The HTTP server sent an invalid reply header" msgstr "http zerbitzariak erantzun goiburu baliogabe bat bidali du." -#: methods/server.cc:176 +#: methods/server.cc:171 msgid "The HTTP server sent an invalid Content-Length header" msgstr "http zerbitzariak Content-Length buru baliogabe bat bidali du" -#: methods/server.cc:199 +#: methods/server.cc:194 msgid "The HTTP server sent an invalid Content-Range header" msgstr "http zerbitzariak Content-Range buru baliogabe bat bidali du" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "http zerbitzariak barruti onarpena apurturik du" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "Datu formatu ezezaguna" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "Goiburu data gaizki dago" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "Konexioak huts egin du" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "Barne errorea" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Barne errorea, InstallPackages apurturiko paketeez deitu da!" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "Paketeak ezabatu beharra dute baina Ezabatzea ezgaiturik dago." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "Barne errorea, ez da ordenatzeaz amaitu" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +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 " +"Hau bitxia... Tamainak ez dira berdina, idatzi apt@packages.debian.org-ra " "berri emanez (ingelesez)" #. TRANSLATOR: The required 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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Artxiboetako %sB/%sB eskuratu behar dira.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:171 +#: apt-private/private-install.cc:159 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Artxiboetako %sB eskuratu behar dira.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:178 +#: apt-private/private-install.cc:166 #, 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" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:183 +#: apt-private/private-install.cc:171 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Ekintza honen ondoren, %sB libratuko dira diskoan.\n" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "Ez daukazu nahikoa leku libre %s(e)n." -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "Arazoak daude, eta -y erabili da --force-yes gabe" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 msgid "Trivial Only specified but this is not a trivial operation." msgstr "'Trivial Only' zehaztu da, baina hau ez da eragiketa tribial bat." #. 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Bai, egin esandakoa!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1165,19 +1190,19 @@ msgstr "" "Jarraitzeko, idatzi '%s' esaldia\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "Abortatu." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "Aurrera jarraitu nahi al duzu?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "Fitxategi batzuk ezin izan dira deskargatu" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1185,19 +1210,19 @@ msgstr "" "Ezin izan dira artxibo batzuk lortu; beharbada apt-get update exekutatu, edo " "--fix-missing aukerarekin saiatu?" -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing eta euskarri aldaketa ez dira onartzen oraingoz" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "Falta diren paketeak ezin dira zuzendu." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "Abortatu instalazioa." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1207,15 +1232,15 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Suposatu ez dugun zerbait ezabatuko da, ezin da AutoRemover abiarazi" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1233,15 +1258,15 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 msgid "The following information may help to resolve the situation:" msgstr "Informazio honek arazoa konpontzen lagun dezake:" -#: apt-private/private-install.cc:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "Barne Errorea, AutoRemover-ek zerbait apurtu du" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1255,7 +1280,7 @@ msgstr[1] "" "Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago " "behar." -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1267,18 +1292,18 @@ msgstr[1] "" "Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago " "behar." -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 #, fuzzy msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "'apt-get autoremove' erabili ezabatzeko." msgstr[1] "'apt-get autoremove' erabili ezabatzeko." -#: apt-private/private-install.cc:624 +#: apt-private/private-install.cc:612 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Beharbada 'apt-get -f install' exekutatu nahiko duzu hauek zuzentzeko:" -#: apt-private/private-install.cc:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1286,7 +1311,7 @@ msgstr "" "Bete gabeko mendekotasunak. Probatu 'apt-get -f install' paketerik gabe (edo " "zehaztu konponbide bat)." -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1298,145 +1323,145 @@ msgstr "" "beharrezko pakete batzuk ez ziren sortuko oraindik, edo \n" "Sarrerakoetan (Incoming) egoten jarraituko dute." -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "Hautsitako paketeak" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "Ondorengo pakete gehigarriak instalatuko dira:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "Iradokitako paketeak:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "Gomendatutako paketeak:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "KONTUZ: Hurrengo paketeak ezin dira egiaztatu!" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "Egiaztapen abisua gainidazten.\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "Zenbait pakete ezin dira egiaztatu" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "Paketeak egiaztapen gabe instalatu?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Ezin da lortu %s %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [Instalatuta]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [Instalatuta]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [Instalatuta]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [Instalatuta]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "Ondorengo paketeetan bete gabeko mendekotasunak daude:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "baina %s instalatuta dago" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "baina %s instalatzeko dago" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "baina ez da instalagarria" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "baina pakete birtuala da" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "baina ez dago instalatuta" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "baina ez da instalatuko" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " edo" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "Ondorengo pakete BERRIAK instalatuko dira:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "Ondorengo paketeak KENDUKO dira:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "Ondorengo paketeak mantendu egin dira:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "Ondorengo paketeak bertsio-berrituko dira:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "Ondorengo paketeak AURREKO BERTSIORA itzuliko dira:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "Ondorengo pakete atxikiak aldatu egingo dira:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (arrazoia: %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1444,27 +1469,27 @@ msgstr "" "KONTUZ: Ondorengo funtsezko paketeak kendu egingo dira\n" "EZ ezazu horrelakorik egin, ez badakizu ondo zertan ari zaren!" -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu bertsio berritua(k), %lu berriki instalatuta, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu berrinstalatuta, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu aurreko bertsiora itzulita, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu kentzeko, eta %lu bertsio-berritu gabe.\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu ez erabat instalatuta edo kenduta.\n" @@ -1473,7 +1498,7 @@ msgstr "%lu ez erabat instalatuta edo kenduta.\n" #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "[B/e]" @@ -1481,91 +1506,91 @@ msgstr "[B/e]" #. 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:702 +#: apt-private/private-output.cc:708 msgid "[y/N]" msgstr "[b/E]" #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "Adierazpen erregularren konpilazio errorea - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "Mendekotasunak zuzentzen..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " : huts egin du." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "Ezin dira mendekotasunak zuzendu" -#: apt-private/private-cachefile.cc:96 +#: 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:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " Eginda" -#: apt-private/private-cachefile.cc:102 +#: 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-private/private-cachefile.cc:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "Bete gabeko mendekotasunak. Probatu -f erabiliz." -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "Eguneratzeko komandoak ez du argumenturik hartzen" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "Berriketak kalkulatzen... " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "Barne Errorea, AllUpgade-k zerbait apurtu du" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "Eginda" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1573,43 +1598,43 @@ msgid "" " so don't depend on the relevance to the real current situation!" msgstr "" -#: apt-private/private-sources.cc:45 +#: 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" -#: apt-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "Atzituta " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "Hartu:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "Ez ikusi " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Err " -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "Lortuta: %sB (%s) (%sB/s)\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [Lanean]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1622,19 +1647,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "Ezin da %s irakurri" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "Ezin da %s(e)ra aldatu" @@ -1663,11 +1688,11 @@ msgstr "%s fitxategia ezin izan da ireki" msgid "[Mirror: %s]" msgstr "" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: 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:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "Konexioa behar baino lehenago itxi da" @@ -1733,40 +1758,45 @@ msgstr "" " -c=? Irakurri konfigurazio fitxategi hau\n" " -o=? Ezarri konfigurazio aukera arbitrario bat. Adib.: -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: 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:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "%s : ezin da idatzi" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Ezin da debconf bertsioa eskuratu. Debconf instalatuta dago?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "Pakete luzapenen zerrenda luzeegia da" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "Errorea direktorioa prozesatzean %s" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "Iturburu luzapenen zerrenda luzeegia da" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "Errorea eduki fitxategiaren goiburua idaztean" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "Errorea edukiak prozesatzean %s" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1845,26 +1875,26 @@ msgstr "" " -c=? Irakurri konfigurazio fitxategi hau\n" " -o=? Ezarri konfigurazio aukera arbitrario bat" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "Ez dago bat datorren hautapenik" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Fitxategi batzuk falta dira `%s' pakete fitxategien taldean" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, 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:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "Datu-basea zaharra da; %s bertsio-berritzen saiatzen ari da" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 #, fuzzy msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " @@ -1873,192 +1903,192 @@ msgstr "" "DB formatu baliogabe da. Apt bertsio zaharrago batetik eguneratu baduzu, " "mesedez datubasea ezabatu eta birsortu." -#: ftparchive/cachedb.cc:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Ezin da ireki %s datu-base fitxategia: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "Huts egin du %s(e)tik datuak lortzean" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "Artxiboak ez du kontrol erregistrorik" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "Ezin da kurtsorerik eskuratu" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "A: Ezin da %s direktorioa irakurri\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "A: Ezin da %s atzitu\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "A: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "E: Erroreak fitxategiari dagozkio " -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "Huts egin du %s ebaztean" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "Huts egin dute zuhaitz-urratsek" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "Huts egin du %s irekitzean" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "Huts egin du %s esteka irakurtzean" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "Huts egin du %s desestekatzean" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Ezin izan da %s %s(r)ekin estekatu" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " DeLink-en mugara (%sB) heldu da.\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "Artxiboak ez du pakete eremurik" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %s: ez du override sarrerarik\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s mantentzailea %s da, eta ez %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr " %s: ez du jatorri gainidazketa sarrerarik\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s: ez du bitar gainidazketa sarrerarik\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - Huts egin du memoria esleitzean" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "Ezin da %s ireki" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "Gaizki osatutako override %s, lerroa: %lu #1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "Huts egin du %s override fitxategia irakurtzean" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, fuzzy, c-format msgid "Malformed override %s line %llu #1" msgstr "Gaizki osatutako override %s, lerroa: %lu #1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, fuzzy, c-format msgid "Malformed override %s line %llu #2" msgstr "Gaizki osatutako override %s, lerroa: %lu #2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, fuzzy, c-format msgid "Malformed override %s line %llu #3" msgstr "Gaizki osatutako override %s, lerroa: %lu #3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "'%s' Konpresio Algoritmo Ezezaguna" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "%s irteera konprimituak konpresio-tresna bat behar du" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "Huts egin du FILE* sortzean" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "Huts egin du sardetzean" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "Konprimatu Umeak" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "Barne Errorea, Huts %s sortzerakoan" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "Huts egin du azpiprozesu/fitxategiko S/Iak" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "Huts egin du MD5 konputatzean" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "Arazoa %s desestekatzean" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "Huts egin du %s izenaren ordez %s ipintzean" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -2111,157 +2141,157 @@ msgstr "" " -c=? Irakurri konfigurazio fitxategi hau\n" " -o=? Ezarri konfigurazio aukera arbitrario bat. Adib: -o dir::cache=/tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "Huts egin du kanalizazioak sortzean" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "Huts egin du gzip exekutatzean " -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "Hondatutako artxiboa" -#: apt-inst/contrib/extracttar.cc:201 +#: apt-inst/contrib/extracttar.cc:203 msgid "Tar checksum failed, archive corrupted" msgstr "Tar egiaztapenak huts egin, hondatutakofitxategia" -#: apt-inst/contrib/extracttar.cc:306 +#: apt-inst/contrib/extracttar.cc:308 #, c-format msgid "Unknown TAR header type %u, member %s" msgstr "%u TAR goiburu mota ezezaguna, %s kidea" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "Artxibo sinadura baliogabea" -#: apt-inst/contrib/arfile.cc:82 +#: apt-inst/contrib/arfile.cc:84 msgid "Error reading archive member header" msgstr "Errorea artxiboko kidearen goiburua irakurtzean" -#: apt-inst/contrib/arfile.cc:94 +#: 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:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "Artxiboko kidearen goiburua baliogabea da" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "Artxiboa laburregia da" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "Huts egin artxibo goiburuak irakurtzean" -#: apt-inst/filelist.cc:382 +#: 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:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "Huts egin du hash-elementua lokalizatzean!" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "Huts egin du desbideratzea lokalizatzean" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "AddDiversion-n barne errorea" -#: apt-inst/filelist.cc:479 +#: 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:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "Desbideratzearen gehitze bikoitza: %s -> %s" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "Konfigurazio fitxategi bikoiztua: %s/%s" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: 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" -#: apt-inst/dirstream.cc:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "Ezin izan da %s fitxategia itxi" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: 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:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "%s behin baino gehiagotan deskonprimitzen" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "%s direktorioa desbideratuta dago" -#: apt-inst/extract.cc:145 +#: apt-inst/extract.cc:152 #, 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:155 apt-inst/extract.cc:299 +#: 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:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "%s direktorioa ez-direktorio batekin ordezten ari da" -#: apt-inst/extract.cc:282 +#: 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:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "Bidea luzeegia da" -#: apt-inst/extract.cc:414 +#: 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" -#: apt-inst/extract.cc:431 +#: apt-inst/extract.cc:438 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "%s/%s fitxategiak %s paketekoa gainidazten du" -#: apt-inst/extract.cc:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "Ezin da daturik lortu %s(e)tik" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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 "Ez da baliozko DEB artxiboa; '%s' kidea falta da" -#: apt-inst/deb/debfile.cc:124 +#: apt-inst/deb/debfile.cc:132 #, c-format msgid "Internal error, could not locate member %s" msgstr "Barne Errorea, ezin da %s atala kokatu" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "Kontrol fitxategi ezin analizagarria" @@ -2320,498 +2350,503 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "%s hautapena ez da aurkitu" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Mota ezezaguneko laburtzapena: '%c'" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "%s konfigurazio fitxategia irekitzen" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Sintaxi errorea, %s:%u: Blokearen hasieran ez dago izenik." -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Sintaxi errorea %s:%u: Gaizki eratutako" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Sintaxi errorea, %s:%u: Zabor gehigarria balioaren ondoren" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "Sintaxi errorea, %s:%u: Direktibak goi-mailan bakarrik egin daitezke" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Sintaxi errorea, %s:%u: habiaratutako elementu gehiegi" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Sintaxi errorea, %s:%u: hemendik barne hartuta" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Sintaxi errorea, %s:%u: onartu gabeko '%s' direktiba" -#: apt-pkg/contrib/configuration.cc:884 +#: 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-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Sintaxi errorea, %s:%u: Zabor gehigarria fitxategi amaieran" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... Errorea!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... Eginda" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s... Eginda" -#: apt-pkg/contrib/cmndline.cc:116 +#: 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-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: 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-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "%s aukerak argumentu bat behar du." -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "" "%s aukera: konfigurazio elementuaren zehaztapenak =<val> eduki behar du." -#: apt-pkg/contrib/cmndline.cc:273 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format msgid "Option %s requires an integer argument, not '%s'" msgstr "%s aukerak osoko argumentu bat behar du, eta ez '%s'" -#: apt-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "'%s' aukera luzeegia da" -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "%s zentzua ez da ulertzen; probatu egiazkoa edo faltsua." -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "Eragiketa baliogabea: %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format msgid "Unable to stat the mount point %s" msgstr "Ezin da atzitu %s muntatze puntua" -#: apt-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "Huts egin du CDROMa atzitzean" -#: apt-pkg/contrib/fileutl.cc:95 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Arazoa fitxategia ixtean" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, 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-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "Ezin izan da %s blokeo fitxategia ireki" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "" "Ez da blokeorik erabiltzen ari nfs %s muntatutako blokeo fitxategiarentzat" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "Ezin izan da %s blokeoa hartu" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "%s azpiprozesuak segmentaziuo hutsegitea jaso du." -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "%s azpiprozesuak segmentaziuo hutsegitea jaso du." -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 apt-pkg/contrib/gpgv.cc:239 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "%s azpiprozesuak errore kode bat itzuli du (%u)" -#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "%s azpiprozesua ustekabean amaitu da" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Arazoa fitxategia ixtean" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "%s fitxategia ezin izan da ireki" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "Ezin izan da %s(r)en kanalizazioa ireki" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "Huts egin du IPC azpiprozesua sortzean" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "Huts egin du konpresorea exekutatzean " -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, fuzzy, c-format msgid "read, still have %llu to read but none left" msgstr "irakurrita; oraindik %lu irakurtzeke, baina ez da ezer geratzen" -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, fuzzy, c-format msgid "write, still have %llu to write but couldn't" msgstr "idatzita; oraindik %lu idazteke, baina ezin da" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "Arazoa fitxategia ixtean" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "Arazoa fitxategia sinkronizatzean" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "Arazoa fitxategia desestekatzean" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "Arazoa fitxategia sinkronizatzean" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "huts egin du izen-aldaketak, %s (%s -> %s)." + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, fuzzy, c-format msgid "No keyring installed in %s." msgstr "Abortatu instalazioa." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "Paketeen katxea hutsik" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "Paketeen katxe fitxategia hondatuta dago" -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "Paketeen katxe fixategiaren bertsioa ez da bateragarria" -#: apt-pkg/pkgcache.cc:162 +#: apt-pkg/pkgcache.cc:169 #, fuzzy msgid "The package cache file is corrupted, it is too small" msgstr "Paketeen katxe fitxategia hondatuta dago" -#: apt-pkg/pkgcache.cc:167 +#: 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" -#: apt-pkg/pkgcache.cc:172 +#: apt-pkg/pkgcache.cc:179 msgid "The package cache was built for a different architecture" msgstr "Paketeen katxea beste arkitektura batentzat sortuta dago" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "Mendekotasuna:" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "Aurremendekotasuna:" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "Iradokizuna:" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "Gomendioa:" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "Gatazka:" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "Ordeztea:" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "Zaharkitzea:" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "Apurturik" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "garrantzitsua" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "beharrezkoa" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "estandarra" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "aukerakoa" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "estra" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "Dependentzia zuhaitza eraikitzen" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "Hautagaien bertsioak" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "Dependentzi Sormena" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: 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:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "Huts egin du %s EgoeraFitxategia irekitzean" -#: apt-pkg/depcache.cc:250 +#: 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:138 +#: apt-pkg/tagfile.cc:140 #, c-format msgid "Unable to parse package file %s (1)" msgstr "Ezin da %s pakete fitxategia analizatu (1)" -#: apt-pkg/tagfile.cc:235 +#: apt-pkg/tagfile.cc:237 #, c-format msgid "Unable to parse package file %s (2)" msgstr "Ezin da %s pakete fitxategia analizatu (2)" -#: apt-pkg/sourcelist.cc:118 +#: 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-pkg/sourcelist.cc:161 +#: 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-pkg/sourcelist.cc:164 +#: 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-pkg/sourcelist.cc:175 +#: 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-pkg/sourcelist.cc:181 +#: 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-pkg/sourcelist.cc:184 +#: 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-pkg/sourcelist.cc:197 +#: 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-pkg/sourcelist.cc:199 +#: 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)" -#: apt-pkg/sourcelist.cc:202 +#: apt-pkg/sourcelist.cc:211 #, c-format msgid "Malformed line %lu in source list %s (URI parse)" msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (URI analisia)" -#: apt-pkg/sourcelist.cc:208 +#: apt-pkg/sourcelist.cc:217 #, c-format msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "Gaizkieratutako %lu lerroa %s iturburu zerrendan (banaketa orokorra)" -#: apt-pkg/sourcelist.cc:215 +#: 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)" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "%s irekitzen" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "%2$s iturburu zerrendako %1$u lerroa luzeegia da." -#: apt-pkg/sourcelist.cc:362 +#: apt-pkg/sourcelist.cc:371 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Gaizki osatutako %u lerroa %s Iturburu zerrendan (type)" -#: apt-pkg/sourcelist.cc:366 +#: 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" -#: apt-pkg/sourcelist.cc:407 +#: 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" -#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, 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:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "%s fitxategia ezin izan da ireki" -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2823,19 +2858,19 @@ msgstr "" "izaten da, baina hala ere egin nahi baduzu, aktibatu APT::Force-LoopBreak " "aukera." -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "'%s' motako indize fitxategirik ez da onartzen" -#: apt-pkg/algorithms.cc:266 +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" "%s paketea berriro instalatu behar da, baina ezin dut artxiborik aurkitu." -#: apt-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2843,213 +2878,208 @@ msgstr "" "Errorea: pkgProblemResolver::Resolve. Etenak sortu ditu, beharbada " "atxikitako paketeek eraginda." -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "Ezin dira arazoak konpondu; hautsitako paketeak atxiki dituzu." -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, fuzzy, c-format msgid "List directory %spartial is missing." msgstr "%spartial zerrenda-direktorioa falta da." -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, fuzzy, c-format msgid "Archives directory %spartial is missing." msgstr "%spartial artxibo direktorioa falta da." -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, fuzzy, c-format msgid "Unable to lock directory %s" msgstr "Ezin da zerrenda direktorioa blokeatu" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "%li fitxategi deskargatzen %li -tik (%s falta da)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "%li fitxategia jasotzen %li-tik" -#: apt-pkg/acquire-worker.cc:113 +#: 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." -#: apt-pkg/acquire-worker.cc:115 +#: apt-pkg/acquire-worker.cc:118 #, fuzzy, c-format msgid "Is the package %s installed?" msgstr "Egiaztatu 'dpkg-dev' paketea instalaturik dagoen.\n" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "%s metodoa ez da behar bezala abiarazi" -#: apt-pkg/acquire-worker.cc:452 +#: 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" -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "'%s' pakete sistema ez da onartzen" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "Ezin da pakete sistemaren mota egokirik zehaztu" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "Ezin da %s atzitu." -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "'Iturburu' URI batzuk jarri behar dituzu sources.list-en" -#: apt-pkg/cachefile.cc:87 +#: 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." -#: apt-pkg/cachefile.cc:91 +#: 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" -#: apt-pkg/cachefile.cc:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "Ezin izan da Iturburu zerrenda irakurri." -#: apt-pkg/policy.cc:75 +#: 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 "" -#: apt-pkg/policy.cc:414 +#: 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:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "Ez da ulertu %s orratz-mota (pin)" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "Ez da lehentasunik zehaztu orratzarentzat (pin) (edo zero da)" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 msgid "Cache has an incompatible versioning system" msgstr "Katxearen bertsio sistema ez da bateragarria" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: 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)" -#: apt-pkg/pkgcachegen.cc:251 +#: 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." -#: apt-pkg/pkgcachegen.cc:254 +#: 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." -#: apt-pkg/pkgcachegen.cc:257 +#: 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." -#: apt-pkg/pkgcachegen.cc:260 +#: 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." -#: apt-pkg/pkgcachegen.cc:570 +#: 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" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "Ezin da atzitu %s iturburu paketeen zerrenda" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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" -#: apt-pkg/pkgcachegen.cc:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "Fitxategiaren erreferentziak biltzen" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 msgid "IO Error saving source cache" msgstr "S/I errorea iturburu katxea gordetzean" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "huts egin du izen-aldaketak, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "Egiaztapena ez dator bat" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "Tamaina ez dator bat" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "Eragiketa baliogabea: %s" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, 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:1586 +#: apt-pkg/acquire-item.cc:1595 #, 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:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "Ez dago gako publiko erabilgarririk hurrengo gako ID hauentzat:\n" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " "repository will not be applied." msgstr "" -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3057,12 +3087,12 @@ msgid "" msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3071,12 +3101,12 @@ msgstr "" "Ezin izan dut %s paketeko fitxategi bat lokalizatu. Beharbada eskuz konpondu " "beharko duzu paketea. (arkitektura falta delako)" -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -3084,71 +3114,67 @@ msgstr "" "Paketearen indize fitxategiak hondatuta daude. 'Filename:' eremurik ez %s " "paketearentzat." -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, fuzzy, c-format msgid "Unable to parse Release file %s" msgstr "Ezin da %s pakete fitxategia analizatu (1)" -#: apt-pkg/indexrecords.cc:81 +#: 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-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "" -#: apt-pkg/indexrecords.cc:125 +#: apt-pkg/indexrecords.cc:130 #, fuzzy, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Lerro baliogabea desbideratze fitxategian: %s" -#: apt-pkg/indexrecords.cc:144 +#: 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-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "%s saltzaile blokeak ez du egiaztapen markarik" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "%s CD-ROM muntatze puntua erabiltzen\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "CD-ROM-a desmuntatzen\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "CD-ROM Desmuntatzen...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "Diska itxaroten...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "CD-ROM-a muntatzen...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " msgstr "Egiaztatzen... " -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "Gordetako Etiketa: %s \n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "CD-ROM Desmuntatzen...\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" msgstr "Indize fitxategien bila diska arakatzen...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3157,22 +3183,22 @@ msgstr "" "%zu pakete indize, %zu jatorri indize %zu itzulpen indize eta %zu sinadura " "aurkitu dira\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "Aurkitutako Etiketa: '%s' \n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "Hau ez baliozko izen bat, froga berriro.\n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3181,34 +3207,34 @@ msgstr "" "Diskaren izen:\n" "'%s'\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "Pakete zerrendak kopiatzen..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "Jatorri zerrenda berria idazten\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "Diskoarentzako jatorri sarrerak:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: 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:777 +#: 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:780 +#: 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" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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 "" @@ -3224,88 +3250,88 @@ msgstr "" msgid "Hash mismatch for: %s" msgstr "Egiaztapena ez dator bat" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, 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:482 +#: apt-pkg/cacheset.cc:490 #, 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:593 +#: apt-pkg/cacheset.cc:601 #, fuzzy, c-format msgid "Couldn't find task '%s'" msgstr "Ezin izan da %s zeregina aurkitu" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, fuzzy, c-format msgid "Couldn't find any package by regex '%s'" msgstr "Ezin izan da %s paketea aurkitu" -#: apt-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "Ezin izan da %s paketea aurkitu" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, c-format msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " "neither of them" msgstr "" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, c-format msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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 " @@ -3314,167 +3340,167 @@ msgstr "" "Indize fitxategi batzuk ezin izan dira deskargatu; ez ikusi egin zaie, edo " "zaharrak erabili dira haien ordez." -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "%s Instalatzen" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "%s konfiguratzen" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "%s kentzen" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, fuzzy, c-format msgid "Completely removing %s" msgstr "%s guztiz ezabatu da" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "Inbstalazio-ondorengo %s abiarazlea exekutatzen" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "'%s' direktorioa falta da" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: 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-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "%s prestatzen" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "%s irekitzen" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "%s konfiguratzeko prestatzen" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "%s Instalatuta" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "%s kentzeko prestatzen" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "%s kendurik" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "%s guztiz ezabatzeko prestatzen" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "%s guztiz ezabatu da" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "%s : ezin da idatzi" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 msgid "" "No apport report written because the error message indicates an issue on the " "local system" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " "it?" msgstr "" -#: apt-pkg/deb/debsystem.cc:87 +#: 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" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " msgstr "" -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.5.26\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2008-12-11 14:52+0200\n" "Last-Translator: Tapio Lehtonen <tale@debian.org>\n" "Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\n" @@ -18,154 +18,155 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: cmdline/apt-cache.cc:140 +#: 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" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "Pakettien kokonaismäärä : " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 #, fuzzy msgid "Total package structures: " msgstr "Pakettien kokonaismäärä : " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " Tavallisia paketteja: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " Aitoja näennäispaketteja: " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " Yksinkertaisia näennäispaketteja: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " Sekanäennäispaketteja: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " Puuttuu: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "Eri versioita yhteensä: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "Eri kuvauksia yhteensä: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "Riippuvuuksia yhteensä: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "Versio/tdsto suhteita yht: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "Kuvaus/tdsto suhteita yht: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "Tarjoamiskuvauksia yhteensä: " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "Erilaisia merkkijonoja yhteensä: " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "Versioriippuvuustila yhteensä: " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "Löysää tilaa yhteensä: " -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "Käytetty tila yhteensä: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: 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." -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 #, fuzzy msgid "You must give at least one search pattern" msgstr "On annettava täsmälleen yksi lauseke" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "Pakettia %s ei löydy" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "Pakettitiedostot:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: 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" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "Paketit joissa tunniste:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(ei löydy)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " Asennettu: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " Ehdokas: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(ei mitään)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " Paketin tunnistenumero: " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " Versiotaulukko:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s laitealustalle %s käännöksen päiväys %s %s\n" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -237,29 +238,29 @@ msgstr "" " -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:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: 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\"" -#: cmdline/apt-cdrom.cc:104 +#: cmdline/apt-cdrom.cc:91 msgid "Please insert a Disc in the drive and press enter" msgstr "Aseta levy asemaan ja paina Enter" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, fuzzy, c-format msgid "Failed to mount '%s' to '%s'" msgstr "Nimen muuttaminen %s -> %s ei onnistunut" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Toista tämä lopuille rompuille kasassasi." @@ -295,65 +296,65 @@ msgstr "" " -c=? Lue tämä asetustiedosto\n" " -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:244 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format msgid "Can not find a package for architecture '%s'" msgstr "Pakettia %s ei löytynyt" -#: cmdline/apt-get.cc:326 +#: cmdline/apt-get.cc:327 #, fuzzy, c-format msgid "Can not find a package '%s' with version '%s'" msgstr "Pakettia %s ei löytynyt" -#: cmdline/apt-get.cc:329 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format msgid "Can not find a package '%s' with release '%s'" msgstr "Pakettia %s ei löytynyt" -#: cmdline/apt-get.cc:366 +#: 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" -#: cmdline/apt-get.cc:422 +#: cmdline/apt-get.cc:423 #, c-format msgid "Can not find version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "Pakettia %s ei löytynyt" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: 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:468 cmdline/apt-mark.cc:116 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: 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:573 cmdline/apt-get.cc:610 +#: 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:725 +#: 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:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "Paketin %s lähdekoodipakettia ei löytynyt" @@ -373,96 +374,96 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Ohitetaan jo noudettu tiedosto \"%s\"\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "Kansion %s vapaan tilan määrä ei selvinnyt" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "Kansiossa %s ei ole riittävästi vapaata tilaa" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "On noudettava %st/%st lähdekoodiarkistoja.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "On noudettava %st lähdekoodiarkistoja.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "Nouda lähdekoodi %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "Joidenkin arkistojen noutaminen ei onnistunut." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "Nouto on valmis ja määrätty vain nouto" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Ohitetaan purku jo puretun lähdekoodin %s kohdalla\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Purkukomento \"%s\" ei onnistunut.\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Tarkista onko paketti \"dpkg-dev\" asennettu.\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "Paketointikomento \"%s\" ei onnistunut.\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "Lapsiprosessi kaatui" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "" "On annettava ainakin yksi paketti jonka paketointiriippuvuudet tarkistetaan" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Paketille %s ei ole saatavilla riippuvuustietoja" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "Paketille %s ei ole määritetty paketointiriippuvuuksia.\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -470,7 +471,7 @@ msgid "" msgstr "" "riippuvuutta %s paketille %s ei voi tyydyttää koska pakettia %s ei löydy" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -478,14 +479,14 @@ msgid "" msgstr "" "riippuvuutta %s paketille %s ei voi tyydyttää koska pakettia %s ei löydy" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Riippuvutta %s paketille %s ei voi tyydyttää: Asennettu paketti %s on liian " "uusi" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -494,7 +495,7 @@ msgstr "" "%s riippuvuutta paketille %s ei voi tyydyttää koska mikään paketin %s versio " "ei vastaa versioriippuvuuksia" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -502,30 +503,30 @@ msgid "" msgstr "" "riippuvuutta %s paketille %s ei voi tyydyttää koska pakettia %s ei löydy" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Riippuvuutta %s paketille %s ei voi tyydyttää: %s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Paketointiriippuvuuksia paketille %s ei voi tyydyttää." -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "Paketointiriippuvuuksien käsittely ei onnistunut" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "Avataan yhteys %s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "Tuetut moduulit:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -611,53 +612,75 @@ msgstr "" "lisätietoja ja lisää valitsimia.\n" " This APT has Super Cow Powers.\n" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "On annettava ainakin yksi paketti jonka lähdekoodi noudetaan" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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 "mutta ei ole asennettu" -#: cmdline/apt-mark.cc:63 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format msgid "%s was already set to manually installed.\n" msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, fuzzy, c-format msgid "%s was already set to automatically installed.\n" msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format msgid "%s was already set on hold.\n" msgstr "%s on jo uusin versio.\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, fuzzy, c-format msgid "%s was already not hold.\n" msgstr "%s on jo uusin versio.\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Odotettiin %s, mutta sitä ei ollut" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: 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" -#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316 +#: 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" -#: cmdline/apt-mark.cc:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" "\n" @@ -684,7 +707,7 @@ msgid "" "See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -732,52 +755,52 @@ msgstr "Rompun %s irrottaminen ei onnistu, se on ehkä käytössä." msgid "Disk not found." msgstr "Levyä ei löydy" -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "Tiedostoa ei löydy" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: 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" -#: methods/copy.cc:82 methods/gzip.cc:113 methods/rred.cc:606 +#: 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" -#: methods/file.cc:47 +#: methods/file.cc:48 msgid "Invalid URI, local URIS must not start with //" msgstr "URI on kelvoton, paikallinen URI ei saa alkaa //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "Kirjaudutaan sisään" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "Vastapään nimeä ei saa selville" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "Paikallista nimeä ei saa selville" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: 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" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "USER ei onnistunut, palvelimen ilmoitus: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS ei onnistunut, palvelimen ilmoitus: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -785,121 +808,123 @@ msgstr "" "Määritettiin välipalvelin mutta ei komentotiedostoa kirjautumiseen, Acquire::" "ftp::ProxyLogin on tyhjä." -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Komentotiedoston rivi \"%s\" ei toiminut, palvelin ilmoitti: %s" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE ei toiminut, palvelin ilmoitti: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 msgid "Connection timeout" msgstr "Yhteys aikakatkaistiin" -#: methods/ftp.cc:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "Palvelin sulki yhteyden" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "Lukuvirhe" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "Vastaus aiheutti puskurin ylivuodon." -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "Yhteyskäytäntö on turmeltunut" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "Virhe kirjoitettaessa" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 msgid "Could not create a socket" msgstr "Pistoketta ei voitu luoda" -#: methods/ftp.cc:707 +#: methods/ftp.cc:712 msgid "Could not connect data socket, connection timed out" msgstr "Pistoketta ei voitu kytkeä, yhteys aikakatkaistiin" -#: methods/ftp.cc:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "Ei onnistunut" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "Passiivista pistoketta ei voitu kytkeä." -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo ei saanut kuuntelupistoketta" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "Pistoketta ei voitu nimetä" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "Pistoketta ei voitu kuunnella" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "Pistokkeen nimeä ei saatu selville" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "Komennon PORT lähetys ei onnistu" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Tuntematon osoiteperhe %u (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT ei onnistunut, palvelin ilmoitti: %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "Pistokkeen kytkeminen aikakatkaistiin" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "Yhteyttä ei voitu hyväksyä" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "Pulmia tiedoston hajautuksessa" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Tiedostoa ei saatu noudettua, palvelin ilmoitti \"%s\"" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "Pistoke aikakatkaistiin" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Tiedonsiirto ei onnistunut, palvelin ilmoitti \"%s\"" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "Kysely" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "Käynnistys ei onnistu" @@ -935,7 +960,7 @@ msgstr "Yhteyttä %s ei voitu muodostaa: %s (%s)" #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "Avataan yhteys %s" @@ -965,39 +990,39 @@ msgstr "Jotain kenkkua tapahtui selvitettäessä \"%s: %s\" (%i)" msgid "Unable to connect to %s:%s:" msgstr "Ei ole mahdollista muodostaa yhteyttä %s %s:" -#: methods/gpgv.cc:166 +#: 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:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "LÖytyi ainakin yksi kelvoton allekirjoitus." -#: methods/gpgv.cc:172 +#: 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?)" #. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "Tapahtui tuntematon virhe suoritettaessa gpgv" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Seuraavat allekirjoitukset eivät olleet kelvollisia:\n" -#: methods/gpgv.cc:229 +#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@ -1005,148 +1030,148 @@ msgstr "" "Seuraavia allekirjoituksia ei voinut varmentaa koska julkista avainta ei ole " "saatavilla:\n" -#: methods/gzip.cc:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "Tapahtui virhe kirjoitettaessa tiedostoon" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "Tapahtui virhe luettaessa palvelimelta. Etäpää sulki yhteyden" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "Tapahtui virhe luettaessa palvelimelta" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "Tapahtui virhe kirjoitettaessa tiedostoon" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "Select ei toiminut" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "Yhteys aikakatkaistiin" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "Tapahtui virhe kirjoitettaessa tulostustiedostoon" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "Odotetaan otsikoita" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "Virheellinen otsikkorivi" -#: methods/server.cc:139 methods/server.cc:146 +#: methods/server.cc:134 methods/server.cc:141 msgid "The HTTP server sent an invalid reply header" msgstr "HTTP-palvelin lähetti virheellisen vastausotsikon" -#: methods/server.cc:176 +#: methods/server.cc:171 msgid "The HTTP server sent an invalid Content-Length header" msgstr "HTTP-palvelin lähetti virheellisen Content-Length-otsikon" -#: methods/server.cc:199 +#: methods/server.cc:194 msgid "The HTTP server sent an invalid Content-Range header" msgstr "HTTP-palvelin lähetti virheellisen Content-Range-otsikon" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "HTTP-palvelimen arvoaluetuki on rikki" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "Tuntematon päiväysmuoto" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "Virheellinen otsikkotieto" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "Yhteys ei toiminut" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "Sisäinen virhe" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Sisäinen virhe, InstallPackages kutsuttiin rikkinäisille paketeille!" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "Paketteja pitäisi poistaa mutta Remove ei ole käytössä." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "Tapahtui sisäinen virhe, järjestäminen keskeytyi" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" "No jo on... Koot eivät täsmää, sähköpostita email apt@packages.debian.org" #. TRANSLATOR: The required 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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Noudettavaa arkistoa %st/%st.\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:171 +#: apt-private/private-install.cc:159 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Noudettavaa arkistoa %st.\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:178 +#: apt-private/private-install.cc:166 #, 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" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:183 +#: apt-private/private-install.cc:171 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Toiminnon jälkeen vapautuu %s t levytilaa.\n" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, 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:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 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:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "On määritetty Trivial Only mutta tämä ei ole itsestäänselvä toimenpide." #. 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Kyllä, tee kuten käsketään!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1157,19 +1182,19 @@ msgstr "" "Jatka kirjoittamalla \"%s\"\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "Keskeytä." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "Haluatko jatkaa?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "Joidenkin tiedostojen nouto ei onnistunut" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1177,19 +1202,19 @@ msgstr "" "Joidenkin arkistojen nouto ei onnistunut, ehkä \"apt-get update\" auttaa tai " "kokeile --fix-missing?" -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing ja taltion vaihto ei ole nyt tuettu" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "Puuttuvia paketteja ei voi korjata." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "Asennus keskeytetään." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1199,16 +1224,16 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "On tarkoitus olla poistamatta mitään, joten AutoRemover:ia ei voi käynnistää" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1226,15 +1251,15 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 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:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "Sisäinen virhe, AutoRemover rikkoi jotain" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1248,7 +1273,7 @@ msgstr[1] "" "Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää " "vaadittuja:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1260,18 +1285,18 @@ msgstr[1] "" "Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää " "vaadittuja:" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 #, fuzzy msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Poista ne komennolla \"apt-get autoremove\"." msgstr[1] "Poista ne komennolla \"apt-get autoremove\"." -#: apt-private/private-install.cc:624 +#: apt-private/private-install.cc:612 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Saatat haluta suorittaa \"apt-get -f install\" korjaamaan nämä:" -#: apt-private/private-install.cc:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1279,7 +1304,7 @@ msgstr "" "Kaikkia riippuvuuksia ei ole tyydytetty. Kokeile \"apt-get -f install\" " "ilmanpaketteja (tai ratkaise itse)." -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1290,145 +1315,145 @@ msgstr "" "jos käytetään epävakaata jakelua, joitain vaadittuja paketteja ei ole\n" "vielä luotu tai siirretty Incoming-kansiosta." -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "Rikkinäiset paketit" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "Seuraavat ylimääräiset paketit on merkitty asennettaviksi:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "Ehdotetut paketit:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "Suositellut paketit:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "VAROITUS: Seuraavian pakettien alkuperää ei voi varmistaa!" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "Varoitus varmistamisesta on ohitettu.\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "Joidenkin pakettien alkuperästä ei voitu varmistua" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "Asennetaanko nämä paketit ilman todennusta?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Tiedoston %s nouto ei onnistunut %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [Asennettu]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [Asennettu]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [Asennettu]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [Asennettu]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "Näillä paketeilla on tyydyttämättömiä riippuvuuksia:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "mutta %s on asennettu" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "mutta %s on merkitty asennettavaksi" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "mutta ei ole asennuskelpoinen" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "mutta on näennäispaketti" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "mutta ei ole asennettu" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "mutta ei ole merkitty asennettavaksi" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " tai" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "Seuraavat UUDET paketit asennetaan:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "Seuraavat paketit POISTETAAN:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "Nämä paketit on jätetty odottamaan:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "Nämä paketit päivitetään:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "Nämä paketit VARHENNETAAN:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "Seuraavat pysytetyt paketit muutetaan:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (syynä %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1436,27 +1461,27 @@ 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-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu päivitetty, %lu uutta asennusta, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu uudelleen asennettua, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu varhennettua, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu poistettavaa ja %lu päivittämätöntä.\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu ei asennettu kokonaan tai poistettiin.\n" @@ -1465,7 +1490,7 @@ msgstr "%lu ei asennettu kokonaan tai poistettiin.\n" #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "[K/e]" @@ -1473,91 +1498,91 @@ msgstr "[K/e]" #. 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:702 +#: apt-private/private-output.cc:708 msgid "[y/N]" msgstr "" #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "K" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "Käännösvirhe lausekkeessa - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "Korjataan riippuvuuksia..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " ei onnistunut." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "Riippuvuuksien korjaus ei onnistu" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "Päivitysjoukon minimointi ei onnistu" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " Valmis" -#: apt-private/private-cachefile.cc:102 +#: 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-private/private-cachefile.cc:105 +#: 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-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "Komento update ei käytä parametreja" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "Käsitellään päivitystä ... " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "Sisäinen virhe, AllUpgrade rikkoi jotain" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "Valmis" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1565,43 +1590,43 @@ msgid "" " so don't depend on the relevance to the real current situation!" msgstr "" -#: apt-private/private-sources.cc:45 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format msgid "Failed to parse %s. Edit again? " msgstr "Nimen muuttaminen %s -> %s ei onnistunut" -#: apt-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "Löytyi " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "Nouda:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "Siv " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Vrhe " -#: apt-private/acqprogress.cc:143 +#: 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:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [Työskennellään]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1614,19 +1639,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "Tiedostoa %s ei voi lukea" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "Kansioon %s vaihto ei onnistu" @@ -1655,11 +1680,11 @@ msgstr "Tiedostoa %s ei voitu avata" msgid "[Mirror: %s]" msgstr "" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 msgid "Failed to create IPC pipe to subprocess" msgstr "IPC-putken luominen aliprosessiin ei onnistunut" -#: methods/rsh.cc:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "Yhteys katkesi ennenaikaisesti" @@ -1726,41 +1751,46 @@ msgstr "" " -c=? Lue tämä asetustiedosto\n" " -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Tiedostolle %s ei toimi stat" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "Tiedostoon %s kirjoittaminen ei onnistu" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Ohjelman debconf versiota ei saa selvitettyä. Onko debconf asennettu?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "Paketin laajennuslista on liian pitkä" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "Tapahtui virhe käsiteltäessa kansiota %s" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "Lähteiden laajennuslista on liian pitkä" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "" "Tapahtui virhe kirjoitettaessa otsikkotietoa sisällysluettelotiedostoon" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "Tapahtui virhe käsiteltäessä sisällysluetteloa %s" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1842,26 +1872,26 @@ msgstr "" " -c=? Lue tämä asetustiedosto\n" " -o=? Aseta mikä asetusvalitsin tahansa" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "Mitkään valinnat eivät täsmänneet" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Pakettitiedostojen ryhmästä \"%s\" puuttuu joitain tiedostoja" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "Tietokanta on turmeltunut, tiedosto nimetty %s.old" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "Tietokanta on vanha, yritetään päivittää %s" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 #, fuzzy msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " @@ -1870,192 +1900,192 @@ msgstr "" "Tietokannan muoto ei kelpaa. Jos tehtiin päivitys vanhasta apt:n versiosta, " "on tietokanta poistettava ja luotava uudelleen." -#: ftparchive/cachedb.cc:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Tietokantatiedostoa %s ei saatu avattua: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "Tiedostolle %s ei toimi stat" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "Arkistolla ei ole ohjaustietuetta" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "Kohdistinta ei saada" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: Kansiota %s ei voi lukea\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: Tdstolle %s ei toimi stat\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "E: Tiedostossa virheitä " -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "Osoitteen %s selvitys ei onnistunut" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "Puun läpikäynti ei onnistunut" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "Tiedoston %s avaaminen ei onnistunut" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "readlink %s ei onnistunut" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "unlink %s ei onnistunut" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Linkin %s -> %s luonti ei onnistunut" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " DeLinkin yläraja %st saavutettu.\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "Arkistossa ei ollut pakettikenttää" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %s:llä ei ole poikkeustietuetta\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s ylläpitäjä on %s eikä %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr " %s:llä ei ole poikkeustietuetta\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s:llä ei ole binääristäkään poikkeustietuetta\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - Muistin varaaminen ei onnistunut" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "Tiedoston %s avaaminen ei onnistunut" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "Väärän muotoinen poikkeus %s rivi %lu n:ro 1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "Poikkeustiedoston %s lukeminen ei onnistunut" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, fuzzy, c-format msgid "Malformed override %s line %llu #1" msgstr "Väärän muotoinen poikkeus %s rivi %lu n:ro 1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, fuzzy, c-format msgid "Malformed override %s line %llu #2" msgstr "Väärän muotoinen poikkeus %s rivi %lu n:ro 2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, fuzzy, c-format msgid "Malformed override %s line %llu #3" msgstr "Väärän muotoinen poikkeus %s rivi %lu n:ro 3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "Tuntematon pakkausalgoritmi \"%s\"" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "Pakattu tulostus %s tarvitsee pakkausjoukon" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "FILE* luominen ei onnistunut" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "fork ei onnistunut" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "Compress-lapsiprosessi" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "Sisäinen virhe, prosessin %s luominen ei onnistunut" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "Syöttö/tulostus aliprosessiin/tiedostoon ei onnistunut" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "Lukeminen ei onnistunut laskettaessa MD5:ttä" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "Ilmeni pulmia poistettaessa tiedosto %s" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "Nimen muuttaminen %s -> %s ei onnistunut" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -2108,157 +2138,157 @@ msgstr "" " -c=? Lue tämä asetustiedosto\n" " -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "Putkien luonti ei onnistunut" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "exec gzip ei onnistunut" -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "Arkisto on turmeltunut" -#: apt-inst/contrib/extracttar.cc:201 +#: 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:306 +#: 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-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "Arkiston tarkistussumma on virheellinen" -#: apt-inst/contrib/arfile.cc:82 +#: apt-inst/contrib/arfile.cc:84 msgid "Error reading archive member header" msgstr "Tapahtui virhe luettaessa arkiston tiedoston otsikkoa" -#: apt-inst/contrib/arfile.cc:94 +#: 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:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "Arkiston tiedoston otsikko on virheellinen" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "Arkisto on pienempi kuin pitäisi" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "Arkiston otsikoiden luku ei onnistunut" -#: apt-inst/filelist.cc:382 +#: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" msgstr "Kutsuttiin DropNode mutta tiedostoon on vielä linkki" -#: apt-inst/filelist.cc:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "Hajautusalkiota ei löytynyt!" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "Korvautuksen varaus ei onnistunut" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "AddDiversion: sisäinen virhe" -#: apt-inst/filelist.cc:479 +#: 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" -#: apt-inst/filelist.cc:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "Korvautuksen kaksoislisäys %s -> %s" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "Asetustiedoston kaksoiskappale %s/%s" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: 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:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "Tiedoston %s sulkeminen ei onnistunut" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: 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:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "Purettiin %s useammin kuin kerran" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "Kansio %s on korvautunut" -#: apt-inst/extract.cc:145 +#: 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:155 apt-inst/extract.cc:299 +#: 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:242 +#: 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:282 +#: 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:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "Polku on liian pitkä" -#: apt-inst/extract.cc:414 +#: 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:431 +#: 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:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "Tiedostolle %s ei toimi stat" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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:124 +#: 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:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "Ohjaustiedosto ei jäsenny" @@ -2315,494 +2345,499 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "Valintaa %s ei löydy" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Tuntematon tyypin lyhenne: \"%c\"" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "Avataan asetustiedosto %s" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Syntaksivirhe %s: %u: Lohko alkaa ilman nimeä." -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Syntaksivirhe %s: %u: väärän muotoinen nimikenttä" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Syntaksivirhe %s: %u: Arvon jälkeen ylimääräistä roskaa" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, 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-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Syntaksivirhe %s: %u: Liian monta sisäkkäistä includea" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Syntaksivirhe %s: %u: Sisällytetty tästä" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Syntaksivirhe %s: %u: Tätä direktiiviä ei tueta \"%s\"" -#: apt-pkg/contrib/configuration.cc:884 +#: 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-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Syntaksivirhe %s: %u: Ylimääräistä roskaa tiedoston lopussa" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... Virhe!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... Valmis" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s... Valmis" -#: apt-pkg/contrib/cmndline.cc:116 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format msgid "Command line option '%c' [from %s] is not known." msgstr "Komentorivin valitsin \"%c\" [%s] on tuntematon." -#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format msgid "Command line option %s is not boolean" msgstr "Komentorivin valitsin %s ei ole totuusarvoinen" -#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "Valitsin %s tarvitsee parametrin" -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "Valitsin %s: Asetusarvon määrityksessä on oltava =<arvo>." -#: apt-pkg/contrib/cmndline.cc:273 +#: 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-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "Valitsin \"%s\" on liian pitkä" -#: apt-pkg/contrib/cmndline.cc:336 +#: 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-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "Virheellinen toiminto %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format msgid "Unable to stat the mount point %s" msgstr "Komento stat ei toiminut liitoskohdalle %s" -#: apt-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "Komento stat ei toiminut rompulle" -#: apt-pkg/contrib/fileutl.cc:95 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Pulmia tiedoston sulkemisessa" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "Lukkoa ei käytetä kirjoitussuojatulle tiedostolle %s" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "Lukkotiedostoa %s ei voitu avata" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "Lukitusta ei käytetä NFS-liitetylle tiedostolle %s" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "Lukkoa %s ei saada" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Aliprosessi %s aiheutti suojausvirheen." -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "Aliprosessi %s aiheutti suojausvirheen." -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 apt-pkg/contrib/gpgv.cc:239 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Aliprosessi %s palautti virhekoodin (%u)" -#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Aliprosessi %s lopetti odottamatta" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Pulmia tiedoston sulkemisessa" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "Tiedostoa %s ei voitu avata" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "Putkea %s ei voitu avata" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "Prosessien välistä kommunikaatiota aliprosessiin ei saatu luotua" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "Pakkaajan käynnistäminen ei onnistunut" -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, fuzzy, c-format msgid "read, still have %llu to read but none left" msgstr "read, vielä %lu lukematta mutta tiedosto loppui" -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, fuzzy, c-format msgid "write, still have %llu to write but couldn't" msgstr "write, vielä %lu kirjoittamatta mutta epäonnistui" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "Pulmia tiedoston sulkemisessa" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "Pulmia tehtäessä tiedostolle sync" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "Pulmia tehtäessä tiedostolle unlink" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "Pulmia tehtäessä tiedostolle sync" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "nimen vaihto ei onnistunut, %s (%s -> %s)." + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, fuzzy, c-format msgid "No keyring installed in %s." msgstr "Asennus keskeytetään." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "Pakettivarasto on tyhjä" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "Pakettivarasto on turmeltunut" -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "Pakettivaraston versio on yhteensopimaton" -#: apt-pkg/pkgcache.cc:162 +#: apt-pkg/pkgcache.cc:169 #, fuzzy msgid "The package cache file is corrupted, it is too small" msgstr "Pakettivarasto on turmeltunut" -#: apt-pkg/pkgcache.cc:167 +#: 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\"" -#: apt-pkg/pkgcache.cc:172 +#: apt-pkg/pkgcache.cc:179 msgid "The package cache was built for a different architecture" msgstr "Pakettivarasto on tehty muulle arkkitehtuurille" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "Riippuvuudet" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "Esiriippuvuudet" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "Ehdotukset" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "Suosittelut" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "Ristiriidat" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "Korvaavuudet" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "Täydet korvaavuudet" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "Rikkoo" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "tärkeä" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "välttämätön" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "perus" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "valinnainen" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "ylimääräinen" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "Muodostetaan riippuvuussuhteiden puu" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "Mahdolliset versiot" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "Luodaan riippuvuudet" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: 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:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "Tilatiedoston %s avaaminen ei onnistunut" -#: apt-pkg/depcache.cc:250 +#: 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:138 +#: apt-pkg/tagfile.cc:140 #, c-format msgid "Unable to parse package file %s (1)" msgstr "Pakettitiedostoa %s (1) ei voi jäsentää" -#: apt-pkg/tagfile.cc:235 +#: apt-pkg/tagfile.cc:237 #, c-format msgid "Unable to parse package file %s (2)" msgstr "Pakettitiedostoa %s (2) ei voi jäsentää" -#: apt-pkg/sourcelist.cc:118 +#: 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-pkg/sourcelist.cc:161 +#: 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-pkg/sourcelist.cc:164 +#: 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-pkg/sourcelist.cc:175 +#: 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-pkg/sourcelist.cc:181 +#: 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-pkg/sourcelist.cc:184 +#: 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-pkg/sourcelist.cc:197 +#: 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-pkg/sourcelist.cc:199 +#: 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)" -#: apt-pkg/sourcelist.cc:202 +#: 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-pkg/sourcelist.cc:208 +#: 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)" -#: apt-pkg/sourcelist.cc:215 +#: 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)" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "Avataan %s" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "Rivi %u on liian pitkä lähdeluettelossa %s." -#: apt-pkg/sourcelist.cc:362 +#: apt-pkg/sourcelist.cc:371 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Rivi %u on väärän muotoinen lähdeluettelossa %s (tyyppi)" -#: apt-pkg/sourcelist.cc:366 +#: 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" -#: apt-pkg/sourcelist.cc:407 +#: 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" -#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, 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:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "Tiedostoa %s ei voitu avata" -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2813,18 +2848,18 @@ msgstr "" "%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/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "Hakemistotiedoston tyyppi \"%s\" ei ole tuettu" -#: apt-pkg/algorithms.cc:266 +#: 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." -#: apt-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2832,215 +2867,210 @@ msgstr "" "Virhe, pkgProblemResolver::Resolve tuotti katkoja, syynä voi olla pysytetyt " "paketit." -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "Pulmia ei voi korjata, rikkinäisiä paketteja on pysytetty." -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, fuzzy, c-format msgid "List directory %spartial is missing." msgstr "Luettelokansio %spartial puuttuu." -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, fuzzy, c-format msgid "Archives directory %spartial is missing." msgstr "Arkistokansio %spartial puuttuu." -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, fuzzy, c-format msgid "Unable to lock directory %s" msgstr "Luettelokansiota ei voitu lukita" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Noudetaan tiedosto %li / %li (jäljellä %s)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "Noudetaan tiedosto %li / %li" -#: apt-pkg/acquire-worker.cc:113 +#: 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:115 +#: 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:166 +#: 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:452 +#: 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/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Paketointijärjestelmä \"%s\" ei ole tuettu" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "Sopivaa paketointijärjestelmän tyyppiä ei saa selvitettyä" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "stat %s ei onnistu." -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "Tiedostossa sources.list on oltava rivejä joissa \"lähde\"-URI" -#: apt-pkg/cachefile.cc:87 +#: 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." -#: apt-pkg/cachefile.cc:91 +#: 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:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "Lähteiden luetteloa ei pystynyt lukemaan." -#: apt-pkg/policy.cc:75 +#: 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 "" -#: apt-pkg/policy.cc:414 +#: 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:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "Tunnistetyyppi %s on tuntematon" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "Tärkeysjärjestystä ei määritetty tunnisteelle (tai se on nolla)" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 msgid "Cache has an incompatible versioning system" msgstr "Pakettivaraston versionhallintajärjestelmä ei ole yhteensopiva" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: 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)" -#: apt-pkg/pkgcachegen.cc:251 +#: 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ä." -#: apt-pkg/pkgcachegen.cc:254 +#: 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ä." -#: apt-pkg/pkgcachegen.cc:257 +#: 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." -#: apt-pkg/pkgcachegen.cc:260 +#: 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ä." -#: apt-pkg/pkgcachegen.cc:570 +#: 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." -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "stat ei toiminut lähdepakettiluettelolle %s" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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" -#: apt-pkg/pkgcachegen.cc:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "Kootaan tiedostojen tarjoamistietoja" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: 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/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "nimen vaihto ei onnistunut, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "Tarkistussumma ei täsmää" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "Koko ei täsmää" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "Virheellinen toiminto %s" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, 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:1586 +#: apt-pkg/acquire-item.cc:1595 #, fuzzy, c-format msgid "Unable to find hash sum for '%s' in Release file" msgstr "Pakettitiedostoa %s (1) ei voi jäsentää" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "Julkisia avaimia ei ole saatavilla, avainten ID:t ovat:\n" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " "repository will not be applied." msgstr "" -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3048,12 +3078,12 @@ msgid "" msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3062,12 +3092,12 @@ msgstr "" "En löytänyt pakettia %s vastaavaa tiedostoa. Voit ehkä joutua korjaamaan " "tämän paketin itse (puuttuvan arkkitehtuurin vuoksi)" -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -3075,71 +3105,67 @@ msgstr "" "Pakettihakemistotiedostot ovat turmeltuneet. Paketille %s ei ole Filename-" "kenttää." -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, fuzzy, c-format msgid "Unable to parse Release file %s" msgstr "Pakettitiedostoa %s (1) ei voi jäsentää" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, fuzzy, c-format msgid "No sections in Release file %s" msgstr "Huomautus, valitaan %s eikä %s\n" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "" -#: apt-pkg/indexrecords.cc:125 +#: apt-pkg/indexrecords.cc:130 #, fuzzy, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Virheellinen rivi korvautustiedostossa: %s" -#: apt-pkg/indexrecords.cc:144 +#: 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-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "Toimittajan lohkosta %s puuttuu sormenjälki" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Käytetään rompun liitoskohtaa %s\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "Irrotetaan romppu\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "Irrotetaan romppu...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "Odotetaan levyä...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "Liitetään romppu...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " msgstr "Tunnistetaan... " -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "Tallennettu nimio: %s \n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "Irrotetaan romppu...\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" msgstr "Etsitään levyltä hakemistotiedostoja...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3148,22 +3174,22 @@ msgstr "" "Hakemistoja löytyi: Asennuspakettien %zu, lähdekoodipakettien %zu, " "käännösten %zu ja allekirjoituksia löytyi %zu\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "Löytyi nimiö: \"%s\"\n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "Tuo ei kelpaa nimeksi, yritä uudelleen.\n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3172,34 +3198,34 @@ msgstr "" "Tämä levy on: \n" "\"%s\"\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "Kopioidaan pakettiluetteloita..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "Kirjoitetaan uusi lähdeluettelo\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "Tämän levyn lähdekoodipakettien luettelon tietueita ovat:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: 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:777 +#: 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:780 +#: 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" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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 "" @@ -3216,88 +3242,88 @@ msgstr "" msgid "Hash mismatch for: %s" msgstr "Kohteen %s tarkistussumma ei täsmää" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Julkaisua \"%s\" paketille \"%s\" ei löytynyt" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Versiota \"%s\" paketille \"%s\" ei löytynyt" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, fuzzy, c-format msgid "Couldn't find task '%s'" msgstr "Tehtävää %s ei löytynyt" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, fuzzy, c-format msgid "Couldn't find any package by regex '%s'" msgstr "Pakettia %s ei löytynyt" -#: apt-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "Pakettia %s ei löytynyt" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, c-format msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " "neither of them" msgstr "" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, c-format msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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 " @@ -3306,167 +3332,167 @@ msgstr "" "Joidenkin hakemistotiedostojen nouto ei onnistunut, ne on ohitettu tai " "käytetty vanhoja. " -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "Asennetaan %s" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "Tehdään asetukset: %s" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "Poistetaan %s" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, fuzzy, c-format msgid "Completely removing %s" msgstr "%s poistettiin kokonaan" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "Suoritetaan jälkiasennusliipaisin %s" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "Kansio \"%s\" puuttuu." -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: 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-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "Valmistellaan %s" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "Puretaan %s" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "Valmistaudutaan tekemään asetukset: %s" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "%s asennettu" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "Valmistaudutaan poistamaan %s" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "%s poistettu" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "Valmistaudutaan poistamaan %s kokonaan" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "%s poistettiin kokonaan" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "Tiedostoon %s kirjoittaminen ei onnistu" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 msgid "" "No apport report written because the error message indicates an issue on the " "local system" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " "it?" msgstr "" -#: apt-pkg/deb/debsystem.cc:87 +#: 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:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " msgstr "" -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2013-08-17 07:57+0200\n" "Last-Translator: Christian Perrier <bubulle@debian.org>\n" "Language-Team: French <debian-l10n-french@lists.debian.org>\n" @@ -19,152 +19,153 @@ msgstr "" "X-Generator: Lokalize 1.5\n" "Plural-Forms: Plural-Forms: nplurals=2; plural=n > 1;\n" -#: cmdline/apt-cache.cc:140 +#: 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" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "Nombre total de paquets : " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 msgid "Total package structures: " msgstr "Nombre total de structures de paquets : " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " Paquets ordinaires : " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " Paquets entièrement virtuels : " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " Paquets virtuels simples : " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " Paquets virtuels mixtes : " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " Manquants : " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "Nombre de versions distinctes : " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "Nombre de descriptions distinctes : " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "Nombre de dépendances : " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "Nombre de relations version/fichier : " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "Nombre de relations description/fichier : " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "Nombre de relations « Provides » : " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "Nombre de motifs rationnels : " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "Espace occupé par les versions des dépendances : " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "Espace disque gaspillé : " -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "Total de l'espace attribué : " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: 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é." -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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é" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 msgid "You must give at least one search pattern" msgstr "Vous devez fournir au moins un motif de recherche" -#: cmdline/apt-cache.cc:1411 +#: 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 »." -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "Impossible de trouver le paquet %s" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "Fichiers du paquet :" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: 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" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "Paquets épinglés :" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(non trouvé)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " Installé : " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " Candidat : " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(aucun)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " Épinglage de paquet : " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " Table de version :" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s pour %s compilé sur %s %s\n" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] showpkg pkg1 [pkg2 ...]\n" @@ -238,34 +239,35 @@ msgstr "" "plus\n" "d'informations.\n" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" -"Aucun CD n'a été détecté sur le point de montage par défaut.\n" -"Vous pouvez utiliser l'option --cdrom pour indiquer le point de montage du " -"CD-ROM. Voir la page de manuel d'apt-cdrom pour plus d'informations sur " -"l'auto-détection des CD et le point de montage." - -#: cmdline/apt-cdrom.cc:89 +#: cmdline/apt-cdrom.cc:76 msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" "Veuillez indiquer le nom de ce disque, par exemple « Debian 5.0.3 Disk 1 »" -#: cmdline/apt-cdrom.cc:104 +#: 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" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, c-format msgid "Failed to mount '%s' to '%s'" msgstr "Impossible de monter « %s » sur « %s »" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +#, fuzzy +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" +"Aucun CD n'a été détecté sur le point de montage par défaut.\n" +"Vous pouvez utiliser l'option --cdrom pour indiquer le point de montage du " +"CD-ROM. Voir la page de manuel d'apt-cdrom pour plus d'informations sur " +"l'auto-détection des CD et le point de montage." + +#: 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 " @@ -303,53 +305,53 @@ msgstr "" " -c=? Lit ce fichier de configuration\n" " -o=? Spécifie une option de configuration, p. ex. -o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:244 +#: 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 »" -#: cmdline/apt-get.cc:326 +#: 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 »" -#: cmdline/apt-get.cc:329 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format msgid "Can not find a package '%s' with release '%s'" msgstr "" "Impossible de trouver de paquet correspondant à l'expression rationnelle " "« %s »" -#: cmdline/apt-get.cc:366 +#: 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" -#: cmdline/apt-get.cc:422 +#: 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" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "Impossible de trouver le paquet %s" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "%s passé en « installé manuellement ».\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s passé en « installé automatiquement ».\n" -#: cmdline/apt-get.cc:468 cmdline/apt-mark.cc:116 +#: 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." @@ -357,21 +359,21 @@ msgstr "" "Cette commande est obsolète. Veuillez utiliser « apt-mark auto » et « apt-" "mark manual »." -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: 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" -#: cmdline/apt-get.cc:573 cmdline/apt-get.cc:610 +#: 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" -#: cmdline/apt-get.cc:725 +#: 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" -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "Impossible de trouver une source de paquet pour %s" @@ -398,80 +400,80 @@ msgstr "" "pour récupérer les dernières mises à jour (éventuellement non encore " "publiées) du paquet.\n" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Saut du téléchargement du fichier « %s », déjà téléchargé\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "Impossible de déterminer l'espace disponible sur %s" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "Pas assez d'espace disponible sur %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Nécessité de prendre %so/%so dans les sources.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Nécessité de prendre %so dans les sources.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "Récupération des sources %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "Échec lors de la récupération de quelques archives." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "Téléchargement achevé et dans le mode téléchargement uniquement" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Saut du décompactage des paquets sources déjà décompactés dans %s\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "La commande de décompactage « %s » a échoué.\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Veuillez vérifier si le paquet dpkg-dev est installé.\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "La commande de construction « %s » a échoué.\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "Échec du processus fils" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "" "Il faut spécifier au moins un paquet pour vérifier les dépendances de " "construction" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -481,17 +483,17 @@ msgstr "" "consulter la section à propos de APT::Architectures dans la page de manuel " "apt.conf(5)." -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Impossible d'obtenir les dépendances de construction pour %s" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s n'a pas de dépendance de construction.\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -500,7 +502,7 @@ msgstr "" "La dépendance %s vis-à -vis de %s ne peut être satisfaite car %s n'est pas " "autorisé avec les paquets « %s »." -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -509,14 +511,14 @@ msgstr "" "La dépendance %s vis-à -vis de %s ne peut être satisfaite car le paquet %s ne " "peut être trouvé" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Impossible de satisfaire la dépendance %s pour %s : le paquet installé %s " "est trop récent" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -525,7 +527,7 @@ msgstr "" "La dépendance %s vis-à -vis de %s ne peut être satisfaite car aucune version " "disponible du paquet %s ne peut satisfaire les prérequis de version." -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -534,31 +536,31 @@ msgstr "" "La dépendance %s vis-à -vis de %s ne peut être satisfaite car le paquet %s " "n'a pas de version disponible." -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Impossible de satisfaire les dépendances %s pour %s : %s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "" "Les dépendances de compilation pour %s ne peuvent pas être satisfaites." -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "Impossible d'activer les dépendances de construction" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, c-format msgid "Changelog for %s (%s)" msgstr "Journal des modifications pour %s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "Modules reconnus :" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -648,55 +650,77 @@ msgstr "" "apt.conf(5) pour plus d'informations et d'options.\n" " Cet APT a les « Super Cow Powers »\n" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Vous devez spécifier au moins un paquet source" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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 ne peut pas être marqué car il n'est pas installé.\n" -#: cmdline/apt-mark.cc:63 +#: cmdline/apt-mark.cc:74 #, c-format msgid "%s was already set to manually installed.\n" msgstr "%s était déjà marqué comme installé manuellement.\n" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, c-format msgid "%s was already set to automatically installed.\n" msgstr "%s était déjà marqué comme installé automatiquement.\n" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, c-format msgid "%s was already set on hold.\n" msgstr "%s était déjà marqué comme figé (« hold »).\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, c-format msgid "%s was already not hold.\n" msgstr "%s était déjà marqué comme non figé.\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "A attendu %s mais il n'était pas présent" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format msgid "%s set on hold.\n" msgstr "%s passé en figé (« hold »).\n" -#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format msgid "Canceled hold on %s.\n" msgstr "Annulation de l'état figé pour %s.\n" -#: cmdline/apt-mark.cc:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "" "Échec de l'exécution de dpkg. Possédez-vous les privilèges du " "superutilisateur ?" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 #, fuzzy msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" @@ -746,7 +770,7 @@ msgstr "" "Veuillez consulter les pages de manuel apt-mark(8) et apt.conf(5)\n" "pour plus d'informations." -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -796,52 +820,52 @@ msgstr "" msgid "Disk not found." msgstr "Disque non trouvé." -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "Fichier non trouvé" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 msgid "Failed to stat" msgstr "Impossible de statuer" -#: methods/copy.cc:82 methods/gzip.cc:113 methods/rred.cc:606 +#: 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:47 +#: 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 //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "Connexion en cours" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "Impossible de déterminer le nom de la machine distante" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "Impossible de déterminer le nom local" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format msgid "The server refused the connection and said: %s" msgstr "Le serveur a refusé notre connexion et a répondu : %s" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "USER incorrect, le serveur a répondu : %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS incorrect, le serveur a répondu : %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -849,123 +873,125 @@ msgstr "" "Un serveur proxy a été spécifié, mais aucun script de connexion, Acquire::" "ftp::ProxyLogin est vide." -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "" "La commande « %s » du script de connexion a échoué, le serveur a répondu : %s" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "Échec de TYPE, le serveur a répondu : %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: 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:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "Le serveur a fermé la connexion" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "Erreur de lecture" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: 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:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "Corruption du protocole" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "Erreur d'écriture" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: 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:707 +#: methods/ftp.cc:712 msgid "Could not connect data socket, connection timed out" msgstr "" "Impossible de se connecter sur le port de données, délai de connexion dépassé" -#: methods/ftp.cc:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "Échec" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "Impossible de se connecter au port en mode passif." -#: methods/ftp.cc:730 +#: 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:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "Impossible de se connecter à un port" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "Impossible d'écouter sur le port" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "Impossible de déterminer le nom du port" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "Impossible d'envoyer la commande PORT" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Famille d'adresses %u inconnue (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT a échoué, le serveur a répondu : %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "Délai de connexion au port de données dépassé" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "Impossible d'accepter une connexion" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "Problème de hachage du fichier" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Impossible de récupérer le fichier, le serveur a répondu « %s »" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: 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" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Le transfert de données a échoué, le serveur a répondu « %s »" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "Requête" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "Impossible d'invoquer " @@ -1001,7 +1027,7 @@ msgstr "Connexion à %s: %s (%s) impossible." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "Connexion à %s" @@ -1033,25 +1059,25 @@ msgstr "" msgid "Unable to connect to %s:%s:" msgstr "Impossible de se connecter à %s:%s :" -#: methods/gpgv.cc:166 +#: 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é." -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "Au moins une signature non valable a été rencontrée." -#: methods/gpgv.cc:172 +#: 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é)." #. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " @@ -1060,15 +1086,15 @@ 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:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "Erreur inconnue à l'exécution de gpgv" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Les signatures suivantes ne sont pas valables :\n" -#: methods/gpgv.cc:229 +#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@ -1076,118 +1102,118 @@ msgstr "" "Les signatures suivantes n'ont pas pu être vérifiées car la clé publique " "n'est pas disponible :\n" -#: methods/gzip.cc:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "Les fichiers vides ne peuvent être des archives valables" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "Erreur d'écriture sur le fichier" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "Erreur de lecture depuis le serveur distant et clôture de la connexion" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "Erreur de lecture du serveur" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "Erreur d'écriture sur un fichier" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "Sélection défaillante" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "Délai de connexion dépassé" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "Erreur d'écriture du fichier de sortie" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "Attente des fichiers d'en-tête" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "Mauvaise ligne d'en-tête" -#: methods/server.cc:139 methods/server.cc:146 +#: 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" -#: methods/server.cc:176 +#: 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" -#: methods/server.cc:199 +#: 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" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "Ce serveur http possède un support des limites non-valide" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "Format de date inconnu" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "Mauvais en-tête de donnée" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "Échec de la connexion" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "Erreur interne" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Erreur interne, « InstallPackages » appelé avec des paquets cassés." -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "" "Les paquets doivent être enlevés mais la désinstallation est désactivée." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "Erreur interne. Le tri a été interrompu." -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" "Étrangement, les tailles ne correspondent pas. Veuillez le signaler par " "courriel à apt@packages.debian.org." #. TRANSLATOR: The required 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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Il est nécessaire de prendre %so/%so dans les archives.\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:171 +#: apt-private/private-install.cc:159 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Il est nécessaire de prendre %so dans les archives.\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:178 +#: apt-private/private-install.cc:166 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" @@ -1195,21 +1221,21 @@ 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:183 +#: apt-private/private-install.cc:171 #, 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" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "Pas assez d'espace disponible sur %s" -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 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-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "L'option --trivial-only a été indiquée mais il ne s'agit pas d'une opération " @@ -1219,11 +1245,11 @@ msgstr "" # 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Oui, faites ce que je vous dis !" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1234,19 +1260,19 @@ msgstr "" "Pour continuer, tapez la phrase « %s »\n" " ?]" -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "Annulation." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "Souhaitez-vous continuer ?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "Certains fichiers n'ont pu être téléchargés." -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1254,20 +1280,20 @@ msgstr "" "Impossible de récupérer quelques archives, peut-être devrez-vous lancer apt-" "get update ou essayer avec --fix-missing ?" -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "" "l'option --fix-missing et l'échange de support ne sont pas encore reconnus." -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "Impossible de corriger le fait que les paquets manquent." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "Annulation de l'installation." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1281,18 +1307,18 @@ 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:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" "Note : cette opération volontaire (effectuée par dpkg) est automatique." -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "Aucune suppression n'est censée se produire : impossible de lancer " "« Autoremover »" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1311,16 +1337,16 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 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:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "" "Erreur interne, l'outil de suppression automatique a cassé quelque chose." -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1332,7 +1358,7 @@ msgstr[1] "" "Les paquets suivants ont été installés automatiquement et ne sont plus " "nécessaires :" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1342,18 +1368,18 @@ msgstr[0] "" msgstr[1] "" "%lu paquets ont été installés automatiquement et ne sont plus nécessaires.\n" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Veuillez utiliser « apt-get autoremove » pour le supprimer." msgstr[1] "Veuillez utiliser « apt-get autoremove » pour les supprimer." -#: apt-private/private-install.cc:624 +#: 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 :" -#: apt-private/private-install.cc:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1361,7 +1387,7 @@ msgstr "" "Dépendances non satisfaites. Essayez « apt-get -f install » sans paquet\n" "(ou indiquez une solution)." -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1373,145 +1399,145 @@ msgstr "" "la distribution unstable, que certains paquets n'ont pas encore\n" "été créés ou ne sont pas sortis d'Incoming." -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "Paquets défectueux" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "Les paquets supplémentaires suivants seront installés : " -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "Paquets suggérés :" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "Paquets recommandés :" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ATTENTION : les paquets suivants n'ont pas été authentifiés." -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "Avertissement d'authentification ignoré.\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "Certains paquets n'ont pas pu être authentifiés" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "Faut-il installer ces paquets sans vérification ?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Impossible de récupérer %s %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [Installé]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [Installé]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [Installé]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [Installé]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "Les paquets suivants contiennent des dépendances non satisfaites :" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "mais %s est installé" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "mais %s devra être installé" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "mais il n'est pas installable" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "mais c'est un paquet virtuel" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "mais il n'est pas installé" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "mais ne sera pas installé" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " ou" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "Les NOUVEAUX paquets suivants seront installés :" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "Les paquets suivants seront ENLEVÉS :" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "Les paquets suivants ont été conservés :" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "Les paquets suivants seront mis à jour :" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "Les paquets suivants seront mis à une VERSION INFÉRIEURE :" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "Les paquets retenus suivants seront changés :" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (en raison de %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1520,27 +1546,27 @@ msgstr "" "Vous NE devez PAS faire ceci, à moins de savoir exactement ce\n" "que vous êtes en train de faire." -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu mis à jour, %lu nouvellement installés, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu réinstallés, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu remis à une version inférieure, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu à enlever et %lu non mis à jour.\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu partiellement installés ou enlevés.\n" @@ -1549,7 +1575,7 @@ msgstr "%lu partiellement installés ou enlevés.\n" #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "[O/n]" @@ -1557,91 +1583,91 @@ msgstr "[O/n]" #. 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:702 +#: apt-private/private-output.cc:708 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:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "O" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "N" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "Erreur de compilation de l'expression rationnelle - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "Correction des dépendances..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " a échoué." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "Impossible de corriger les dépendances" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "Impossible de minimiser le nombre des paquets mis à jour" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " Fait" -#: apt-private/private-cachefile.cc:102 +#: 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-private/private-cachefile.cc:105 +#: 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-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "La commande de mise à jour ne prend pas de paramètre" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "Calcul de la mise à jour... " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "Erreur interne, AllUpgrade a cassé le boulot !" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "Fait" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1655,43 +1681,43 @@ msgstr "" " et la situation n'est donc pas forcément représentative\n" " de la réalité !" -#: apt-private/private-sources.cc:45 +#: 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-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "Atteint " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "Réception de : " -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "Ign " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Err " -#: apt-private/acqprogress.cc:143 +#: 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:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [En cours]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1704,19 +1730,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "Impossible de lire %s" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "Impossible d'accéder à %s" @@ -1745,11 +1771,11 @@ msgstr "Pas d'entrée trouvée dans le fichier de miroir « %s »." msgid "[Mirror: %s]" msgstr "[Miroir : %s]" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: 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:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "Connexion fermée prématurément" @@ -1816,41 +1842,46 @@ 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:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Impossible de statuer pour %s." + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "Impossible d'écrire sur %s" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "" "Impossible d'obtenir la version de debconf. Est-ce que debconf est installé ?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "La liste d'extension du paquet est trop longue" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "Erreur lors du traitement du répertoire %s" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "La liste d'extension des sources est trop grande" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "Erreur lors de l'écriture de l'en-tête du fichier contenu" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "Erreur du traitement du contenu %s" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1933,27 +1964,27 @@ msgstr "" " -c=? Lit ce fichier de configuration\n" " -o=? Place une option de configuration arbitraire" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "Aucune sélection ne correspond" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format 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:47 +#: ftparchive/cachedb.cc:51 #, 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:65 +#: ftparchive/cachedb.cc:69 #, 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:76 +#: ftparchive/cachedb.cc:80 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -1961,192 +1992,192 @@ 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:81 +#: ftparchive/cachedb.cc:85 #, 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:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "Impossible de statuer %s" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "L'archive n'a pas d'enregistrement de contrôle" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "Impossible d'obtenir un curseur" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, 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:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "A : Impossible de statuer %s\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "E : " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "A : " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "E : des erreurs sont survenues sur le fichier " -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "Impossible de résoudre %s" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "Échec du parcours de l'arbre" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "Impossible d'ouvrir %s" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " Délier %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "Impossible de lire le lien %s" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "Impossible de délier %s" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Impossible de lier %s à %s" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Seuil de delink de %so atteint.\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "L'archive ne possède pas de champ de paquet" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr "%s ne possède pas d'entrée « override »\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " le responsable de %s est %s et non %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, 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:716 +#: ftparchive/writer.cc:725 #, 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" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - Échec de l'allocation de mémoire" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "Impossible d'ouvrir %s" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "Entrée « override » %s mal formée ligne %llu n° 1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "Impossible de lire le fichier d'« override » %s" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, c-format msgid "Malformed override %s line %llu #1" msgstr "Entrée « override » %s mal formée ligne %llu n° 1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, c-format msgid "Malformed override %s line %llu #2" msgstr "Entrée « override » %s mal formée %llu n° 2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, c-format msgid "Malformed override %s line %llu #3" msgstr "Entrée « override » %s mal formée %llu n° 3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "Algorithme de compression « %s » inconnu" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "La sortie compressée %s a besoin d'un ensemble de compression" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "Impossible de créer FILE*" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "Échec du fork" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "Fils compressé" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "Erreur interne, impossible de créer %s" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "Échec d'entrée/sortie du sous-processus sur le fichier" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "Impossible de lire lors du calcul de la somme MD5" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "Problème en déliant %s" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "Impossible de changer le nom %s en %s" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -2202,157 +2233,157 @@ msgstr "" " -o=? Place une option de configuration arbitraire, p. ex. -o dir::cache=/" "tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "Échec de création de tubes" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "Impossible d'exécuter gzip " -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "Archive corrompue" -#: apt-inst/contrib/extracttar.cc:201 +#: 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:306 +#: apt-inst/contrib/extracttar.cc:308 #, c-format msgid "Unknown TAR header type %u, member %s" msgstr "Type d'en-tête %u inconnu pour TAR, partie %s" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "Signature d'archive invalide" -#: apt-inst/contrib/arfile.cc:82 +#: 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:94 +#: apt-inst/contrib/arfile.cc:96 #, c-format msgid "Invalid archive member header %s" msgstr "En-tête du membre d'archive %s non valable" -#: apt-inst/contrib/arfile.cc:106 +#: 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:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "L'archive est trop petite" -#: apt-inst/contrib/arfile.cc:139 +#: 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/filelist.cc:382 +#: 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:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "Impossible de situer l'élément haché !" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "Échec lors de l'allocation de la déviation" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "Erreur interne dans AddDiversion" -#: apt-inst/filelist.cc:479 +#: 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" -#: apt-inst/filelist.cc:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "Addition double d'une déviation %s -> %s" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "Fichier de configuration en double %s/%s" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format msgid "Failed to write file %s" msgstr "Erreur d'écriture du fichier %s" -#: apt-inst/dirstream.cc:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "Échec de clôture du fichier %s" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format msgid "The path %s is too long" msgstr "Le chemin %s est trop long" -#: apt-inst/extract.cc:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "Veuillez décompresser %s plus d'une fois" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "Le répertoire %s est détourné" -#: apt-inst/extract.cc:145 +#: apt-inst/extract.cc:152 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "Le paquet est en train d'essayer d'écrire sur la cible détournée %s/%s" -#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 msgid "The diversion path is too long" msgstr "Le chemin de déviation est trop long" -#: apt-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "Le répertoire %s va être remplacé par un non-répertoire" -#: apt-inst/extract.cc:282 +#: 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:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "Le chemin est trop long" -#: apt-inst/extract.cc:414 +#: apt-inst/extract.cc:421 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Écrase la correspondance de paquet sans version pour %s " -#: apt-inst/extract.cc:431 +#: apt-inst/extract.cc:438 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "Le fichier %s/%s écrase celui inclus dans le paquet %s" -#: apt-inst/extract.cc:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "Impossible de statuer pour %s." -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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" -#: apt-inst/deb/debfile.cc:124 +#: apt-inst/deb/debfile.cc:132 #, c-format msgid "Internal error, could not locate member %s" msgstr "Erreur interne, ne peut localiser la partie %s" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "Fichier de contrôle non traitable" @@ -2414,215 +2445,210 @@ msgstr "" "automatique a été désactivée par une option utilisateur." #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lid %lih %limin %lis" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "%lih %limin %lis" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "%limin %lis" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "%lis" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "La sélection %s n'a pu être trouvée" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Type d'abréviation non reconnue : « %c »" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "Ouverture du fichier de configuration %s" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Erreur syntaxique %s:%u : le bloc commence sans aucun nom." -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Erreur syntaxique %s:%u : balise mal formée" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Erreur syntaxique %s:%u : valeur suivie de choses illicites" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, 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-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Erreur syntaxique %s:%u: trop de niveaux d'imbrication d'includes" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Erreur syntaxique %s:%u : inclus à partir d'ici" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Erreur syntaxique %s:%u : directive « %s » non tolérée" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-pkg/contrib/configuration.cc:900 #, c-format msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" "Erreur de syntaxe %s:%u : la directive « clear » a besoin d'un arbre " "d'options comme paramètre" -#: apt-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Erreur syntaxique %s:%u : valeur aberrante à la fin du fichier" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... Erreur !" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... Fait" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "…" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, c-format msgid "%c%s... %u%%" msgstr "%c%s… %u%%" -#: apt-pkg/contrib/cmndline.cc:116 +#: 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-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: 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-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: 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." -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "Option %s : l'item configuration doit être spécifiée avec un =<val>." -#: apt-pkg/contrib/cmndline.cc:273 +#: apt-pkg/contrib/cmndline.cc:278 #, 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 »" -#: apt-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "L'option « %s » est trop longue" -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "La signification %s n'est pas comprise, veuillez essayer vrai ou faux." -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "L'opération %s n'est pas valable" -#: apt-pkg/contrib/cdromutl.cc:56 +#: 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" -#: apt-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "Impossible d'accéder au cédérom." -#: apt-pkg/contrib/fileutl.cc:95 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problème de fermeture du fichier gzip %s" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "Verrou non utilisé pour le fichier %s en lecture seule" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "Impossible d'ouvrir le fichier verrou %s" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, 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:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "Impossible d'obtenir le verrou %s" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, 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-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, 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-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" "« %s » dans le répertoire « %s » a été ignoré car il n'utilise pas " "d'extension" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" @@ -2630,289 +2656,299 @@ msgstr "" "« %s » dans le répertoire « %s » a été ignoré car il utilise une extension " "non valable" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, 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-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, c-format msgid "Sub-process %s received signal %u." msgstr "Le sous-processus %s a reçu le signal %u" -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 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-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 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-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problème de fermeture du fichier gzip %s" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "Impossible d'ouvrir le fichier %s" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, c-format msgid "Could not open file descriptor %d" msgstr "Impossible d'ouvrir le descripteur de fichier %d" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "Impossible de créer un sous-processus IPC" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "Impossible d'exécuter la compression " -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, c-format msgid "read, still have %llu to read but none left" msgstr "lu(s), %llu restant à lire, mais rien n'est disponible" -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, c-format msgid "write, still have %llu to write but couldn't" msgstr "écrit(s), %llu restant à écrire, mais l'écriture est impossible" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, c-format msgid "Problem closing the file %s" msgstr "Problème de fermeture du fichier %s" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, c-format msgid "Problem renaming the file %s to %s" msgstr "Problème de renommage du fichier %s en %s" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, c-format msgid "Problem unlinking the file %s" msgstr "Problème de suppression du lien %s" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "Problème de synchronisation du fichier" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "impossible de changer le nom, %s (%s -> %s)." + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, c-format msgid "No keyring installed in %s." msgstr "Pas de porte-clés installé dans %s." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "Cache des paquets vide" -#: apt-pkg/pkgcache.cc:154 +#: 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:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "Le fichier de cache des paquets a une version incompatible" -#: apt-pkg/pkgcache.cc:162 +#: 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." -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, 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:172 +#: 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:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "Dépend" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "Pré-Dépend" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "Suggère" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "Recommande" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "Est en conflit avec" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "Remplace" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "Rend obsolète" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "Casse" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "Améliore" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "important" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "nécessaire" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "standard" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "optionnel" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "supplémentaire" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: 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:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "Versions possibles" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "Génération des dépendances" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: 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:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "Impossible d'ouvrir le fichier d'état %s" -#: apt-pkg/depcache.cc:250 +#: 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-pkg/tagfile.cc:138 +#: apt-pkg/tagfile.cc:140 #, c-format msgid "Unable to parse package file %s (1)" msgstr "Impossible de traiter le fichier %s (1)" -#: apt-pkg/tagfile.cc:235 +#: apt-pkg/tagfile.cc:237 #, c-format msgid "Unable to parse package file %s (2)" msgstr "Impossible de traiter le fichier %s (2)" -#: apt-pkg/sourcelist.cc:118 +#: 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-pkg/sourcelist.cc:161 +#: 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-pkg/sourcelist.cc:164 +#: 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-pkg/sourcelist.cc:175 +#: 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-pkg/sourcelist.cc:181 +#: 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-pkg/sourcelist.cc:184 +#: apt-pkg/sourcelist.cc:193 #, c-format msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" "Ligne %lu mal formée dans la liste des sources %s ([%s] la clé %s n'a pas de " "valeur)" -#: apt-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "Ligne %lu mal formée dans le fichier de source %s (URI)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "Ligne %lu mal formée dans la liste de sources %s (distribution)" -#: apt-pkg/sourcelist.cc:202 +#: 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)" -#: apt-pkg/sourcelist.cc:208 +#: 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)" -#: apt-pkg/sourcelist.cc:215 +#: apt-pkg/sourcelist.cc:224 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" msgstr "" "Ligne %lu mal formée dans la liste des sources %s (analyse de distribution)" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "Ouverture de %s" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, 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." -#: apt-pkg/sourcelist.cc:362 +#: 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-pkg/sourcelist.cc:366 +#: 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" -#: apt-pkg/sourcelist.cc:407 +#: 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" -#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2922,12 +2958,12 @@ msgstr "" "consulter la page de manuel apt.conf(5) et notamment la section à propos de " "APT::Immediate-Configure, pour plus d'informations. (%d)" -#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, c-format msgid "Could not configure '%s'. " msgstr "Impossible de configurer « %s »." -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2939,12 +2975,12 @@ msgstr "" "Depends. C'est souvent une mauvaise chose, mais si vous souhaitez réellement " "le faire, activez l'option APT::Force-LoopBreak." -#: apt-pkg/pkgrecords.cc:34 +#: 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é" -#: apt-pkg/algorithms.cc:266 +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." @@ -2952,7 +2988,7 @@ msgstr "" "Le paquet %s doit être réinstallé, mais il est impossible de trouver son " "archive." -#: apt-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2960,95 +2996,95 @@ 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:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Impossible de corriger les problèmes, des paquets défectueux sont en mode " "« garder en l'état »." -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, c-format msgid "List directory %spartial is missing." msgstr "Le répertoire %spartial pour les listes n'existe pas." -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, c-format msgid "Archives directory %spartial is missing." msgstr "Le répertoire d'archive %spartial n'existe pas." -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, c-format msgid "Unable to lock directory %s" msgstr "Impossible de verrouiller le répertoire %s" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Téléchargement du fichier %li sur %li (%s restant)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "Téléchargement du fichier %li sur %li" -#: apt-pkg/acquire-worker.cc:113 +#: 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é." -#: apt-pkg/acquire-worker.cc:115 +#: 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" -#: apt-pkg/acquire-worker.cc:166 +#: 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" -#: apt-pkg/acquire-worker.cc:452 +#: apt-pkg/acquire-worker.cc:455 #, c-format msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "" "Veuillez insérer le disque « %s » dans le lecteur « %s » et appuyez sur la " "touche Entrée." -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Le système de paquet « %s » n'est pas supporté" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "Impossible de déterminer un type du système de paquets adéquat" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "Impossible de localiser %s." -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "" "Vous devez insérer quelques adresses « sources » dans votre sources.list" -#: apt-pkg/cachefile.cc:87 +#: 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." -#: apt-pkg/cachefile.cc:91 +#: 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:109 +#: 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/policy.cc:75 +#: apt-pkg/policy.cc:83 #, c-format msgid "" "The value '%s' is invalid for APT::Default-Release as such a release is not " @@ -3057,110 +3093,105 @@ msgstr "" "La valeur « %s » n'est pas valable pour APT::Default-Release car cette " "version ne fait pas partie des sources disponibles." -#: apt-pkg/policy.cc:414 +#: apt-pkg/policy.cc:422 #, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "" "Enregistrement non valable dans le fichier de préférences %s, aucune entrée " "« Package »." -#: apt-pkg/policy.cc:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "Type d'épinglage %s inconnu" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "Aucune priorité (ou zéro) n'a été spécifiée pour l'épinglage" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 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:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Erreur apparue lors du traitement de %s (%s%d)" -#: apt-pkg/pkgcachegen.cc:251 +#: apt-pkg/pkgcachegen.cc:257 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "Vous avez dépassé le nombre de noms de paquets que cette version d'APT est " "capable de traiter." -#: apt-pkg/pkgcachegen.cc:254 +#: 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." -#: apt-pkg/pkgcachegen.cc:257 +#: 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." -#: apt-pkg/pkgcachegen.cc:260 +#: apt-pkg/pkgcachegen.cc:266 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" "Vous avez dépassé le nombre de dépendances que cette version d'APT est " "capable de traiter." -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:576 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "Le paquet %s %s n'a pu être trouvé lors du traitement des dépendances des " "fichiers" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "Impossible de localiser la liste des paquets sources %s" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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" -#: apt-pkg/pkgcachegen.cc:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "Assemblage des fichiers listés dans les champs Provides" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 msgid "IO Error saving source cache" msgstr "" "Erreur d'entrée/sortie lors de la sauvegarde du fichier de cache des sources" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "impossible de changer le nom, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "Somme de contrôle de hachage incohérente" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "Taille incohérente" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "L'opération %s n'est pas valable" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, c-format msgid "" "Unable to find expected entry '%s' in Release file (Wrong sources.list entry " @@ -3169,18 +3200,18 @@ msgstr "" "Impossible de trouver l'entrée « %s » attendue dans le fichier « Release » : " " ligne non valable dans sources.list ou fichier corrompu" -#: apt-pkg/acquire-item.cc:1586 +#: apt-pkg/acquire-item.cc:1595 #, 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" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 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" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " @@ -3189,12 +3220,12 @@ msgstr "" "Le fichier « Release » pour %s a expiré (plus valable depuis %s). Les mises " "à jour depuis ce dépôt ne s'effectueront pas." -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Distribution en conflit : %s (%s attendu, mais %s obtenu)" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3205,12 +3236,12 @@ msgstr "" "GPG : %s : %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "Erreur de GPG : %s : %s" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3219,14 +3250,14 @@ msgstr "" "Impossible de localiser un fichier du paquet %s. Cela signifie que vous " "devrez corriger ce paquet vous-même (absence d'architecture)." -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, 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 »" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -3234,71 +3265,67 @@ msgstr "" "Les fichiers d'index des paquets sont corrompus. Aucun champ « Filename: » " "pour le paquet %s." -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, c-format msgid "Unable to parse Release file %s" msgstr "Impossible d'analyser le fichier Release %s" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, c-format msgid "No sections in Release file %s" msgstr "Pas de sections dans le fichier Release %s" -#: apt-pkg/indexrecords.cc:112 +#: 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-pkg/indexrecords.cc:125 +#: 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-pkg/indexrecords.cc:144 +#: 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-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "Le bloc de fournisseur %s ne comporte pas d'empreinte" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, 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:583 -msgid "Unmounting CD-ROM\n" -msgstr "Démontage du cédérom\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "Démontage du cédérom...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "Attente du disque...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "Montage du cédérom...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " msgstr "Identification..." -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "Étiquette stockée : %s\n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "Démontage du cédérom...\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" msgstr "Examen du disque à la recherche de fichiers d'index...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3307,7 +3334,7 @@ msgstr "" "%zu index de paquets trouvés, %zu index de sources, %zu index de traductions " "et %zu signatures\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" @@ -3315,16 +3342,16 @@ msgstr "" "Aucun fichier de paquets trouvé. Ceci n'est peut-être pas un disque Debian " "ou bien l'architecture est-elle incorrecte." -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "Étiquette « %s » trouvée\n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "Ce nom n'est pas valable, veuillez recommencer.\n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3333,34 +3360,34 @@ msgstr "" "Ce disque s'appelle :\n" "« %s »\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "Copie des listes de paquets..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "Écriture de la nouvelle liste de sources\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "Les entrées de listes de sources pour ce disque sont :\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format msgid "Wrote %i records.\n" msgstr "%i enregistrements écrits.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:777 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i enregistrements écrits avec %i fichiers manquants.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:780 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i enregistrements écrits avec %i fichiers qui ne correspondent pas\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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 "" @@ -3377,43 +3404,43 @@ msgstr "Impossible de trouver l'enregistrement d'authentification pour %s" msgid "Hash mismatch for: %s" msgstr "Somme de contrôle de hachage incohérente pour %s" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "La version « %s » de « %s » est introuvable" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "La version « %s » de « %s » n'a pu être trouvée" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, c-format msgid "Couldn't find task '%s'" msgstr "Impossible de trouver la tâche « %s »" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, c-format msgid "Couldn't find any package by regex '%s'" msgstr "" "Impossible de trouver de paquet correspondant à l'expression rationnelle " "« %s »" -#: apt-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "" "Impossible de trouver de paquet correspondant à l'expression rationnelle " "« %s »" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, c-format msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" "Impossible de choisir les versions du paquet « %s » qui n'est qu'un paquet " "virtuel" -#: apt-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " @@ -3422,56 +3449,56 @@ msgstr "" "Impossible de choisir une version installée ou candidate du paquet « %s » " "qui n'en n'a aucune" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, c-format msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" "Impossible de choisir une nouvelle version du paquet « %s » qui n'est qu'un " "paquet virtuel" -#: apt-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" "Impossible de choisir une version candidate du paquet « %s » qui n'en n'a pas" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, 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é" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "Envoi du scénario au solveur" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "Envoi d'une requête au solveur" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "Préparation à la réception de la solution" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "Échec du solveur externe sans message d'erreur adapté" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "Exécu tion du solveur externe" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "Exécution de dpkg" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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." @@ -3479,118 +3506,118 @@ 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." -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "Installation de %s" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "Configuration de %s" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "Suppression de %s" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format msgid "Completely removing %s" msgstr "Suppression complète de %s" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "Disparition de %s constatée" -#: apt-pkg/deb/dpkgpm.cc:96 +#: 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" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "Répertoire %s inexistant" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format msgid "Could not open file '%s'" msgstr "Impossible d'ouvrir le fichier « %s »" -#: apt-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "Préparation de %s" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "Décompression de %s" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "Préparation de la configuration de %s" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "%s installé" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "Préparation de la suppression de %s" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "%s supprimé" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "Préparation de la suppression complète de %s" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "%s complètement supprimé" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "Impossible d'écrire sur %s" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "L'opération a été interrompue avant de se terminer" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 msgid "No apport report written because MaxReports is reached already" msgstr "Aucun rapport « apport » écrit car MaxReports a déjà été atteint" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "problème de dépendances : laissé non configuré" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3598,14 +3625,14 @@ msgstr "" "Aucun rapport « apport » n'a été créé car le message d'erreur indique une " "erreur consécutive à un échec précédent." -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" "Aucun rapport « apport » n'a été créé car un disque plein a été signalé" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3613,7 +3640,7 @@ msgstr "" "Aucun « apport » n'a été créé car une erreur de dépassement de capacité " "mémoire a été signalée" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 #, fuzzy msgid "" "No apport report written because the error message indicates an issue on the " @@ -3621,14 +3648,14 @@ msgid "" msgstr "" "Aucun rapport « apport » n'a été créé car un disque plein a été signalé" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 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" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " @@ -3637,7 +3664,7 @@ msgstr "" "Impossible de verrouiller le répertoire d'administration (%s). Il est " "possible qu'un autre processus l'utilise." -#: apt-pkg/deb/debsystem.cc:87 +#: apt-pkg/deb/debsystem.cc:94 #, c-format msgid "Unable to lock the administration directory (%s), are you root?" msgstr "" @@ -3646,7 +3673,7 @@ msgstr "" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " @@ -3654,7 +3681,7 @@ msgstr "" "dpkg a été interrompu. Il est nécessaire d'utiliser « %s » pour corriger le " "problème." -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "Non verrouillé" @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_gl\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2011-05-12 15:28+0100\n" "Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>\n" "Language-Team: galician <proxecto@trasno.net>\n" @@ -22,154 +22,155 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Poedit-Language: Galician\n" -#: cmdline/apt-cache.cc:140 +#: 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" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "Número total de nomes de paquetes : " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 msgid "Total package structures: " msgstr "Estruturas de paquetes totais: " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " Paquetes normais: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " Paquetes virtuais puros: " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " Paquetes virtuais simples: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " Paquetes virtuais mixtos: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " Non atopados: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "Número total de versións distintas: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "Número total de descricións distintas: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "Número total de dependencias: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "Número total de relacións versión/ficheiro: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "Número total de relacións descrición/ficheiro: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "Número total de asignacións provistas: " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "Número total de cadeas: " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "Espazo total de versións de dependencias: " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "Espazo de reserva total: " -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "Espazo total contabilizado: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format msgid "Package file %s is out of sync." msgstr "O ficheiro de paquete %s está sen sincronizar." -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 msgid "No packages found" msgstr "Non se atopou ningún paquete" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 msgid "You must give at least one search pattern" msgstr "Debe fornecer cando menos un patrón de busca" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "Non foi posÃbel atopar o paquete %s" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "Ficheiros de paquetes:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 msgid "Cache is out of sync, can't x-ref a package file" msgstr "" "A caché está sen sincronizar, non se pode facer referencia a un ficheiro de " "paquetes" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "Paquetes inmobilizados:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(non se atopou)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " Instalado: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " Candidato: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(ningún)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " Inmobilizado: " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " Táboa de versións:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s para %s compilado en %s %s\n" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -243,28 +244,28 @@ msgstr "" "Vexa a páxina de manual apt-cache(8) e apt.conf(5) para obter mais " "información.\n" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: 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»" -#: cmdline/apt-cdrom.cc:104 +#: 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" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, c-format msgid "Failed to mount '%s' to '%s'" msgstr "Produciuse un fallo ao montar «%s» en «%s»" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Repita este proceso para o resto de CD do seu conxunto." @@ -301,65 +302,65 @@ msgstr "" " -o=? Estabelece unha opción de configuración, por exemplo: -o dir::cache=/" "tmp\n" -#: cmdline/apt-get.cc:244 +#: 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»" -#: cmdline/apt-get.cc:326 +#: 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»" -#: cmdline/apt-get.cc:329 +#: 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»" -#: cmdline/apt-get.cc:366 +#: cmdline/apt-get.cc:367 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Tome «%s» como paquete fonte no canto de «%s»\n" -#: cmdline/apt-get.cc:422 +#: 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»" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "Non foi posÃbel atopar o paquete %s" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "%s cambiado a instalado manualmente.\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: 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:468 cmdline/apt-mark.cc:116 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: 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:573 cmdline/apt-get.cc:610 +#: 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:725 +#: 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:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "Non sé posÃbel atopar un paquete fonte para %s" @@ -385,97 +386,97 @@ msgstr "" "para obter as últimas actualizacións (posibelmente non publicadas) do " "paquete.\n" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "OmÃtese o ficheiro xa descargado «%s»\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "Non foi posÃbel determinar o espazo libre en %s" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "Non hai espazo libre abondo en %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Ten que recibir %sB/%sB de arquivos de fonte.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Ten que recibir %sB de arquivos de fonte.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "Obter fonte %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "Non se puideron obter algúns arquivos." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "Completouse a descarga no modo de só descargas" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "OmÃtese o desempaquetado do código fonte xa desempaquetado en %s\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Fallou a orde de desempaquetado «%s».\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Comprobe que o paquete «dpkg-dev» estea instalado.\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "Fallou a orde de construción de «%s».\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "O proceso fillo fallou" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "" "Ten que especificar polo menos un paquete para comprobarlle as dependencias " "de compilación" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Non é posÃbel obter a información de dependencias de compilación de %s" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s non ten dependencias de compilación.\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -484,7 +485,7 @@ msgstr "" "A dependencia «%s» de %s non se pode satisfacer porque non se pode atopar o " "paquete %s" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -493,14 +494,14 @@ msgstr "" "A dependencia «%s» de %s non se pode satisfacer porque non se pode atopar o " "paquete %s" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Non foi posÃbel satisfacer a dependencia «%s» de %s: O paquete instalado %s " "é novo de máis" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -509,7 +510,7 @@ msgstr "" "A dependencia «%s» de %s non se pode satisfacer porque ningunha versión " "dispoñÃbel do paquete %s satisfai os requirimentos de versión" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -518,30 +519,30 @@ msgstr "" "A dependencia «%s» de %s non se pode satisfacer porque non se pode atopar o " "paquete %s" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Non foi posÃbel satisfacer a dependencia «%s» de %s: %s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Non se puideron satisfacer as dependencias de construción de %s." -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "Non se puideron procesar as dependencias de construción" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, c-format msgid "Changelog for %s (%s)" msgstr "Rexistro de cambios de %s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "Módulos admitidos:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -634,53 +635,75 @@ msgstr "" "para obter mais información e opcións\n" " Este APT ten poderes da Super Vaca.\n" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Ten que especificar polo menos un paquete para obter o código fonte" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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 "mais non está instalado" -#: cmdline/apt-mark.cc:63 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format msgid "%s was already set to manually installed.\n" msgstr "%s cambiado a instalado manualmente.\n" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, fuzzy, c-format msgid "%s was already set to automatically installed.\n" msgstr "%s está estabelecido para a súa instalación automática.\n" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format msgid "%s was already set on hold.\n" msgstr "%s xa é a versión máis recente.\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, fuzzy, c-format msgid "%s was already not hold.\n" msgstr "%s xa é a versión máis recente.\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Agardouse por %s pero non estaba alÃ" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, fuzzy, c-format msgid "%s set on hold.\n" msgstr "%s cambiado a instalado manualmente.\n" -#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, fuzzy, c-format msgid "Canceled hold on %s.\n" msgstr "Non foi posÃbel abrir %s" -#: cmdline/apt-mark.cc:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" "\n" @@ -707,7 +730,7 @@ msgid "" "See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -755,52 +778,52 @@ msgstr "Non é posÃbel desmontar o CD-ROM de %s, pode estarse empregando aÃnda msgid "Disk not found." msgstr "Non se atopou o disco" -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: 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:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: 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:82 methods/gzip.cc:113 methods/rred.cc:606 +#: 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:47 +#: 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:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "Identificándose" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "Non é posÃbel determinar o nome do outro extremo" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "Non é posÃbel determinar o nome local" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format msgid "The server refused the connection and said: %s" msgstr "O servidor rexeitou a conexión e dixo: %s" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "Fallou a orde USER, o servidor dixo: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "Fallou a orde PASS, o servidor dixo: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -808,122 +831,124 @@ msgstr "" "Especificouse un servidor proxy pero non un script de conexión, Acquire::" "ftp::ProxyLogin está baleiro." -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Fallou a orde do script de acceso «%s», o servidor dixo: %s" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "Fallou a orde TYPE, o servidor dixo: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: 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:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "O servidor pechou a conexión" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "Produciuse un erro de lectura" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "Unha resposta desbordou o búfer." -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "Dano no protocolo" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "Produciuse un erro de escritura" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: 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:707 +#: 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:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "Fallou" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "Non é posÃbel conectar o socket pasivo." -#: methods/ftp.cc:730 +#: 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:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "Non é posÃbel ligar un socket" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "Non é posÃbel escoitar no socket" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "Non é posÃbel determinar o nome do socket" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "Non é posÃbel enviar a orde PORT" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Familia de enderezos %u (AF_*) descoñecida" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "Produciuse un fallou na orde EPRT, o servidor dixo: %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "A conexión do socket de datos esgotou o tempo" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "Non é posÃbel aceptar a conexión" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "Xurdiu un problema ao calcular o hash do ficheiro" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Non é posÃbel obter o ficheiro, o servidor dixo «%s»" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "O socket de datos esgotou o tempo" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Produciuse un fallou na transferencia de datos, o servidor dixo «%s»" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "Petición" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "Non é posÃbel chamar a " @@ -959,7 +984,7 @@ msgstr "Non foi posÃbel conectar a %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "Conectando a %s" @@ -989,40 +1014,40 @@ msgstr "Aconteceu algo malo, buscando «%s:%s» (%i - %s)" msgid "Unable to connect to %s:%s:" msgstr "Non é posÃbel conectar %s:%s:" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Erro interno: Sinatura correcta, pero non foi posÃbel determinar a pegada " "dixital da chave" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "Atopouse polo menos unha sinatura incorrecta." -#: methods/gpgv.cc:172 +#: 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?)" #. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "Produciuse un erro descoñecido ao executar gpgv" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "As seguintes sinaturas non eran correctas:\n" -#: methods/gpgv.cc:229 +#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@ -1030,152 +1055,152 @@ msgstr "" "Non se puideron verificar as seguintes sinaturas porque a chave pública non " "está dispoñÃbel:\n" -#: methods/gzip.cc:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "Os ficheiros baleiros non poden ser arquivadores válidos" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "Produciuse un erro ao escribir no ficheiro" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "" "Produciuse un erro ao ler do servidor. O extremo remoto pechou a conexión" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "Produciuse un erro ao ler do servidor" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "Produciuse un erro ao escribir nun ficheiro" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "Fallou a chamada a select" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "A conexión esgotou o tempo" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "Produciuse un erro ao escribir no ficheiro de saÃda" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "Agardando polas cabeceiras" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "Liña de cabeceira incorrecta" -#: methods/server.cc:139 methods/server.cc:146 +#: 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" -#: methods/server.cc:176 +#: 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" -#: methods/server.cc:199 +#: 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" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "Este servidor HTTP ten a compatibilidade de rangos estragada" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "Formato de datos descoñecido" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "Datos da cabeceira incorrectos" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "Produciuse un fallo na conexión" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "Produciuse un erro interno" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" "Produciuse un erro interno, chamouse a InstallPackages con paquetes " "estragados." -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "Hai que retirar paquetes mais o retirado está desactivado." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "Produciuse un erro interno; non rematou a ordenación" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" "Que estraño... Os tamaños non coinciden; envÃe un correo-e a apt@packages." "debian.org" #. TRANSLATOR: The required 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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Ten que recibir %sB/%sB de arquivos.\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:171 +#: apt-private/private-install.cc:159 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Ten que recibir %sB de arquivos.\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:178 +#: apt-private/private-install.cc:166 #, 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" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:183 +#: apt-private/private-install.cc:171 #, 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" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "Non hai espazo libre abondo en %s." -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "Xurdiron problemas e empregouse -y sen --force-yes" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Especificouse «Só triviais» mais esta non é unha operación trivial." #. 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Si, fai o que digo!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1186,19 +1211,19 @@ msgstr "" "Para continuar escriba a frase «%s»\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "Interromper." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "Quere continuar?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "Non foi posÃbel descargar algúns ficheiros" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1206,20 +1231,20 @@ msgstr "" "Non foi posÃbel obter algúns arquivos; probe con apt-get update ou --fix-" "missing." -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "" "O emprego conxunto de --fix-missing e intercambio de discos non está admitido" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "Non é posÃbel corrixir os paquetes non dispoñÃbeis." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "Interrompendo a instalación." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1233,17 +1258,17 @@ 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:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Nota: Isto será feito automaticamente por dpkg." -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "Non se agarda que eliminemos cousas, non se pode iniciar o Retirado " "automático" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1261,15 +1286,15 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 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:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "Produciuse un erro interno, o Retirado automático estragou cousas" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1281,7 +1306,7 @@ msgstr[1] "" "Os seguintes paquetes foron instalados automaticamente e xa non son " "necesarios:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1290,18 +1315,18 @@ 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:530 +#: apt-private/private-install.cc:518 #, fuzzy msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Empregue «apt-get autoremove» para eliminalos." msgstr[1] "Empregue «apt-get autoremove» para eliminalos." -#: apt-private/private-install.cc:624 +#: apt-private/private-install.cc:612 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Pode querer executar «apt-get -f install» para corrixir isto:" -#: apt-private/private-install.cc:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1309,7 +1334,7 @@ msgstr "" "Dependencias incumpridas. Probe «apt-get -f install» sen paquetes (ou " "especifique unha solución)." -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1322,145 +1347,145 @@ msgstr "" "algúns paquetes solicitados aÃnda non se creasen ou que se movesen da " "entrada." -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "Paquetes estragados" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "Instalaranse os seguintes paquetes extra:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "Paquetes suxeridos:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "Paquetes recomendados:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "AVISO: Non se poden autenticar os seguintes paquetes!" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "Ignórase o aviso de autenticación.\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "Non foi posÃbel autenticar algúns paquetes" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "Instalar estes paquetes sen verificación?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Non foi posÃbel obter %s %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [Instalado]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [Instalado]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [Instalado]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [Instalado]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "Os seguintes paquetes teñen dependencias sen cumprir:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "mais %s está instalado" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "mais vaise instalar %s" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "mais non é instalábel" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "mais é un paquete virtual" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "mais non está instalado" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "mais non se vai a instalar" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " ou" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "Os seguintes paquetes NOVOS hanse instalar:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "Vanse RETIRAR os paquetes seguintes:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "Consérvanse os seguintes paquetes:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "Vanse anovar os paquetes seguintes:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "Vanse REVERTER os seguintes paquetes :" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "Vanse modificar os paquetes retidos seguintes:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (por mor de %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1468,27 +1493,27 @@ msgstr "" "AVISO: Retiraranse os seguintes paquetes esenciais.\n" "Isto NON se debe facer a menos que saiba exactamente o que está a facer!" -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu anovados, %lu instalados, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu reinstalados, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu revertidos, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "Vanse retirar %lu e deixar %lu sen anovar.\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu non instalados ou retirados de todo.\n" @@ -1497,7 +1522,7 @@ msgstr "%lu non instalados ou retirados de todo.\n" #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "[S/n]" @@ -1505,91 +1530,91 @@ msgstr "[S/n]" #. 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:702 +#: apt-private/private-output.cc:708 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:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "S" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "N" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "Produciuse un erro na compilación da expresión regular - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "Corrixindo as dependencias..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " fallou." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "Non foi posÃbel corrixir as dependencias." -#: apt-private/private-cachefile.cc:96 +#: 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-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " Feito" -#: apt-private/private-cachefile.cc:102 +#: 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-private/private-cachefile.cc:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "Dependencias incumpridas. Probe a empregar -f." -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "A orde «update» non toma argumentos" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "Calculando a anovación... " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "Produciuse un erro interno, AllUpgrade estragou cousas" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "Feito" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1602,43 +1627,43 @@ msgstr "" " Lembre tamén que o bloqueo está desactivado,\n" " polo que non debe depender da relevancia da situación actual real." -#: apt-private/private-sources.cc:45 +#: 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-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "Teño " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "Rcb:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "Ign " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Err " -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "Obtivéronse %sB en %s (%sB/s)\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [Traballando]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1651,19 +1676,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "Non é posÃbel ler %s" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "Non é posÃbel cambiar a %s" @@ -1692,11 +1717,11 @@ msgstr "Non é posÃbel ler o ficheiro de replica «%s»" msgid "[Mirror: %s]" msgstr "[Replica: %s]" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: 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:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "A conexión pechouse prematuramente" @@ -1762,40 +1787,45 @@ msgstr "" " -o=? Estabelece unha opción de configuración, por exemplo: -o dir::cache=/" "tmp\n" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: 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:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "Non é posÃbel escribir en %s" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Non é posÃbel obter a versión de debconf. Debconf está instalado?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "A lista de extensións de paquetes é longa de máis" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "Produciuse un erro ao procesar o directorio %s" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "A lista de extensións de fontes é longa de máis" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "Produciuse un erro ao gravar a cabeceira no ficheiro de contido" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "Produciuse un erro ao procesar o contido %s" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1878,26 +1908,26 @@ msgstr "" " -c=? Le este ficheiro de configuración\n" " -o=? Estabelece unha opción de configuración" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "Non coincide ningunha selección" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Faltan ficheiros no grupo de ficheiros de paquetes «%s»" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, 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:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "A base de datos é antiga, tentando anovar %s" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -1905,192 +1935,192 @@ 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:81 +#: ftparchive/cachedb.cc:85 #, 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:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "Non foi posÃbel determinar o estado %s" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "O arquivo non ten un rexistro de control" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "Non é posÃbel obter un cursor" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "A: non é posÃbel ler o directorio %s\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "A: non é posÃbel atopar %s\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "A: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "E: os erros aplÃcanse ao ficheiro " -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "Non foi posÃbel solucionar %s" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "Fallou o percorrido da árbore" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "Non foi posÃbel abrir %s" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " DesLig %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "Non foi posÃbel ler a ligazón %s" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "Non foi posÃbel desligar %s" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Non foi posÃbel ligar %s con %s" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Acadouse o lÃmite de desligado de %sB.\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "O arquivo non tiña un campo Package" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %s non ten unha entrada de «override»\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " O mantedor de %s é %s, non %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, 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:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s tampouco ten unha entrada de «override» de binarios\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - Non foi posÃbel reservar memoria" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "Non é posÃbel puido abrir %s" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "«Override» %s liña %lu incorrecta (1)" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "Non foi posÃbel ler o ficheiro de «override» %s" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, fuzzy, c-format msgid "Malformed override %s line %llu #1" msgstr "«Override» %s liña %lu incorrecta (1)" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, fuzzy, c-format msgid "Malformed override %s line %llu #2" msgstr "«Override» %s liña %lu incorrecta (2)" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, fuzzy, c-format msgid "Malformed override %s line %llu #3" msgstr "«Override» %s liña %lu incorrecta (3)" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "Algoritmo de compresión «%s» descoñecido" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "A saÃda comprimida %s precisa dun conxunto de compresión" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "Non foi posÃbel crear o FILE*" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "Non foi posÃbel facer a bifurcación" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "Fillo de compresión" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "Produciuse un erro interno, non foi posÃbel crear %s" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "Produciuse un fallo na E/S do subproceso/ficheiro" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "Non foi posÃbel ler ao calcular o MD5" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "Xurdiu un problema ao desligar %s" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "Non foi posÃbel cambiar o nome de %s a %s" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -2145,157 +2175,157 @@ msgstr "" " -o=? Estabelece unha opción de configuración; por exemplo, -o dir::cache=/" "tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "Non foi posÃbel crear as canles" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "Non foi posÃbel executar gzip " -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "Arquivo danado" -#: apt-inst/contrib/extracttar.cc:201 +#: 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:306 +#: 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-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "Sinatura de arquivo incorrecta" -#: apt-inst/contrib/arfile.cc:82 +#: 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:94 +#: 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:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "Cabeceira do membro do arquivo incorrecta" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "O arquivo é curto de máis" -#: apt-inst/contrib/arfile.cc:139 +#: 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/filelist.cc:382 +#: 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:414 +#: 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:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "Non foi posÃbel reservar un desvÃo" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "Produciuse un erro interno en AddDiversion" -#: apt-inst/filelist.cc:479 +#: apt-inst/filelist.cc:477 #, c-format msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" msgstr "Téntase sobrescribir un desvÃo, %s -> %s e %s/%s" -#: apt-inst/filelist.cc:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "DesvÃo %s -> %s engadido dúas veces" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "Ficheiro de configuración %s/%s duplicado" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format msgid "Failed to write file %s" msgstr "Non foi posÃbel escribir no ficheiro «%s»" -#: apt-inst/dirstream.cc:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "Non foi posÃbel pechar o ficheiro %s" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format msgid "The path %s is too long" msgstr "A ruta %s é longa de máis" -#: apt-inst/extract.cc:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "Desempaquetando %s máis dunha vez" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "O directorio %s está desviado" -#: apt-inst/extract.cc:145 +#: 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" -#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 msgid "The diversion path is too long" msgstr "A ruta do desvÃo é longa de máis" -#: apt-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "O directorio %s estase a substituÃr por algo que non é un directorio" -#: apt-inst/extract.cc:282 +#: 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:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "A ruta é longa de máis" -#: apt-inst/extract.cc:414 +#: 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" -#: apt-inst/extract.cc:431 +#: apt-inst/extract.cc:438 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "O ficheiro %s/%s sobrescribe o do paquete %s" -#: apt-inst/extract.cc:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "Non é posÃbel determinar o estado %s" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format msgid "This is not a valid DEB archive, missing '%s' member" msgstr "Este non é un arquivo DEB correcto, falta o membro «%s»" -#: apt-inst/deb/debfile.cc:124 +#: apt-inst/deb/debfile.cc:132 #, 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:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "Ficheiro de control non analizábel" @@ -2356,211 +2386,206 @@ msgstr "" "desactivado polo usuario." #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lid %lih %limin %lis" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "%lih %limin %lis" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "%limin %lis" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "%lis" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "Non se atopou a selección %s" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Abreviatura de tipo «%c» descoñecida" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "Abrindo o ficheiro de configuración %s" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Produciuse un erro de sintaxe %s:%u: O bloque comeza sen un nome." -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Produciuse un erro de sintaxe %s:%u: Etiqueta mal formada" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Produciuse un erro de sintaxe %s:%u: Lixo extra despois do valor" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "Produciuse un erro de sintaxe %s:%u: Só se poden facer directivas no nivel " "superior" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, 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" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Produciuse un erro de sintaxe %s:%u: IncluÃdo de aquÃ" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Produciuse un erro de sintaxe %s:%u: Non se admite a directiva «%s»" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-pkg/contrib/configuration.cc:900 #, 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-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Produciuse un erro de sintaxe %s:%u: Lixo extra á fin da liña" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... Erro!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... Feito" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s... Feito" -#: apt-pkg/contrib/cmndline.cc:116 +#: 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-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: 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-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: 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." -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "" "Opción %s: A especificación de elemento de configuración debe ter un =<val>." -#: apt-pkg/contrib/cmndline.cc:273 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format msgid "Option %s requires an integer argument, not '%s'" msgstr "A opción %s precisa dun argumento enteiro, non «%s»" -#: apt-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "A opción «%s» é longa de máis" -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "O senso %s non se entende, probe «true» ou «false»." -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "Operación incorrecta: %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format msgid "Unable to stat the mount point %s" msgstr "Non é posÃbel analizar o punto de montaxe %s" -#: apt-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "Non foi posÃbel analizar o CD-ROM" -#: apt-pkg/contrib/fileutl.cc:95 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Produciuse un problema ao pechar o arquivo gzip %s" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, 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" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "Non foi posÃbel abrir o ficheiro de bloqueo %s" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, 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" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "Non foi posÃbel obter o bloqueo %s" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, 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-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, 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-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, 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-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" @@ -2568,282 +2593,292 @@ msgstr "" "Ignorando o ficheiro «%s» no directorio «%s» xa que ten unha extensión de " "nome incorrecta" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "O subproceso %s recibiu un fallo de segmento." -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, c-format msgid "Sub-process %s received signal %u." msgstr "O subproceso %s recibiu o sinal %u." -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 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-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "O subproceso %s saÃu de xeito inesperado" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Produciuse un problema ao pechar o arquivo gzip %s" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "Non foi posÃbel abrir o ficheiro %s" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, c-format msgid "Could not open file descriptor %d" msgstr "Non foi posÃbel abrir o descritor de ficheiro %d" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "Non foi posÃbel crear o IPC do subproceso" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "Non foi posÃbel executar o compresor " -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, 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-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, fuzzy, c-format msgid "write, still have %llu to write but couldn't" msgstr "escritura, aÃnda hai %lu para escribir pero non se puido" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, c-format msgid "Problem closing the file %s" msgstr "Produciuse un problema ao pechar o ficheiro %s" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, c-format msgid "Problem renaming the file %s to %s" msgstr "Produciuse un problema ao renomear o ficheiro %s a %s" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, c-format msgid "Problem unlinking the file %s" msgstr "Produciuse un problema ao desligar o ficheiro %s" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "Produciuse un problema ao sincronizar o ficheiro" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "non foi posÃbel cambiar o nome, %s (%s -> %s)." + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, c-format msgid "No keyring installed in %s." msgstr "Non ha ningún chaveiro instalado en %s." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "Caché de paquetes baleira" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "O ficheiro de caché de paquetes está danado" -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "O ficheiro de caché de paquetes é unha versión incompatÃbel" -#: apt-pkg/pkgcache.cc:162 +#: 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" -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "Este APT non admite o sistema de versionado «%s»" -#: apt-pkg/pkgcache.cc:172 +#: 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:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "Depende" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "PreDepende" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "Suxire" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "Recomenda" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "Conflitos" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "Substitúe a" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "Fai obsoleto a" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "Estraga" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "Mellora" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "importante" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "requirido" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "estándar" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "opcional" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "extra" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "Construindo a árbore de dependencias" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "Versións candidatas" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "Xeración de dependencias" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 msgid "Reading state information" msgstr "Lendo a información do estado" -#: apt-pkg/depcache.cc:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "Non foi posÃbel abrir o ficheiro de estado %s" -#: apt-pkg/depcache.cc:250 +#: 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-pkg/tagfile.cc:138 +#: 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-pkg/tagfile.cc:235 +#: 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-pkg/sourcelist.cc:118 +#: apt-pkg/sourcelist.cc:127 #, fuzzy, c-format msgid "Malformed stanza %u in source list %s (URI parse)" msgstr "Liña %lu mal construÃda na lista de orixes %s (análise de URI)" -#: apt-pkg/sourcelist.cc:161 +#: 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-pkg/sourcelist.cc:164 +#: 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-pkg/sourcelist.cc:175 +#: 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-pkg/sourcelist.cc:181 +#: 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-pkg/sourcelist.cc:184 +#: apt-pkg/sourcelist.cc:193 #, c-format msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" "Liña %lu mal construÃda na lista de fontes %s ([%s] a chave %s non ten valor)" -#: apt-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "Liña %lu mal construÃda na lista de orixes %s (URI)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "Liña %lu mal construÃda na lista de orixes %s (dist)" -#: apt-pkg/sourcelist.cc:202 +#: apt-pkg/sourcelist.cc:211 #, c-format msgid "Malformed line %lu in source list %s (URI parse)" msgstr "Liña %lu mal construÃda na lista de orixes %s (análise de URI)" -#: apt-pkg/sourcelist.cc:208 +#: apt-pkg/sourcelist.cc:217 #, c-format msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "Liña %lu mal construÃda na lista de orixes %s (dist absoluta)" -#: apt-pkg/sourcelist.cc:215 +#: apt-pkg/sourcelist.cc:224 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" msgstr "Liña %lu mal construÃda na lista de orixes %s (análise de dist)" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "Abrindo %s" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "Liña %u longa de máis na lista de orixes %s." -#: apt-pkg/sourcelist.cc:362 +#: apt-pkg/sourcelist.cc:371 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Liña %u mal construÃda na lista de orixes %s (tipo)" -#: apt-pkg/sourcelist.cc:366 +#: 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" -#: apt-pkg/sourcelist.cc:407 +#: 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-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2852,12 +2887,12 @@ msgstr "" "Non foi posÃbel facer a configuración inmediata en «%s». Vexa man 5 apt.conf " "baixo APT::Immediate-Configure para obter máis detalles. (%d)" -#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "Non foi posÃbel abrir o ficheiro «%s»" -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2868,12 +2903,12 @@ msgstr "" "por mor dun bucle de Conflitos e Pre-dependencias. Isto adoita ser malo, " "pero se o quere facer, active a opción APT::Force-LoopBreak." -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "O tipo de ficheiros de Ãndices «%s» non está admitido" -#: apt-pkg/algorithms.cc:266 +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." @@ -2881,7 +2916,7 @@ msgstr "" "O paquete %s ten que ser reinstalado, mais non é posÃbel atopar o seu " "arquivo." -#: apt-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2889,192 +2924,187 @@ msgstr "" "Erro, pkgProblemResolver::Resolve xerou interrupcións, isto pode estar " "causado por paquetes retidos." -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "Non é posÃbel solucionar os problemas, ten retidos paquetes rotos." -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, c-format msgid "List directory %spartial is missing." msgstr "Non se atopa a lista de directorios %sparcial." -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, c-format msgid "Archives directory %spartial is missing." msgstr "Non se atopa a lista de arquivos %sparcial." -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, c-format msgid "Unable to lock directory %s" msgstr "Non é posÃbel bloquear o directorio %s" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Obtendo o ficheiro %li de %li (restan %s)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "Obtendo o ficheiro %li de %li" -#: apt-pkg/acquire-worker.cc:113 +#: 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." -#: apt-pkg/acquire-worker.cc:115 +#: 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" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "O método %s non se iniciou correctamente" -#: apt-pkg/acquire-worker.cc:452 +#: 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." -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "O sistema de empaquetado «%s» non está admitido" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "Non é posÃbel determinar un tipo de sistema de empaquetado axeitado" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "Non é posÃbel analizar %s." -#: apt-pkg/srcrecords.cc:47 +#: 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/cachefile.cc:87 +#: 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." -#: apt-pkg/cachefile.cc:91 +#: 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:109 +#: 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/policy.cc:75 +#: 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 "" -#: apt-pkg/policy.cc:414 +#: apt-pkg/policy.cc:422 #, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "" "Rexistro incorrecto no ficheiro de preferencias %s; falta a cabeceira Package" -#: apt-pkg/policy.cc:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "Non se entendeu o tipo de inmobilización %s" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "" "Non se indicou unha prioridade (ou indicouse cero) para a inmobilización" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 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:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: 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)" -#: apt-pkg/pkgcachegen.cc:251 +#: apt-pkg/pkgcachegen.cc:257 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "Vaites!, superou o número de nomes de paquetes que este APT pode manexar." -#: apt-pkg/pkgcachegen.cc:254 +#: 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:257 +#: 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:260 +#: 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." -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:576 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "Non foi posÃbel atopar o paquete %s %s ao procesar as dependencias de " "ficheiros" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "Non foi posÃbel atopar a lista de paquetes fonte %s" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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" -#: apt-pkg/pkgcachegen.cc:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "Recollendo as provisións de ficheiros" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: 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" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "non foi posÃbel cambiar o nome, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "A sumas «hash» non coinciden" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "Os tamaños non coinciden" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "Operación incorrecta: %s" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, c-format msgid "" "Unable to find expected entry '%s' in Release file (Wrong sources.list entry " @@ -3083,29 +3113,29 @@ msgstr "" "Non é posÃbel atopar a entrada agardada «%s» no ficheiro de publicación " "(entrada sources.list incorrecta ou ficheiro con formato incorrecto)" -#: apt-pkg/acquire-item.cc:1586 +#: apt-pkg/acquire-item.cc:1595 #, 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" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "Non hai unha chave pública dispoñÃbel para os seguintes ID de chave:\n" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " "repository will not be applied." msgstr "" -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Conflito na distribución: %s (agardábase %s mais obtÃvose %s)" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3116,12 +3146,12 @@ msgstr "" "%s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "Produciuse un erro de GPG: %s %s" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3130,12 +3160,12 @@ 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)" -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -3143,71 +3173,67 @@ msgstr "" "Os ficheiros de Ãndices de paquetes están danados. Non hai un campo " "Filename: para o paquete %s." -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, c-format msgid "Unable to parse Release file %s" msgstr "Non se puido analizar o ficheiro de publicación %s" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, c-format msgid "No sections in Release file %s" msgstr "Non hai seccións no ficheiro de publicación %s" -#: apt-pkg/indexrecords.cc:112 +#: 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-pkg/indexrecords.cc:125 +#: 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-pkg/indexrecords.cc:144 +#: 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-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "O bloque de provedor %s non contén unha pegada dixital" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Empregando o punto de montaxe de CD-ROM %s\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "Desmontando o CD-ROM\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "Desmontando o CD-ROM...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "Agardando polo disco...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "Montando o CD-ROM...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " msgstr "Identificando... " -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "Etiqueta almacenada: %s\n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "Desmontando o CD-ROM...\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" -msgstr "Buscando os ficheiros de Ãndices no disco..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" +msgstr "Buscando os ficheiros de Ãndices no disco...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3216,7 +3242,7 @@ msgstr "" "Atopáronse %zu Ãndices de paquetes, %zu Ãndices de orixes, %zu Ãndices de " "traducións e %zu sinaturas\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" @@ -3224,16 +3250,16 @@ 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:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "Atopouse a etiqueta «%s»\n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "Ese non é un nome correcto, volva tentalo.\n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3242,34 +3268,34 @@ msgstr "" "Este disco chámase: \n" "«%s»\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "Copiando as listas de paquetes..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "Escribindo a nova lista de orixes\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "As entradas da lista de orixes deste disco son:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format msgid "Wrote %i records.\n" msgstr "EscribÃronse %i rexistros.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:777 +#: 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" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:780 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "EscribÃronse %i rexistros con %i ficheiros que non coinciden\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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 "" @@ -3286,39 +3312,39 @@ msgstr "Non é posÃbel atopar un rexistro de autenticación para: %s" msgid "Hash mismatch for: %s" msgstr "Valor de hash non coincidente para: %s" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Non se atopou a publicación «%s» de «%s»" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Non se atopou a versión «%s» de «%s»" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, c-format msgid "Couldn't find task '%s'" msgstr "Non foi posÃbel atopar a tarefa «%s»" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, 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:605 +#: apt-pkg/cacheset.cc:613 #, 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:616 +#: apt-pkg/cacheset.cc:624 #, 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-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " @@ -3327,57 +3353,57 @@ 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:637 +#: apt-pkg/cacheset.cc:645 #, 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-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, 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" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, 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" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "Executando dpkg" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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 " @@ -3386,120 +3412,120 @@ msgstr "" "Algúns ficheiros de Ãndice fallaron durante a descarga. Ignoráronse, ou " "foron utilizados algúns antigos no seu lugar" -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "Instalando %s" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "Configurando %s" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "Retirando %s" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format msgid "Completely removing %s" msgstr "%s completamente retirado" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "Tomando nota da desaparición de %s" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "Executando o disparador de post-instalación %s" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "Falta o directorio «%s»" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: 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-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "Preparando %s" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "Desempaquetando %s" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "Preparandose para configurar %s" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "Instalouse %s" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "Preparándose para o retirado de %s" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "Retirouse %s" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "Preparándose para retirar %s completamente" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "Retirouse %s completamente" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "Non é posÃbel escribir en %s" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 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" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "problemas de dependencias - déixase sen configurar" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3507,7 +3533,7 @@ msgstr "" "Non se escribiu ningún informe de Apport porque a mensaxe de erro indica que " "é un error provinte dun fallo anterior." -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" @@ -3515,7 +3541,7 @@ msgstr "" "Non se escribiu ningún informe de Apport porque a mensaxe de erro indica un " "erro de disco cheo." -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3523,7 +3549,7 @@ msgstr "" "Non se escribiu un informe de contribución porque a mensaxe de erro indica " "un erro de falta de memoria" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 #, fuzzy msgid "" "No apport report written because the error message indicates an issue on the " @@ -3532,14 +3558,14 @@ msgstr "" "Non se escribiu ningún informe de Apport porque a mensaxe de erro indica un " "erro de disco cheo." -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 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-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " @@ -3548,7 +3574,7 @@ msgstr "" "Non é posÃbel bloquear o directorio de administración (%s). Esta usandoo " "algún outro proceso?" -#: apt-pkg/deb/debsystem.cc:87 +#: apt-pkg/deb/debsystem.cc:94 #, c-format msgid "Unable to lock the administration directory (%s), are you root?" msgstr "" @@ -3557,14 +3583,14 @@ msgstr "" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " msgstr "" "dpkg interrompeuse, debe executar manualmente «%s» para corrixir o problema. " -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "Non está bloqueado" @@ -717,7 +717,7 @@ msgid "The list of sources could not be read." msgstr "רשימת המקורות ×œ× × ×™×ª× ×ª לקרי××”." #: cmdline/apt-get.cc:836 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" #: cmdline/apt-get.cc:841 @@ -2604,7 +2604,7 @@ msgid "" msgstr "" #: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 -msgid "Identifying.. " +msgid "Identifying... " msgstr "" #: apt-pkg/cdrom.cc:559 @@ -2621,10 +2621,6 @@ msgstr "" msgid "Using CD-ROM mount point %s\n" msgstr "" -#: apt-pkg/cdrom.cc:603 -msgid "Unmounting CD-ROM\n" -msgstr "" - #: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "" @@ -2635,7 +2631,7 @@ msgid "Mounting CD-ROM...\n" msgstr "" #: apt-pkg/cdrom.cc:633 -msgid "Scanning disc for index files..\n" +msgid "Scanning disc for index files...\n" msgstr "" #: apt-pkg/cdrom.cc:673 @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt trunk\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2012-06-25 17:09+0200\n" "Last-Translator: Gabor Kelemen <kelemeng at gnome dot hu>\n" "Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n" @@ -21,153 +21,154 @@ msgstr "" "X-Poedit-Country: HUNGARY\n" "X-Poedit-Language: Hungarian\n" -#: cmdline/apt-cache.cc:140 +#: 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" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "Csomagnevek összesen : " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 msgid "Total package structures: " msgstr "Csomagstruktúrák összesen: " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " Normális csomagok: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " Teljesen virtuális csomagok: " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " Egyedi virtuális csomagok: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " Vegyes virtuális csomagok: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " Hiányzik: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "KülönbözÅ‘ verziók összesen: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "Összes különbözÅ‘ leÃrás: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "FüggÅ‘ségek összesen: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "Verzió/Fájl kapcsolatok összesen: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "LeÃrás/Fájl kapcsolatok összesen: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "„BiztosÃtja†kapcsolatok összesen: " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "Minták összesen: " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "FüggÅ‘ségiverzió-terület összesen: " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "Slack terület összesen: " -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "Nyilvántartott terület összesen: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format msgid "Package file %s is out of sync." msgstr "%s csomagfájl nincs szinkronban." -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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" -#: cmdline/apt-cache.cc:1245 +#: 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" -#: cmdline/apt-cache.cc:1411 +#: 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." -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "Ez a csomag nem található: %s" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "Csomagfájlok:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: 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" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "RögzÃtett csomagok:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(nem található)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " TelepÃtve: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " Jelölt: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(nincs)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " CsomagrögzÃtés: " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " Verziótáblázat:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s erre: %s lefordÃtva ekkor: %s %s\n" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] showpkg pkg1 [pkg2 ...]\n" @@ -238,28 +239,28 @@ msgstr "" "Lásd az apt-cache(8) és apt.conf(5) kézikönyvlapokat további " "információkért.\n" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: 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â€" -#: cmdline/apt-cdrom.cc:104 +#: 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" -#: cmdline/apt-cdrom.cc:141 +#: 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" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Ismételje meg a folyamatot készlete többi CD-jével is." @@ -294,48 +295,48 @@ 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-get.cc:244 +#: 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" -#: cmdline/apt-get.cc:326 +#: 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" -#: cmdline/apt-get.cc:329 +#: 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" -#: cmdline/apt-get.cc:366 +#: cmdline/apt-get.cc:367 #, 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:422 +#: 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" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "Az alábbi csomag nem található: %s" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "%s kézi telepÃtésűre állÃtva.\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: 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:468 cmdline/apt-mark.cc:116 +#: 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." @@ -343,20 +344,20 @@ msgstr "" "Ez a parancs elavult. Használja helyette az „apt-mark auto†és az „apt-mark " "auto†parancsokat." -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: 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" -#: cmdline/apt-get.cc:573 cmdline/apt-get.cc:610 +#: 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" -#: cmdline/apt-get.cc:725 +#: 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" -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "Nem található forráscsomag ehhez: %s" @@ -382,80 +383,80 @@ msgstr "" "bzr branch %s\n" "a csomag legújabb (esetleg kiadatlan) frissÃtéseinek letöltéséhez.\n" -#: cmdline/apt-get.cc:840 +#: 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" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "Nem határozható meg a szabad hely mennyisége itt: %s" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "Nincs elég szabad hely itt: %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "LetöltendÅ‘ forrásadat-mennyiség: %sB/%sB.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "LetöltendÅ‘ forrásadat-mennyiség: %sB.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "Forrás letöltése: %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "Nem sikerült néhány archÃvumot letölteni." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "A letöltés befejezÅ‘dött a „csak letöltés†módban" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Egy már kibontott forrás kibontásának kihagyása itt: %s\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "„%s†kibontási parancs nem sikerült.\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "EllenÅ‘rizze, hogy a „dpkg-dev†csomag telepÃtve van-e.\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "„%s†elkészÃtési parancs nem sikerült.\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "Hiba a gyermekfolyamatnál" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "" "Legalább egy csomagot adjon meg, amelynek fordÃtási függÅ‘ségeit ellenÅ‘rizni " "kell" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -464,17 +465,17 @@ msgstr "" "Nem érhetÅ‘k el architektúrainformációk ehhez: %s. A beállÃtásokkal " "kapcsolatban lásd az apt.conf(5) APT::Architectures részét." -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Nem lehet %s fordÃtási függÅ‘ségeinek információit letölteni" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "Nincs fordÃtási függÅ‘sége a következÅ‘nek: %s.\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -483,7 +484,7 @@ msgstr "" "%2$s csomag %1$s függÅ‘sége nem elégÃthetÅ‘ ki, mert a(z) %3$s nem " "engedélyezett a(z) „%4$s†csomagokon" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -492,14 +493,14 @@ msgstr "" "%2$s csomag %1$s függÅ‘sége nem elégÃthetÅ‘ ki, mert a(z) %3$s csomag nem " "található" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "%2$s csomag %1$s függÅ‘sége nem elégÃthetÅ‘ ki: a telepÃtett %3$s csomag túl " "friss" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -508,7 +509,7 @@ msgstr "" "%2$s csomag %1$s függÅ‘sége nem elégÃthetÅ‘ ki, mert a(z) %3$s csomag elérhetÅ‘ " "verziója nem elégÃti ki a verziókövetelményeket" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -517,30 +518,30 @@ msgstr "" "%2$s csomag %1$s függÅ‘sége nem elégÃthetÅ‘ ki, mert a(z) %3$s csomagnak nincs " "jelölt verziója" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "%2$s csomag %1$s függÅ‘sége nem elégÃthetÅ‘ ki: %3$s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "%s épÃtési függÅ‘ségei nem elégÃthetÅ‘k ki." -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "Nem sikerült az épÃtési függÅ‘ségeket feldolgozni" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, c-format msgid "Changelog for %s (%s)" msgstr "Változási napló ehhez: %s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "Támogatott modulok:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -629,53 +630,76 @@ msgstr "" "információkért és opciókért.\n" " Ez az APT a SzuperTehén Hatalmával rendelkezik.\n" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "" +"Legalább egy csomagot meg kell adni, amelynek a forrását le kell tölteni" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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 nem jelölhetÅ‘ meg, mivel nincs telepÃtve.\n" -#: cmdline/apt-mark.cc:63 +#: cmdline/apt-mark.cc:74 #, c-format msgid "%s was already set to manually installed.\n" msgstr "%s már be van állÃtva kézi telepÃtésűre.\n" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, c-format msgid "%s was already set to automatically installed.\n" msgstr "%s már meg van jelölve automatikusan telepÃtettként.\n" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, c-format msgid "%s was already set on hold.\n" msgstr "%s már be van állÃtva visszafogásra.\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, c-format msgid "%s was already not hold.\n" msgstr "%s eddig sem volt visszafogva.\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Nem található a(z) %s, a várakozás után sem" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format msgid "%s set on hold.\n" msgstr "%s beállÃtva visszafogásra.\n" -#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format msgid "Canceled hold on %s.\n" msgstr "Visszafogás törölve ezen: %s.\n" -#: cmdline/apt-mark.cc:334 +#: 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:381 +#: cmdline/apt-mark.cc:392 #, fuzzy msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" @@ -723,7 +747,7 @@ msgstr "" "Lásd még az apt-mark(8) és apt.conf(5) kézikönyvlapokat további\n" "információkért." -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -772,52 +796,52 @@ msgstr "" msgid "Disk not found." msgstr "A lemez nem található." -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: 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:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: 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:82 methods/gzip.cc:113 methods/rred.cc:606 +#: 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:47 +#: 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:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "Bejelentkezés" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "Nem lehet a partner nevét megállapÃtani" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "Nem lehet a helyi nevet megállapÃtani" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format msgid "The server refused the connection and said: %s" msgstr "A kiszolgáló visszautasÃtotta a kapcsolatot: %s" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "Hibás USER, a kiszolgáló üzenete: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "Hibás PASS, a kiszolgáló üzenete: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -825,124 +849,126 @@ msgstr "" "Meg lett adva proxy kiszolgáló, de nincs bejelentkezési parancsfájl és az " "Acquire::ftp::ProxyLogin üres." -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, 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" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "Hibás TYPE, a kiszolgáló üzenete: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: 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:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "A kiszolgáló lezárta a kapcsolatot" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "Olvasási hiba" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: 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:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "Protokollhiba" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "Ãrási hiba" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: 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:707 +#: 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:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "Sikertelen" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "Nem lehet kapcsolódni a passzÃv foglalathoz." -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "A getaddrinfo nem talált figyelÅ‘foglalatot" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "Nem lehet összekapcsolódni a foglalattal" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "Nem lehet figyelni a foglalaton" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "Nem lehet megállapÃtani a foglalat nevét" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "Nem lehet PORT parancsot küldeni" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Ismeretlen cÃmcsalád: %u (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "Hibás EPRT, a kiszolgáló üzenete: %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "Az adatfoglalathoz kapcsolódás túllépte az idÅ‘korlátot" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "Nem lehet elfogadni a kapcsolatot" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: 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" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Nem lehet letölteni a fájlt, a kiszolgáló üzenete: „%sâ€" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "Az adatfoglalat túllépte az idÅ‘korlátot" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Az adatátvitel sikertelen, a kiszolgáló üzenete: „%sâ€" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "Lekérdezés" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "Nem lehet meghÃvni " @@ -978,7 +1004,7 @@ msgstr "Nem lehet kapcsolódni ehhez: %s: %s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "Kapcsolódás: %s" @@ -1008,37 +1034,37 @@ msgstr "Hiba történt „%s:%s†feloldásakor (%i - %s)" msgid "Unable to connect to %s:%s:" msgstr "Nem lehet csatlakozni ehhez: %s:%s:" -#: methods/gpgv.cc:166 +#: 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." -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "Legalább egy aláÃrás érvénytelen." -#: methods/gpgv.cc:172 +#: methods/gpgv.cc:174 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "Nem indÃtható el a „gpgv†az aláÃrás ellenÅ‘rzéséhez (telepÃtve van a gpgv?)" #. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "Ismeretlen gpgv futtatási hiba" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: 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:229 +#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@ -1046,146 +1072,146 @@ msgstr "" "Az alábbi aláÃrások nem ellenÅ‘rizhetÅ‘k, mert a nyilvános kulcs nem érhetÅ‘ " "el:\n" -#: methods/gzip.cc:65 +#: 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:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "Hiba a fájl Ãrásakor" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "Hiba a kiszolgálóról olvasáskor, a túloldal lezárta a kapcsolatot" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "Hiba a kiszolgálóról olvasáskor" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "Hiba a fájl Ãrásakor" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "A kiválasztás sikertelen" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "IdÅ‘túllépés a kapcsolatban" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "Hiba a kimeneti fájl Ãrásakor" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "Várakozás a fejlécekre" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "Rossz fejlécsor" -#: methods/server.cc:139 methods/server.cc:146 +#: 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" -#: methods/server.cc:176 +#: 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" -#: methods/server.cc:199 +#: 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" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "A HTTP-kiszolgáló tartománytámogatása sérült" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "Ismeretlen dátumformátum" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "Rossz fejlécadatok" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "Sikertelen kapcsolódás" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "BelsÅ‘ hiba" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "BelsÅ‘ hiba, az InstallPackages törött csomagokkal lett meghÃvva!" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "Csomagokat kellene eltávolÃtani, de az eltávolÃtás nem engedélyezett." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "BelsÅ‘ hiba, a rendezés nem fejezÅ‘dött be" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "A méretek nem egyeznek, Ãrjon az apt@packages.debian.org cÃmre" #. TRANSLATOR: The required 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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "LetöltendÅ‘ adatmennyiség: %sB/%sB.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:171 +#: apt-private/private-install.cc:159 #, c-format msgid "Need to get %sB of archives.\n" msgstr "LetöltendÅ‘ adatmennyiség: %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:178 +#: apt-private/private-install.cc:166 #, 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" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:183 +#: apt-private/private-install.cc:171 #, 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" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "Nincs elég szabad hely itt: %s." -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 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-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 msgid "Trivial Only specified but this is not a trivial operation." msgstr "A „Trivial Only†meg van adva, de ez nem egy triviális művelet." #. 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Igen, tedd amit mondok!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1196,19 +1222,19 @@ msgstr "" "A folytatáshoz Ãrja be ezt a mondatot: „%sâ€\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "MegszakÃtva." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "Folytatni akarja?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "Néhány fájlt nem sikerült letölteni" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1216,19 +1242,19 @@ msgstr "" "Nem lehet letölteni néhány archÃvumot. Próbálja futtatni az „apt-get update†" "parancsot, vagy használja a --fix-missing kapcsolót." -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "A --fix-missing és az adathordozó-csere jelenleg nem támogatott" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "Nem lehet javÃtani a hiányzó csomagokat." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "TelepÃtés megszakÃtása." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1242,15 +1268,15 @@ 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-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Megjegyzés: ezt a dpkg automatikusan és szándékosan hajtja végre." -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Nem kellene semmit törölni, az AutoRemover nem indÃtható" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1268,15 +1294,15 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 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:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "BelsÅ‘ hiba, az AutoRemover sérült" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1288,7 +1314,7 @@ msgstr[1] "" "A következÅ‘ csomagok automatikusan lettek telepÃtve, és már nincs rájuk " "szükség:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1297,18 +1323,18 @@ msgstr[0] "%lu csomag automatikusan lett telepÃtve, és már nincs rá szüksé msgstr[1] "" "%lu csomag automatikusan lett telepÃtve, és már nincs rájuk szükség.\n" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Ezt az „apt-get autoremove†paranccsal törölheti." msgstr[1] "Ezeket az „apt-get autoremove†paranccsal törölheti." -#: apt-private/private-install.cc:624 +#: apt-private/private-install.cc:612 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" "Próbálja futtatni az „apt-get -f install†parancsot az alábbiak javÃtásához:" -#: apt-private/private-install.cc:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1316,7 +1342,7 @@ msgstr "" "TeljesÃtetlen függÅ‘ségek. Próbálja kiadni az „apt-get -f install†parancsot " "csomagok nélkül (vagy telepÃtse a függÅ‘ségeket is!)." -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1328,145 +1354,145 @@ msgstr "" "használja, akkor néhány igényelt csomag még nem készült el vagy ki\n" "lett mozdÃtva az Incoming-ból." -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "Törött csomagok" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "Az alábbi extra csomagok kerülnek telepÃtésre:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "Javasolt csomagok:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "Ajánlott csomagok:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "FIGYELMEZTETÉS: Az alábbi csomagok nem hitelesÃthetÅ‘k!" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "A hitelesÃtési figyelmeztetés felülbÃrálva.\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "Néhány csomag nem hitelesÃthetÅ‘" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "Valóban ellenÅ‘rzés nélkül telepÃti a csomagokat?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Sikertelen letöltés: %s %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [TelepÃtve]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [TelepÃtve]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [TelepÃtve]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [TelepÃtve]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "Az alábbi csomagoknak teljesÃtetlen függÅ‘ségei vannak:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "de %s van telepÃtve" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "de csak %s telepÃthetÅ‘" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "de az nem telepÃthetÅ‘" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "de az egy virtuális csomag" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "de az nincs telepÃtve" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "de az nincs telepÃtésre megjelölve" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " vagy" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "Az alábbi ÚJ csomagok lesznek telepÃtve:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "Az alábbi csomagok el lesznek TÃVOLÃTVA:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "Az alábbi csomagok vissza lesznek tartva:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "Az alábbi csomagok frissÃtve lesznek:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "Az alábbi csomagok VISSZAFEJLESZTÉSRE kerülnek:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "Az alábbi visszafogott csomagokat cserélem:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (%s miatt) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1474,27 +1500,27 @@ msgstr "" "FIGYELMEZTETÉS: Az alábbi alapvetÅ‘ csomagok el lesznek távolÃtva.\n" "NE tegye ezt, hacsak nem tudja pontosan, mit csinál!" -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu frissÃtett, %lu újonnan telepÃtett, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu újratelepÃtendÅ‘, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu visszafejlesztendÅ‘, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu eltávolÃtandó és %lu nem frissÃtett.\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu nincs teljesen telepÃtve/eltávolÃtva.\n" @@ -1503,7 +1529,7 @@ msgstr "%lu nincs teljesen telepÃtve/eltávolÃtva.\n" #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "[I/n]" @@ -1511,91 +1537,91 @@ msgstr "[I/n]" #. 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:702 +#: apt-private/private-output.cc:708 msgid "[y/N]" msgstr "[i/N]" #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "I" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "N" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "Regex fordÃtási hiba - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "FüggÅ‘ségek javÃtása..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " sikertelen." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "Nem lehet javÃtani a függÅ‘ségeket" -#: apt-private/private-cachefile.cc:96 +#: 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-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " Kész" -#: apt-private/private-cachefile.cc:102 +#: 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:105 +#: 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-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "Az update parancsnak nincsenek argumentumai" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "FrissÃtés kiszámÃtása... " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "BelsÅ‘ hiba, az AllUpgrade megsértett valamit" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "Kész" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1607,43 +1633,43 @@ msgstr "" " 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-sources.cc:45 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format msgid "Failed to parse %s. Edit again? " msgstr "„%s†átnevezése sikertelen erre: %s" -#: apt-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "Találat " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "Letöltés:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "MellÅ‘z " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Hiba " -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "Letöltve %sB %s alatt (%sB/s)\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [Folyamatban]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1656,19 +1682,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "%s nem olvasható" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "Nem sikerült ide váltani: %s" @@ -1697,11 +1723,11 @@ msgstr "A(z) „%s†tükörfájl nem olvasható" msgid "[Mirror: %s]" msgstr "[Tükör: %s]" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: 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:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "A kapcsolat idÅ‘ elÅ‘tt lezárult" @@ -1766,40 +1792,45 @@ 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:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "%s nem érhetÅ‘ el" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "Nem lehet Ãrni ebbe: %s" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Nem lehet megállapÃtani a debconf verziót. A debconf telepÃtve van?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "A csomagkiterjesztések listája túl hosszú" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "Hiba a(z) %s könyvtár feldolgozásakor" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "A forráskiterjesztések listája túl hosszú" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "Hiba a tartalomfájl fejlécének Ãrásakor" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "Hiba %s tartalmának feldolgozásakor" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1881,26 +1912,26 @@ msgstr "" " -c=? Ezt a konfigurációs fájlt olvassa be\n" " -o=? BeállÃt egy tetszÅ‘leges konfigurációs opciót" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "Nincs illeszkedÅ‘ kiválasztás" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Néhány fájl hiányzik a(z) „%s†csomagfájlcsoportból" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, 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:65 +#: ftparchive/cachedb.cc:69 #, 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:76 +#: ftparchive/cachedb.cc:80 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -1908,192 +1939,192 @@ 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:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "A(z) %s DB fájlt nem lehet megnyitni: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "%s elérése sikertelen" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "Az archÃvumnak nincs vezérlÅ‘ rekordja" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "Nem sikerült egy mutatóhoz jutni" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, 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:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "F: %s nem érhetÅ‘ el\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "H: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "F: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "H: Hibás a fájl " -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "Nem sikerült feloldani ezt: %s" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "Fabejárás nem sikerült" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "%s megnyitása sikertelen" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "readlink nem hajtható végre erre: %s" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "%s törlése sikertelen" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** %s linkelése sikertelen ehhez: %s" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " a DeLink korlátja (%sB) elérve.\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "Az archÃvumnak nem volt csomag mezÅ‘je" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %s nem rendelkezik felülbÃráló bejegyzéssel\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s karbantartója %s, nem %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, 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:716 +#: ftparchive/writer.cc:725 #, 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" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - Nem sikerült memóriát lefoglalni" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "%s megnyitása sikertelen" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "%s felülbÃrálás deformált a(z) %llu. sorában #1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "Nem lehet a(z) %s felülbÃrálófájlt olvasni" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, c-format msgid "Malformed override %s line %llu #1" msgstr "%s felülbÃrálás deformált a(z) %llu. sorában #1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, c-format msgid "Malformed override %s line %llu #2" msgstr "%s felülbÃrálás deformált a(z) %llu. sorában #2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, c-format msgid "Malformed override %s line %llu #3" msgstr "%s felülbÃrálás deformált a(z) %llu. sorában #3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "„%s†tömörÃtési algoritmus ismeretlen" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "%s tömörÃtett kimenetnek egy tömörÃtÅ‘ készletre van szüksége" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "Nem sikerült FILE*-ot létrehozni" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "Nem sikerült forkolni" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "Gyermekfolyamat tömörÃtése" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "BelsÅ‘ hiba, %s létrehozása sikertelen" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "IO az alfolyamathoz/fájlhoz nem sikerült" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "Olvasási hiba az MD5 kiszámÃtásakor" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "Hiba %s törlésekor" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "„%s†átnevezése sikertelen erre: %s" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -2147,157 +2178,157 @@ 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" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "Nem sikerült adatcsatornákat létrehozni" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "Nem sikerült a gzipet futtatni " -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: 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:201 +#: 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:306 +#: apt-inst/contrib/extracttar.cc:308 #, c-format msgid "Unknown TAR header type %u, member %s" msgstr "Ismeretlen a(z) %u TAR fejléctÃpus, %s tag" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "Érvénytelen archÃvum-aláÃrás" -#: apt-inst/contrib/arfile.cc:82 +#: 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:94 +#: 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:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "Érvénytelen archÃvumtag-fejléc" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "Az archÃvum túl rövid" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "Nem sikerült olvasni az archÃvumfejléceket" -#: apt-inst/filelist.cc:382 +#: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" msgstr "A DropNode hÃvása egy még mindig linkelt node-ra történt" -#: apt-inst/filelist.cc:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "A hash elem nem található!" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "Nem lehet eltérÃtést lefoglalni" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "BelsÅ‘ hiba az AddDiversion hÃvásban" -#: apt-inst/filelist.cc:479 +#: apt-inst/filelist.cc:477 #, c-format msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" msgstr "KÃsérlet eltérÃtés felülÃrására: %s -> %s és %s/%s" -#: apt-inst/filelist.cc:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "A(z) %s -> %s eltérÃtés hozzáadásának duplázása" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "Dupla %s/%s konfigurációs fájl" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format msgid "Failed to write file %s" msgstr "A(z) %s fájl Ãrása sikertelen" -#: apt-inst/dirstream.cc:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "A(z) %s fájl bezárása sikertelen" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format msgid "The path %s is too long" msgstr "A(z) %s útvonal túl hosszú" -#: apt-inst/extract.cc:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "A(z) %s többszöri kicsomagolása" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "A(z) %s könyvtár eltérÃtve" -#: apt-inst/extract.cc:145 +#: apt-inst/extract.cc:152 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "A csomag megpróbál Ãrni a(z) %s/%s eltérÃtett célpontba" -#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 +#: 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-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, 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:282 +#: 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:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "Az útvonal túl hosszú" -#: apt-inst/extract.cc:414 +#: apt-inst/extract.cc:421 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Csomagtalálat felülÃrása %s verziója nélkül" -#: apt-inst/extract.cc:431 +#: apt-inst/extract.cc:438 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "A(z) %s/%s fájl felülÃrja a(z) %s csomagban levÅ‘t" -#: apt-inst/extract.cc:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "%s nem érhetÅ‘ el" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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 "Ez nem egy érvényes DEB archÃvum, hiányzik a(z) „%s†tag" -#: apt-inst/deb/debfile.cc:124 +#: apt-inst/deb/debfile.cc:132 #, c-format msgid "Internal error, could not locate member %s" msgstr "BelsÅ‘ hiba, %s tag nem található" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "Értelmezhetetlen control fájl" @@ -2358,211 +2389,206 @@ msgstr "" "automatikus emelést." #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lin %lió %lip %limp" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "%lió %lip %limp" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "%lip %limp" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "%limp" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "%s kiválasztás nem található" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Ismeretlen tÃpusrövidÃtés: „%câ€" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "%s konfigurációs fájl megnyitása" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Szintaktikai hiba %s: %u: A blokk név nélkül kezdÅ‘dik." -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Szintaktikai hiba %s: %u: rosszul formázott cÃmke" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Szintaktikai hiba %s: %u: fölösleges szemét az érték után" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, 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" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Szintaktikai hiba %s: %u: Túl sok beágyazott include" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Szintaktikai hiba %s: %u: ugyaninnen include-olva" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Szintaktikai hiba %s:%u: „%s†nem támogatott elÅ‘Ãrás" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-pkg/contrib/configuration.cc:900 #, 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" -#: apt-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Szintaktikai hiba %s: %u: fölösleges szemét a fájl végén" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... Hiba!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... Kész" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s... Kész" -#: apt-pkg/contrib/cmndline.cc:116 +#: 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-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format msgid "Command line option %s is not boolean" msgstr "%s parancssori kapcsoló nem logikai" -#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: 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." -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "" "%s kapcsoló: a konfigurációs elem megadásához szükséges egy =<érték> rész." -#: apt-pkg/contrib/cmndline.cc:273 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format msgid "Option %s requires an integer argument, not '%s'" msgstr "%s kapcsoló egész, és nem „%s†tÃpusú argumentumot követel meg" -#: apt-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "Túl hosszú „%s†kapcsoló" -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "%s jelentés nem értelmezhetÅ‘, próbálja a true vagy false értékeket." -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "%s érvénytelen művelet" -#: apt-pkg/contrib/cdromutl.cc:56 +#: 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-pkg/contrib/cdromutl.cc:225 +#: 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/fileutl.cc:95 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Hiba a(z) %s gzip fájl bezárásakor" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "Nem lesz zárolva a(z) „%s†csak olvasható zárolási fájl" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "%s zárolási fájl nem nyitható meg" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "Nem lesz zárolva a(z) %s NFS-csatolású zárolási fájl" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "Nem sikerült zárolni: %s" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, 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-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, 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-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, 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-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" @@ -2570,287 +2596,297 @@ msgstr "" "„%s†fájl figyelmen kÃvül hagyása a(z) „%s†könyvtárban, mert érvénytelen " "fájlkiterjesztése van" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "%s alfolyamat szegmentálási hibát okozott." -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, c-format msgid "Sub-process %s received signal %u." msgstr "A(z) %s alfolyamat %u számú szignált kapott." -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 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-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "%s alfolyamat váratlanul kilépett" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Hiba a(z) %s gzip fájl bezárásakor" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "Nem lehet megnyitni a(z) %s fájlt" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, c-format msgid "Could not open file descriptor %d" msgstr "Nem lehet megnyitni a(z) %d fájlleÃrót" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "Nem sikerült az alfolyamat IPC-t létrehozni" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "Nem sikerült elindÃtani a tömörÃtÅ‘t " -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, 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-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, 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-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, c-format msgid "Problem closing the file %s" msgstr "Hiba a(z) %s fájl bezárásakor" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, c-format msgid "Problem renaming the file %s to %s" msgstr "Hiba a(z) %s fájl átnevezésekor erre: %s" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, c-format msgid "Problem unlinking the file %s" msgstr "Hiba a(z) %s fájl törlésekor" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "Hiba a fájl szinkronizálásakor" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "sikertelen átnevezés, %s (%s -> %s)." + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, c-format msgid "No keyring installed in %s." msgstr "Nincs kulcstartó telepÃtve ide: %s." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "Üres csomaggyorsÃtótár" -#: apt-pkg/pkgcache.cc:154 +#: 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:159 +#: 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:162 +#: 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:167 +#: apt-pkg/pkgcache.cc:174 #, 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:172 +#: 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:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "Függ ettÅ‘l" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "Függ ettÅ‘l (elÅ‘függés)" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "Javasolja" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "Ajánlja" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "Ütközik" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "Kicseréli" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "Elavulttá teszi" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "Töri" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "BÅ‘vÃti" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "fontos" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "szükséges" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "szabványos" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "opcionális" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "extra" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: 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:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "Lehetséges verziók" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "FüggÅ‘séggenerálás" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: 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-pkg/depcache.cc:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "%s állapotfájl megnyitása sikertelen" -#: apt-pkg/depcache.cc:250 +#: apt-pkg/depcache.cc:256 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "%s átmeneti állapotfájl Ãrása sikertelen" -#: apt-pkg/tagfile.cc:138 +#: 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-pkg/tagfile.cc:235 +#: 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-pkg/sourcelist.cc:118 +#: 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-pkg/sourcelist.cc:161 +#: 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-pkg/sourcelist.cc:164 +#: 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-pkg/sourcelist.cc:175 +#: apt-pkg/sourcelist.cc:184 #, c-format msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" msgstr "" "Helytelenül formázott a(z) %lu. sor a(z) %s forráslistában ([%s] nem " "érvényes hozzárendelés)" -#: apt-pkg/sourcelist.cc:181 +#: apt-pkg/sourcelist.cc:190 #, c-format msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "" "Helytelenül formázott a(z) %lu. sor a(z) %s forráslistában ([%s] nem " "tartalmaz kulcsot)" -#: apt-pkg/sourcelist.cc:184 +#: apt-pkg/sourcelist.cc:193 #, c-format msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" "Helytelenül formázott a(z) %lu. sor a(z) %s forráslistában ([%s] %s kulcsnak " "nincs értéke)" -#: apt-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (URI)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (dist)" -#: apt-pkg/sourcelist.cc:202 +#: apt-pkg/sourcelist.cc:211 #, c-format msgid "Malformed line %lu in source list %s (URI parse)" msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (URI-feldolgozás)" -#: apt-pkg/sourcelist.cc:208 +#: 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)" -#: apt-pkg/sourcelist.cc:215 +#: apt-pkg/sourcelist.cc:224 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (dist feldolgozás)" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "%s megnyitása" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, 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." -#: apt-pkg/sourcelist.cc:362 +#: apt-pkg/sourcelist.cc:371 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "A(z) %u. sor hibás a(z) %s forráslistában (tÃpus)" -#: apt-pkg/sourcelist.cc:366 +#: apt-pkg/sourcelist.cc:375 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "„%1$s†tÃpus nem ismert a(z) %3$s forráslista %2$u. sorában" -#: apt-pkg/sourcelist.cc:407 +#: apt-pkg/sourcelist.cc:416 #, fuzzy, c-format msgid "Type '%s' is not known on stanza %u in source list %s" msgstr "„%1$s†tÃpus nem ismert a(z) %3$s forráslista %2$u. sorában" -#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2859,12 +2895,12 @@ msgstr "" "Nem lehetett a(z) „%s†közvetlen beállÃtását végrehajtani. A részletekért " "lásd a man 5 apt.conf oldalt az APT::Immediate-Configure cÃmszó alatt. (%d)" -#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, c-format msgid "Could not configure '%s'. " msgstr "A(z) „%s†beállÃtása sikertelen" -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2875,19 +2911,19 @@ msgstr "" "eltávolÃtását, ami ütközési/elÅ‘függÅ‘ségi hurkot okoz. Ez gyakran rossz, de " "ha tényleg ezt akarja tenni, aktiválja az APT::Force-LoopBreak opciót." -#: apt-pkg/pkgrecords.cc:34 +#: 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" -#: apt-pkg/algorithms.cc:266 +#: 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." -#: apt-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2895,92 +2931,92 @@ msgstr "" "Hiba, a pkgProblemResolver::Resolve töréseket generált, ezt visszafogott " "csomagok okozhatják." -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 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/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, c-format msgid "List directory %spartial is missing." msgstr "A(z) %spartial listakönyvtár hiányzik." -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, c-format msgid "Archives directory %spartial is missing." msgstr "A(z) %spartial archÃvumkönyvtár hiányzik." -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, c-format msgid "Unable to lock directory %s" msgstr "%s könyvtár zárolása sikertelen" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "%li/%li fájl letöltése (%s marad)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "%li/%li fájl letöltése" -#: apt-pkg/acquire-worker.cc:113 +#: 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ó." -#: apt-pkg/acquire-worker.cc:115 +#: 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" -#: apt-pkg/acquire-worker.cc:166 +#: 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" -#: apt-pkg/acquire-worker.cc:452 +#: apt-pkg/acquire-worker.cc:455 #, c-format msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "" "Helyezze be a(z) „%s†cÃmkéjű lemezt a(z) „%s†meghajtóba, és nyomja meg az " "Entert." -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "A(z) „%s†csomagrendszer nem támogatott" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "A megfelelÅ‘ csomagrendszertÃpus nem határozható meg" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "%s nem érhetÅ‘ el." -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "Néhány „source†URI-t el kell helyezni a sources.list fájlban" -#: apt-pkg/cachefile.cc:87 +#: 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." -#: apt-pkg/cachefile.cc:91 +#: 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:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "A források listája olvashatatlan." -#: apt-pkg/policy.cc:75 +#: apt-pkg/policy.cc:83 #, c-format msgid "" "The value '%s' is invalid for APT::Default-Release as such a release is not " @@ -2989,100 +3025,95 @@ msgstr "" "A(z) „%s†érték érvénytelen az APT::Default-Release beállÃtáshoz, mert nincs " "ilyen kiadás a forrásokban" -#: apt-pkg/policy.cc:414 +#: apt-pkg/policy.cc:422 #, 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" -#: apt-pkg/policy.cc:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "A(z) %s rögzÃtéstÃpus nem értelmezhetÅ‘" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "Nincs prioritás (vagy nulla) megadva a rögzÃtéshez" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 msgid "Cache has an incompatible versioning system" msgstr "A gyorsÃtótárnak inkompatibilis verziórendszere van" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Hiba történt a(z) %s feldolgozása során (%s%d)" -#: apt-pkg/pkgcachegen.cc:251 +#: 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." -#: apt-pkg/pkgcachegen.cc:254 +#: 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." -#: apt-pkg/pkgcachegen.cc:257 +#: 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." -#: apt-pkg/pkgcachegen.cc:260 +#: 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." -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:576 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "A(z) %s %s csomag nem volt megtalálható a fájl függÅ‘ségeinek feldolgozása " "közben" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "Nem lehet a(z) %s forrás csomaglistáját elérni" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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" # FIXME -#: apt-pkg/pkgcachegen.cc:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "„BiztosÃtja†kapcsolatok összegyűjtése" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: 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" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "sikertelen átnevezés, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "A Hash Sum nem megfelelÅ‘" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "A méret nem megfelelÅ‘" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "%s érvénytelen művelet" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, c-format msgid "" "Unable to find expected entry '%s' in Release file (Wrong sources.list entry " @@ -3091,16 +3122,16 @@ 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)" -#: apt-pkg/acquire-item.cc:1586 +#: apt-pkg/acquire-item.cc:1595 #, 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" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "Nem érhetÅ‘ el nyilvános kulcs az alábbi kulcsazonosÃtókhoz:\n" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " @@ -3109,12 +3140,12 @@ msgstr "" "A Release fájl elavult ehhez: %s (érvénytelen ez óta: %s). A tároló " "frissÃtései nem kerülnek alkalmazásra." -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "ÜtközÅ‘ disztribúció: %s (a várt %s helyett %s érkezett)" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3124,12 +3155,12 @@ msgstr "" "elÅ‘zÅ‘ indexfájl lesz használva. GPG hiba: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "GPG hiba: %s: %s" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3138,83 +3169,79 @@ 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)" -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, 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:1980 +#: apt-pkg/acquire-item.cc:1989 #, 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." -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, c-format msgid "Unable to parse Release file %s" msgstr "A(z) %s Release fájl nem dolgozható fel" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, c-format msgid "No sections in Release file %s" msgstr "A(z) %s Release fájl nem tartalmaz szakaszokat" -#: apt-pkg/indexrecords.cc:112 +#: 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-pkg/indexrecords.cc:125 +#: 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-pkg/indexrecords.cc:144 +#: 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-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "A(z) %s terjesztÅ‘blokk nem tartalmaz ujjlenyomatot" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "%s CD-ROM csatolási pont használata\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "CD-ROM leválasztása\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "CD-ROM leválasztása...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "Várakozás a lemezre...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "CD-ROM csatolása...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " msgstr "AzonosÃtás... " -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "Tárolt cÃmke: %s\n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "CD-ROM leválasztása...\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" msgstr "Indexfájlok keresése a lemezen...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3223,7 +3250,7 @@ msgstr "" "%zu csomagindex, %zu forrásindex, %zu fordÃtásindex és %zu aláÃrás " "megtalálva\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" @@ -3231,16 +3258,16 @@ msgstr "" "Nem találhatók csomagfájlok, lehet hogy ez nem Debian lemez, vagy nem " "megfelelÅ‘ az architektúra?" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "Talált cÃmke: „%sâ€\n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "A név érvénytelen, próbálja újra.\n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3249,34 +3276,34 @@ msgstr "" "A lemez neve: \n" "„%sâ€\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "Csomaglisták másolása..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "Új forráslista Ãrása\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "A lemezhez tartozó forráslistabejegyzések a következÅ‘k:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format msgid "Wrote %i records.\n" msgstr "%i rekord kiÃrva.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:777 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i rekord kiÃrva, %i hiányzó fájllal.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:780 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i rekord kiÃrva %i eltérÅ‘ fájllal\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "%i rekord kiÃrva %i hiányzó és %i eltérÅ‘ fájllal\n" @@ -3291,37 +3318,37 @@ msgstr "%s hitelesÃtési rekordja nem található" msgid "Hash mismatch for: %s" msgstr "%s ellenÅ‘rzőösszege nem megfelelÅ‘" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "„%s†kiadás nem található ehhez: „%sâ€" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "„%s†verzió nem található ehhez: „%sâ€" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, c-format msgid "Couldn't find task '%s'" msgstr "„%s†feladat nem található" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, 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:605 +#: apt-pkg/cacheset.cc:613 #, 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:616 +#: apt-pkg/cacheset.cc:624 #, 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-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " @@ -3330,54 +3357,54 @@ msgstr "" "„%s†csomagból nem választható sem telepÃtett, sem kiadásra jelölt verzió, " "mert egyikkel sem rendelkezik" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, 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-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, 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" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, 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" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "A helyzet elküldése a solvernek" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "Kérés küldése a solvernek" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "Felkészülés megoldás fogadására" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "A külsÅ‘ solver megfelelÅ‘ hibaüzenet nélkül hibázott" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "KülsÅ‘ solver végrehajtása" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "A dpkg futtatása" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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." @@ -3385,118 +3412,118 @@ msgstr "" "Néhány indexfájlt nem sikerült letölteni. Figyelmen kÃvül lettek hagyva, " "vagy régebbiek lettek felhasználva." -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "%s telepÃtése" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "%s konfigurálása" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "%s eltávolÃtása" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format msgid "Completely removing %s" msgstr "%s teljes eltávolÃtása" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "„%s†eltűnése feljegyezve" -#: apt-pkg/deb/dpkgpm.cc:96 +#: 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" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "A(z) „%s†könyvtár hiányzik" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format msgid "Could not open file '%s'" msgstr "A(z) „%s†fájl megnyitása sikertelen" -#: apt-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "%s elÅ‘készÃtése" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "%s kicsomagolása" -#: apt-pkg/deb/dpkgpm.cc:976 +#: 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-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "%s telepÃtve" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "%s eltávolÃtásának elÅ‘készÃtése" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "%s eltávolÃtva" -#: apt-pkg/deb/dpkgpm.cc:990 +#: 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-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "%s teljesen eltávolÃtva" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "Nem lehet Ãrni ebbe: %s" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "A művelet megszakadt, mielÅ‘tt befejezÅ‘dhetett volna" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 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" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "függÅ‘ségi hibák - a csomag beállÃtatlan maradt" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3504,7 +3531,7 @@ msgstr "" "Nem került kiÃrásra apport jelentés, mivel a hibaüzenet szerint ez a hiba " "egy korábbi hiba következménye." -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" @@ -3512,7 +3539,7 @@ msgstr "" "Nem került kiÃrásra apport jelentés, mivel a hibaüzenet szerint megtelt a " "lemez" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3520,7 +3547,7 @@ msgstr "" "Nem került kiÃrásra apport jelentés, mivel a hibaüzenet memóriaelfogyási " "hibát jelez" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 msgid "" "No apport report written because the error message indicates an issue on the " "local system" @@ -3528,13 +3555,13 @@ msgstr "" "Nem került kiÃrásra apport jelentés, mert a hibaüzenet a helyi rendszeren " "lévÅ‘ hibát jelez" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" "Nem került kiÃrásra apport jelentés, mert a hibaüzenet dpkg I/O hibát jelez" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " @@ -3543,7 +3570,7 @@ msgstr "" "Az adminisztrációs könyvtár (%s) nem zárolható, lehet hogy másik folyamat " "használja?" -#: apt-pkg/deb/debsystem.cc:87 +#: apt-pkg/deb/debsystem.cc:94 #, c-format msgid "Unable to lock the administration directory (%s), are you root?" msgstr "" @@ -3551,7 +3578,7 @@ msgstr "" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " @@ -3559,7 +3586,7 @@ 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:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "Nincs zárolva" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2013-08-27 22:06+0200\n" "Last-Translator: Milo Casagrande <milo@ubuntu.com>\n" "Language-Team: Italian <tp@lists.linux.it>\n" @@ -20,154 +20,155 @@ msgstr "" "X-Launchpad-Export-Date: 2012-06-25 19:48+0000\n" "X-Generator: Gtranslator 2.91.6\n" -#: cmdline/apt-cache.cc:140 +#: cmdline/apt-cache.cc:149 #, c-format msgid "Package %s version %s has an unmet dep:\n" msgstr "Il pacchetto %s versione %s ha una dipendenza non soddisfatta:\n" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "Totale nomi dei pacchetti: " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 msgid "Total package structures: " msgstr "Totale strutture dei pacchetti: " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " Pacchetti normali: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " Pacchetti virtuali puri: " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " Pacchetti virtuali singoli: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " Pacchetti virtuali misti: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " Mancante: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "Totale versioni distinte: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "Totale descrizioni distinte: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "Totale dipendenze: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "Totale relazioni ver/file: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "Totale relazioni desc/file: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "Totale corrispondenze fornite: " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "Totale stringhe globalizzate: " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "Totale spazio dipendenza di versione: " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "Totale spazio inutilizzato: " -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "Totale spazio occupato: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: 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." -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 msgid "You must give at least one search pattern" msgstr "È necessario specificare almeno un modello per la ricerca" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" "Questo comando è deprecato. Utilizzare \"apt-mark showauto\" al suo posto." -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "Impossibile trovare il pacchetto %s" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "File dei pacchetti:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 msgid "Cache is out of sync, can't x-ref a package file" msgstr "" "La cache non è sincronizzata, impossibile referenziare un file di pacchetti" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "Pacchetti con gancio:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(non trovato)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " Installato: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " Candidato: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(nessuno)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " Gancio del pacchetto: " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " Tabella versione:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s per %s compilato il %s %s\n" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] showpkg pkg1 [pkg2 ...]\n" @@ -240,34 +241,35 @@ msgstr "" "Per maggiori informazioni, consultare le pagine di manuale apt-cache(8) e \n" "apt.conf(5).\n" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. 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" -"È possibile provare l'opzione --cdrom per impostare il punto di mount del\n" -"CD-ROM. Per maggiori informazioni sull'autorilevamento e sul punto di mount\n" -"del CD-ROM, consultare \"man apt-cdrom\"." - -#: cmdline/apt-cdrom.cc:89 +#: 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:104 +#: 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" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, c-format msgid "Failed to mount '%s' to '%s'" msgstr "Mount di \"%s\" su \"%s\" non riuscito" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +#, fuzzy +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" +"Impossibile rilevare automaticamente un CD-ROM oppure è stato trovato con " +"il\n" +"punto di mount predefinito.\n" +"È possibile provare l'opzione --cdrom per impostare il punto di mount del\n" +"CD-ROM. Per maggiori informazioni sull'autorilevamento e sul punto di mount\n" +"del CD-ROM, consultare \"man apt-cdrom\"." + +#: 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." @@ -303,50 +305,50 @@ msgstr "" " -c=? Legge come configurazione il file specificato\n" " -o=? Imposta un'opzione di configurazione, come -o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:244 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format msgid "Can not find a package for architecture '%s'" msgstr "" "Impossibile trovare alcun pacchetto tramite l'espressione regolare \"%s\"" -#: cmdline/apt-get.cc:326 +#: cmdline/apt-get.cc:327 #, fuzzy, c-format msgid "Can not find a package '%s' with version '%s'" msgstr "" "Impossibile trovare alcun pacchetto tramite l'espressione regolare \"%s\"" -#: cmdline/apt-get.cc:329 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format msgid "Can not find a package '%s' with release '%s'" msgstr "" "Impossibile trovare alcun pacchetto tramite l'espressione regolare \"%s\"" -#: cmdline/apt-get.cc:366 +#: 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" -#: cmdline/apt-get.cc:422 +#: cmdline/apt-get.cc:423 #, fuzzy, c-format msgid "Can not find version '%s' of package '%s'" msgstr "Ignorata la versione \"%s\" non disponibile del pacchetto \"%s\"" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "Impossibile trovare il pacchetto %s" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "È stato impostato %s per l'installazione manuale.\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s impostato automaticamente come installato.\n" -#: cmdline/apt-get.cc:468 cmdline/apt-mark.cc:116 +#: 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." @@ -354,20 +356,20 @@ msgstr "" "Questo comando è deprecato. Utilizzare \"apt-mark auto\" e \"apt-mark manual" "\" al suo posto." -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: 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" -#: cmdline/apt-get.cc:573 cmdline/apt-get.cc:610 +#: 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:725 +#: 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:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "Impossibile trovare un pacchetto sorgente per %s" @@ -394,80 +396,80 @@ msgstr "" "per recuperare gli ultimi (forse non rilasciati) aggiornamenti del " "pacchetto.\n" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Il pacchetto \"%s\" già scaricato viene saltato\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "Impossibile determinare lo spazio libero in %s" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "Lo spazio libero in %s è insufficiente" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "È necessario recuperare %sB/%sB di sorgenti.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "È necessario scaricare %sB di sorgenti.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "Recupero sorgente %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "Recupero di alcuni archivi non riuscito." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "Scaricamento completato e in modalità solo scaricamento" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Estrazione del pacchetto sorgente già estratto in %s saltata\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Comando di estrazione \"%s\" non riuscito.\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Verificare che il pacchetto \"dpkg-dev\" sia installato.\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "Comando \"%s\" di generazione non riuscito.\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "Creazione processo figlio non riuscita" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "" "È necessario specificare almeno un pacchetto di cui controllare le " "dipendenze di generazione" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -476,17 +478,17 @@ msgstr "" "Informazioni sull'architettura non disponibili per %s. Consultare apt." "conf(5) APT::Architectures per l'impostazione" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Impossibile ottenere informazioni di dipendenza di generazione per %s" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s non ha dipendenze di generazione.\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -495,7 +497,7 @@ msgstr "" "La dipendenza %s per %s non può essere soddisfatta perché %s non è " "consentito su pacchetti \"%s\"" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -504,14 +506,14 @@ msgstr "" "%s dipendenze per %s non possono essere soddisfatte perché il pacchetto %s " "non può essere trovato" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "La dipendenza %s per %s non è stata soddisfatta: il pacchetto installato %s " "è troppo recente" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -520,7 +522,7 @@ msgstr "" "La dipendenza %s per %s non può essere soddisfatta perché la versione " "candidata del pacchetto %s non può soddisfare i requisiti di versione" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -529,30 +531,30 @@ msgstr "" "La dipendenza %s per %s non può essere soddisfatta perché il pacchetto %s " "non ha una versione candidata" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "La dipendenza %s per %s non è stata soddisfatta: %s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Le dipendenze di generazione per %s non sono state soddisfatte." -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "Elaborazione delle dipendenze di generazione non riuscita" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, c-format msgid "Changelog for %s (%s)" msgstr "Changelog per %s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "Moduli supportati:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -642,53 +644,76 @@ msgstr "" "apt-get(8), sources.list(5) e apt.conf(5).\n" " Questo APT ha i poteri della Super Mucca.\n" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "" +"È necessario specificare almeno un pacchetto di cui recuperare il sorgente" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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 non può essere segnato perché non è installato.\n" -#: cmdline/apt-mark.cc:63 +#: 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:65 +#: 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:230 +#: 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:232 +#: 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:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "In attesa di %s ma non era presente" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: 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:264 cmdline/apt-mark.cc:316 +#: 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:334 +#: 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:381 +#: cmdline/apt-mark.cc:392 #, fuzzy msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" @@ -737,7 +762,7 @@ msgstr "" "Per maggiori informazioni, consultare le pagine di manuale apt-mark(8) e\n" "apt.conf(5)." -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -785,52 +810,52 @@ msgstr "Impossibile smontare il CD-ROM in %s, potrebbe essere ancora in uso." msgid "Disk not found." msgstr "Disco non trovato" -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "File non trovato" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: 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:82 methods/gzip.cc:113 methods/rred.cc:606 +#: 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:47 +#: 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:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "Accesso in corso" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "Impossibile determinare il nome del nodo" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "Impossibile determinare il nome locale" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: 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:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "USER non riuscito, il server riporta: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS non riuscito, il server riporta: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -838,123 +863,125 @@ msgstr "" "È stato specificato un server proxy, ma nessuno script di accesso: Acquire::" "ftp::ProxyLogin è vuoto." -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "" "Comando dello script di accesso \"%s\" non riuscito, il server riporta: %s" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE non riuscito, il server riporta: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: 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:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "Il server ha chiuso la connessione" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "Errore di lettura" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: 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:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "Protocollo danneggiato" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "Errore di scrittura" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: 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:707 +#: 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:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "Non riuscito" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "Impossibile connettersi alla socket passiva." -#: methods/ftp.cc:730 +#: 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:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "Impossibile eseguire bind() su un socket" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "Impossibile eseguire listen() su un socket" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "Impossibile determinare il nome del socket" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "Impossibile inviare il comando PORT" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Famiglia di indirizzamento %u (AF_*) sconosciuta" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT non riuscito, il server riporta: %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "Connessione al socket dati terminata" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "Impossibile accettare connessioni" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: 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:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Impossibile recuperare il file, il server riporta: \"%s\"" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "Socket dati terminato" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, 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:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "Interrogazione" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "Impossibile invocare " @@ -990,7 +1017,7 @@ msgstr "Impossibile connettersi a %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "Connessione a %s" @@ -1021,25 +1048,25 @@ msgstr "" msgid "Unable to connect to %s:%s:" msgstr "Impossibile connettersi a %s:%s:" -#: methods/gpgv.cc:166 +#: 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:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "È stata trovata almeno una firma non valida." -#: methods/gpgv.cc:172 +#: methods/gpgv.cc:174 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "Impossibile eseguire \"gpgv\" per verificare la firma (forse gpgv non è " "installato)" #. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " @@ -1048,15 +1075,15 @@ msgstr "" "Il file con la firma in chiaro non è valido, ottenuto \"%s\" (la rete " "richiede autenticazione?)" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "Errore sconosciuto durante l'esecuzione di gpgv" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Le seguenti firme non erano valide:\n" -#: methods/gpgv.cc:229 +#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@ -1064,140 +1091,140 @@ msgstr "" "Le seguenti firme non sono state verificate perché la chiave pubblica non è " "disponibile:\n" -#: methods/gzip.cc:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "File vuoti non possono essere archivi validi" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "Errore nello scrivere sul file" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "Errore nel leggere dal server. Il lato remoto ha chiuso la connessione" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "Errore nel leggere dal server" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "Errore nello scrivere su file" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "Select non riuscita" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "Connessione terminata" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "Errore nello scrivere sul file di output" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "In attesa degli header" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "Riga header non corretta" -#: methods/server.cc:139 methods/server.cc:146 +#: 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" -#: methods/server.cc:176 +#: 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" -#: methods/server.cc:199 +#: 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" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "Questo server HTTP ha un supporto del range non corretto" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "Formato della data sconosciuto" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "Header dati non corretto" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "Connessione non riuscita" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "Errore interno" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" "Errore interno, InstallPackages è stato chiamato con un pacchetto " "danneggiato." -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "" "I pacchetti devono essere rimossi, ma l'azione di rimozione è disabilitata." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "Errore interno, l'ordinamento non è stato terminato" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" "Le dimensioni non corrispondono. Inviare un'email a: apt@packages.debian.org" #. TRANSLATOR: The required 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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "È necessario scaricare %sB/%sB di archivi.\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:171 +#: apt-private/private-install.cc:159 #, c-format msgid "Need to get %sB of archives.\n" msgstr "È necessario scaricare %sB di archivi.\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:178 +#: apt-private/private-install.cc:166 #, 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" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:183 +#: apt-private/private-install.cc:171 #, 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" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "Spazio libero in %s insufficiente." -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 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-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "È stata specificata la modalità \"Trivial Only\", ma questa non è " @@ -1205,11 +1232,11 @@ 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Sì, esegui come da richiesta." -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1220,19 +1247,19 @@ msgstr "" "Per continuare scrivere la frase \"%s\"\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "Interrotto." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "Continuare?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "Scaricamento di alcuni file non riuscito" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1240,19 +1267,19 @@ msgstr "" "Impossibile scaricare alcuni pacchetti. Potrebbe essere utile eseguire \"apt-" "get update\" o provare l'opzione \"--fix-missing\"." -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing su supporti estraibili non è ancora supportato" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "Impossibile correggere i pacchetti mancanti." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "Interruzione dell'installazione." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1266,16 +1293,16 @@ 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:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Nota: questo viene svolto automaticamente e volutamente da dpkg." -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "Non si è autorizzati a rimuovere nulla, impossibile avviare AutoRemover" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1293,15 +1320,15 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 msgid "The following information may help to resolve the situation:" msgstr "Le seguenti informazioni possono aiutare a risolvere la situazione:" -#: apt-private/private-install.cc:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "Errore interno, AutoRemover ha rovinato qualche cosa" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1314,7 +1341,7 @@ msgstr[1] "" "I seguenti pacchetti sono stati installati automaticamente e non sono più " "richiesti:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1325,18 +1352,18 @@ msgstr[1] "" "%lu pacchetti sono stati installati automaticamente e non sono più " "richiesti.\n" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Usare \"apt-get autoremove\" per rimuoverlo." msgstr[1] "Usare \"apt-get autoremove\" per rimuoverli." -#: apt-private/private-install.cc:624 +#: 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-private/private-install.cc:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1344,7 +1371,7 @@ msgstr "" "Dipendenze non soddisfatte. Provare \"apt-get -f install\" senza pacchetti " "(o specificare una soluzione)." -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1356,145 +1383,145 @@ msgstr "" "usando una distribuzione in sviluppo, che alcuni pacchetti richiesti\n" "non sono ancora stati creati o sono stati rimossi da Incoming." -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "Pacchetti danneggiati" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "I seguenti pacchetti saranno inoltre installati:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "Pacchetti suggeriti:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "Pacchetti raccomandati:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ATTENZIONE: i seguenti pacchetti non possono essere autenticati." -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "Avviso di autenticazione disabilitato.\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "Alcuni pacchetti non possono essere autenticati" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "Installare questi pacchetti senza verificarli?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Impossibile recuperare %s %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [Installato]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [Installato]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [Installato]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [Installato]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "I seguenti pacchetti hanno dipendenze non soddisfatte:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "ma la versione %s è installata" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "ma la versione %s sta per essere installata" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "ma non è installabile" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "ma è un pacchetto virtuale" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "ma non è installato" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "ma non sta per essere installato" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " oppure" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "I seguenti pacchetti NUOVI saranno installati:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "I seguenti pacchetti saranno RIMOSSI:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "I seguenti pacchetti sono stati mantenuti alla versione attuale:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "I seguenti pacchetti saranno aggiornati:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "I seguenti pacchetti saranno RETROCESSI:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "I seguenti pacchetti bloccati saranno cambiati:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (a causa di %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1503,27 +1530,27 @@ msgstr "" "Questo non dovrebbe essere fatto a meno che non si sappia esattamente cosa " "si sta facendo." -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu aggiornati, %lu installati, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu reinstallati, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu retrocessi, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu da rimuovere e %lu non aggiornati.\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu non completamente installati o rimossi.\n" @@ -1532,7 +1559,7 @@ msgstr "%lu non completamente installati o rimossi.\n" #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "[S/n]" @@ -1540,91 +1567,91 @@ msgstr "[S/n]" #. 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:702 +#: apt-private/private-output.cc:708 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:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "S" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "N" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "Errore di compilazione dell'espressione regolare - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "Correzione delle dipendenze..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " non riuscita." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "Impossibile correggere le dipendenze" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "Impossibile minimizzare l'insieme da aggiornare" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " Fatto" -#: apt-private/private-cachefile.cc:102 +#: apt-private/private-cachefile.cc:108 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "È utile eseguire \"apt-get -f install\" per correggere ciò." -#: apt-private/private-cachefile.cc:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "Dipendenze non trovate. Riprovare usando -f." -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "Il comando update non accetta argomenti" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "Calcolo dell'aggiornamento... " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "Errore interno, AllUpgrade ha rovinato qualche cosa" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "Eseguito" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1636,44 +1663,44 @@ msgstr "" " Inoltre, il meccanismo di blocco non è attivato e non è quindi\n" " utile dare importanza a tutto ciò per una situazione reale." -#: apt-private/private-sources.cc:45 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format msgid "Failed to parse %s. Edit again? " msgstr "Rinomina di %s in %s non riuscita" -#: apt-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "Trovato " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "Scaricamento di:" # (ndt) questa non so cosa voglia dire -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "Ign " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Err " -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "Recuperati %sB in %s (%sB/s)\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [In lavorazione]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1686,19 +1713,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "Impossibile leggere %s" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "Impossibile passare a %s" @@ -1727,11 +1754,11 @@ msgstr "Nessuna voce trovata nel file mirror \"%s\"" msgid "[Mirror: %s]" msgstr "[Mirror: %s]" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: 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:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "Connessione chiusa prematuramente" @@ -1800,40 +1827,45 @@ 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:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Impossibile eseguire stat su %s" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "Impossibile scrivere in %s" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Impossibile trovare la versione di debconf. È installato?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "L'elenco dell'estensione del pacchetto è troppo lungo" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "Errore nell'elaborare la directory %s" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "L'elenco dell'estensione del sorgente è troppo lungo" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "Errore nella scrittura dell'intestazione nel file \"contents\"" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "Errore nell'elaborare i contenuti %s" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1914,26 +1946,26 @@ msgstr "" " -c=? Legge come configurazione il file specificato\n" " -o=? Imposta un'opzione arbitraria di configurazione" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "Nessuna selezione corrisponde" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Mancano alcuni file nel file group di pacchetti \"%s\"" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, 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:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "Il database è vecchio, tentativo di aggiornamento %s" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -1941,195 +1973,195 @@ 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:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Impossibile aprire il file del database %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "Impossibile eseguire stat su %s" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "L'archivio non ha un campo \"control\"" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 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:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "A: Impossibile leggere la directory %s\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "A: Impossibile eseguire stat su %s\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "A: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "E: Gli errori si applicano al file " -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "Risoluzione di %s non riuscita" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "Visita dell'albero non riuscita" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "Apertura di %s non riuscita" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " Delink %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "Esecuzione di readlink su %s non riuscita" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "Esecuzione di unlink su %s non riuscita" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Collegamento di %s a %s non riuscito" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Raggiunto il limite di DeLink di %sB.\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "L'archivio non ha un campo \"package\"" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %s non ha un campo override\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " il responsabile di %s è %s non %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr " %s non ha un campo source override\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s non ha neppure un campo binario override\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - Allocazione della memoria non riuscita" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "Impossibile aprire %s" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "Override %s riga %llu malformato #1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "Lettura del file override %s non riuscita" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, c-format msgid "Malformed override %s line %llu #1" msgstr "Override %s riga %llu malformato #1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, c-format msgid "Malformed override %s line %llu #2" msgstr "Override %s riga %llu malformato #2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, c-format msgid "Malformed override %s line %llu #3" msgstr "Override %s riga %llu malformato #3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "Algoritmo di compressione \"%s\" sconosciuto" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "L'output compresso %s necessita di un insieme di compressione" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "Creazione di FILE* non riuscita" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "Fork non riuscita" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "Sottoprocesso compresso" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "Errore interno, creazione di %s non riuscita" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "I/O al sottoprocesso/file non riuscito" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "Lettura durante l'elaborazione MD5 non riuscita" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "Problema nell'unlink di %s" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "Rinomina di %s in %s non riuscita" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -2181,158 +2213,158 @@ msgstr "" " -c=? Legge come configurazione il file specificato\n" " -o=? Imposta un'opzione di configurazione, es. -o dir::cache=/tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "Creazione delle pipe non riuscita" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "Esecuzione di gzip non riuscita " -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "Archivio danneggiato" -#: apt-inst/contrib/extracttar.cc:201 +#: 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:306 +#: apt-inst/contrib/extracttar.cc:308 #, c-format msgid "Unknown TAR header type %u, member %s" msgstr "Intestazione TAR di tipo %u sconosciuta, member %s" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "Firma dell'archivio non valida" -#: apt-inst/contrib/arfile.cc:82 +#: apt-inst/contrib/arfile.cc:84 msgid "Error reading archive member header" msgstr "Errore nel leggere l'intestazione member dell'archivio" -#: apt-inst/contrib/arfile.cc:94 +#: apt-inst/contrib/arfile.cc:96 #, c-format msgid "Invalid archive member header %s" msgstr "Intestazione member dell'archivio %s non valida" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "Intestazione member dell'archivio non valida" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "L'archivio è troppo piccolo" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "Lettura delle intestazioni dell'archivio non riuscita" -#: apt-inst/filelist.cc:382 +#: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" msgstr "DropNode invocata su un nodo ancora collegato" -#: apt-inst/filelist.cc:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "Localizzazione dell'elemento hash non riuscita." -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "Allocazione della deviazione non riuscita" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "Errore interno in AddDiversion" -#: apt-inst/filelist.cc:479 +#: apt-inst/filelist.cc:477 #, c-format msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" msgstr "Tentativo di sovrascrivere una deviazione, %s -> %s e %s/%s" -#: apt-inst/filelist.cc:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "Doppia aggiunta di deviazione %s -> %s" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "File di configurazione duplicato %s/%s" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format msgid "Failed to write file %s" msgstr "Scrittura del file %s non riuscita" -#: apt-inst/dirstream.cc:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "Chiusura del file %s non riuscita" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format msgid "The path %s is too long" msgstr "Il percorso %s è troppo lungo" -#: apt-inst/extract.cc:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "Estrazione di %s eseguita più di una volta" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "La directory %s è deviata" -#: apt-inst/extract.cc:145 +#: apt-inst/extract.cc:152 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "" "Il pacchetto sta cercando di scrivere nell'obiettivo di deviazione %s/%s" -#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 +#: 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-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "La directory %s sta per essere sostituita da una non-directory" -#: apt-inst/extract.cc:282 +#: 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-inst/extract.cc:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "Il percorso è troppo lungo" -#: apt-inst/extract.cc:414 +#: apt-inst/extract.cc:421 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Il pacchetto sovrascritto corrisponde senza versione per %s" -#: apt-inst/extract.cc:431 +#: apt-inst/extract.cc:438 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "Il file %s/%s sovrascrive quello nel pacchetto %s" -#: apt-inst/extract.cc:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "Impossibile eseguire stat su %s" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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 "Questo non è un archivio DEB valido: membro \"%s\" mancante" -#: apt-inst/deb/debfile.cc:124 +#: apt-inst/deb/debfile.cc:132 #, c-format msgid "Internal error, could not locate member %s" msgstr "Errore interno, impossibile trovare il membro %s" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "File \"control\" non analizzabile" @@ -2394,216 +2426,211 @@ msgstr "" "ridimensionamento automatico è stato disabilitato dall'utente." #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lig %lih %limin %lis" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "%lih %limin %lis" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "%limin %lis" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "%lis" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "Selezione %s non trovata" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Tipo di abbreviazione non riconosciuto: \"%c\"" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "Apertura file di configurazione %s" -#: apt-pkg/contrib/configuration.cc:785 +#: 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-pkg/contrib/configuration.cc:804 +#: 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-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Errore di sintassi %s:%u: caratteri extra dopo il valore" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, 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-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Errore di sintassi %s:%u: troppe inclusioni annidate" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Errore di sintassi %s:%u: incluso da qui" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Errore di sintassi %s:%u: direttiva \"%s\" non supportata" # (ndt) sarebbe da controllare meglio... -#: apt-pkg/contrib/configuration.cc:884 +#: apt-pkg/contrib/configuration.cc:900 #, 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" -#: apt-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, 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-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... Errore" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... Fatto" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "..." #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, c-format msgid "%c%s... %u%%" msgstr "%c%s... %u%%" -#: apt-pkg/contrib/cmndline.cc:116 +#: 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-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: 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-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: 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-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "" "Opzione %s: la specifica di configurazione dell'oggetto deve avere un " "=<valore>." -#: apt-pkg/contrib/cmndline.cc:273 +#: 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-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "Opzione \"%s\" troppo lunga" -#: apt-pkg/contrib/cmndline.cc:336 +#: 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-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "Operazione %s non valida" -#: apt-pkg/contrib/cdromutl.cc:56 +#: 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-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "Esecuzione di stat sul CD-ROM non riuscita" -#: apt-pkg/contrib/fileutl.cc:95 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Si è verificato un problema nel chiudere il file gzip %s" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, 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-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "Impossibile aprire il file di blocco %s" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, 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-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "Impossibile impostare il blocco %s" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "" "L'elenco dei file non può essere creato poiché \"%s\" non è una directory" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" "Viene ignorato \"%s\" nella directory \"%s\" poiché non è un file regolare" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, 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" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" @@ -2611,288 +2638,298 @@ msgstr "" "Viene ignorato il file \"%s\" nella directory \"%s\" poiché ha un'estensione " "non valida" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Il sottoprocesso %s ha ricevuto un segmentation fault." -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, c-format msgid "Sub-process %s received signal %u." msgstr "Il sottoprocesso %s ha ricevuto il segnale %u." -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 apt-pkg/contrib/gpgv.cc:239 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Il sottoprocesso %s ha restituito un codice d'errore (%u)" -#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Il sottoprocesso %s è uscito inaspettatamente" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Si è verificato un problema nel chiudere il file gzip %s" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "Impossibile aprire il file %s" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, c-format msgid "Could not open file descriptor %d" msgstr "Impossibile aprire il descrittore del file %d" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "Creazione di un sottoprocesso IPC non riuscita" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "Esecuzione non riuscita del compressore " -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, c-format msgid "read, still have %llu to read but none left" msgstr "lettura, ancora %llu da leggere, ma non è stato trovato nulla" -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, c-format msgid "write, still have %llu to write but couldn't" msgstr "scrittura, ancora %llu da scrivere, ma non è possibile" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, c-format msgid "Problem closing the file %s" msgstr "Si è verificato un problema nel chiudere il file %s" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, c-format msgid "Problem renaming the file %s to %s" msgstr "Si è verificato un problema nel rinominare il file %s in %s" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, c-format msgid "Problem unlinking the file %s" msgstr "Si è verificato un problema nell'eseguire l'unlink del file %s" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "Si è verificato un problema nel sincronizzare il file" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "rename() non riuscita: %s (%s -> %s)." + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, c-format msgid "No keyring installed in %s." msgstr "Nessun portachiavi installato in %s." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "Cache dei pacchetti vuota" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "Il file della cache dei pacchetti è danneggiato" -#: apt-pkg/pkgcache.cc:159 +#: 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:162 +#: 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" -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "Questo APT non supporta il sistema di versione \"%s\"" -#: apt-pkg/pkgcache.cc:172 +#: apt-pkg/pkgcache.cc:179 msgid "The package cache was built for a different architecture" msgstr "" "Il file della cache dei pacchetti è stato generato per un'altra architettura" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "Dipende" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "Pre-dipende" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "Consiglia" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "Raccomanda" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "Va in conflitto" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "Sostituisce" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "Rende obsoleto" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "Rompe" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "Migliora" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "importante" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "richiesto" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "standard" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "opzionale" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "extra" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "Generazione albero delle dipendenze" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "Versioni candidate" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "Generazione delle dipendenze" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 msgid "Reading state information" msgstr "Lettura informazioni sullo stato" -#: apt-pkg/depcache.cc:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "Apertura del file di stato %s non riuscita" -#: apt-pkg/depcache.cc:250 +#: 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-pkg/tagfile.cc:138 +#: apt-pkg/tagfile.cc:140 #, c-format msgid "Unable to parse package file %s (1)" msgstr "Impossibile analizzare il file di pacchetto %s (1)" -#: apt-pkg/tagfile.cc:235 +#: 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-pkg/sourcelist.cc:118 +#: apt-pkg/sourcelist.cc:127 #, fuzzy, c-format msgid "Malformed stanza %u in source list %s (URI parse)" msgstr "La riga %lu nel file %s non è corretta (URI parse)" -#: apt-pkg/sourcelist.cc:161 +#: 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-pkg/sourcelist.cc:164 +#: 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-pkg/sourcelist.cc:175 +#: 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-pkg/sourcelist.cc:181 +#: apt-pkg/sourcelist.cc:190 #, c-format msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "" "La riga %lu nel file delle sorgenti %s non è corretta ([%s] non ha una " "chiave)" -#: apt-pkg/sourcelist.cc:184 +#: 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)" -#: apt-pkg/sourcelist.cc:197 +#: 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)" -#: apt-pkg/sourcelist.cc:199 +#: 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)" -#: apt-pkg/sourcelist.cc:202 +#: 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)" -#: apt-pkg/sourcelist.cc:208 +#: 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)" -#: apt-pkg/sourcelist.cc:215 +#: 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)" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "Apertura di %s" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "Riga %u troppo lunga nel file %s." -#: apt-pkg/sourcelist.cc:362 +#: 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)" -#: apt-pkg/sourcelist.cc:366 +#: 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 %s" -#: apt-pkg/sourcelist.cc:407 +#: apt-pkg/sourcelist.cc:416 #, fuzzy, c-format msgid "Type '%s' is not known on stanza %u in source list %s" msgstr "Tipo \"%s\" non riconosciuto alla riga %u nel file %s" -#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2902,12 +2939,12 @@ msgstr "" "maggiori informazioni, consultare \"man 5 apt.conf\" alla sezione \"APT::" "Immediate-Configure\" (%d)." -#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, c-format msgid "Could not configure '%s'. " msgstr "Impossibile configurare \"%s\". " -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2919,12 +2956,12 @@ msgstr "" "situazione critica, ma se si vuole realmente procedere, attivare l'opzione " "APT::Force-LoopBreak." -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "Il file indice di tipo \"%s\" non è supportato" -#: apt-pkg/algorithms.cc:266 +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." @@ -2932,7 +2969,7 @@ msgstr "" "Il pacchetto %s deve essere reinstallato, ma non è possibile trovarne un " "archivio." -#: apt-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2940,93 +2977,93 @@ msgstr "" "Errore, pkgProblemResolver::Resolve ha generato delle interruzioni. Questo " "potrebbe essere causato da pacchetti bloccati." -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Impossibile correggere i problemi, ci sono pacchetti danneggiati bloccati." # (ndt) sarebbe da controllare meglio assieme a quella dopo -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, c-format msgid "List directory %spartial is missing." msgstr "Manca la directory di liste %spartial." -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, c-format msgid "Archives directory %spartial is missing." msgstr "Manca la directory di archivio %spartial." -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, c-format msgid "Unable to lock directory %s" msgstr "Impossibile bloccare la directory %s" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Scaricamento file %li di %li (%s rimanente)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "Scaricamento file %li di %li" -#: apt-pkg/acquire-worker.cc:113 +#: 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." -#: apt-pkg/acquire-worker.cc:115 +#: apt-pkg/acquire-worker.cc:118 #, fuzzy, c-format msgid "Is the package %s installed?" msgstr "Verificare che il pacchetto \"dpkg-dev\" sia installato.\n" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "Il metodo %s non si è avviato correttamente" -#: apt-pkg/acquire-worker.cc:452 +#: 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." -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Il sistema di pacchetti \"%s\" non è supportato" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "Impossibile determinare un tipo di sistema appropriato di pacchetti" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "Impossibile eseguire stat su %s." -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "" "È necessario inserire alcuni URI di tipo \"source\" nel file sources.list" -#: apt-pkg/cachefile.cc:87 +#: 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." -#: apt-pkg/cachefile.cc:91 +#: 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" -#: apt-pkg/cachefile.cc:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "Impossibile leggere l'elenco dei sorgenti." -#: apt-pkg/policy.cc:75 +#: apt-pkg/policy.cc:83 #, c-format msgid "" "The value '%s' is invalid for APT::Default-Release as such a release is not " @@ -3035,104 +3072,99 @@ msgstr "" "Il valore \"%s\" non è valido per APT::Default-Release poiché tale release " "non è disponibile dalle sorgenti" -#: apt-pkg/policy.cc:414 +#: apt-pkg/policy.cc:422 #, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "" "Campo non valido nel file delle preferenze %s, manca l'intestazione \"Package" "\"" -#: apt-pkg/policy.cc:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "Impossibile comprendere il tipo di gancio %s" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "Priorità per il gancio non specificata (o zero)" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 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:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Si è verificato un errore nell'elaborare %s (%s%d)" -#: apt-pkg/pkgcachegen.cc:251 +#: apt-pkg/pkgcachegen.cc:257 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "È stato superato il numero di nomi di pacchetti che questo APT può gestire." -#: apt-pkg/pkgcachegen.cc:254 +#: 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:257 +#: 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:260 +#: 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." # (ndt) il primo è il nome del pacchetto, il secondo la versione -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:576 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "Il pacchetto %s v.%s non è stato trovato durante l'elaborazione delle " "dipendenze" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "Impossibile eseguire stat sull'elenco dei pacchetti sorgente %s" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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" # (ndt) non mi convince per niente, ma vediamo cosa salta fuori -#: apt-pkg/pkgcachegen.cc:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "Il file fornisce" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: 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" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "rename() non riuscita: %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "Somma hash non corrispondente" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "Le dimensioni non corrispondono" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "Operazione %s non valida" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, c-format msgid "" "Unable to find expected entry '%s' in Release file (Wrong sources.list entry " @@ -3141,17 +3173,17 @@ msgstr "" "Impossibile trovare la voce \"%s\" nel file Release (voce in sources.list " "errata o file danneggiato)" -#: apt-pkg/acquire-item.cc:1586 +#: apt-pkg/acquire-item.cc:1595 #, c-format msgid "Unable to find hash sum for '%s' in Release file" msgstr "Impossibile trovare la somma hash per \"%s\" nel file Release" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "" "Non è disponibile alcuna chiave pubblica per i seguenti ID di chiavi:\n" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " @@ -3160,12 +3192,12 @@ msgstr "" "Il file Release per %s è scaduto (non valido dal %s). Gli aggiornamenti per " "questo repository non verranno applicati." -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Distribuzione in conflitto: %s (atteso %s ma ottenuto %s)" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3175,12 +3207,12 @@ msgstr "" "aggiornato e verranno usati i file indice precedenti. Errore GPG: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "Errore GPG: %s: %s" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3189,14 +3221,14 @@ msgstr "" "Impossibile trovare un file per il pacchetto %s. Potrebbe essere necessario " "sistemare manualmente questo pacchetto (a causa dell'architettura mancante)." -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, 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:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -3204,71 +3236,67 @@ msgstr "" "I file indice del pacchetto sono danneggiati. Manca il campo \"Filename:\" " "per il pacchetto %s." -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, c-format msgid "Unable to parse Release file %s" msgstr "Impossibile analizzare il file Release %s" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, c-format msgid "No sections in Release file %s" msgstr "Nessuna sezione nel file Release %s" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "Nessuna voce Hash nel file Release %s" -#: apt-pkg/indexrecords.cc:125 +#: 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-pkg/indexrecords.cc:144 +#: 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-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "Il blocco vendor %s non contiene impronte" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Viene usato il punto di mount del CD-ROM %s\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "Smontaggio CD-ROM\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "Smontaggio CD-ROM...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "In attesa del disco...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "Montaggio CD-ROM...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " msgstr "Identificazione... " -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "Etichette archiviate: %s\n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "Smontaggio CD-ROM...\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" msgstr "Analisi del disco per file indice...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3277,7 +3305,7 @@ msgstr "" "Trovati %zu indici di pacchetto, %zu indici di sorgente, %zu indici di " "traduzione e %zu firme\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" @@ -3285,16 +3313,16 @@ msgstr "" "Impossibile trovare alcun file di pacchetto. Questo potrebbe non essere un " "disco Debian o potrebbe essere l'architettura errata." -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "Trovata l'etichetta \"%s\"\n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "Questo non è un nome valido, riprovare.\n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3303,34 +3331,34 @@ msgstr "" "Questo disco è chiamato: \n" "\"%s\"\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "Copia elenco pacchetti..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "Scrittura nuovo elenco sorgenti\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "Le voci dell'elenco sorgenti per questo disco sono:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format msgid "Wrote %i records.\n" msgstr "Scritti %i record.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:777 +#: 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" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:780 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Scritti %i record con %i file senza corrispondenze\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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 "" @@ -3347,41 +3375,41 @@ msgid "Hash mismatch for: %s" msgstr "Hash non corrispondente per %s" # (ndt) dovrebbe essere inteso il file Release -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Release \"%s\" per \"%s\" non trovato." # (ndt) dovrebbe essere inteso il Version -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Version \"%s\" per \"%s\" non trovato" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, c-format msgid "Couldn't find task '%s'" msgstr "Impossibile trovare il task \"%s\"" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, c-format msgid "Couldn't find any package by regex '%s'" msgstr "" "Impossibile trovare alcun pacchetto tramite l'espressione regolare \"%s\"" -#: apt-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "" "Impossibile trovare alcun pacchetto tramite l'espressione regolare \"%s\"" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, c-format msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" "Impossibile selezionare le versioni dal pacchetto \"%s\" poiché è virtuale" -#: apt-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " @@ -3390,57 +3418,57 @@ msgstr "" "Impossibile selezionare la versione installata o la candidata dal pacchetto " "\"%s\" poiché non sono presenti" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, 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-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, 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-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, 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-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "Invia lo scenario al solver" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "Invia la richiesta al solver" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "Preparazione alla ricezione della soluzione" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "Il solver esterno è terminato senza un errore di messaggio" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "Esecuzione solver esterno" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "Esecuzione di dpkg" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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." @@ -3448,120 +3476,120 @@ msgstr "" "Impossibile scaricare alcuni file di indice: saranno ignorati o verranno " "usati quelli vecchi." -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "Installazione di %s" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "Configurazione di %s" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "Rimozione di %s" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format msgid "Completely removing %s" msgstr "Rimozione completa di %s" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "Notata la sparizione di %s" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "Esecuzione comando di post installazione %s" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "Directory \"%s\" mancante" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: 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-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "Preparazione di %s" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "Estrazione di %s" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "Preparazione alla configurazione di %s" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "Pacchetto %s installato" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "Preparazione alla rimozione di %s" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "Pacchetto %s rimosso" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "Preparazione alla rimozione completa di %s" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "Pacchetto %s rimosso completamente" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "Impossibile scrivere in %s" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "L'operazione è stata interrotta prima di essere completata" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 msgid "No apport report written because MaxReports is reached already" msgstr "" "Segnalazione apport non scritta poiché è stato raggiunto il valore massimo " "di MaxReports" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "Problemi con le dipendenze - Viene lasciato non configurato" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3569,7 +3597,7 @@ msgstr "" "Segnalazione apport non scritta poiché il messaggio di errore indica la " "presenza di un fallimento precedente." -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" @@ -3577,7 +3605,7 @@ msgstr "" "Segnalazione apport non scritta poiché il messaggio di errore indica un " "errore per disco pieno." -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3585,7 +3613,7 @@ msgstr "" "Segnalazione apport non scritta poiché il messaggio di errore indica un " "errore di memoria esaurita" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 #, fuzzy msgid "" "No apport report written because the error message indicates an issue on the " @@ -3594,14 +3622,14 @@ msgstr "" "Segnalazione apport non scritta poiché il messaggio di errore indica un " "errore per disco pieno." -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 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-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " @@ -3610,7 +3638,7 @@ msgstr "" "Impossibile acquisire il blocco sulla directory di amministrazione (%s). Un " "altro processo potrebbe tenerla occupata." -#: apt-pkg/deb/debsystem.cc:87 +#: apt-pkg/deb/debsystem.cc:94 #, c-format msgid "Unable to lock the administration directory (%s), are you root?" msgstr "" @@ -3619,7 +3647,7 @@ msgstr "" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " @@ -3627,7 +3655,7 @@ msgstr "" "dpkg è stato interrotto. È necessario eseguire \"%s\" per correggere il " "problema. " -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "Non bloccato" @@ -6,10 +6,10 @@ # Debian Project, Kenshi Muto <kmuto@debian.org>, 2004-2012 msgid "" msgstr "" -"Project-Id-Version: apt 0.9.9.4\n" +"Project-Id-Version: apt 0.9.16.1\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" -"PO-Revision-Date: 2013-08-11 19:39+0900\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" +"PO-Revision-Date: 2014-03-21 19:53+0900\n" "Last-Translator: Kenshi Muto <kmuto@debian.org>\n" "Language-Team: Debian Japanese List <debian-japanese@lists.debian.org>\n" "Language: ja\n" @@ -18,153 +18,154 @@ msgstr "" "Content-Transfer-Encoding: 8 bit\n" "Plural-Forms: Plural-Forms: nplurals=1; plural=0;\n" -#: cmdline/apt-cache.cc:140 +#: cmdline/apt-cache.cc:149 #, c-format msgid "Package %s version %s has an unmet dep:\n" msgstr "パッケージ %s ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ %s ã«ã¯è§£æ±ºä¸å¯èƒ½ãªä¾å˜é–¢ä¿‚ãŒã‚りã¾ã™:\n" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "パッケージåç·æ•°: " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 msgid "Total package structures: " msgstr "ãƒ‘ãƒƒã‚±ãƒ¼ã‚¸æ§‹é€ ç·æ•°: " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " 通常パッケージ: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " 純粋仮想パッケージ: " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " å˜ä¸€ä»®æƒ³ãƒ‘ッケージ: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " 複åˆä»®æƒ³ãƒ‘ッケージ: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " æ¬ è½: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "個別ãƒãƒ¼ã‚¸ãƒ§ãƒ³ç·æ•°: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "å€‹åˆ¥èª¬æ˜Žç·æ•°: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "ä¾å˜é–¢ä¿‚ç·æ•°: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "ãƒãƒ¼ã‚¸ãƒ§ãƒ³/ãƒ•ã‚¡ã‚¤ãƒ«é–¢ä¿‚ç·æ•°: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "説明/ãƒ•ã‚¡ã‚¤ãƒ«é–¢ä¿‚ç·æ•°: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "æä¾›ãƒžãƒƒãƒ”ãƒ³ã‚°ç·æ•°: " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "Glob æ–‡å—列ã®ç·æ•°: " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "ç·ä¾å˜é–¢ä¿‚・ãƒãƒ¼ã‚¸ãƒ§ãƒ³å®¹é‡: " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "ç·ç©ºã容é‡: " -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "ç·å 有容é‡: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: 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 ãŒåŒæœŸã—ã¦ã„ã¾ã›ã‚“。" -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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 "パッケージãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 msgid "You must give at least one search pattern" msgstr "検索パターンã¯ã¡ã‚‡ã†ã© 1 ã¤ã ã‘æŒ‡å®šã—ã¦ãã ã•ã„" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" "ã“ã®ã‚³ãƒžãƒ³ãƒ‰ã¯æ™‚代é…れã§ã™ã€‚'apt-mark showauto' を代ã‚りã«ä½¿ç”¨ã—ã¦ãã ã•ã„。" -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "パッケージ %s ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "パッケージファイル:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 msgid "Cache is out of sync, can't x-ref a package file" msgstr "ã‚ャッシュãŒåŒæœŸã—ã¦ãŠã‚‰ãšã€ãƒ‘ッケージファイルを相互å‚ç…§ã§ãã¾ã›ã‚“" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "Pin ã•れãŸãƒ‘ッケージ:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(見ã¤ã‹ã‚Šã¾ã›ã‚“)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " インストールã•れã¦ã„ã‚‹ãƒãƒ¼ã‚¸ãƒ§ãƒ³: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " 候補: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(ãªã—)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " パッケージ Pin: " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãƒ†ãƒ¼ãƒ–ル:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s for %s コンパイル日時: %s %s\n" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] showpkg pkg1 [pkg2 ...]\n" @@ -234,32 +235,34 @@ msgstr "" " -o=? 指定ã—ãŸè¨å®šã‚ªãƒ—ションをèªã¿è¾¼ã‚€ (例: -o dir::cache=/tmp)\n" "詳細ã¯ã€apt-cache(8) ã‚„ apt.conf(5) ã®ãƒžãƒ‹ãƒ¥ã‚¢ãƒ«ãƒšãƒ¼ã‚¸ã‚’å‚ç…§ã—ã¦ãã ã•ã„。\n" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" -"CD-ROM ãŒè‡ªå‹•検出ã•れãªã‹ã£ãŸã‹ã€ãƒ‡ãƒ•ォルトã§åˆ©ç”¨ã™ã‚‹ãƒžã‚¦ãƒ³ãƒˆãƒã‚¤ãƒ³ãƒˆã«è¦‹å½“ãŸ" -"りã¾ã›ã‚“ã§ã—ãŸã€‚CD-ROM ã®ãƒžã‚¦ãƒ³ãƒˆãƒã‚¤ãƒ³ãƒˆã‚’è¨å®šã™ã‚‹ãŸã‚ã« --cdrom オプション" -"を試ã™ã“ã¨ãŒã§ãã¾ã™ã€‚CD-ROM ã®è‡ªå‹•検出ãŠã‚ˆã³ãƒžã‚¦ãƒ³ãƒˆãƒã‚¤ãƒ³ãƒˆã®è©³ç´°ã«ã¤ã„ã¦" -"ã¯ã€'man apt-cdrom' ã‚’å‚ç…§ã—ã¦ãã ã•ã„。" - -#: cmdline/apt-cdrom.cc:89 +#: 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:104 +#: cmdline/apt-cdrom.cc:91 msgid "Please insert a Disc in the drive and press enter" msgstr "ディスクをドライブã«å…¥ã‚Œã¦ Enter ã‚ーを押ã—ã¦ãã ã•ã„" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, c-format msgid "Failed to mount '%s' to '%s'" msgstr "'%s' ã‚’ '%s' ã«ãƒžã‚¦ãƒ³ãƒˆã§ãã¾ã›ã‚“ã§ã—ãŸ" -#: cmdline/apt-cdrom.cc:196 +#: 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' ã‚’å‚" +"ç…§ã—ã¦ãã ã•ã„。" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "" "ã‚ãªãŸã®æŒã£ã¦ã„ã‚‹ CD ã‚»ãƒƒãƒˆã®æ®‹ã‚Šå…¨éƒ¨ã«ã€ã“ã®æ‰‹é †ã‚’繰り返ã—ã¦ãã ã•ã„。" @@ -296,47 +299,47 @@ msgstr "" " -c=? 指定ã—ãŸè¨å®šãƒ•ァイルをèªã¿è¾¼ã‚€\n" " -o=? 指定ã—ãŸè¨å®šã‚ªãƒ—ションをé©ç”¨ã™ã‚‹ (例: -o dir::cache=/tmp)\n" -#: cmdline/apt-get.cc:244 -#, fuzzy, c-format +#: cmdline/apt-get.cc:245 +#, c-format msgid "Can not find a package for architecture '%s'" -msgstr "æ£è¦è¡¨ç¾ '%s' ã§ã¯ãƒ‘ッケージã¯è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸ" +msgstr "アーã‚テクãƒãƒ£ '%s' 用ã®ãƒ‘ッケージã¯è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸ" -#: cmdline/apt-get.cc:326 -#, fuzzy, c-format +#: cmdline/apt-get.cc:327 +#, c-format msgid "Can not find a package '%s' with version '%s'" -msgstr "æ£è¦è¡¨ç¾ '%s' ã§ã¯ãƒ‘ッケージã¯è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸ" +msgstr "パッケージ '%s' ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ '%s' ã¯è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸ" -#: cmdline/apt-get.cc:329 -#, fuzzy, c-format +#: cmdline/apt-get.cc:330 +#, c-format msgid "Can not find a package '%s' with release '%s'" -msgstr "æ£è¦è¡¨ç¾ '%s' ã§ã¯ãƒ‘ッケージã¯è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸ" +msgstr "リリース '%2$s' ã«ã¯ãƒ‘ッケージ '%1$s' ã¯è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸ" -#: cmdline/apt-get.cc:366 +#: cmdline/apt-get.cc:367 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "'%2$s' ã®ä»£ã‚り㫠'%1$s' をソースパッケージã¨ã—ã¦é¸å‡ºã—ã¦ã„ã¾ã™\n" -#: cmdline/apt-get.cc:422 -#, fuzzy, c-format +#: cmdline/apt-get.cc:423 +#, c-format msgid "Can not find version '%s' of package '%s'" -msgstr "パッケージ '%2$s' ã®åˆ©ç”¨ã§ããªã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ '%1$s' を無視" +msgstr "パッケージ '%2$s' ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ '%1$s' ã¯è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸ" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "パッケージ %s ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "%s ã¯æ‰‹å‹•ã§ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã—ãŸã¨è¨å®šã•れã¾ã—ãŸã€‚\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: 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:468 cmdline/apt-mark.cc:116 +#: 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." @@ -344,20 +347,20 @@ msgstr "" "ã“ã®ã‚³ãƒžãƒ³ãƒ‰ã¯æ™‚代é…れã§ã™ã€‚'apt-mark auto' ãŠã‚ˆã³ 'apt-mark manual' を代ã‚り" "ã«ä½¿ç”¨ã—ã¦ãã ã•ã„。" -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 msgid "Internal error, problem resolver broke stuff" msgstr "内部エラーã€å•題リゾルãƒãŒä½•ã‹ã‚’ç ´å£Šã—ã¾ã—ãŸ" -#: cmdline/apt-get.cc:573 cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 msgid "Unable to lock the download directory" msgstr "ダウンãƒãƒ¼ãƒ‰ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’ãƒãƒƒã‚¯ã§ãã¾ã›ã‚“" -#: cmdline/apt-get.cc:725 +#: cmdline/apt-get.cc:726 msgid "Must specify at least one package to fetch source for" msgstr "" "ソースをå–å¾—ã™ã‚‹ã«ã¯å°‘ãªãã¨ã‚‚ 1 ã¤ã®ãƒ‘ッケージåを指定ã™ã‚‹å¿…è¦ãŒã‚りã¾ã™" -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "%s ã®ã‚½ãƒ¼ã‚¹ãƒ‘ッケージãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" @@ -384,80 +387,80 @@ msgstr "" "bzr branch %s\n" "を使用ã—ã¦ãã ã•ã„。\n" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "ã™ã§ã«ãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ã•れãŸãƒ•ァイル '%s' をスã‚ップã—ã¾ã™\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "%s ã®ç©ºãé ˜åŸŸã‚’æ¸¬å®šã§ãã¾ã›ã‚“" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "%s ã«å……分ãªç©ºãスペースãŒã‚りã¾ã›ã‚“" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "%2$sB ä¸ %1$sB ã®ã‚½ãƒ¼ã‚¹ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã‚’å–å¾—ã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "%sB ã®ã‚½ãƒ¼ã‚¹ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã‚’å–å¾—ã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "ソース %s ã‚’å–å¾—\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "ã„ãã¤ã‹ã®ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã®å–å¾—ã«å¤±æ•—ã—ã¾ã—ãŸã€‚" -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "ダウンãƒãƒ¼ãƒ‰ã‚ªãƒ³ãƒªãƒ¼ãƒ¢ãƒ¼ãƒ‰ã§ãƒ‘ッケージã®ãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ãŒå®Œäº†ã—ã¾ã—ãŸ" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "ã™ã§ã« %s ã«å±•é–‹ã•れãŸã‚½ãƒ¼ã‚¹ãŒã‚ã‚‹ãŸã‚ã€å±•開をスã‚ップã—ã¾ã™\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "展開コマンド '%s' ãŒå¤±æ•—ã—ã¾ã—ãŸã€‚\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" "'dpkg-dev' パッケージãŒã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•れã¦ã„ã‚‹ã“ã¨ã‚’確èªã—ã¦ãã ã•ã„。\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "ビルドコマンド '%s' ãŒå¤±æ•—ã—ã¾ã—ãŸã€‚\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "åプãƒã‚»ã‚¹ãŒå¤±æ•—ã—ã¾ã—ãŸ" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "" "ビルドä¾å˜é–¢ä¿‚ã‚’ãƒã‚§ãƒƒã‚¯ã™ã‚‹ãƒ‘ッケージを少ãªãã¨ã‚‚ 1 ã¤æŒ‡å®šã™ã‚‹å¿…è¦ãŒã‚りã¾ã™" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -466,17 +469,17 @@ msgstr "" "%s ã«åˆ©ç”¨å¯èƒ½ãªã‚¢ãƒ¼ã‚テクãƒãƒ£æƒ…å ±ãŒã‚りã¾ã›ã‚“。セットアップã®ãŸã‚ã« apt." "conf(5) ã® APT::Architectures ã‚’å‚ç…§ã—ã¦ãã ã•ã„。" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "%s ã®ãƒ“ルドä¾å˜æƒ…å ±ã‚’å–å¾—ã§ãã¾ã›ã‚“" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s ã«ã¯ãƒ“ルドä¾å˜æƒ…å ±ãŒæŒ‡å®šã•れã¦ã„ã¾ã›ã‚“。\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -485,7 +488,7 @@ msgstr "" "パッケージ %3$s ㌠'%4$s' パッケージã§è¨±ã•れã¦ã„ãªã„ãŸã‚ã€%2$s ã«å¯¾ã™ã‚‹ %1$s " "ã®ä¾å˜é–¢ä¿‚を満ãŸã™ã“ã¨ãŒã§ãã¾ã›ã‚“" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -494,14 +497,14 @@ msgstr "" "パッケージ %3$s ãŒè¦‹ã¤ã‹ã‚‰ãªã„ãŸã‚ã€%2$s ã«å¯¾ã™ã‚‹ %1$s ã®ä¾å˜é–¢ä¿‚を満ãŸã™ã“ã¨" "ãŒã§ãã¾ã›ã‚“" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "%2$s ã®ä¾å˜é–¢ä¿‚ %1$s を満ãŸã™ã“ã¨ãŒã§ãã¾ã›ã‚“: インストールã•れ㟠%3$s パッ" "ã‚±ãƒ¼ã‚¸ã¯æ–°ã—ã™ãŽã¾ã™" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -510,7 +513,7 @@ msgstr "" "パッケージ %3$s ã®å€™è£œãƒãƒ¼ã‚¸ãƒ§ãƒ³ã¯ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã«ã¤ã„ã¦ã®è¦æ±‚を満ãŸã›ãªã„ãŸ" "ã‚ã€%2$s ã«å¯¾ã™ã‚‹ %1$s ã®ä¾å˜é–¢ä¿‚を満ãŸã™ã“ã¨ãŒã§ãã¾ã›ã‚“" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -519,30 +522,30 @@ msgstr "" "パッケージ %3$s ã®å€™è£œãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒå˜åœ¨ã—ãªã„ãŸã‚ã€%2$s ã«å¯¾ã™ã‚‹ %1$s ã®ä¾å˜é–¢" "係を満ãŸã™ã“ã¨ãŒã§ãã¾ã›ã‚“" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "%2$s ã®ä¾å˜é–¢ä¿‚ %1$s を満ãŸã™ã“ã¨ãŒã§ãã¾ã›ã‚“: %3$s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "%s ã®ãƒ“ルドä¾å˜é–¢ä¿‚を満ãŸã™ã“ã¨ãŒã§ãã¾ã›ã‚“ã§ã—ãŸã€‚" -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "ビルドä¾å˜é–¢ä¿‚ã®å‡¦ç†ã«å¤±æ•—ã—ã¾ã—ãŸ" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, c-format msgid "Changelog for %s (%s)" msgstr "%s (%s) ã®å¤‰æ›´å±¥æ´" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "サãƒãƒ¼ãƒˆã•れã¦ã„るモジュール:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -634,54 +637,83 @@ msgstr "" "apt-get(8)ã€sources.list(5)ã€apt.conf(5) ã‚’å‚ç…§ã—ã¦ãã ã•ã„。\n" " ã“ã® APT 㯠Super Cow Powers 化ã•れã¦ã„ã¾ã™ã€‚\n" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +msgid "Must specify at least one pair url/filename" +msgstr "å°‘ãªãã¨ã‚‚ URL / ファイルåã‚’ 1 組指定ã™ã‚‹å¿…è¦ãŒã‚りã¾ã™" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "ダウンãƒãƒ¼ãƒ‰å¤±æ•—" + +#: cmdline/apt-helper.cc:65 +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:63 +#: cmdline/apt-mark.cc:74 #, c-format msgid "%s was already set to manually installed.\n" msgstr "%s ã¯æ‰‹å‹•ã§ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã—ãŸã¨ã™ã§ã«è¨å®šã•れã¦ã„ã¾ã™ã€‚\n" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, c-format msgid "%s was already set to automatically installed.\n" msgstr "%s ã¯è‡ªå‹•ã§ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã—ãŸã¨ã™ã§ã«è¨å®šã•れã¦ã„ã¾ã™ã€‚\n" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, c-format msgid "%s was already set on hold.\n" msgstr "%s ã¯ã™ã§ã«ä¿ç•™ã«è¨å®šã•れã¦ã„ã¾ã™ã€‚\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, c-format msgid "%s was already not hold.\n" msgstr "%s ã¯ã™ã§ã«ä¿ç•™ã•れã¦ã„ã¾ã›ã‚“。\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "%s ã‚’å¾…ã¡ã¾ã—ãŸãŒã€ãã“ã«ã¯ã‚りã¾ã›ã‚“ã§ã—ãŸ" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format msgid "%s set on hold.\n" msgstr "%s ã¯ä¿ç•™ã«è¨å®šã•れã¾ã—ãŸã€‚\n" -#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format msgid "Canceled hold on %s.\n" msgstr "%s ã®ä¿ç•™ã‚’解除ã—ã¾ã—ãŸã€‚\n" -#: cmdline/apt-mark.cc:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "dpkg ã®å®Ÿè¡Œã«å¤±æ•—ã—ã¾ã—ãŸã€‚root 権é™ã§å®Ÿè¡Œã—ã¦ã„ã¾ã™ã‹?" -#: cmdline/apt-mark.cc:381 -#, fuzzy +#: cmdline/apt-mark.cc:392 msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" "\n" @@ -713,8 +745,15 @@ msgstr "" "ã™ã‚‹ç°¡å˜ãªã‚³ãƒžãƒ³ãƒ‰ãƒ©ã‚¤ãƒ³ã‚¤ãƒ³ã‚¿ãƒ¼ãƒ•ェイスã§ã™ã€‚マークã®ä¸€è¦§è¡¨ç¤ºã‚‚ã§ãã¾ã™ã€‚\n" "\n" "コマンド:\n" -" auto - 指定ã®ãƒ‘ッケージを自動ã§ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•れãŸã‚‚ã®ã¨ã—ã¦ãƒžãƒ¼ã‚¯ã™ã‚‹\n" -" manual - 指定ã®ãƒ‘ッケージを手動ã§ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã—ãŸã‚‚ã®ã¨ã—ã¦ãƒžãƒ¼ã‚¯ã™ã‚‹\n" +" auto - 指定ã®ãƒ‘ッケージを自動ã§ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•れãŸã‚‚ã®ã¨ã—ã¦ãƒžãƒ¼ã‚¯ã™" +"ã‚‹\n" +" manual - 指定ã®ãƒ‘ッケージを手動ã§ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã—ãŸã‚‚ã®ã¨ã—ã¦ãƒžãƒ¼ã‚¯ã™" +"ã‚‹\n" +" hold - パッケージをä¿ç•™ã¨ã—ã¦ãƒžãƒ¼ã‚¯ã™ã‚‹\n" +" unhold - パッケージã®ä¿ç•™ã‚’解除ã™ã‚‹\n" +" showauto - 自動的ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•れãŸãƒ‘ッケージã®ä¸€è¦§ã‚’表示ã™ã‚‹\n" +" showmanual - 手作æ¥ã§ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã—ãŸãƒ‘ッケージã®ä¸€è¦§ã‚’表示ã™ã‚‹\n" +" showhold - ä¿ç•™ã•れã¦ã„るパッケージã®ä¸€è¦§ã‚’表示ã™ã‚‹\n" "\n" "オプション:\n" " -h ã“ã®ãƒ˜ãƒ«ãƒ—を表示ã™ã‚‹\n" @@ -727,7 +766,7 @@ msgstr "" "ã•らãªã‚‹æƒ…å ±ã«ã¤ã„ã¦ã¯ã€ãƒžãƒ‹ãƒ¥ã‚¢ãƒ«ãƒšãƒ¼ã‚¸ apt-mark(8) ãŠã‚ˆã³ apt.conf(5) ã‚’å‚" "ç…§ã—ã¦ãã ã•ã„。" -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -748,6 +787,24 @@ msgid "" "\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" #: methods/cdrom.cc:203 #, c-format @@ -775,52 +832,52 @@ msgstr "%s ã® CD-ROM ã¯ä½¿ç”¨ä¸ã®ãŸã‚アンマウントã™ã‚‹ã“ã¨ãŒã§ã msgid "Disk not found." msgstr "ディスクãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。" -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "ファイルãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 msgid "Failed to stat" msgstr "状態ã®å–å¾—ã«å¤±æ•—ã—ã¾ã—ãŸ" -#: methods/copy.cc:82 methods/gzip.cc:113 methods/rred.cc:606 +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 msgid "Failed to set modification time" msgstr "変更時刻ã®è¨å®šã«å¤±æ•—ã—ã¾ã—ãŸ" -#: methods/file.cc:47 +#: 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:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "ãƒã‚°ã‚¤ãƒ³ã—ã¦ã„ã¾ã™" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "ピアãƒãƒ¼ãƒ を決定ã™ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "ãƒãƒ¼ã‚«ãƒ«ãƒãƒ¼ãƒ を決定ã™ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format msgid "The server refused the connection and said: %s" msgstr "サーãƒã‹ã‚‰æŽ¥ç¶šã‚’æ‹’çµ¶ã•れã¾ã—ãŸã€‚応ç”: %s" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "USER 失敗ã€ã‚µãƒ¼ãƒå¿œç”: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS 失敗ã€ã‚µãƒ¼ãƒå¿œç”: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -828,121 +885,123 @@ msgstr "" "プãƒã‚シサーãƒãŒæŒ‡å®šã•れã¦ã„ã¾ã™ãŒã€ãƒã‚°ã‚¤ãƒ³ã‚¹ã‚¯ãƒªãƒ—トãŒè¨å®šã•れã¦ã„ã¾ã›ã‚“。" "Acquire::ftp::ProxyLogin ãŒç©ºã§ã™ã€‚" -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "ãƒã‚°ã‚¤ãƒ³ã‚¹ã‚¯ãƒªãƒ—トã®ã‚³ãƒžãƒ³ãƒ‰ '%s' 失敗ã€ã‚µãƒ¼ãƒå¿œç”: %s" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE 失敗ã€ã‚µãƒ¼ãƒå¿œç”: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 msgid "Connection timeout" msgstr "接続タイムアウト" -#: methods/ftp.cc:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "サーãƒãŒæŽ¥ç¶šã‚’切æ–ã—ã¾ã—ãŸ" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "èªã¿è¾¼ã¿ã‚¨ãƒ©ãƒ¼" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "レスãƒãƒ³ã‚¹ãŒãƒãƒƒãƒ•ァをオーãƒãƒ•ãƒãƒ¼ã•ã›ã¾ã—ãŸã€‚" -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "プãƒãƒˆã‚³ãƒ«ãŒå£Šã‚Œã¦ã„ã¾ã™" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "書ãè¾¼ã¿ã‚¨ãƒ©ãƒ¼" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 msgid "Could not create a socket" msgstr "ソケットを作æˆã§ãã¾ã›ã‚“" -#: methods/ftp.cc:707 +#: methods/ftp.cc:712 msgid "Could not connect data socket, connection timed out" msgstr "ãƒ‡ãƒ¼ã‚¿ã‚½ã‚±ãƒƒãƒˆã¸æŽ¥ç¶šã§ãã¾ã›ã‚“ã§ã—ãŸã€‚接続ãŒã‚¿ã‚¤ãƒ アウトã—ã¾ã—ãŸ" -#: methods/ftp.cc:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "失敗" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "ãƒ‘ãƒƒã‚·ãƒ–ã‚½ã‚±ãƒƒãƒˆã«æŽ¥ç¶šã§ãã¾ã›ã‚“。" -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo ã¯ãƒªã‚¹ãƒ‹ãƒ³ã‚°ã‚½ã‚±ãƒƒãƒˆã‚’å–å¾—ã§ãã¾ã›ã‚“ã§ã—ãŸ" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "ソケットをãƒã‚¤ãƒ³ãƒ‰ã§ãã¾ã›ã‚“ã§ã—ãŸ" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "ソケットをリスンã§ãã¾ã›ã‚“ã§ã—ãŸ" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "ソケットã®åå‰ã‚’特定ã§ãã¾ã›ã‚“ã§ã—ãŸ" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "PORT コマンドをé€ä¿¡ã§ãã¾ã›ã‚“" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "未知ã®ã‚¢ãƒ‰ãƒ¬ã‚¹ãƒ•ァミリ %u (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT ã«å¤±æ•—ã—ã¾ã—ãŸã€‚サーãƒå¿œç”: %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "データソケット接続タイムアウト" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "接続を accept ã§ãã¾ã›ã‚“" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "ファイルã®ãƒãƒƒã‚·ãƒ¥ã§ã®å•題" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "ファイルをå–å¾—ã§ãã¾ã›ã‚“。サーãƒå¿œç” '%s'" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "データソケットタイムアウト" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "データ転é€ã«å¤±æ•—ã—ã¾ã—ãŸã€‚サーãƒå¿œç” '%s'" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "å•ã„åˆã‚ã›" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "呼ã³å‡ºã›ã¾ã›ã‚“" @@ -978,7 +1037,7 @@ msgstr "%s:%s (%s) ã¸æŽ¥ç¶šã§ãã¾ã›ã‚“ã§ã—ãŸã€‚" #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "%s ã¸æŽ¥ç¶šã—ã¦ã„ã¾ã™" @@ -1008,23 +1067,23 @@ msgstr "'%s:%s' (%i - %s) ã®è§£æ±ºä¸ã«ä½•ã‹å•題ãŒèµ·ã“りã¾ã—ãŸ" msgid "Unable to connect to %s:%s:" msgstr "%s:%s ã¸æŽ¥ç¶šã§ãã¾ã›ã‚“:" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "内部エラー: æ£ã—ã„ç½²åã§ã™ãŒã€éµæŒ‡ç´‹ã‚’確定ã§ãã¾ã›ã‚“?!" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "å°‘ãªãã¨ã‚‚ 1 ã¤ã®ä¸æ£ãªç½²åãŒç™ºè¦‹ã•れã¾ã—ãŸã€‚" -#: methods/gpgv.cc:172 +#: 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:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " @@ -1033,161 +1092,161 @@ msgstr "" "クリアサインã•れãŸãƒ•ã‚¡ã‚¤ãƒ«ãŒæœ‰åйã§ã¯ãªãã€'%s' ã‚’å¾—ã¾ã—㟠(èªè¨¼ã«ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯" "ãŒå¿…è¦?)" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "gpgv ã®å®Ÿè¡Œä¸ã«æœªçŸ¥ã®ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿ" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "以下ã®ç½²åãŒç„¡åйã§ã™:\n" -#: methods/gpgv.cc:229 +#: 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:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "空ã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯æœ‰åйãªã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã¨èªã‚られã¾ã›ã‚“" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "ファイルã¸ã®æ›¸ãè¾¼ã¿ã§ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸ" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "リモートå´ã§æŽ¥ç¶šãŒã‚¯ãƒãƒ¼ã‚ºã•れã¦ã‚µãƒ¼ãƒã‹ã‚‰ã®èªã¿è¾¼ã¿ã«å¤±æ•—ã—ã¾ã—ãŸ" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "サーãƒã‹ã‚‰ã®èªã¿è¾¼ã¿ã«å¤±æ•—ã—ã¾ã—ãŸ" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "ファイルã¸ã®æ›¸ãè¾¼ã¿ã§ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸ" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "select ã«å¤±æ•—ã—ã¾ã—ãŸ" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "接続タイムアウト" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "出力ファイルã¸ã®æ›¸ãè¾¼ã¿ã§ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸ" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "ヘッダã®å¾…機ä¸ã§ã™" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "䏿£ãªãƒ˜ãƒƒãƒ€è¡Œã§ã™" -#: methods/server.cc:139 methods/server.cc:146 +#: methods/server.cc:134 methods/server.cc:141 msgid "The HTTP server sent an invalid reply header" msgstr "HTTP サーãƒãŒä¸æ£ãªãƒªãƒ—ライヘッダをé€ä¿¡ã—ã¦ãã¾ã—ãŸ" -#: methods/server.cc:176 +#: methods/server.cc:171 msgid "The HTTP server sent an invalid Content-Length header" msgstr "HTTP サーãƒãŒä¸æ£ãª Content-Length ヘッダをé€ä¿¡ã—ã¦ãã¾ã—ãŸ" -#: methods/server.cc:199 +#: methods/server.cc:194 msgid "The HTTP server sent an invalid Content-Range header" msgstr "HTTP サーãƒãŒä¸æ£ãª Content-Range ヘッダをé€ä¿¡ã—ã¦ãã¾ã—ãŸ" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "HTTP サーãƒã®ãƒ¬ãƒ³ã‚¸ã‚µãƒãƒ¼ãƒˆãŒå£Šã‚Œã¦ã„ã¾ã™" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "䏿˜Žãªæ—¥ä»˜ãƒ•ォーマットã§ã™" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "䏿£ãªãƒ˜ãƒƒãƒ€ã§ã™" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "接続失敗" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "内部エラー" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" -msgstr "" +msgstr "一覧表示" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "内部エラーã€InstallPackages ãŒå£Šã‚ŒãŸãƒ‘ッケージã§å‘¼ã³å‡ºã•れã¾ã—ãŸ!" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "パッケージを削除ã—ãªã‘れã°ãªã‚Šã¾ã›ã‚“ãŒã€å‰Šé™¤ãŒç„¡åйã«ãªã£ã¦ã„ã¾ã™ã€‚" -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "内部エラーã€èª¿æ•´ãŒçµ‚ã‚ã£ã¦ã„ã¾ã›ã‚“" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" "ãŠã£ã¨ã€ã‚µã‚¤ã‚ºãŒãƒžãƒƒãƒã—ã¾ã›ã‚“。apt@packages.debian.org ã«ãƒ¡ãƒ¼ãƒ«ã—ã¦ãã ã•ã„" #. TRANSLATOR: The required 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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "%2$sB ä¸ %1$sB ã®ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã‚’å–å¾—ã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:171 +#: apt-private/private-install.cc:159 #, 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:178 +#: apt-private/private-install.cc:166 #, c-format msgid "After this operation, %sB of additional disk space will be used.\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:183 +#: apt-private/private-install.cc:171 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "ã“ã®æ“作後㫠%sB ã®ãƒ‡ã‚£ã‚¹ã‚¯å®¹é‡ãŒè§£æ”¾ã•れã¾ã™ã€‚\n" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "%s ã«å……分ãªç©ºãスペースãŒã‚りã¾ã›ã‚“。" -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "å•題ãŒç™ºç”Ÿã—ã€-y オプション㌠--force-yes ãªã—ã§ä½¿ç”¨ã•れã¾ã—ãŸ" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Trivial Only ãŒæŒ‡å®šã•れã¾ã—ãŸãŒã€ã“れã¯ç°¡å˜ãªæ“作ã§ã¯ã‚りã¾ã›ã‚“。" #. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be #. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Yes, do as I say!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1198,19 +1257,19 @@ msgstr "" "続行ã™ã‚‹ã«ã¯ã€'%s' ã¨ã„ã†ãƒ•レーズをタイプã—ã¦ãã ã•ã„。\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "䏿–ã—ã¾ã—ãŸã€‚" -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "続行ã—ã¾ã™ã‹?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "ã„ãã¤ã‹ã®ãƒ•ァイルã®å–å¾—ã«å¤±æ•—ã—ã¾ã—ãŸ" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1218,19 +1277,19 @@ msgstr "" "ã„ãã¤ã‹ã®ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã‚’å–å¾—ã§ãã¾ã›ã‚“。apt-get update を実行ã™ã‚‹ã‹ --fix-" "missing オプションを付ã‘ã¦è©¦ã—ã¦ã¿ã¦ãã ã•ã„。" -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing ã¨ãƒ¡ãƒ‡ã‚£ã‚¢äº¤æ›ã¯ç¾åœ¨åŒæ™‚ã«ã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "足りãªã„パッケージを直ã™ã“ã¨ãŒã§ãã¾ã›ã‚“。" -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã‚’ä¸æ–ã—ã¾ã™ã€‚" -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1241,16 +1300,16 @@ msgstr[0] "" "以下ã®ãƒ‘ッケージã¯ã€å…¨ãƒ•ァイルãŒåˆ¥ã®ãƒ‘ッケージã§ä¸Šæ›¸ãã•れãŸãŸã‚ã€\n" "システムã‹ã‚‰æ¶ˆãˆã¾ã—ãŸ:" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "注æ„: ã“れ㯠dpkg ã«ã‚ˆã‚Šè‡ªå‹•ã§ã‚ã–ã¨è¡Œã‚れれã¾ã™ã€‚" -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "一連ã®ã‚‚ã®ã‚’削除ã™ã‚‹ã‚ˆã†ã«ãªã£ã¦ã„ãªã„ã®ã§ã€AutoRemover ã‚’é–‹å§‹ã§ãã¾ã›ã‚“" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1268,15 +1327,15 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 msgid "The following information may help to resolve the situation:" msgstr "ä»¥ä¸‹ã®æƒ…å ±ãŒã“ã®å•題を解決ã™ã‚‹ãŸã‚ã«å½¹ç«‹ã¤ã‹ã‚‚ã—れã¾ã›ã‚“:" -#: apt-private/private-install.cc:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "内部エラーã€AutoRemover ãŒä½•ã‹ã‚’ç ´å£Šã—ã¾ã—ãŸ" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1285,7 +1344,7 @@ msgid_plural "" msgstr[0] "" "以下ã®ãƒ‘ッケージãŒè‡ªå‹•ã§ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•れã¾ã—ãŸãŒã€ã‚‚ã†å¿…è¦ã¨ã•れã¦ã„ã¾ã›ã‚“:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1294,18 +1353,18 @@ msgstr[0] "" "%lu ã¤ã®ãƒ‘ッケージãŒè‡ªå‹•ã§ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•れã¾ã—ãŸãŒã€ã‚‚ã†å¿…è¦ã¨ã•れã¦ã„ã¾ã›" "ã‚“:\n" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "ã“れを削除ã™ã‚‹ã«ã¯ 'apt-get autoremove' を利用ã—ã¦ãã ã•ã„。" -#: apt-private/private-install.cc:624 +#: 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:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1313,7 +1372,7 @@ msgstr "" "未解決ã®ä¾å˜é–¢ä¿‚ã§ã™ã€‚'apt-get -f install' を実行ã—ã¦ã¿ã¦ãã ã•ã„ (ã¾ãŸã¯è§£æ³•" "を明示ã—ã¦ãã ã•ã„)。" -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1325,145 +1384,142 @@ msgstr "" "ã§ã‚れã°) å¿…è¦ãªãƒ‘ッケージãŒã¾ã 作æˆã•れã¦ã„ãªã‹ã£ãŸã‚Š Incoming ã‹ã‚‰ç§»\n" "å‹•ã•れã¦ã„ãªã„ã“ã¨ãŒè€ƒãˆã‚‰ã‚Œã¾ã™ã€‚" -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "壊れãŸãƒ‘ッケージ" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "以下ã®ç‰¹åˆ¥ãƒ‘ッケージãŒã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•れã¾ã™:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "ææ¡ˆãƒ‘ッケージ:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "推奨パッケージ:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "è¦å‘Š: 以下ã®ãƒ‘ッケージã¯èªè¨¼ã•れã¦ã„ã¾ã›ã‚“!" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "èªè¨¼ã®è¦å‘Šã¯ä¸Šæ›¸ãã•れã¾ã—ãŸã€‚\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "ã„ãã¤ã‹ã®ãƒ‘ッケージをèªè¨¼ã§ãã¾ã›ã‚“ã§ã—ãŸ" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "検証ãªã—ã«ã“れらã®ãƒ‘ッケージをインストールã—ã¾ã™ã‹?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s ã®å–å¾—ã«å¤±æ•—ã—ã¾ã—㟠%s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" -msgstr "" +msgstr "䏿˜Ž" -#: apt-private/private-output.cc:201 -#, fuzzy, c-format +#: apt-private/private-output.cc:207 +#, c-format msgid "[installed,upgradable to: %s]" -msgstr " [インストール済ã¿]" +msgstr "[インストール済ã¿ã€%s ã«ã‚¢ãƒƒãƒ—グレードå¯]" -#: apt-private/private-output.cc:205 -#, fuzzy +#: apt-private/private-output.cc:211 msgid "[installed,local]" -msgstr " [インストール済ã¿]" +msgstr "[インストール済ã¿ã€ãƒãƒ¼ã‚«ãƒ«]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" -msgstr "" +msgstr "[インストール済ã¿ã€è‡ªå‹•削除å¯]" -#: apt-private/private-output.cc:210 -#, fuzzy +#: apt-private/private-output.cc:216 msgid "[installed,automatic]" -msgstr " [インストール済ã¿]" +msgstr "[インストール済ã¿ã€è‡ªå‹•]" -#: apt-private/private-output.cc:212 -#, fuzzy +#: apt-private/private-output.cc:218 msgid "[installed]" -msgstr " [インストール済ã¿]" +msgstr "[インストール済ã¿]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" -msgstr "" +msgstr "[%s ã‹ã‚‰ã‚¢ãƒƒãƒ—グレードå¯]" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" -msgstr "" +msgstr "[è¨å®šæœªå®Œäº†]" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "以下ã®ãƒ‘ッケージã«ã¯æº€ãŸã›ãªã„ä¾å˜é–¢ä¿‚ãŒã‚りã¾ã™:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "ã—ã‹ã—ã€%s ã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•れã¦ã„ã¾ã™" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "ã—ã‹ã—ã€%s ã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•れよã†ã¨ã—ã¦ã„ã¾ã™" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "ã—ã‹ã—ã€ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã™ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "ã—ã‹ã—ã€ã“れã¯ä»®æƒ³ãƒ‘ッケージã§ã™" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "ã—ã‹ã—ã€ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•れã¦ã„ã¾ã›ã‚“" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "ã—ã‹ã—ã€ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•れよã†ã¨ã—ã¦ã„ã¾ã›ã‚“" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " ã¾ãŸã¯" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "以下ã®ãƒ‘ãƒƒã‚±ãƒ¼ã‚¸ãŒæ–°ãŸã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•れã¾ã™:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "以下ã®ãƒ‘ッケージã¯ã€Œå‰Šé™¤ã€ã•れã¾ã™:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "以下ã®ãƒ‘ッケージã¯ä¿ç•™ã•れã¾ã™:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "以下ã®ãƒ‘ッケージã¯ã‚¢ãƒƒãƒ—グレードã•れã¾ã™:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "以下ã®ãƒ‘ッケージã¯ã€Œãƒ€ã‚¦ãƒ³ã‚°ãƒ¬ãƒ¼ãƒ‰ã€ã•れã¾ã™:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "以下ã®å¤‰æ›´ç¦æ¢ãƒ‘ッケージã¯å¤‰æ›´ã•れã¾ã™:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (%s ã®ãŸã‚) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1471,27 +1527,27 @@ msgstr "" "è¦å‘Š: 以下ã®ä¸å¯æ¬ パッケージãŒå‰Šé™¤ã•れã¾ã™ã€‚\n" "何をã—よã†ã¨ã—ã¦ã„ã‚‹ã‹æœ¬å½“ã«ã‚ã‹ã£ã¦ã„ãªã„å ´åˆã¯ã€å®Ÿè¡Œã—ã¦ã¯ã„ã‘ã¾ã›ã‚“!" -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "アップグレード: %lu å€‹ã€æ–°è¦ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«: %lu 個ã€" -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "å†ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«: %lu 個ã€" -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "ダウングレード: %lu 個ã€" -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "削除: %lu 個ã€ä¿ç•™: %lu 個。\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu 個ã®ãƒ‘ッケージãŒå®Œå…¨ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã¾ãŸã¯å‰Šé™¤ã•れã¦ã„ã¾ã›ã‚“。\n" @@ -1500,7 +1556,7 @@ msgstr "%lu 個ã®ãƒ‘ッケージãŒå®Œå…¨ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã¾ãŸã¯å‰Šé™¤ã #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "[Y/n]" @@ -1508,92 +1564,92 @@ msgstr "[Y/n]" #. 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:702 +#: apt-private/private-output.cc:708 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:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "Y" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "N" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "æ£è¦è¡¨ç¾ã®å±•開エラー - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "ä¾å˜é–¢ä¿‚を解決ã—ã¦ã„ã¾ã™ ..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " 失敗ã—ã¾ã—ãŸã€‚" -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "ä¾å˜é–¢ä¿‚を訂æ£ã§ãã¾ã›ã‚“" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "アップグレードセットを最å°åŒ–ã§ãã¾ã›ã‚“" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " 完了" -#: apt-private/private-cachefile.cc:102 +#: 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:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "未解決ã®ä¾å˜é–¢ä¿‚ãŒã‚りã¾ã™ã€‚-f オプションを試ã—ã¦ãã ã•ã„。" -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" -msgstr "" +msgstr "ソートä¸" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "update コマンドã¯å¼•æ•°ã‚’ã¨ã‚Šã¾ã›ã‚“" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "アップグレードパッケージを検出ã—ã¦ã„ã¾ã™ ... " -#: apt-private/private-upgrade.cc:24 -#, fuzzy +#: apt-private/private-upgrade.cc:30 msgid "Internal error, Upgrade broke stuff" -msgstr "内部エラーã€AllUpgrade ãŒä½•ã‹ã‚’ç ´å£Šã—ã¾ã—ãŸ" +msgstr "内部エラーã€ã‚¢ãƒƒãƒ—グレードã§ä½•ã‹å£Šã‚Œã¾ã—ãŸ" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "完了" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" -msgstr "" +msgstr "全文検索" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" +"è¿½åŠ ãƒ¬ã‚³ãƒ¼ãƒ‰ãŒ %i ä»¶ã‚りã¾ã™ã€‚表示ã™ã‚‹ã«ã¯ '-a' スイッãƒã‚’付ã‘ã¦ãã ã•ã„。" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" -msgstr "" +msgstr "実際ã®ãƒ‘ッケージã§ã¯ã‚りã¾ã›ã‚“ (仮想)" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1605,43 +1661,44 @@ msgstr "" " ãƒãƒƒã‚¯ãŒéžã‚¢ã‚¯ãƒ†ã‚£ãƒ–ã§ã‚ã‚‹ã“ã¨ã‹ã‚‰ã€ä»Šã“ã®æ™‚点ã®çŠ¶æ…‹ã«å¦¥å½“性ãŒ\n" " ã‚ã‚‹ã¨ã¯è¨€ã„切れãªã„ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„!" -#: apt-private/private-sources.cc:45 -#, fuzzy, c-format +#: apt-private/private-sources.cc:58 +#, c-format msgid "Failed to parse %s. Edit again? " -msgstr "%s ã‚’ %s ã«åå‰å¤‰æ›´ã§ãã¾ã›ã‚“ã§ã—ãŸ" +msgstr "%s ã®è§£æžã«å¤±æ•—ã—ã¾ã—ãŸã€‚å†ç·¨é›†ã—ã¾ã™ã‹? " -#: apt-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" +"'%s' ファイルãŒå¤‰æ›´ã•れã¦ã„ã¾ã™ã€‚「apt-get updateã€ã‚’実行ã—ã¦ãã ã•ã„。" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "ヒット " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "å–å¾—:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "無視 " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "エラー " -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "%sB ã‚’ %s ã§å–å¾—ã—ã¾ã—㟠(%sB/s)\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [処ç†ä¸]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1654,19 +1711,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "%s ã‚’èªã¿è¾¼ã‚€ã“ã¨ãŒã§ãã¾ã›ã‚“" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "%s ã¸å¤‰æ›´ã™ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“" @@ -1695,11 +1752,11 @@ msgstr "ミラーファイル '%s' ã®ã‚¨ãƒ³ãƒˆãƒªãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" msgid "[Mirror: %s]" msgstr "[ミラー: %s]" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 msgid "Failed to create IPC pipe to subprocess" msgstr "åプãƒã‚»ã‚¹ã¸ã® IPC パイプã®ä½œæˆã«å¤±æ•—ã—ã¾ã—ãŸ" -#: methods/rsh.cc:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "途ä¸ã§æŽ¥ç¶šãŒã‚¯ãƒãƒ¼ã‚ºã•れã¾ã—ãŸ" @@ -1761,41 +1818,46 @@ msgstr "" " -c=? 指定ã—ãŸè¨å®šãƒ•ァイルをèªã¿è¾¼ã‚€\n" " -o=? 指定ã—ãŸè¨å®šã‚ªãƒ—ションをé©ç”¨ã™ã‚‹ (例: -o dir::cache=/tmp)\n" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "%s ã®çŠ¶æ…‹ã‚’å–å¾—ã§ãã¾ã›ã‚“" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "%s ã«æ›¸ãè¾¼ã‚ã¾ã›ã‚“" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "" "debconf ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‚’å–å¾—ã§ãã¾ã›ã‚“。debconf ã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•れã¦ã„ã¾ã™ã‹?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "パッケージ拡張åリストãŒé•·ã™ãŽã¾ã™" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "ディレクトリ %s ã®å‡¦ç†ä¸ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸ" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "ソース拡張åリストãŒé•·ã™ãŽã¾ã™" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "Contents ファイルã¸ã®ãƒ˜ãƒƒãƒ€ã®æ›¸ãè¾¼ã¿ä¸ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸ" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "Contents %s ã®å‡¦ç†ä¸ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸ" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1876,26 +1938,26 @@ msgstr "" " -c=? 指定ã®è¨å®šãƒ•ァイルをèªã‚€\n" " -o=? ä»»æ„ã®è¨å®šã‚ªãƒ—ションをè¨å®šã™ã‚‹" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "é¸æŠžã«ãƒžãƒƒãƒã™ã‚‹ã‚‚ã®ãŒã‚りã¾ã›ã‚“" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "パッケージファイルグループ `%s' ã«è¦‹å½“ãŸã‚‰ãªã„ファイルãŒã‚りã¾ã™" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "DB ãŒå£Šã‚Œã¦ã„ãŸãŸã‚ã€ãƒ•ァイルåã‚’ %s.old ã«å¤‰æ›´ã—ã¾ã—ãŸ" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "DB ãŒå¤ã„ãŸã‚ã€%s ã®ã‚¢ãƒƒãƒ—グレードを試ã¿ã¾ã™" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -1903,192 +1965,192 @@ msgstr "" "DB フォーマットãŒç„¡åйã§ã™ã€‚apt ã®å¤ã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‹ã‚‰æ›´æ–°ã—ãŸã®ã§ã‚れã°ã€ãƒ‡ãƒ¼ã‚¿" "ベースを削除ã—ã€å†ä½œæˆã—ã¦ãã ã•ã„。" -#: ftparchive/cachedb.cc:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "DB ファイル %s ã‚’é–‹ãã“ã¨ãŒã§ãã¾ã›ã‚“: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "%s ã®çŠ¶æ…‹ã‚’å–å¾—ã™ã‚‹ã®ã«å¤±æ•—ã—ã¾ã—ãŸ" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "アーカイブã«ã‚³ãƒ³ãƒˆãƒãƒ¼ãƒ«ãƒ¬ã‚³ãƒ¼ãƒ‰ãŒã‚りã¾ã›ã‚“" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "カーソルをå–å¾—ã§ãã¾ã›ã‚“" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "è¦å‘Š: ディレクトリ %s ãŒèªã‚ã¾ã›ã‚“\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "è¦å‘Š: %s ã®çŠ¶æ…‹ã‚’å–å¾—ã§ãã¾ã›ã‚“\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "エラー: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "è¦å‘Š: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "エラー: エラーãŒé©ç”¨ã•れるファイル㯠" -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "%s ã®è§£æ±ºã«å¤±æ•—ã—ã¾ã—ãŸ" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "ツリー内ã§ã®ç§»å‹•ã«å¤±æ•—ã—ã¾ã—ãŸ" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "%s ã®ã‚ªãƒ¼ãƒ—ンã«å¤±æ•—ã—ã¾ã—ãŸ" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " リンク %s [%s] を外ã—ã¾ã™\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "%s ã®ãƒªãƒ³ã‚¯èªã¿å–りã«å¤±æ•—ã—ã¾ã—ãŸ" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "%s ã®ãƒªãƒ³ã‚¯è§£é™¤ã«å¤±æ•—ã—ã¾ã—ãŸ" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** %s ã‚’ %s ã«ãƒªãƒ³ã‚¯ã™ã‚‹ã®ã«å¤±æ•—ã—ã¾ã—ãŸ" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " リンクを外ã™åˆ¶é™ã® %sB ã«åˆ°é”ã—ã¾ã—ãŸã€‚\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "アーカイブã«ãƒ‘ッケージフィールドãŒã‚りã¾ã›ã‚“ã§ã—ãŸ" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %s ã« override エントリãŒã‚りã¾ã›ã‚“\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %1$s メンテナ㯠%3$s ã§ã¯ãªã %2$s ã§ã™\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr " %s ã«ã‚½ãƒ¼ã‚¹ override エントリãŒã‚りã¾ã›ã‚“\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s ã«ãƒã‚¤ãƒŠãƒª override エントリãŒã‚りã¾ã›ã‚“\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - メモリã®å‰²ã‚Šå½“ã¦ã«å¤±æ•—ã—ã¾ã—ãŸ" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "'%s' をオープンã§ãã¾ã›ã‚“" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 -#, fuzzy, c-format +#: ftparchive/override.cc:68 +#, c-format msgid "Malformed override %s line %llu (%s)" -msgstr "䏿£ãª override %s %llu 行目 #1" +msgstr "䏿£ãª override %s %llu 行目 (%s)" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "override ファイル %s ã‚’èªã¿è¾¼ã‚€ã®ã«å¤±æ•—ã—ã¾ã—ãŸ" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, c-format msgid "Malformed override %s line %llu #1" msgstr "䏿£ãª override %s %llu 行目 #1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, c-format msgid "Malformed override %s line %llu #2" msgstr "䏿£ãª override %s %llu 行目 #2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, c-format msgid "Malformed override %s line %llu #3" msgstr "䏿£ãª override %s %llu 行目 #3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "'%s' ã¯æœªçŸ¥ã®åœ§ç¸®ã‚¢ãƒ«ã‚´ãƒªã‚ºãƒ ã§ã™" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "圧縮出力 %s ã«ã¯åœ§ç¸®ã‚»ãƒƒãƒˆãŒå¿…è¦ã§ã™" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "FILE* ã®ä½œæˆã«å¤±æ•—ã—ã¾ã—ãŸ" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "fork ã«å¤±æ•—ã—ã¾ã—ãŸ" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "圧縮åプãƒã‚»ã‚¹" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "内部エラーã€%s ã®ä½œæˆã«å¤±æ•—ã—ã¾ã—ãŸ" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "åプãƒã‚»ã‚¹/ファイルã¸ã® IO ãŒå¤±æ•—ã—ã¾ã—ãŸ" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "MD5 ã®è¨ˆç®—ä¸ã«èªã¿è¾¼ã¿ã«å¤±æ•—ã—ã¾ã—ãŸ" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "%s ã®ãƒªãƒ³ã‚¯è§£é™¤ã§å•題ãŒç™ºç”Ÿã—ã¾ã—ãŸ" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "%s ã‚’ %s ã«åå‰å¤‰æ›´ã§ãã¾ã›ã‚“ã§ã—ãŸ" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -2140,158 +2202,158 @@ msgstr "" " -c=? 指定ã—ãŸè¨å®šãƒ•ァイルをèªã¿è¾¼ã‚€\n" " -o=? 指定ã—ãŸè¨å®šã‚ªãƒ—ションをé©ç”¨ã™ã‚‹ (例: -o dir::cache=/tmp)\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "パイプã®ç”Ÿæˆã«å¤±æ•—ã—ã¾ã—ãŸ" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "gzip ã®å®Ÿè¡Œã«å¤±æ•—ã—ã¾ã—ãŸ" -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "壊れãŸã‚¢ãƒ¼ã‚«ã‚¤ãƒ–" -#: apt-inst/contrib/extracttar.cc:201 +#: apt-inst/contrib/extracttar.cc:203 msgid "Tar checksum failed, archive corrupted" msgstr "tar ãƒã‚§ãƒƒã‚¯ã‚µãƒ 検証ãŒå¤±æ•—ã—ã¾ã—ãŸã€‚アーカイブãŒå£Šã‚Œã¦ã„ã¾ã™" -#: apt-inst/contrib/extracttar.cc:306 +#: apt-inst/contrib/extracttar.cc:308 #, c-format msgid "Unknown TAR header type %u, member %s" msgstr "未知㮠TAR ヘッダタイプ %uã€ãƒ¡ãƒ³ãƒãƒ¼ %s" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "䏿£ãªã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ç½²å" -#: apt-inst/contrib/arfile.cc:82 +#: apt-inst/contrib/arfile.cc:84 msgid "Error reading archive member header" msgstr "アーカイブメンãƒãƒ¼ãƒ˜ãƒƒãƒ€ã®èªã¿è¾¼ã¿ã«å¤±æ•—ã—ã¾ã—ãŸ" -#: apt-inst/contrib/arfile.cc:94 +#: apt-inst/contrib/arfile.cc:96 #, c-format msgid "Invalid archive member header %s" msgstr "䏿£ãªã‚¢ãƒ¼ã‚«ã‚¤ãƒ–メンãƒãƒ¼ãƒ˜ãƒƒãƒ€ %s" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "䏿£ãªã‚¢ãƒ¼ã‚«ã‚¤ãƒ–メンãƒãƒ¼ãƒ˜ãƒƒãƒ€" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "アーカイブãŒä¸è¶³ã—ã¦ã„ã¾ã™" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "アーカイブヘッダã®èªã¿è¾¼ã¿ã«å¤±æ•—ã—ã¾ã—ãŸ" -#: apt-inst/filelist.cc:382 +#: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" msgstr "リンクã•れã¦ã„るノード㧠DropNode ãŒå‘¼ã°ã‚Œã¾ã—ãŸ" -#: apt-inst/filelist.cc:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "ãƒãƒƒã‚·ãƒ¥è¦ç´ を特定ã™ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“!" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "diversion ã®å‰²ã‚Šå½“ã¦ã«å¤±æ•—ã—ã¾ã—ãŸ" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "AddDiversion ã§ã®å†…部エラー" -#: apt-inst/filelist.cc:479 +#: apt-inst/filelist.cc:477 #, c-format msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" msgstr "%s -> %s 㨠%s/%s ã® diversion を上書ãã—よã†ã¨ã—ã¦ã„ã¾ã™" -#: apt-inst/filelist.cc:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "%s -> %s ã® diversion ãŒäºŒé‡ã«è¿½åŠ ã•れã¦ã„ã¾ã™" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "è¨å®šãƒ•ァイル %s/%s ãŒé‡è¤‡ã—ã¦ã„ã¾ã™" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: 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:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "%s ã®ã‚¯ãƒãƒ¼ã‚ºã«å¤±æ•—ã—ã¾ã—ãŸ" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: 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:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "%s を複数回展開ã—ã¦ã„ã¾ã™" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "ディレクトリ %s 㯠divert ã•れã¦ã„ã¾ã™" -#: apt-inst/extract.cc:145 +#: apt-inst/extract.cc:152 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "" "ã“ã®ãƒ‘ッケージ㯠diversion ã®ã‚¿ãƒ¼ã‚²ãƒƒãƒˆã® %s/%s ã«æ›¸ã込もã†ã¨ã—ã¦ã„ã¾ã™" -#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 msgid "The diversion path is too long" msgstr "diversion パスãŒé•·ã™ãŽã¾ã™" -#: apt-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "ディレクトリ %s ãŒéžãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã«ç½®æ›ã•れよã†ã¨ã—ã¦ã„ã¾ã™" -#: apt-inst/extract.cc:282 +#: apt-inst/extract.cc:289 msgid "Failed to locate node in its hash bucket" msgstr "ãƒãƒƒã‚·ãƒ¥ãƒã‚±ãƒ„内ã§ãƒŽãƒ¼ãƒ‰ã‚’特定ã™ã‚‹ã®ã«å¤±æ•—ã—ã¾ã—ãŸ" -#: apt-inst/extract.cc:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "パスãŒé•·ã™ãŽã¾ã™" -#: apt-inst/extract.cc:414 +#: apt-inst/extract.cc:421 #, c-format msgid "Overwrite package match with no version for %s" msgstr "%s ã«å¯¾ã™ã‚‹ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®ãªã„パッケージマッãƒã‚’上書ãã—ã¾ã™" -#: apt-inst/extract.cc:431 +#: 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:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "%s ã®çŠ¶æ…‹ã‚’å–å¾—ã§ãã¾ã›ã‚“" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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 アーカイブã§ã¯ã‚りã¾ã›ã‚“" -#: apt-inst/deb/debfile.cc:124 +#: apt-inst/deb/debfile.cc:132 #, c-format msgid "Internal error, could not locate member %s" msgstr "内部エラーã€ãƒ¡ãƒ³ãƒãƒ¼ %s を特定ã§ãã¾ã›ã‚“" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "è§£æžã§ããªã„コントãƒãƒ¼ãƒ«ãƒ•ァイル" @@ -2349,208 +2411,203 @@ msgstr "" "è‡ªå‹•å¢—åŠ ãŒãƒ¦ãƒ¼ã‚¶ã«ã‚ˆã£ã¦ç„¡åйã«ã•れã¦ã„ã‚‹ãŸã‚ã€MMap ã®ã‚µã‚¤ã‚ºã‚’増やã›ã¾ã›ã‚“。" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "%liæ—¥ %li時間 %li分 %liç§’" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "%li時間 %li分 %liç§’" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "%li分 %liç§’" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "%liç§’" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "é¸æŠžã•れ㟠%s ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "ç†è§£ã§ããªã„çœç•¥å½¢å¼ã§ã™: '%c'" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "è¨å®šãƒ•ァイル %s をオープンã§ãã¾ã›ã‚“ã§ã—ãŸ" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "文法エラー %s:%u: ブãƒãƒƒã‚¯ãŒåå‰ãªã—ã§å§‹ã¾ã£ã¦ã„ã¾ã™ã€‚" -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "文法エラー %s:%u: 䏿£ãªã‚¿ã‚°ã§ã™" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "文法エラー %s:%u: 値ã®å¾Œã«ä½™åˆ†ãªã‚´ãƒŸãŒå…¥ã£ã¦ã„ã¾ã™" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "文法エラー %s:%u: 命令ã¯ãƒˆãƒƒãƒ—レベルã§ã®ã¿å®Ÿè¡Œã§ãã¾ã™" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "文法エラー %s:%u: インクルードã®ãƒã‚¹ãƒˆãŒå¤šã™ãŽã¾ã™" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "文法エラー %s:%u: ã“ã“ã‹ã‚‰ã‚¤ãƒ³ã‚¯ãƒ«ãƒ¼ãƒ‰ã•れã¦ã„ã¾ã™" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "文法エラー %s:%u: 未対応ã®å‘½ä»¤ '%s'" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-pkg/contrib/configuration.cc:900 #, c-format msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" "文法エラー %s:%u: clear ディレクティブã¯ã€å¼•æ•°ã¨ã—ã¦ã‚ªãƒ—ションツリーを必è¦ã¨" "ã—ã¾ã™" -#: apt-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "文法エラー %s:%u: ãƒ•ã‚¡ã‚¤ãƒ«ã®æœ€å¾Œã«ä½™è¨ˆãªã‚´ãƒŸãŒã‚りã¾ã™" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... エラー!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... 完了" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "..." #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, c-format msgid "%c%s... %u%%" msgstr "%c%s... %u%%" -#: apt-pkg/contrib/cmndline.cc:116 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format msgid "Command line option '%c' [from %s] is not known." msgstr "コマンドラインオプション '%c' [%s ã‹ã‚‰] ã¯ä¸æ˜Žã§ã™ã€‚" -#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format msgid "Command line option %s is not boolean" msgstr "コマンドラインオプション %s 㯠boolean ã§ã¯ã‚りã¾ã›ã‚“" -#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "オプション %s ã«ã¯å¼•æ•°ãŒå¿…è¦ã§ã™ã€‚" -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "オプション %s: è¨å®šé …ç›®ã«ã¯ =<値> を指定ã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚" -#: apt-pkg/contrib/cmndline.cc:273 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format msgid "Option %s requires an integer argument, not '%s'" msgstr "オプション %s ã«ã¯ '%s' ã§ã¯ãªãæ•´æ•°ã®å¼•æ•°ãŒå¿…è¦ã§ã™" -#: apt-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "オプション '%s' ã¯é•·ã™ãŽã¾ã™" -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "%s を解釈ã™ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“。true ã‹ false を試ã—ã¦ãã ã•ã„。" -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "䏿£ãªæ“作 %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format msgid "Unable to stat the mount point %s" msgstr "マウントãƒã‚¤ãƒ³ãƒˆ %s ã®çŠ¶æ…‹ã‚’å–å¾—ã§ãã¾ã›ã‚“" -#: apt-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "CD-ROM ã®çŠ¶æ…‹ã‚’å–å¾—ã™ã‚‹ã®ã«å¤±æ•—ã—ã¾ã—ãŸ" -#: apt-pkg/contrib/fileutl.cc:95 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "gzip ファイル %s ã®ã‚¯ãƒãƒ¼ã‚ºä¸ã«å•題ãŒç™ºç”Ÿã—ã¾ã—ãŸ" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "èªã¿è¾¼ã¿å°‚用ã®ãƒãƒƒã‚¯ãƒ•ァイル %s ã«ãƒãƒƒã‚¯ã¯ä½¿ç”¨ã—ã¾ã›ã‚“" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "ãƒãƒƒã‚¯ãƒ•ァイル %s をオープンã§ãã¾ã›ã‚“" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "nfs マウントã•れãŸãƒãƒƒã‚¯ãƒ•ァイル %s ã«ã¯ãƒãƒƒã‚¯ã‚’使用ã—ã¾ã›ã‚“" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "ãƒãƒƒã‚¯ %s ãŒå–å¾—ã§ãã¾ã›ã‚“ã§ã—ãŸ" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "'%s' ãŒãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã§ã¯ãªã„ãŸã‚ã€ãƒ•ァイルã®ä¸€è¦§ã‚’作æˆã§ãã¾ã›ã‚“" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "ディレクトリ '%2$s' ã® '%1$s' ãŒé€šå¸¸ãƒ•ァイルã§ã¯ãªã„ãŸã‚ã€ç„¡è¦–ã—ã¾ã™" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" "ディレクトリ '%2$s' ã® '%1$s' ãŒãƒ•ã‚¡ã‚¤ãƒ«åæ‹¡å¼µåã‚’æŒãŸãªã„ãŸã‚ã€ç„¡è¦–ã—ã¾ã™" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" @@ -2558,281 +2615,291 @@ msgstr "" "ディレクトリ '%2$s' ã® '%1$s' ãŒç„¡åйãªãƒ•ã‚¡ã‚¤ãƒ«åæ‹¡å¼µåã‚’æŒã£ã¦ã„ã‚‹ãŸã‚ã€ç„¡è¦–" "ã—ã¾ã™" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "åプãƒã‚»ã‚¹ %s ãŒã‚»ã‚°ãƒ¡ãƒ³ãƒ†ãƒ¼ã‚·ãƒ§ãƒ³é•åã‚’å—ã‘å–りã¾ã—ãŸã€‚" -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, c-format msgid "Sub-process %s received signal %u." msgstr "åプãƒã‚»ã‚¹ %s ãŒã‚·ã‚°ãƒŠãƒ« %u ã‚’å—ã‘å–りã¾ã—ãŸã€‚" -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 apt-pkg/contrib/gpgv.cc:239 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "åプãƒã‚»ã‚¹ %s ãŒã‚¨ãƒ©ãƒ¼ã‚³ãƒ¼ãƒ‰ (%u) ã‚’è¿”ã—ã¾ã—ãŸ" -#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "åプãƒã‚»ã‚¹ %s ãŒäºˆæœŸã›ãšçµ‚了ã—ã¾ã—ãŸ" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "gzip ファイル %s ã®ã‚¯ãƒãƒ¼ã‚ºä¸ã«å•題ãŒç™ºç”Ÿã—ã¾ã—ãŸ" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "ファイル %s をオープンã§ãã¾ã›ã‚“ã§ã—ãŸ" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, c-format msgid "Could not open file descriptor %d" msgstr "ファイルデスクリプタ %d ã‚’é–‹ã‘ã¾ã›ã‚“ã§ã—ãŸ" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "åプãƒã‚»ã‚¹ IPC ã®ç”Ÿæˆã«å¤±æ•—ã—ã¾ã—ãŸ" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "以下ã®åœ§ç¸®ãƒ„ールã®å®Ÿè¡Œã«å¤±æ•—ã—ã¾ã—ãŸ: " -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, c-format msgid "read, still have %llu to read but none left" msgstr "èªã¿è¾¼ã¿ãŒ %llu 残ã£ã¦ã„ã‚‹ã¯ãšã§ã™ãŒã€ä½•も残ã£ã¦ã„ã¾ã›ã‚“" -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, c-format msgid "write, still have %llu to write but couldn't" msgstr "ã‚㨠%llu 書ã込む必è¦ãŒã‚りã¾ã™ãŒã€æ›¸ã込むã“ã¨ãŒã§ãã¾ã›ã‚“ã§ã—ãŸ" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, c-format msgid "Problem closing the file %s" msgstr "ファイル %s ã®ã‚¯ãƒãƒ¼ã‚ºä¸ã«å•題ãŒç™ºç”Ÿã—ã¾ã—ãŸ" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, c-format msgid "Problem renaming the file %s to %s" msgstr "%s ã‹ã‚‰ %s ã¸ã®ãƒ•ァイルå変更ä¸ã«å•題ãŒç™ºç”Ÿã—ã¾ã—ãŸ" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, c-format msgid "Problem unlinking the file %s" msgstr "ファイル %s ã®å‰Šé™¤ä¸ã«å•題ãŒç™ºç”Ÿã—ã¾ã—ãŸ" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "ファイルã®åŒæœŸä¸ã«å•題ãŒç™ºç”Ÿã—ã¾ã—ãŸ" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "åå‰ã®å¤‰æ›´ã«å¤±æ•—ã—ã¾ã—ãŸã€‚%s (%s -> %s)" + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, c-format msgid "No keyring installed in %s." msgstr "%s ã«ã‚ーリングãŒã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•れã¦ã„ã¾ã›ã‚“。" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "空ã®ãƒ‘ッケージã‚ャッシュ" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "パッケージã‚ャッシュファイルãŒå£Šã‚Œã¦ã„ã¾ã™" -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "ã“ã®ãƒ‘ッケージã‚ャッシュファイルã¯äº’æ›æ€§ãŒãªã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã§ã™" -#: apt-pkg/pkgcache.cc:162 +#: apt-pkg/pkgcache.cc:169 msgid "The package cache file is corrupted, it is too small" msgstr "パッケージã‚ャッシュファイルãŒå£Šã‚Œã¦ã„ã¾ã™ã€‚çŸã‹ã™ãŽã¾ã™" -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "ã“ã® APT ã¯ãƒãƒ¼ã‚¸ãƒ§ãƒ‹ãƒ³ã‚°ã‚·ã‚¹ãƒ†ãƒ '%s' をサãƒãƒ¼ãƒˆã—ã¦ã„ã¾ã›ã‚“" -#: apt-pkg/pkgcache.cc:172 +#: apt-pkg/pkgcache.cc:179 msgid "The package cache was built for a different architecture" msgstr "パッケージã‚ャッシュãŒç•°ãªã‚‹ã‚¢ãƒ¼ã‚テクãƒãƒ£ç”¨ã«æ§‹ç¯‰ã•れã¦ã„ã¾ã™" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "ä¾å˜" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "先行ä¾å˜" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "ææ¡ˆ" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "推奨" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "ç«¶åˆ" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "ç½®æ›" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "廃æ¢" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "ç ´å£Š" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "æ‹¡å¼µ" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "é‡è¦" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "è¦æ±‚" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "標準" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "ä»»æ„" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "特別" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "ä¾å˜é–¢ä¿‚ツリーを作æˆã—ã¦ã„ã¾ã™" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "候補ãƒãƒ¼ã‚¸ãƒ§ãƒ³" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "ä¾å˜é–¢ä¿‚ã®ç”Ÿæˆ" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 msgid "Reading state information" msgstr "çŠ¶æ…‹æƒ…å ±ã‚’èªã¿å–ã£ã¦ã„ã¾ã™" -#: apt-pkg/depcache.cc:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "状態ファイル %s ã®ã‚ªãƒ¼ãƒ—ンã«å¤±æ•—ã—ã¾ã—ãŸ" -#: apt-pkg/depcache.cc:250 +#: apt-pkg/depcache.cc:256 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "一時状態ファイル %s ã®æ›¸ãè¾¼ã¿ã«å¤±æ•—ã—ã¾ã—ãŸ" -#: apt-pkg/tagfile.cc:138 +#: apt-pkg/tagfile.cc:140 #, c-format msgid "Unable to parse package file %s (1)" msgstr "パッケージファイル %s を解釈ã™ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“ (1)" -#: apt-pkg/tagfile.cc:235 +#: apt-pkg/tagfile.cc:237 #, c-format msgid "Unable to parse package file %s (2)" msgstr "パッケージファイル %s を解釈ã™ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“ (2)" -#: apt-pkg/sourcelist.cc:118 -#, fuzzy, c-format +#: apt-pkg/sourcelist.cc:127 +#, c-format msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "ソースリスト %2$s ã® %1$lu 行目ãŒä¸æ£ã§ã™ (URI parse)" +msgstr "ソースリスト %2$s ã® %1$u 個目ã®åŒºåˆ‡ã‚ŠãŒä¸æ£ã§ã™ (URI parse)" -#: apt-pkg/sourcelist.cc:161 +#: apt-pkg/sourcelist.cc:170 #, c-format msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" "ソースリスト %2$s ã® %1$lu 行目ãŒä¸æ£ã§ã™ ([オプション] を解釈ã§ãã¾ã›ã‚“)" -#: apt-pkg/sourcelist.cc:164 +#: apt-pkg/sourcelist.cc:173 #, c-format msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "" "ソースリスト %2$s ã® %1$lu 行目ãŒä¸æ£ã§ã™ ([オプション] ãŒçŸã‹ã™ãŽã¾ã™)" -#: apt-pkg/sourcelist.cc:175 +#: 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-pkg/sourcelist.cc:181 +#: 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-pkg/sourcelist.cc:184 +#: 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-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "ソースリスト %2$s ã® %1$lu 行目ãŒä¸æ£ã§ã™ (URI)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "ソースリスト %2$s ã® %1$lu 行目ãŒä¸æ£ã§ã™ (dist)" -#: apt-pkg/sourcelist.cc:202 +#: apt-pkg/sourcelist.cc:211 #, c-format msgid "Malformed line %lu in source list %s (URI parse)" msgstr "ソースリスト %2$s ã® %1$lu 行目ãŒä¸æ£ã§ã™ (URI parse)" -#: apt-pkg/sourcelist.cc:208 +#: apt-pkg/sourcelist.cc:217 #, c-format msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "ソースリスト %2$s ã® %1$lu 行目ãŒä¸æ£ã§ã™ (absolute dist)" -#: apt-pkg/sourcelist.cc:215 +#: apt-pkg/sourcelist.cc:224 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" msgstr "ソースリスト %2$s ã® %1$lu 行目ãŒä¸æ£ã§ã™ (dist parse)" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "%s をオープンã—ã¦ã„ã¾ã™" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "ソースリスト %2$s ã® %1$u 行目ãŒé•·ã™ãŽã¾ã™ã€‚" -#: apt-pkg/sourcelist.cc:362 +#: apt-pkg/sourcelist.cc:371 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "ソースリスト %2$s ã® %1$u 行目ãŒä¸æ£ã§ã™ (type)" -#: apt-pkg/sourcelist.cc:366 +#: 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' ã¯ä¸æ˜Žã§ã™" -#: apt-pkg/sourcelist.cc:407 -#, fuzzy, c-format +#: apt-pkg/sourcelist.cc:416 +#, c-format msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "ソースリスト %3$s ã® %2$u 行ã«ã‚るタイプ '%1$s' ã¯ä¸æ˜Žã§ã™" +msgstr "ソースリスト %3$s ã® %2$u 個目ã®ç¯€ '%1$s' ã¯ä¸æ˜Žã§ã™" -#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2841,12 +2908,12 @@ msgstr "" "'%s' ã®å³æ™‚è¨å®šã¯å‹•作ã—ã¾ã›ã‚“。詳細ã«ã¤ã„ã¦ã¯ man 5 apt.conf ã® APT::" "Immediate-Configure ã®é …ã‚’å‚ç…§ã—ã¦ãã ã•ã„。(%d)" -#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, c-format msgid "Could not configure '%s'. " msgstr "'%s' ã‚’è¨å®šã§ãã¾ã›ã‚“ã§ã—ãŸã€‚" -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2857,12 +2924,12 @@ msgstr "" "ケージ %s を削除ã—ã¾ã™ã€‚ã“れã¯å¤šãã®å ´åˆã«å•題ãŒèµ·ã“ã‚‹åŽŸå› ã¨ãªã‚Šã¾ã™ã€‚本当ã«" "ã“れを行ã„ãŸã„ãªã‚‰ã€APT::Force-LoopBreak オプションを有効ã«ã—ã¦ãã ã•ã„。" -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "インデックスファイルã®ã‚¿ã‚¤ãƒ— '%s' ã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“" -#: apt-pkg/algorithms.cc:266 +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." @@ -2870,7 +2937,7 @@ msgstr "" "パッケージ %s ã‚’å†ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ãŒã€ãã®ãŸã‚ã®ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–を見" "ã¤ã‘ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“ã§ã—ãŸã€‚" -#: apt-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2878,95 +2945,94 @@ msgstr "" "エラーã€pkgProblemResolver::Resolve ã¯åœæ¢ã—ã¾ã—ãŸã€‚ãŠãらãå¤‰æ›´ç¦æ¢ãƒ‘ッケー" "ジãŒåŽŸå› ã§ã™ã€‚" -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "å•題を解決ã™ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“。壊れãŸå¤‰æ›´ç¦æ¢ãƒ‘ッケージãŒã‚りã¾ã™ã€‚" -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, c-format msgid "List directory %spartial is missing." msgstr "リストディレクトリ %spartial ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。" -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, c-format msgid "Archives directory %spartial is missing." msgstr "アーカイブディレクトリ %spartial ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。" -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, c-format msgid "Unable to lock directory %s" msgstr "ディレクトリ %s ã‚’ãƒãƒƒã‚¯ã§ãã¾ã›ã‚“" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "ファイルをå–å¾—ã—ã¦ã„ã¾ã™ %li/%li (残り %s)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "ファイルをå–å¾—ã—ã¦ã„ã¾ã™ %li/%li" -#: apt-pkg/acquire-worker.cc:113 +#: apt-pkg/acquire-worker.cc:116 #, c-format msgid "The method driver %s could not be found." msgstr "メソッドドライム%s ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。" -#: apt-pkg/acquire-worker.cc:115 -#, fuzzy, c-format +#: apt-pkg/acquire-worker.cc:118 +#, c-format msgid "Is the package %s installed?" -msgstr "" -"'dpkg-dev' パッケージãŒã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•れã¦ã„ã‚‹ã“ã¨ã‚’確èªã—ã¦ãã ã•ã„。\n" +msgstr "パッケージ %s ã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•れã¦ã„ã¾ã™ã‹?" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "メソッド %s ãŒæ£å¸¸ã«é–‹å§‹ã—ã¾ã›ã‚“ã§ã—ãŸ" -#: apt-pkg/acquire-worker.cc:452 +#: 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 ã‚ーを押ã—ã¦ãã " "ã•ã„。" -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "パッケージングシステム'%s' ã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "é©åˆ‡ãªãƒ‘ッケージシステムタイプを特定ã§ãã¾ã›ã‚“" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "%s ã®çŠ¶æ…‹ã‚’å–å¾—ã§ãã¾ã›ã‚“。" -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "sources.list ã« 'ソース' URI を指定ã™ã‚‹å¿…è¦ãŒã‚りã¾ã™" -#: apt-pkg/cachefile.cc:87 +#: apt-pkg/cachefile.cc:94 msgid "The package lists or status file could not be parsed or opened." msgstr "" "パッケージリストã¾ãŸã¯ã‚¹ãƒ†ãƒ¼ã‚¿ã‚¹ãƒ•ァイルを解釈ã¾ãŸã¯ã‚ªãƒ¼ãƒ—ンã™ã‚‹ã“ã¨ãŒã§ãã¾" "ã›ã‚“。" -#: apt-pkg/cachefile.cc:91 +#: 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:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "ソースã®ãƒªã‚¹ãƒˆã‚’èªã‚€ã“ã¨ãŒã§ãã¾ã›ã‚“。" -#: apt-pkg/policy.cc:75 +#: apt-pkg/policy.cc:83 #, c-format msgid "" "The value '%s' is invalid for APT::Default-Release as such a release is not " @@ -2975,99 +3041,93 @@ msgstr "" "APT::Default-Release 㮠値 '%s' ã¯ã€ãã®ã‚ˆã†ãªãƒªãƒªãƒ¼ã‚¹ã‚’ソースä¸ã‹ã‚‰åˆ©ç”¨ã§ã" "ãªã„ãŸã‚ã€ç„¡åйã§ã™" -#: apt-pkg/policy.cc:414 +#: apt-pkg/policy.cc:422 #, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "" "䏿£ãªãƒ¬ã‚³ãƒ¼ãƒ‰ãŒãƒ—リファレンスファイル %s ã«å˜åœ¨ã—ã¾ã™ã€‚パッケージヘッダãŒã‚" "りã¾ã›ã‚“" -#: apt-pkg/policy.cc:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "pin タイプ %s ã‚’ç†è§£ã§ãã¾ã›ã‚“ã§ã—ãŸ" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "pin ã§å„ªå…ˆåº¦ (ã¾ãŸã¯ 0) ãŒæŒ‡å®šã•れã¦ã„ã¾ã›ã‚“" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 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:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "%s を処ç†ä¸ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—㟠(%s%d)" -#: apt-pkg/pkgcachegen.cc:251 +#: apt-pkg/pkgcachegen.cc:257 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "ã“ã® APT ãŒå¯¾å¿œã—ã¦ã„ã‚‹ä»¥ä¸Šã®æ•°ã®ãƒ‘ãƒƒã‚±ãƒ¼ã‚¸ãŒæŒ‡å®šã•れã¾ã—ãŸã€‚" -#: apt-pkg/pkgcachegen.cc:254 +#: apt-pkg/pkgcachegen.cc:260 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "ã“ã® APT ãŒå¯¾å¿œã—ã¦ã„ã‚‹ä»¥ä¸Šã®æ•°ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒè¦æ±‚ã•れã¾ã—ãŸã€‚" -#: apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:263 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "ã“ã® APT ãŒå¯¾å¿œã—ã¦ã„ã‚‹ä»¥ä¸Šã®æ•°ã®èª¬æ˜ŽãŒè¦æ±‚ã•れã¾ã—ãŸã€‚" -#: apt-pkg/pkgcachegen.cc:260 +#: apt-pkg/pkgcachegen.cc:266 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "ã“ã® APT ãŒå¯¾å¿œã—ã¦ã„ã‚‹ä»¥ä¸Šã®æ•°ã®ä¾å˜é–¢ä¿‚ãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚" -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:576 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "パッケージ %s %s ãŒãƒ•ァイルä¾å˜ã®å‡¦ç†ä¸ã«è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸ" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "ソースパッケージリスト %s ã®çŠ¶æ…‹ã‚’å–å¾—ã§ãã¾ã›ã‚“" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "ファイルæä¾›æƒ…å ±ã‚’åŽé›†ã—ã¦ã„ã¾ã™" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 msgid "IO Error saving source cache" msgstr "ソースã‚ャッシュã®ä¿å˜ä¸ã« IO エラーãŒç™ºç”Ÿã—ã¾ã—ãŸ" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "åå‰ã®å¤‰æ›´ã«å¤±æ•—ã—ã¾ã—ãŸã€‚%s (%s -> %s)" - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "ãƒãƒƒã‚·ãƒ¥ã‚µãƒ ãŒé©åˆã—ã¾ã›ã‚“" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "サイズãŒé©åˆã—ã¾ã›ã‚“" -#: apt-pkg/acquire-item.cc:164 -#, fuzzy +#: apt-pkg/acquire-item.cc:173 msgid "Invalid file format" -msgstr "䏿£ãªæ“作 %s" +msgstr "䏿£ãªãƒ•ァイル形å¼" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, c-format msgid "" "Unable to find expected entry '%s' in Release file (Wrong sources.list entry " @@ -3076,16 +3136,16 @@ msgstr "" "期待ã•れるエントリ '%s' ㌠Release ファイル内ã«è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ (誤ã£ãŸ " "sources.list エントリã‹ã€å£Šã‚ŒãŸãƒ•ァイル)" -#: apt-pkg/acquire-item.cc:1586 +#: apt-pkg/acquire-item.cc:1595 #, c-format msgid "Unable to find hash sum for '%s' in Release file" msgstr "Release ファイルä¸ã® '%s' ã®ãƒãƒƒã‚·ãƒ¥ã‚µãƒ を見ã¤ã‘られã¾ã›ã‚“" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "以下ã®éµ ID ã«å¯¾ã—ã¦åˆ©ç”¨å¯èƒ½ãªå…¬é–‹éµãŒã‚りã¾ã›ã‚“:\n" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " @@ -3094,14 +3154,14 @@ msgstr "" "%s ã® Release ãƒ•ã‚¡ã‚¤ãƒ«ã¯æœŸé™åˆ‡ã‚Œ (%s 以æ¥ç„¡åй) ã§ã™ã€‚ã“ã®ãƒªãƒã‚¸ãƒˆãƒªã‹ã‚‰ã®æ›´æ–°" "物ã¯é©ç”¨ã•れã¾ã›ã‚“。" -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" "ディストリビューションãŒç«¶åˆã—ã¦ã„ã¾ã™: %s (%s を期待ã—ã¦ã„ãŸã®ã« %s ã‚’å–å¾—ã—" "ã¾ã—ãŸ)" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3111,12 +3171,12 @@ msgstr "" "ファイルãŒä½¿ã‚れã¾ã™ã€‚GPG エラー: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "GPG エラー: %s: %s" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3125,12 +3185,12 @@ msgstr "" "パッケージ %s ã®ãƒ•ァイルã®ä½ç½®ã‚’特定ã§ãã¾ã›ã‚“。ãŠãらãã“ã®ãƒ‘ッケージを手動" "ã§ä¿®æ£ã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ (å˜åœ¨ã—ãªã„アーã‚テクãƒãƒ£ã®ãŸã‚)。" -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "'%2$s' ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ '%1$s' をダウンãƒãƒ¼ãƒ‰ã™ã‚‹ã‚½ãƒ¼ã‚¹ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -3138,71 +3198,67 @@ msgstr "" "パッケージインデックスファイルãŒå£Šã‚Œã¦ã„ã¾ã™ã€‚パッケージ %s ã« Filename: " "フィールドãŒã‚りã¾ã›ã‚“。" -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, c-format msgid "Unable to parse Release file %s" msgstr "Release ファイル %s を解釈ã™ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, c-format msgid "No sections in Release file %s" msgstr "Release ファイル %s ã«ã‚»ã‚¯ã‚·ãƒ§ãƒ³ãŒã‚りã¾ã›ã‚“" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "Release ファイル %s ã« Hash エントリãŒã‚りã¾ã›ã‚“" -#: apt-pkg/indexrecords.cc:125 +#: apt-pkg/indexrecords.cc:130 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Release ファイル %s ã«ç„¡åŠ¹ãª 'Valid-Until' エントリãŒã‚りã¾ã™" -#: apt-pkg/indexrecords.cc:144 +#: apt-pkg/indexrecords.cc:149 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Release ファイル %s ã«ç„¡åŠ¹ãª 'Date' エントリãŒã‚りã¾ã™" -#: apt-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "ベンダブãƒãƒƒã‚¯ %s ã¯éµæŒ‡ç´‹ã‚’å«ã‚“ã§ã„ã¾ã›ã‚“" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "CD-ROM マウントãƒã‚¤ãƒ³ãƒˆ %s を使用ã—ã¾ã™\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "CD-ROM をアンマウントã—ã¦ã„ã¾ã™\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "CD-ROM をアンマウントã—ã¦ã„ã¾ã™ ...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "ディスクを待ã£ã¦ã„ã¾ã™ ...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "CD-ROM をマウントã—ã¦ã„ã¾ã™ ...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " -msgstr "確èªã—ã¦ã„ã¾ã™.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " +msgstr "確èªã—ã¦ã„ã¾ã™... " -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "æ ¼ç´ã•れãŸãƒ©ãƒ™ãƒ«: %s \n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "CD-ROM をアンマウントã—ã¦ã„ã¾ã™ ...\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" +msgstr "ディスクã®ã‚¤ãƒ³ãƒ‡ãƒƒã‚¯ã‚¹ãƒ•ァイルを走査ã—ã¦ã„ã¾ã™ ...\n" -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" -msgstr "ディスクã®ã‚¤ãƒ³ãƒ‡ãƒƒã‚¯ã‚¹ãƒ•ァイルを走査ã—ã¦ã„ã¾ã™ ..\n" - -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3211,7 +3267,7 @@ msgstr "" "%zu ã®ãƒ‘ッケージインデックスã€%zu ã®ã‚½ãƒ¼ã‚¹ã‚¤ãƒ³ãƒ‡ãƒƒã‚¯ã‚¹ã€%zu ã®ç¿»è¨³ã‚¤ãƒ³ãƒ‡ãƒƒã‚¯" "スã€%zu ã®ç½²åを見ã¤ã‘ã¾ã—ãŸ\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" @@ -3219,16 +3275,16 @@ msgstr "" "パッケージファイルをé…ç½®ã§ãã¾ã›ã‚“。Debian ã®ãƒ‡ã‚£ã‚¹ã‚¯ã§ã¯ãªã„ã‹ã€èª¤ã£ãŸã‚¢ãƒ¼ã‚" "テクãƒãƒ£ã§ã¯ãªã„ã§ã—ょã†ã‹?" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "ラベル '%s' を見ã¤ã‘ã¾ã—ãŸ\n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "ã“ã‚Œã¯æœ‰åйãªåå‰ã§ã¯ã‚りã¾ã›ã‚“。å†è©¦è¡Œã—ã¦ãã ã•ã„。\n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3237,34 +3293,34 @@ msgstr "" "ã“ã®ãƒ‡ã‚£ã‚¹ã‚¯ã¯ä»¥ä¸‹ã®ã‚ˆã†ã«å‘¼ã°ã‚Œã¾ã™: \n" "'%s'\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "パッケージリストをコピーã—ã¦ã„ã¾ã™ ..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "æ–°ã—ã„ソースリストを書ã込んã§ã„ã¾ã™\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "ã“ã®ãƒ‡ã‚£ã‚¹ã‚¯ã®ã‚½ãƒ¼ã‚¹ãƒªã‚¹ãƒˆã®ã‚¨ãƒ³ãƒˆãƒª:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: 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:777 +#: 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:780 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i レコードを書ãè¾¼ã¿ã¾ã—ãŸã€‚%i 個ã®é©åˆã—ãªã„ファイルãŒã‚りã¾ã™ã€‚\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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 "" @@ -3281,37 +3337,37 @@ msgstr "èªè¨¼ãƒ¬ã‚³ãƒ¼ãƒ‰ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“: %s" msgid "Hash mismatch for: %s" msgstr "ãƒãƒƒã‚·ãƒ¥ã‚µãƒ ãŒé©åˆã—ã¾ã›ã‚“: %s" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "'%2$s' ã®ãƒªãƒªãƒ¼ã‚¹ '%1$s' ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸ" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "'%2$s' ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ '%1$s' ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸ" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, c-format msgid "Couldn't find task '%s'" msgstr "タスク '%s' ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, c-format msgid "Couldn't find any package by regex '%s'" msgstr "æ£è¦è¡¨ç¾ '%s' ã§ã¯ãƒ‘ッケージã¯è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸ" -#: apt-pkg/cacheset.cc:605 -#, fuzzy, c-format +#: apt-pkg/cacheset.cc:613 +#, c-format msgid "Couldn't find any package by glob '%s'" -msgstr "æ£è¦è¡¨ç¾ '%s' ã§ã¯ãƒ‘ッケージã¯è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸ" +msgstr "'%s' ã«ä¸€è‡´ã™ã‚‹ãƒ‘ッケージã¯è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸ" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, c-format msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "純粋ãªä»®æƒ³ãƒ‘ッケージã®ãŸã‚ã€ãƒ‘ッケージ '%s' ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‚’é¸ã¹ã¾ã›ã‚“" -#: apt-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " @@ -3320,54 +3376,54 @@ msgstr "" "パッケージ '%s' ã®ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«æ¸ˆã¿ã¾ãŸã¯å€™è£œã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã¯ã„ãšã‚Œã‚‚å˜åœ¨ã—ãªã„" "ã®ã§é¸ã¹ã¾ã›ã‚“" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, c-format msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" "純粋ãªä»®æƒ³ãƒ‘ッケージã®ãŸã‚ã€ãƒ‘ッケージ '%s' ã®æœ€æ–°ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‚’é¸ã¹ã¾ã›ã‚“" -#: apt-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "候補ãŒå˜åœ¨ã—ãªã„ã®ã§ã€ãƒ‘ッケージ %s ã®å€™è£œãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‚’é¸ã¹ã¾ã›ã‚“" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "" "インストールã•れã¦ã„ãªã„ã®ã§ã€ãƒ‘ッケージ %s ã®ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«æ¸ˆã¿ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‚’é¸" "ã¹ã¾ã›ã‚“。" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "ソルãƒã«ã‚·ãƒŠãƒªã‚ªã‚’é€ä¿¡" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "ソルãƒã«ãƒªã‚¯ã‚¨ã‚¹ãƒˆã‚’é€ä¿¡" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "解決をå—ã‘å–る準備" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "外部ソルãƒãŒé©åˆ‡ãªã‚¨ãƒ©ãƒ¼ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ãªã—ã«å¤±æ•—ã—ã¾ã—ãŸ" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "外部ソルãƒã‚’実行" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" -msgstr "" +msgstr "進æ—: [%3i%%]" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "dpkg を実行ã—ã¦ã„ã¾ã™" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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." @@ -3375,118 +3431,118 @@ msgstr "" "ã„ãã¤ã‹ã®ã‚¤ãƒ³ãƒ‡ãƒƒã‚¯ã‚¹ãƒ•ァイルã®ãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ã«å¤±æ•—ã—ã¾ã—ãŸã€‚ã“れらã¯ç„¡è¦–ã•れ" "ã‚‹ã‹ã€å¤ã„ã‚‚ã®ãŒä»£ã‚りã«ä½¿ã‚れã¾ã™ã€‚" -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "%s をインストールã—ã¦ã„ã¾ã™" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "%s ã‚’è¨å®šã—ã¦ã„ã¾ã™" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "%s を削除ã—ã¦ã„ã¾ã™" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format msgid "Completely removing %s" msgstr "%s を完全ã«å‰Šé™¤ã—ã¦ã„ã¾ã™" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "%s ã®æ¶ˆå¤±ã‚’記録ã—ã¦ã„ã¾ã™" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "インストール後トリガ %s を実行ã—ã¦ã„ã¾ã™" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "ディレクトリ '%s' ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format msgid "Could not open file '%s'" msgstr "ファイル '%s' をオープンã§ãã¾ã›ã‚“ã§ã—ãŸ" -#: apt-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "%s を準備ã—ã¦ã„ã¾ã™" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "%s を展開ã—ã¦ã„ã¾ã™" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "%s ã®è¨å®šã‚’準備ã—ã¦ã„ã¾ã™" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "%s をインストールã—ã¾ã—ãŸ" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "%s ã®å‰Šé™¤ã‚’準備ã—ã¦ã„ã¾ã™" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "%s を削除ã—ã¾ã—ãŸ" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "%s を完全ã«å‰Šé™¤ã™ã‚‹æº–備をã—ã¦ã„ã¾ã™" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "%s を完全ã«å‰Šé™¤ã—ã¾ã—ãŸ" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +msgstr "ioctl(TIOCGWINSZ) ã«å¤±æ•—ã—ã¾ã—ãŸ" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 -#, fuzzy, c-format +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 +#, c-format msgid "Can not write log (%s)" -msgstr "%s ã«æ›¸ãè¾¼ã‚ã¾ã›ã‚“" +msgstr "ãƒã‚°ã‚’書ãè¾¼ã‚ã¾ã›ã‚“ (%s)" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" -msgstr "" +msgstr "/dev/pts ã¯ãƒžã‚¦ãƒ³ãƒˆã•れã¦ã„ã¾ã™ã‹?" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" -msgstr "" +msgstr "標準出力ã¯ã‚¿ãƒ¼ãƒŸãƒŠãƒ«ã§ã™ã‹?" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "æ“作ã¯ãれãŒå®Œäº†ã™ã‚‹å‰ã«ä¸æ–ã•れã¾ã—ãŸ" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 msgid "No apport report written because MaxReports is reached already" msgstr "MaxReports ã«ã™ã§ã«é”ã—ã¦ã„ã‚‹ãŸã‚ã€ãƒ¬ãƒãƒ¼ãƒˆã¯æ›¸ãè¾¼ã¾ã‚Œã¾ã›ã‚“" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "ä¾å˜é–¢ä¿‚ã®å•題 - 未è¨å®šã®ã¾ã¾ã«ã—ã¦ã„ã¾ã™" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3494,7 +3550,7 @@ msgstr "" "エラーメッセージã¯å‰ã®å¤±æ•—ã‹ã‚‰ç¶šãエラーã§ã‚ã‚‹ã“ã¨ã‚’示ã—ã¦ã„ã‚‹ã®ã§ã€ãƒ¬ãƒãƒ¼ãƒˆ" "ã¯æ›¸ãè¾¼ã¾ã‚Œã¾ã›ã‚“。" -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" @@ -3502,7 +3558,7 @@ msgstr "" "エラーメッセージã¯ãƒ‡ã‚£ã‚¹ã‚¯ãƒ•ルエラーã§ã‚ã‚‹ã“ã¨ã‚’示ã—ã¦ã„ã‚‹ã®ã§ã€ãƒ¬ãƒãƒ¼ãƒˆã¯æ›¸" "ãè¾¼ã¾ã‚Œã¾ã›ã‚“。" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3510,23 +3566,22 @@ msgstr "" "エラーメッセージã¯ãƒ¡ãƒ¢ãƒªè¶…éŽã‚¨ãƒ©ãƒ¼ã§ã‚ã‚‹ã“ã¨ã‚’示ã—ã¦ã„ã‚‹ã®ã§ã€ãƒ¬ãƒãƒ¼ãƒˆã¯æ›¸ã" "è¾¼ã¾ã‚Œã¾ã›ã‚“。" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 -#, fuzzy +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 msgid "" "No apport report written because the error message indicates an issue on the " "local system" msgstr "" -"エラーメッセージã¯ãƒ‡ã‚£ã‚¹ã‚¯ãƒ•ルエラーã§ã‚ã‚‹ã“ã¨ã‚’示ã—ã¦ã„ã‚‹ã®ã§ã€ãƒ¬ãƒãƒ¼ãƒˆã¯æ›¸" -"ãè¾¼ã¾ã‚Œã¾ã›ã‚“。" +"エラーメッセージã¯ãƒãƒ¼ã‚«ãƒ«ã‚·ã‚¹ãƒ†ãƒ ã®å•題ã§ã‚ã‚‹ã“ã¨ã‚’示ã—ã¦ã„ã‚‹ã®ã§ã€ãƒ¬ãƒãƒ¼ãƒˆ" +"ã¯æ›¸ãè¾¼ã¾ã‚Œã¾ã›ã‚“。" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" "エラーメッセージ㯠dpkg I/O エラーã§ã‚ã‚‹ã“ã¨ã‚’示ã—ã¦ã„ã‚‹ã®ã§ã€ãƒ¬ãƒãƒ¼ãƒˆã¯æ›¸ã" "è¾¼ã¾ã‚Œã¾ã›ã‚“。" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " @@ -3535,7 +3590,7 @@ msgstr "" "管ç†ç”¨ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒª (%s) ã‚’ãƒãƒƒã‚¯ã§ãã¾ã›ã‚“。ã“れを使ã†åˆ¥ã®ãƒ—ãƒã‚»ã‚¹ãŒå‹•ã„ã¦ã„" "ã¾ã›ã‚“ã‹?" -#: apt-pkg/deb/debsystem.cc:87 +#: apt-pkg/deb/debsystem.cc:94 #, c-format msgid "Unable to lock the administration directory (%s), are you root?" msgstr "" @@ -3543,7 +3598,7 @@ msgstr "" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " @@ -3551,122 +3606,6 @@ msgstr "" "dpkg ã¯ä¸æ–ã•れã¾ã—ãŸã€‚å•題を修æ£ã™ã‚‹ã«ã¯ '%s' を手動ã§å®Ÿè¡Œã™ã‚‹å¿…è¦ãŒã‚りã¾" "ã™ã€‚" -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "ãƒãƒƒã‚¯ã•れã¦ã„ã¾ã›ã‚“" - -#~ msgid "%s not a valid DEB package." -#~ msgstr "%s ã¯æ£ã—ã„ DEB パッケージã§ã¯ã‚りã¾ã›ã‚“。" - -#~ msgid "" -#~ "Using CD-ROM mount point %s\n" -#~ "Mounting CD-ROM\n" -#~ msgstr "" -#~ "CD-ROM マウントãƒã‚¤ãƒ³ãƒˆ %s を使用ã—ã¾ã™\n" -#~ "CD-ROM をマウントã—ã¦ã„ã¾ã™\n" - -#~ msgid "" -#~ "Could not patch %s with mmap and with file operation usage - the patch " -#~ "seems to be corrupt." -#~ msgstr "" -#~ "mmap ãŠã‚ˆã³ãƒ•ァイルæ“作用法ã¸ã®ãƒ‘ッム%s ã‚’é©ç”¨ã§ãã¾ã›ã‚“ - パッãƒãŒå£Šã‚Œã¦" -#~ "ã„るよã†ã§ã™ã€‚" - -#~ msgid "" -#~ "Could not patch %s with mmap (but no mmap specific fail) - the patch " -#~ "seems to be corrupt." -#~ msgstr "" -#~ "mmap ã¸ã®ãƒ‘ッム%s ã‚’é©ç”¨ã§ãã¾ã›ã‚“ (ã—ã‹ã— mmap 固有ã®å¤±æ•—ã§ã¯ã‚りã¾ã›" -#~ "ã‚“) - パッãƒãŒå£Šã‚Œã¦ã„るよã†ã§ã™ã€‚" - -#~ msgid "Note, selecting '%s' for task '%s'\n" -#~ msgstr "注æ„: タスク '%2$s' ã«å¯¾ã—㦠'%1$s' ã‚’é¸æŠžã—ã¦ã„ã¾ã™\n" - -#~ msgid "Note, selecting '%s' for regex '%s'\n" -#~ msgstr "注æ„: æ£è¦è¡¨ç¾ '%2$s' ã«å¯¾ã—㦠'%1$s' ã‚’é¸æŠžã—ã¦ã„ã¾ã™\n" - -#~ msgid "Package %s is a virtual package provided by:\n" -#~ msgstr "%s ã¯ä»¥ä¸‹ã®ãƒ‘ãƒƒã‚±ãƒ¼ã‚¸ã§æä¾›ã•れã¦ã„る仮想パッケージã§ã™:\n" - -#~ msgid " [Not candidate version]" -#~ msgstr "[候補ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãªã—]" - -#~ msgid "You should explicitly select one to install." -#~ msgstr "インストールã™ã‚‹ãƒ‘ッケージを明示的ã«é¸æŠžã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚" - -#~ msgid "" -#~ "Package %s is not available, but is referred to by another package.\n" -#~ "This may mean that the package is missing, has been obsoleted, or\n" -#~ "is only available from another source\n" -#~ msgstr "" -#~ "パッケージ %s ã¯ãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã«ã¯å˜åœ¨ã—ã¾ã™ãŒã€åˆ©ç”¨ã§ãã¾ã›ã‚“。\n" -#~ "ãŠãらãã€ãã®ãƒ‘ッケージãŒè¦‹ã¤ã‹ã‚‰ãªã„ã‹ã€ã‚‚ã†å¤ããªã£ã¦ã„ã‚‹ã‹ã€\n" -#~ "ã‚ã‚‹ã„ã¯åˆ¥ã®ã‚½ãƒ¼ã‚¹ã‹ã‚‰ã®ã¿ã—ã‹åˆ©ç”¨ã§ããªã„ã¨ã„ã†çжæ³ãŒè€ƒãˆã‚‰ã‚Œã¾ã™\n" - -#~ msgid "However the following packages replace it:" -#~ msgstr "ã—ã‹ã—ã€ä»¥ä¸‹ã®ãƒ‘ッケージã§ç½®ãæ›ãˆã‚‰ã‚Œã¦ã„ã¾ã™:" - -#~ msgid "Package '%s' has no installation candidate" -#~ msgstr "パッケージ '%s' ã«ã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«å€™è£œãŒã‚りã¾ã›ã‚“" - -#~ msgid "Virtual packages like '%s' can't be removed\n" -#~ msgstr "'%s' ã®ã‚ˆã†ãªä»®æƒ³ãƒ‘ッケージã¯å‰Šé™¤ã§ãã¾ã›ã‚“\n" - -#~ msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -#~ msgstr "" -#~ "パッケージ %s ã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•れã¦ã„ãªã„ãŸã‚ã€å‰Šé™¤ã¯ã§ãã¾ã›ã‚“。'%s' ã®ã“" -#~ "ã¨ã§ã—ょã†ã‹?\n" - -#~ msgid "Package '%s' is not installed, so not removed\n" -#~ msgstr "パッケージ '%s' ã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•れã¦ã„ãªã„ãŸã‚ã€å‰Šé™¤ã¯ã§ãã¾ã›ã‚“\n" - -#~ msgid "Note, selecting '%s' instead of '%s'\n" -#~ msgstr "注æ„ã€'%2$s' ã®ä»£ã‚り㫠'%1$s' ã‚’é¸æŠžã—ã¦ã„ã¾ã™\n" - -#~ msgid "Skipping %s, it is already installed and upgrade is not set.\n" -#~ msgstr "" -#~ "ã™ã§ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•れã¦ãŠã‚Šã‚¢ãƒƒãƒ—グレードもè¨å®šã•れã¦ã„ãªã„ãŸã‚ã€%s をス" -#~ "ã‚ップã—ã¾ã™ã€‚\n" - -#~ msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -#~ msgstr "" -#~ "%s ã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•れã¦ã„ãªã„ã®ã«ã‚¢ãƒƒãƒ—グレードã ã‘ãŒè¦æ±‚ã•れã¦ã„ã‚‹ã®ã§ã€" -#~ "スã‚ップã—ã¾ã™ã€‚\n" - -#~ msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -#~ msgstr "ダウンãƒãƒ¼ãƒ‰ã§ããªã„ãŸã‚ã€%s ã®å†ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã¯ä¸å¯èƒ½ã§ã™ã€‚\n" - -#~ msgid "%s is already the newest version.\n" -#~ msgstr "%s ã¯ã™ã§ã«æœ€æ–°ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã§ã™ã€‚\n" - -#~ msgid "Selected version '%s' (%s) for '%s'\n" -#~ msgstr "'%3$s' ã«ã¯ãƒãƒ¼ã‚¸ãƒ§ãƒ³ '%1$s' (%2$s) ã‚’é¸æŠžã—ã¾ã—ãŸ\n" - -#~ msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -#~ msgstr "'%4$s' ã®ãŸã‚ã€'%3$s' ã«ã¯ãƒãƒ¼ã‚¸ãƒ§ãƒ³ '%1$s' (%2$s) ã‚’é¸æŠžã—ã¾ã—ãŸ\n" - -#~ msgid "Ignore unavailable target release '%s' of package '%s'" -#~ msgstr "パッケージ '%2$s' ã®åˆ©ç”¨ã§ããªã„ターゲットリリース '%1$s' を無視" - -#~ msgid "Downloading %s %s" -#~ msgstr "%s %s をダウンãƒãƒ¼ãƒ‰ã—ã¦ã„ã¾ã™" - -#~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member" -#~ msgstr "" -#~ "ã“ã‚Œã¯æ£ã—ã„ DEB アーカイブã§ã¯ã‚りã¾ã›ã‚“。'%s'ã€'%s'ã€'%s' ã®ã„ãšã‚Œã®ãƒ¡ãƒ³" -#~ "ãƒãƒ¼ã‚‚ã‚りã¾ã›ã‚“" - -#~ msgid "MD5Sum mismatch" -#~ msgstr "MD5Sum ãŒé©åˆã—ã¾ã›ã‚“" - -#~ msgid "" -#~ "I wasn't able to locate a file for the %s package. This might mean you " -#~ "need to manually fix this package." -#~ msgstr "" -#~ "パッケージ %s ã®ãƒ•ァイルã®ä½ç½®ã‚’特定ã§ãã¾ã›ã‚“。ãŠãらãã“ã®ãƒ‘ッケージを手" -#~ "å‹•ã§ä¿®æ£ã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚" - -#~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" -#~ msgstr "" -#~ "ãƒã‚°ã«æ›¸ãè¾¼ã‚ã¾ã›ã‚“。openpty() ã«å¤±æ•—ã—ã¾ã—㟠(/dev/pts ãŒãƒžã‚¦ãƒ³ãƒˆã•れã¦" -#~ "ã„ãªã„?)\n" @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_km\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2006-10-10 09:48+0700\n" "Last-Translator: Khoem Sokhem <khoemsokhem@khmeros.info>\n" "Language-Team: Khmer <support@khmeros.info>\n" @@ -20,156 +20,157 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.2\n" -#: cmdline/apt-cache.cc:140 +#: cmdline/apt-cache.cc:149 #, c-format msgid "Package %s version %s has an unmet dep:\n" msgstr "កញ្ចប់ %s កំណែ %s មាន​ភាព​អាស្រáŸáž™â€‹áž˜áž·áž“​ážáŸ’រូវ​គ្នា ៖\n" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "ឈ្មោះ​កញ្ចប់​សរុប ៖ " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 #, fuzzy msgid "Total package structures: " msgstr "ឈ្មោះ​កញ្ចប់​សរុប ៖ " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " កញ្ចប់​ធម្មážáž¶Â ៖ " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " កញ្ចប់​និម្មិážâ€‹ážŸáž»áž‘្ធ ៖ " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " កញ្ចប់​និម្មិážâ€‹ážáŸ‚​មួយ ៖ " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " កញ្ចប់​និម្មិážâ€‹áž›áž¶áž™Â ៖ " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " បាážáŸ‹áž”ង់ ៖ " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "កំណែ​ផ្សáŸáž„ៗ​សរុប ៖ " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 #, fuzzy msgid "Total distinct descriptions: " msgstr "កំណែ​ផ្សáŸáž„ៗ​សរុប ៖ " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "ភាព​អាស្រáŸáž™â€‹ážŸážšáž»áž” ៖ " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "ទំនាក់ទំនង កំណែ/ឯកសារ​សរុប ៖ " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 #, fuzzy msgid "Total Desc/File relations: " msgstr "ទំនាក់ទំនង កំណែ/ឯកសារ​សរុប ៖ " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "ការផ្គូរផ្គង​ការផ្ដល់​សរុប ៖ " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "ážáŸ’សែ​អក្សរ​សរុប​ ៖ " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "ទំហំ​កំណែ​ភាព​អាស្រáŸáž™â€‹ážŸážšáž»áž” ៖ " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "ទំហំ slack សរុប ៖" -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "ទំហំ​សរុប​ដែល​ទុក​សម្រាប់ ៖ " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: 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 នៅ​ážáž¶áž„ក្រៅ​ការ​ធ្វើសមកាលកម្ម ។" -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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 "រក​កញ្ចប់​មិន​ឃើញ" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 #, fuzzy msgid "You must give at least one search pattern" msgstr "អ្នក​ážáŸ’រូវ​ážáŸ‚​ផ្ដល់​លំនាំ​មួយ​ដែល​ពិážâ€‹áž”្រាកដ" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "មិន​អាច​កំណážáŸ‹â€‹áž‘ីážáž¶áŸ†áž„​កញ្ចប់ %s បានឡើយ" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "ឯកសារ​កញ្ចប់ ៖" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: 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 ឯកសារ​កញ្ចប់​បាន​ទáŸ" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "កញ្ចប់​ដែល​បាន​ážáŸ’ទាស់ ៖" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(រក​មិន​ឃើញ)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " បាន​ដំឡើង ៖ " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " សាកល្បង ៖ " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(គ្មាន)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " ážáŸ’ទាស់​កញ្ចប់ ៖ " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " ážáž¶ážšáž¶áž„​កំណែ ៖" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: 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" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -242,29 +243,29 @@ msgstr "" " -o=? កំណážáŸ‹â€‹áž‡áž˜áŸ’រើស​ការ​កំណážáŸ‹â€‹ážšáž…នា​សម្ពáŸáž“្ធ​ážáž¶áž˜â€‹áž…áž·ážáŸ’áž áž§. eg -o dir::cache=/tmp\n" "មើល​ apt-cache(8) និង​ apt.conf(5) សម្រាប់​ពáŸážáŸŒáž˜áž¶áž“​បន្ážáŸ‚ម​​មាន​ក្នុង​ទំពáŸážšâ€‹ážŸáŸ€ážœáž—ៅដៃ​ ។\n" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: 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 ážáž¶ážŸâ€‹áž‘ី ១' ជាដើម" -#: cmdline/apt-cdrom.cc:104 +#: cmdline/apt-cdrom.cc:91 msgid "Please insert a Disc in the drive and press enter" msgstr "សូម​បញ្ចូល​ážáž¶ážŸâ€‹áž€áŸ’នុង​ដ្រាយ​ហើយ​ចុច​បញ្ចូល​" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, fuzzy, c-format msgid "Failed to mount '%s' to '%s'" msgstr "បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​ប្ážáž¼ážšâ€‹ážˆáŸ’មោះ %s ទៅ %s" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "ធ្វើដំណើរការ​នáŸáŸ‡â€‹áž˜áŸ’ážáž„​ទៀážâ€‹ សម្រាប់​ស៊ីឌី​ទាំងអស់​​ក្នុង​សំណុំ​របស់​អ្នក ។" @@ -300,65 +301,65 @@ msgstr "" " -c=? អាន​ឯកសារ​ការកំណážáŸ‹â€‹ážšáž…នាសម្ពáŸáž“្ធ​នáŸáŸ‡ \n" " -o=? កំណážáŸ‹â€‹áž‡áž˜áŸ’រើស​ការ​កំណážáŸ‹â€‹ážšáž…នា​សម្ពáŸáž“្ធ​ážáž¶áž˜â€‹áž…áž·ážáŸ’áž áž§. -o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:244 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format msgid "Can not find a package for architecture '%s'" msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទáŸ" -#: cmdline/apt-get.cc:326 +#: cmdline/apt-get.cc:327 #, fuzzy, c-format msgid "Can not find a package '%s' with version '%s'" msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទáŸ" -#: cmdline/apt-get.cc:329 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format msgid "Can not find a package '%s' with release '%s'" msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទáŸ" -#: cmdline/apt-get.cc:366 +#: cmdline/apt-get.cc:367 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "មិនអាចážáŸ’លែង បញ្ជី​កញ្ចប់​ប្រភពចប់​ បានឡើយ %s" -#: cmdline/apt-get.cc:422 +#: cmdline/apt-get.cc:423 #, c-format msgid "Can not find version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទáŸ" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "ប៉ុន្ážáŸ‚​ %s នឹង​ážáŸ’រូវ​បាន​ដំឡើ​ង" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "ប៉ុន្ážáŸ‚​ %s នឹង​ážáŸ’រូវ​បាន​ដំឡើ​ង" -#: cmdline/apt-get.cc:468 cmdline/apt-mark.cc:116 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 msgid "Internal error, problem resolver broke stuff" msgstr "កំហុស​ážáž¶áž„ក្នុង អ្នក​ដោះស្រាយ​បញ្ហា​បានធ្វើឲ្យážáž¼áž…​ឧបករណáŸ" -#: cmdline/apt-get.cc:573 cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 msgid "Unable to lock the download directory" msgstr "មិន​អាច​ចាក់​សោ​ážážâ€‹áž‘ាញ​យក​បាន​ឡើយ" -#: cmdline/apt-get.cc:725 +#: cmdline/apt-get.cc:726 msgid "Must specify at least one package to fetch source for" msgstr "យ៉ាងហោចណាស់​ážáŸ’រូវ​​បញ្ជាក់​​កញ្ចប់​មួយ ​ដើម្បី​ទៅ​​ប្រមូល​យក​ប្រភព​សម្រាប់" -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "មិន​អាច​រក​កញ្ចប់ប្រភព​​សម្រាប់ %s បានឡើយ" @@ -378,114 +379,114 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "កំពុង​រំលង​ឯកសារ​ដែល​បាន​ទាញយក​រួច​ '%s'\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "មិន​អាច​កំណážáŸ‹â€‹áž‘ំហំ​ទំនáŸážšâ€‹áž€áŸ’នុង​ %s បានឡើយ" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "អ្នក​ពុំ​មាន​ទំហំ​ទំនáŸážšâ€‹áž‚្រប់គ្រាន់​ទáŸâ€‹áž“ៅក្នុង​ %s ឡើយ" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "ážáŸ’រូវការ​យក​ %sB/%sB នៃ​បáŸážŽáŸ’ណសារ​ប្រភព ។\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "ážáŸ’រូវការ​យក​ %sB នៃ​បáŸážŽáŸ’ណសារ​ប្រភព​ ។\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "ទៅប្រមូល​ប្រភព​ %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "បរាជáŸáž™â€‹áž€áŸ’នុងការទៅប្រមូលយក​បáŸážŽáŸ’ណសារ​មួយចំនួន ។" -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "បានបញ្ចប់ការទាញ​យក​ ហើយ​ážáŸ‚​ក្នុង​របៀប​​ទាញ​យក​ប៉ុណ្ណោះ" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "កំពុង​រំលង​ការស្រាយ​នៃប្រភព​ដែលបានស្រាយរួច​នៅក្នុង %s\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "ពាក្យ​បញ្ជា​ស្រាយ '%s' បាន​បរាជáŸáž™â€‹Â ។\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "ពិនិážáŸ’យ​ប្រសិន​បើកញ្ចប់ 'dpkg-dev' មិន​ទាន់​បាន​ដំឡើង​ ។\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "សាងសង​ពាក្យ​បញ្ជា​ '%s' បានបរាជáŸáž™â€‹Â ។\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "ដំណើរ​ការ​កូន​បាន​បរាជáŸáž™â€‹" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "ážáŸ’រូវážáŸ‚​បញ្ជាក់​យ៉ាងហោចណាស់​មួយកញ្ចប់ដើម្បីពិនិážáŸ’áž™ builddeps សម្រាប់" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "មិន​អាច​សាងសង់​​ពáŸážáŸŒáž˜áž¶áž“​ភាពអស្រáŸáž™â€‹ážŸáž˜áŸ’រាប់ %s" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s មិនមានភាពអាស្រáŸáž™â€‹ážŸáŸ’ážáž¶áž”នាឡើយ​ ។\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " "packages" msgstr "%s ភាពអស្រáŸáž™â€‹ážŸáž˜áŸ’រាប់​ %s មិន​អាច​ធ្វើ​ឲ្យ​ពáŸáž‰áž…áž·ážáŸ’ážâ€‹ ព្រោះ​រក​​ %s កញ្ចប់​មិន​ឃើញ​ " -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, 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:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "បរាជáŸáž™â€‹áž€áŸ’នុងការ​ážáž˜áŸ’រូវចិážáŸ’ážáž—ាពអាស្រáŸáž™ %s សម្រាប់ %s ៖ កញ្ចប់ %s ដែលបានដំឡើង គឺážáŸ’មីពáŸáž€" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -494,37 +495,37 @@ msgstr "" "ភាពអាស្រáŸáž™ %s សម្រាប់ %s មិនអាច​ážáž˜áŸ’រូវចិážáŸ’ážáž”ានទ០ព្រោះ មិនមាន​កំណែ​នៃកញ្ចប់ %s ដែលអាច​ážáž˜áŸ’រូវចិážáŸ’ážâ€‹" "ážáž˜áŸ’រូវការ​កំណែបានឡើយ" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " "version" msgstr "%s ភាពអស្រáŸáž™â€‹ážŸáž˜áŸ’រាប់​ %s មិន​អាច​ធ្វើ​ឲ្យ​ពáŸáž‰áž…áž·ážáŸ’ážâ€‹ ព្រោះ​រក​​ %s កញ្ចប់​មិន​ឃើញ​ " -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "បរាជáŸáž™â€‹áž€áŸ’នុងការ​ážáž˜áŸ’រូវចិážáŸ’ážáž—ាពអាស្រáŸáž™ %s សម្រាប់ %s: %s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "ភាពអាស្រáŸáž™â€‹ážŠáŸ‚ល​បង្កើážâ€‹ %s មិន​អាច​បំពáŸáž‰â€‹ážŸáŸáž…ក្ដី​ážáŸ’រូវការ​បាន​ទáŸÂ ។" -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "បាន​បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​ដំណើរ​​ការ​បង្កើážâ€‹áž—ាព​អាស្រáŸáž™" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "កំពុង​ážáž—្ជាប់​ទៅ​កាន់​ %s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "ម៉ូឌុល​ដែល​គាំទ្រ ៖ " -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -609,53 +610,75 @@ msgstr "" "pages for more information and options.\n" " This APT has Super Cow Powers.\n" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "យ៉ាងហោចណាស់​ážáŸ’រូវ​​បញ្ជាក់​​កញ្ចប់​មួយ ​ដើម្បី​ទៅ​​ប្រមូល​យក​ប្រភព​សម្រាប់" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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:63 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format msgid "%s was already set to manually installed.\n" msgstr "ប៉ុន្ážáŸ‚​ %s នឹង​ážáŸ’រូវ​បាន​ដំឡើ​ង" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, fuzzy, c-format msgid "%s was already set to automatically installed.\n" msgstr "ប៉ុន្ážáŸ‚​ %s នឹង​ážáŸ’រូវ​បាន​ដំឡើ​ង" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format msgid "%s was already set on hold.\n" msgstr "%s ជាកំណែ​ដែលážáŸ’មីបំផុážážšáž½áž…ទៅហើយ ។\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, fuzzy, c-format msgid "%s was already not hold.\n" msgstr "%s ជាកំណែ​ដែលážáŸ’មីបំផុážážšáž½áž…ទៅហើយ ។\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "រង់ចាំប់​ %s ប៉ុន្ážáŸ‚ ​វា​មិន​នៅទីនោះ" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: 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:264 cmdline/apt-mark.cc:316 +#: 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:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" "\n" @@ -682,7 +705,7 @@ msgid "" "See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -730,173 +753,175 @@ msgstr "មិនអាចអាន់ម៉ោន ស៊ីឌី​-រ៉ូá msgid "Disk not found." msgstr "រក​ážáž¶ážŸáž˜áž·â€‹áž“​ឃើញ​ ។" -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "រកឯកសារ​មិន​ឃើញ​" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 msgid "Failed to stat" msgstr "បរាជáŸáž™â€‹áž€áŸ’នុងការážáŸ’លែង" -#: methods/copy.cc:82 methods/gzip.cc:113 methods/rred.cc:606 +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 msgid "Failed to set modification time" msgstr "បរាជáŸáž™áž€áŸ’នុងការកំណážáŸ‹â€‹áž–áŸáž›ážœáŸáž›áž¶â€‹áž€áž¶ážšáž€áŸ‚ប្រែ​" -#: methods/file.cc:47 +#: methods/file.cc:48 msgid "Invalid URI, local URIS must not start with //" msgstr "URI មិនážáŸ’រឹមážáŸ’រូវ​ URIS មូលដ្ឋានមិនážáŸ’រូវ​ចាប់ផ្ážáž¾áž˜â€‹áž‡áž¶áž˜áž½áž™â€‹ // ឡើយ" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "កំពុង​ចូល​" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "មិន​អាច​កំណážáŸ‹ážˆáŸ’មោះដែលážáŸ’រូវបង្ហាញ​បានឡើយ​" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "មិន​អាច​កំណážáŸ‹ážˆáŸ’មោះមូលដ្ឋាន​បានឡើយ" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format msgid "The server refused the connection and said: %s" msgstr "ម៉ាស៊ីន​បម្រើបានបដិសáŸáž’​ការážáž—្ជាប់ ហើយ​ បាននិយាយ ៖ %s" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "USER បរាជáŸáž™â€‹ ម៉ាស៊ីន​បម្រើបាន​​និយាយ ៖ %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS បានបរាជáŸáž™â€‹ ម៉ាស៊ីន​បម្រើបាន​​និយាយ ៖ %s" -#: methods/ftp.cc:247 +#: 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:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "ពាក្យ​បញ្ជា​ស្គ្រីប​ចូល​ '%s' បានបរាជáŸáž™ ម៉ាស៊ីន​បម្រើ​បាននិយាយ ៖ %s" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE បានបរាជáŸáž™â€‹ ម៉ាស៊ីន​បម្រើ​បាននិយាយ​ ៖ %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 msgid "Connection timeout" msgstr "អស់ពáŸáž›â€‹áž€áŸ’នុងការážáž—្ជាប់​" -#: methods/ftp.cc:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "ម៉ាស៊ីន​បម្រើ​បាន​បិទ​ការážáž—្ជាប់​" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "ការអាន​មានកំហុស" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "ឆ្លើយážáž”​សážáž·â€‹áž”ណ្ážáŸ„ះអាសន្ន​​អស់ចំណុះ ។" -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "ការបង្ážáž¼áž…​ពិធីការ​" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "ការសរសáŸážšâ€‹áž˜áž¶áž“កំហុស" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 msgid "Could not create a socket" msgstr "មិន​អាច​បង្កើážâ€‹ážšáž“្ធបានឡើយ" -#: methods/ftp.cc:707 +#: methods/ftp.cc:712 msgid "Could not connect data socket, connection timed out" msgstr "មិន​អាច​ážáž—្ជាប់​​រន្ធទិន្ននáŸáž™â€‹áž”ានឡើយ អស់​ពáŸáž›â€‹áž€áŸ’នុងការážáž—្ជាប់​" -#: methods/ftp.cc:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "បាន​បរាជáŸáž™" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "មិនអាចážáž—្ជាប់​​រន្ធអកម្ម​​បានឡើយ ។" -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo មិន​អាច​​ទទួល​យក​រន្ធ​សម្រាប់​ស្ážáž¶áž”់​​បានឡើយ" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "មិន​អាច​ចងរន្ធ​បានបានឡើយ​" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "មិនអាច​ស្ដាប់នៅលើរន្ធ​បានឡើយ" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "មិន​អាច​កំណážáŸ‹â€‹ážˆáŸ’មោះរបស់​រន្ធ​បានឡើយ" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "មិនអាច​ផ្ញើពាក្យ​បញ្ជា​ PORT បានឡើយ" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "មិន​ស្គាល់​អាសយដ្ឋាន​គ្រួសារ​ %u (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT បរាជáŸáž™â€‹ ម៉ាស៊ីន​បម្រើ​បាន​និយាយ ៖ %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "ការážáž—្ជាប់​រន្ធ​​ទិន្ននáŸáž”ានអស់ពáŸáž›â€‹" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "មិនអាច​ទទួលយក​ការážáž—្ជាប់​បានឡើយ" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "បញ្ហា​ធ្វើឲ្យážáž¼áž…​ឯកសារ" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "មិន​អាច​ទៅ​ប្រមូល​យក​ឯកសារ​បានឡើយ ម៉ាស៊ីន​បម្រើ​បាន​និយាយ​ '%s'" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "រន្ធ​ទិន្ននáŸáž™â€‹áž”ាន​អស់​ពáŸáž›â€‹" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "បរាជáŸáž™áž€áŸ’នុងការ​ផ្ទáŸážšâ€‹áž‘ិន្ននáŸáž™ ម៉ាស៊ីន​បម្រើ​បាន​និយាយ​ '%s'" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "សំណួរ​" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "មិន​អាច​ហៅ​ " @@ -932,7 +957,7 @@ 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:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "កំពុង​ážáž—្ជាប់​ទៅកាន់ %s" @@ -962,182 +987,182 @@ msgstr "ការ​ដោះស្រាយ​អ្វី​អាក្រក msgid "Unable to connect to %s:%s:" msgstr "មិន​អាច​ážáž—្ជាប់​ទៅកាន់​​ %s %s ៖" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "កំហុស​ážáž¶áž„ក្នុង​ ៖ áž ážáŸ’ážáž›áŸážáž¶â€‹â€‹áž›áŸ’អ ប៉ុន្ážáŸ‚ ​មិន​អាច​កំណážáŸ‹â€‹áž€áž¼áž“សោ​ស្នាម​ម្រាមដៃ ?!" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "​បានជួប​ប្រទះ​​​​ហážáŸ’ážáž›áŸážáž¶â€‹áž™áŸ‰áž¶áž„ហោចណាស់មួយ ដែ​លážáŸ’រឹមážáŸ’រូវ​ ។" -#: methods/gpgv.cc:172 +#: methods/gpgv.cc:174 #, fuzzy msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "មិន​អាច​ប្រážáž·áž”ážáŸ’ážáž· '%s' ដើម្បី​ផ្ទៀងផ្ទាážáŸ‹â€‹áž ážáŸ’ážáž›áŸážáž¶ (ážáž¾ gpgv ážáŸ’រូវ​បាន​ដំឡើង​ឬនៅ ?)" #. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "មិនស្គាល់កំហុស ក្នុងការប្រážáž·áž”ážáŸ’ážáž· gpgv" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "áž ážáŸ’ážáž›áŸážáž¶â€‹ážáž¶áž„​ក្រោម​មិន​ážáŸ’រឹមážáŸ’រូវ ៖\n" -#: methods/gpgv.cc:229 +#: 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:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "កំហុសក្នុងការ​សរសáŸážšâ€‹áž‘ៅកាន់​ឯកសារ" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "កំហុស​ក្នុងការ​អាន​ពី​ម៉ាស៊ីនបម្រើ ។ ការបញ្ចប់​ពីចម្ងាយ​បានបិទការážáž—្ជាប់" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "កំហុស​ក្នុងការអាន​ពី​ម៉ាស៊ីន​បម្រើ" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "កំហុស​ក្នុងការ​សរសáŸážšáž‘ៅកាន់​ឯកសារ" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "ជ្រើស​បាន​បរាជáŸáž™â€‹" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "ការážáž—្ជាប់​បាន​អស់ពáŸáž›â€‹" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "កំហុស​ក្នុងការ​សរសáŸážšáž‘ៅកាន់​ឯកសារលទ្ធផល" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "កំពុង​រង់ចាំ​បឋមកážáž¶" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "ជួរ​បឋមកážáž¶â€‹ážáž¼áž…​" -#: methods/server.cc:139 methods/server.cc:146 +#: methods/server.cc:134 methods/server.cc:141 msgid "The HTTP server sent an invalid reply header" msgstr "ម៉ាស៊ីន​បម្រើ​ HTTP បានផ្ញើបឋមកážáž¶áž…ម្លើយážáž”មិនážáŸ’រឹមážáŸ’រូវ" -#: methods/server.cc:176 +#: methods/server.cc:171 msgid "The HTTP server sent an invalid Content-Length header" msgstr "ម៉ាស៊ីន​បម្រើ​ HTTP បានផ្ញើ​​បឋមកážáž¶áž”្រវែង​​​មាážáž·áž€áž¶â€‹áž˜áž·áž“ážáŸ’រឹមážáŸ’រូវ​" -#: methods/server.cc:199 +#: methods/server.cc:194 msgid "The HTTP server sent an invalid Content-Range header" msgstr "ម៉ាស៊ីន​បម្រើ​ HTTP បានផ្ញើ​បឋមកážáž¶â€‹áž‡áž½ážšâ€‹áž˜áž¶ážáž·áž€áž¶â€‹áž˜áž·áž“​ážáŸ’រឹមážáŸ’រូវ​" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "ម៉ាស៊ីន​បម្រើ HTTP áž“áŸáŸ‡áž”ាន​ážáž¼áž…​​​ជួរ​គាំទ្រ​" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "មិនស្គាល់​ទ្រង់ទ្រាយ​កាលបរិច្ឆáŸáž‘" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "ទិន្ននáŸáž™â€‹áž”ឋមកážáž¶â€‹ážáž¼áž…" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "ការážáž—្ជាប់​បាន​បរាជáŸáž™â€‹" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "កំហុស​ážáž¶áž„​ក្នុង​" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "កំហុស​ážáž¶áž„ក្នុង កញ្ចប់​ដំឡើង​ážáŸ’រូវ​បាន​ហៅ​​ជាមួយ​កញ្ចប់​ដែល​ážáž¼áž… !" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "កញ្ចប់ ​ážáŸ’រូវការឲ្យ​យក​ចáŸáž‰â€‹â€‹ ប៉ុន្ážáŸ‚មិនអនុញ្ញាážâ€‹áž²áŸ’យយកចáŸáž‰áž¡áž¾áž™Â ។" -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "កំហុស​ážáž¶áž„ក្នុង​ ការ​រៀប​ážáž¶áž˜â€‹áž›áŸ†ážŠáž¶áž”់​មិន​បាន​បញ្ចប់ឡើយ" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "យី អី​កáŸâ€‹áž…ម្លែង​ម្លáŸáŸ‡.. ទំហំ​មិន​ដូច​គ្នា​ឡើយ ។ សូម​ផ្ញើ​អ៊ីមែល​ទៅ apt@packages.debian.org" #. TRANSLATOR: The required 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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "ážáŸ’រូវការ​​យក​ %sB/%sB នៃ​បáŸážŽáŸ’ណសារ ។​\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:171 +#: apt-private/private-install.cc:159 #, 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:178 +#: apt-private/private-install.cc:166 #, fuzzy, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "បន្ទាប់​ពី​ពន្លា​ %sB នៃ​ការ​បន្ážáŸ‚ម​​ទំហំ​ážáž¶ážŸâ€‹ážáŸ’រូវ​បាន​ប្រើ ។\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:183 +#: apt-private/private-install.cc:171 #, fuzzy, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "បន្ទាប់​ពី​ពន្លា​ %sB ទំហំ​ážáž¶ážŸáž“ឹង​​ទំនáŸážšÂ ។ \n" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "អ្នក​គ្មាន​ទំហំ​​ទំនáŸážšâ€‹áž‚្រប់គ្រាន់​ក្នុង​​ %s ឡើយ ។" -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "មាន​បញ្ហា​ ហើយ -y ážáŸ’រូវ​បាន​ប្រើ​ដោយគ្មាន​​ --force​-yes" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "បាទ/ចាស ធ្វើ​ដូច​ដែល​ážáŸ’ញុំ​និយាយ !" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1148,20 +1173,20 @@ msgstr "" "ដើម្បី​បន្ហ​​វាយ​ក្នុង​ឃ្លា​ '%s'\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "បោះបង់ ។" -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 #, fuzzy msgid "Do you want to continue?" msgstr "ážáž¾â€‹áž¢áŸ’នក​ចង់​បន្ážáž¬â€‹ [បាទ ចាស/áž‘áŸâ€‹] ? " -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "ឯកសារ​មួយ​ចំនួន​បាន​បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​ទាញ​យក​" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1169,19 +1194,19 @@ msgstr "" "អនុញ្ញាážâ€‹áž²áŸ’យ​ទៅ​ប្រមូល​យក​បáŸážŽáŸ’ណសារ​មួយ​ចំនួន​ ប្រហែល​ជា​រážáŸ‹â€‹áž—ាព​ទាន់​សមáŸáž™ apt-get ឬ ព្យាយាមប្រើ​ជាមួយ --" "fix- ដែលបាážáŸ‹áž¬áŸ‹Â ?" -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix- ដែលបាážáŸ‹â€‹ និង ​ស្វប​មáŸážŒáŸ€â€‹ážŠáŸ‚ល​មិនបាន​​គាំទ្រនៅពáŸáž›â€‹áž”ច្ចុប្បន្ន​" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "មិន​អាច​កែ​កញ្ចប់​ដែលបាážáŸ‹áž”ង់​បានឡើយ ។" -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "កំពុង​បោះបង់​ការ​ដំឡើង​ ។" -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1191,15 +1216,15 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1215,16 +1240,16 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 msgid "The following information may help to resolve the situation:" msgstr "áž–áŸážáŸŒáž˜áž¶áž“​ដូចážáž‘ៅនáŸáŸ‡ អាចជួយ​ដោះស្រាយ​ស្ážáž¶áž“ភាព​បាន ៖" -#: apt-private/private-install.cc:517 +#: apt-private/private-install.cc:505 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "កំហុស​ážáž¶áž„ក្នុង អ្នក​ដោះស្រាយ​បញ្ហា​បានធ្វើឲ្យážáž¼áž…​ឧបករណáŸ" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1234,7 +1259,7 @@ msgid_plural "" msgstr[0] "កញ្ចប់​ážáŸ’មី​ážáž¶áž„ក្រោម​នឹង​ážáŸ’រូវ​បាន​ដំឡើង​ ៖" msgstr[1] "កញ្ចប់​ážáŸ’មី​ážáž¶áž„ក្រោម​នឹង​ážáŸ’រូវ​បាន​ដំឡើង​ ៖" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1242,24 +1267,24 @@ msgid_plural "" msgstr[0] "កញ្ចប់​ážáŸ’មី​ážáž¶áž„ក្រោម​នឹង​ážáŸ’រូវ​បាន​ដំឡើង​ ៖" msgstr[1] "កញ្ចប់​ážáŸ’មី​ážáž¶áž„ក្រោម​នឹង​ážáŸ’រូវ​បាន​ដំឡើង​ ៖" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-install.cc:624 +#: 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:626 +#: 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:639 +#: apt-private/private-install.cc:627 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" @@ -1271,146 +1296,146 @@ msgstr "" "ដែលបាន​ទាមទារនឹងមិនទាន់បានបង្កើážâ€‹áž¡áž¾áž™â€‹\n" " ឬ ​បានយក​ចáŸáž‰â€‹áž–ីការមកដល់ ។" -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "កញ្ចប់​ដែល​បាន​ážáž¼áž…​" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "កញ្ចប់​បន្ážáŸ‚ម​ដូចážáž‘ៅនáŸáŸ‡ នឹងážáŸ’រូវបាន​ដំឡើង ៖" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "កញ្ចប់​ដែល​បាន​ផ្ដល់​យោបល់ ៖" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "កញ្ចប់​ដែល​បាន​ផ្ដល់​អនុសាសនáŸÂ ៖" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ព្រមាន​ ៖ មិនអាច​ធ្វើការផ្ទៀងផ្ទាážáŸ‹áž—áž¶áž–ážáŸ’រឹមážáŸ’រូវកញ្ចប់ážáž¶áž„ក្រោមបានឡើយ !" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "បានបដិសáŸáž’​ការព្រមាន​ការផ្ទៀងផ្ទាážáŸ‹áž—ាព​ážáŸ’រឹមážáŸ’រូវ ។\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "មិនអាច​ផ្ទៀងផ្ទាážáŸ‹áž—áž¶áž–ážáŸ’រឹមážáŸ’រូវកញ្ចប់​មួយចំនួន​បានឡើយ​" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 #, fuzzy msgid "Install these packages without verification?" msgstr "ដំឡើង​កញ្ចប់​ទាំងនáŸáŸ‡ ​ដោយគ្មានការពិនិážáŸ’យ​បញ្ជាក់ [y/N] ? " -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​ទៅ​ប្រមូល​យក​ %s %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [បានដំឡើង​]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [បានដំឡើង​]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [បានដំឡើង​]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [បានដំឡើង​]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "កញ្ចប់​ážáž¶áž„ក្រោម​មាន​ភាពអាស្រáŸáž™â€‹ážŠáŸ‚ល​ážáž»ážŸâ€‹áž‚្នា ៖" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "ប៉ុន្ážáŸ‚​ %s ážáŸ’រូវ​បាន​ដំឡើង​" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "ប៉ុន្ážáŸ‚​ %s នឹង​ážáŸ’រូវ​បាន​ដំឡើ​ង" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "ប៉ុន្ážáŸ‚​​វា​មិន​អាច​ដំឡើង​បាន​ទáŸâ€‹" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "ប៉ុន្ážáŸ‚​​វា​ជា​កញ្ចប់​និម្មិážâ€‹" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "ប៉ុន្ážáŸ‚​វា​មិន​បាន​ដំឡើង​ទáŸâ€‹" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "ប៉ុន្ážáŸ‚ វា​នឹង​មិន​ážáŸ’រូវ​បាន​ដំឡើង​ទáŸ" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " ឬ" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "កញ្ចប់​ážáŸ’មី​ážáž¶áž„ក្រោម​នឹង​ážáŸ’រូវ​បាន​ដំឡើង​ ៖" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "កញ្ចប់​ážáž¶áž„ក្រោម​នឹងážáŸ’រូវ​បាន​យកចáŸáž‰Â ៖" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "​កញ្ចប់​ážáž¶áž„​ក្រោម​ážáŸ’រូវ​បាន​យក​ážáŸ’រឡប់​មក​វិញ ៖" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "កញ្ចប់​ážáž¶áž„ក្រោម​នឹង​​ážáŸ’រូវ​បាន​​ធ្វើ​ឲ្យប្រសើ​ឡើង ៖" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "កញ្ចប់​ážáž¶áž„ក្រោម​នឹង​​ážáŸ’រូវ​បាន​បន្ទាប ៖" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "កញ្ចប់​រង់ចាំ​ážáž¶áž„ក្រោម​នឹង​ážáŸ’រូវ​​បានផ្លាស់​​ប្ážáž¼ážšâ€‹Â ៖" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (ដោយ​សារážáŸ‚​ %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1418,27 +1443,27 @@ msgstr "" "ព្រមាន​ ៖ កញ្ចប់ដែល​ចាំបាច់​ážáž¶áž„ក្រោម​នឹង​ážáŸ’រូវ​បាន​យកចáŸáž‰Â ។\n" "ការយកចáŸáž‰â€‹áž“áŸáŸ‡â€‹áž˜áž·áž“​ážáŸ’រូវ​បានធ្វើ​ទáŸâ€‹áž›áž»áŸ‡ážáŸ’រា​ážáŸ‚​អ្នកដឹង​ážáž¶â€‹â€‹áž¢áŸ’នក​កំពុង​ធ្វើ​អ្វីឲ្យប្រាកដ !" -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu ážáŸ’រូវ​បាន​ធ្វើ​ឲ្យ​ប្រសើរ %lu ážáŸ’រូវ​បានដំឡើង​ážáŸ’មី " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu ážáŸ’រូវ​បាន​ដំឡើង​ឡើង​វិញ " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu ​ážáŸ’រូវបានបន្ទាប់ " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu ដែលážáŸ’រូវ​យក​ចáŸáž‰â€‹ ហើយ​ %lu មិន​​បាន​ធ្វើ​ឲ្យ​ប្រសើរឡើយ ។\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu មិន​បាន​ដំឡើង​ ឬ យក​ចáŸáž‰áž”ានគ្រប់ជ្រុងជ្រោយ​ឡើយ​ ។\n" @@ -1447,7 +1472,7 @@ msgstr "%lu មិន​បាន​ដំឡើង​ ឬ យក​ចáŸáž‰áž” #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "" @@ -1455,91 +1480,91 @@ msgstr "" #. 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:702 +#: apt-private/private-output.cc:708 msgid "[y/N]" msgstr "" #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "Y" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "Regex កំហុស​ការចងក្រង​ - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "កំពុង​កែ​ភាពអាស្រáŸáž™â€‹..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " បាន​បរាជáŸáž™Â ។" -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "មិន​អាច​កែ​ភាព​អាស្រáŸáž™â€‹áž”ានឡើយ​" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "មិនអាច​បង្រួម​ការ​កំណážáŸ‹â€‹áž—ាព​ប្រសើរ​​បាន​ឡើយ​" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " ធ្វើ​រួច" -#: apt-private/private-cachefile.cc:102 +#: 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:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "ភាព​អាស្រáŸáž™â€‹ážŠáŸ‚ល​ážáž»ážŸâ€‹áž‚្នា ។ ព្យាយាម​ការ​ប្រើ -f ។" -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "ពាក្យ​បញ្ជា​ដែលធ្វើ​ឲ្យ​ទាន់​សមáŸáž™â€‹áž‚្មាន​អាគុយម៉ង់​ទáŸ" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "កំពុង​គណនា​ការ​ធ្វើ​ឲ្យ​ប្រសើរ... " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "កំហុស​ážáž¶áž„ក្នុង ការធ្វើឲ្យប្រសើរ​ទាំងអស់បានធ្វើឲ្យ​ឧបករណáŸâ€‹ážáž¼áž…" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "ធ្វើរួច​" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1547,43 +1572,43 @@ msgid "" " so don't depend on the relevance to the real current situation!" msgstr "" -#: apt-private/private-sources.cc:45 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format msgid "Failed to parse %s. Edit again? " msgstr "បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​ប្ážáž¼ážšâ€‹ážˆáŸ’មោះ %s ទៅ %s" -#: apt-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "វាយ​" -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "យក​ ៖" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "Ign " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Err " -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "បាន​ទៅ​ប្រមូល​ %sB ក្នុង​ %s (%sB/s)\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [កំពុង​ធ្វើការ​]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1596,19 +1621,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "មិន​អាច​អាន​ %s បានឡើយ" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "មិនអាច​ប្ដូរទៅ %s បានឡើយ" @@ -1637,11 +1662,11 @@ msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡហmsgid "[Mirror: %s]" msgstr "" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 msgid "Failed to create IPC pipe to subprocess" msgstr "បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​បង្កើážâ€‹áž”ំពង់​ IPC សម្រាប់​ដំណើរ​ការ​រង​" -#: methods/rsh.cc:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "បាន​បិទ​ការ​ážáž—្ជាប់​មុន​ពáŸáž›" @@ -1705,40 +1730,45 @@ msgstr "" " -c=? អាន​ឯកសារ​ការ​កំណážáŸ‹â€‹ážšáž…នាស្ពáŸáž“្ធ​នáŸáŸ‡\n" " -o=? កំណážáŸ‹â€‹áž‡áž˜áŸ’រើស​ការ​កំណážáŸ‹â€‹ážšáž…នា​សម្ពáŸáž“្ធ​ážáž¶áž˜â€‹áž…áž·ážáŸ’áž áž§. eg -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "មិន​អាច​ážáŸ’លែង %s បានឡើយ" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "មិន​អាច​សរសáŸážšâ€‹áž‘ៅ %s" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "មិន​អាច​ទទួល​យក​កំណែ​ debconf  ។ ážáž¾â€‹ debconf បានដំឡើង​ឬ ?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "បញ្ជី​ផ្នែក​បន្ážáŸ‚ម​កញ្ចប់​វែង​ពáŸáž€" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "​កំហុស​ដំណើរការ​ážážâ€‹ %s" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "បញ្ជី​ផ្នែក​បន្ážáŸ‚ម​ប្រភព​វែង​ពáŸáž€" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "កំហុស​សរសáŸážšâ€‹áž”ឋម​កážáž¶â€‹áž‘ៅ​ឯកសារ​មាážáž·áž€áž¶" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "កំហុស​ដំណើរការ​មាážáž·áž€áž¶â€‹ %s" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1819,26 +1849,26 @@ msgstr "" " -c=? អាន​ឯកសារ​ការកំណážáŸ‹â€‹ážšáž…នាសម្ពáŸáž“្ធ​នáŸáŸ‡â€‹\n" " -o=? កំណážáŸ‹â€‹áž‡áž˜áŸ’រើស​ការ​កំណážáŸ‹â€‹ážšáž…នា​សម្ពáŸáž“្ធ​ážáž¶áž˜â€‹áž…áž·ážáŸ’áž" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "គ្មាន​ការ​ជ្រើស​​ដែល​ផ្គួផ្គង​" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "ឯកសារ​មួយ​ចំនួន​បាážáŸ‹áž”ងពី​ក្រុម​ឯកសារ​កញ្ចប់​ `%s'" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "DB បាន​ážáž¼áž…​, ឯកសារ​បាន​ប្ážáž¼ážšâ€‹ážˆáŸ’មោះ​ទៅ​ជា​ %s.old ។" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "DB ចាស់​, កំពុង​ព្យាយាម​ធ្វើ​ឲ្យ %s ប្រសើរ​ឡើង" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 #, fuzzy msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " @@ -1847,192 +1877,192 @@ msgstr "" "ទ្រង់ទ្រាយ​មូលដ្ឋាន​ទិន្ននáŸáž™â€‹áž˜áž·áž“​ážáŸ’រឹមážáŸ’រូវ ។ ប្រសិន​បើ​អ្នក​បាន​ធ្វើ​ឲ្យ​វា​ប្រសើឡើង​ពី​កំណែ​ចាស់​របស់ apt សូម​យក​" "មូលដ្ឋាន​ទិន្ននáŸáž™â€‹áž…áŸáž‰ និង​បង្កើážâ€‹áž˜áž¼áž›ážŠáŸ’ឋាន​ទិន្ននáŸáž™â€‹áž¡áž¾áž„​វិញ ។" -#: ftparchive/cachedb.cc:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "មិន​អាច​បើក​ឯកសារ​ DB បានទ០%s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "បាន​បរាជáŸáž™â€‹áž€áŸ’នុង​ការážáŸ’លែង %s" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "áž”áŸážŽáŸ’ណសារ​គ្មាន​កំណážáŸ‹â€‹ážáŸ’រា​ážáŸ’ážšáž½ážâ€‹áž–ិនិážáŸ’យ​ទáŸâ€‹" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "មិន​អាច​យក​ទស្សនáŸáž‘្រនិច​" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: មិន​អាច​អាន​ážáž %s បាន​ឡើយ\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "W ៖ មិន​អាច​ážáŸ’លែង %s\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "E: កំហុស​អនុវážáŸ’ážâ€‹áž›áž¾â€‹áž¯áž€ážŸáž¶ážšâ€‹" -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​ដោះស្រាយ %s" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "មែក​ធាង បាន​បរាជáŸáž™" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​បើក %s" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "បាន​បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​អាន​ážáŸ†ážŽâ€‹ %s" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "បាន​បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​ផ្ដាច់ %s" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** បាន​បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​ážâ€‹ %s ទៅ %s" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " DeLink កំណážáŸ‹â€‹áž“ៃ​ការ​វាយ %sB ។\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "áž”áŸážŽáŸ’ណសារ​គ្មាន​វាល​កញ្ចប់​" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %s គ្មាន​ធាážáž»áž’áž¶ážáž»áž”ញ្ចូល​​បដិសáŸáž’ឡើយ\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " អ្នក​ážáŸ‚ទាំ %s គឺ %s មិនមែន​ %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr " %s គ្មាន​ធាážáž»â€‹áž”ដិសáŸáž’​ប្រភព\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s គ្មាន​ធាážáž»áž”​ដិសáŸáž’គោល​ពីរ​ដែរ\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​​បម្រុង​​ទុក​សážáž·â€‹" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "មិន​អាចបើក​ %s បានឡើយ" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "Malformed បដិសáŸáž’ %s បន្ទាážáŸ‹ %lu #1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "បាន​បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​អានឯកសារ​បដិសáŸáž’ %s" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, fuzzy, c-format msgid "Malformed override %s line %llu #1" msgstr "Malformed បដិសáŸáž’ %s បន្ទាážáŸ‹ %lu #1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, fuzzy, c-format msgid "Malformed override %s line %llu #2" msgstr "Malformed បដិសáŸáž’ %s បន្ទាážáŸ‹â€‹ %lu #2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, fuzzy, c-format msgid "Malformed override %s line %llu #3" msgstr "Malformed បដិសáŸáž’ %s បន្ទាážáŸ‹â€‹ %lu #3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "មិន​ស្គាល់​ក្បួន​ដោះស្រាយ​ការបង្ហាប់​ '%s'" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "​ទិន្នផល​ដែល​បាន​បង្ហាប់​​ %s ážáŸ’រូវ​ការ​កំណážáŸ‹â€‹áž€áž¶ážšáž”ង្ហាប់​" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​បង្កើážâ€‹ FILE*" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "បាន​បរាជáŸáž™â€‹áž€áŸ’នុងការ​ដាក់ជា​ពីរផ្នែក​" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "បង្ហាប់កូន" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "កំហុស​ážáž¶áž„ក្នុង​ បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​បង្កើážâ€‹ %s" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "IO សម្រាប់​ដំណើរការ​រង​/ឯកសារ​ បាន​បរាជáŸáž™â€‹" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "បាន​បរាជáŸáž™â€‹áž€áŸ’នុង​ការអាន​ នៅពáŸáž›â€‹áž‚ណនា MD5" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "មានបញ្ហា​ក្នុងការ​ផ្ដាច់ážáŸ†ážŽ %s" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​ប្ážáž¼ážšâ€‹ážˆáŸ’មោះ %s ទៅ %s" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -2085,157 +2115,157 @@ msgstr "" " -c=? អាន​ឯកសារ​កំណážáŸ‹â€‹ážšáž…នាសម្ពáŸáž“្ធនáŸáŸ‡â€‹\n" " -o=? កំណážáŸ‹â€‹áž‡áž˜áŸ’រើស​ការ​កំណážáŸ‹â€‹ážšáž…នា​សម្ពáŸáž“្ធ​ážáž¶áž˜â€‹áž…áž·ážáŸ’áž áž§. -o dir::cache=/tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "បាន​បរាជáŸáž™áž€áŸ’នុង​ការ​បង្កើážâ€‹áž”ំពង់​" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "បាន​បរាជáŸáž™áž€áŸ’នុង​ការ​ប្រážáž·áž”ážáŸ’ážáž· gzip" -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "áž”áŸážŽáŸ’ណសារ​បាន​ážáž¼áž…​" -#: apt-inst/contrib/extracttar.cc:201 +#: apt-inst/contrib/extracttar.cc:203 msgid "Tar checksum failed, archive corrupted" msgstr "Tar ឆáŸáž€ážŸáž¶áŸ†â€‹áž”ាន​បរាជáŸáž™ áž”áŸážŽáŸ’ណសារ​បាន​ážáž¼áž…" -#: apt-inst/contrib/extracttar.cc:306 +#: apt-inst/contrib/extracttar.cc:308 #, c-format msgid "Unknown TAR header type %u, member %s" msgstr "មិន​ស្គាល់​ប្រភáŸáž‘​បឋមកážáž¶â€‹ TAR %u ដែលជា​សមាជិក​ %s" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "áž ážáŸ’ážáž›áŸážáž¶â€‹áž”áŸážŽáŸ’ណសា​រមិន​ážáŸ’រឹមážáŸ’រូវ​" -#: apt-inst/contrib/arfile.cc:82 +#: apt-inst/contrib/arfile.cc:84 msgid "Error reading archive member header" msgstr "កំហុស​ក្នុងការ​អានបឋមកážáž¶â€‹ážŸáž˜áž¶áž‡áž·áž€â€‹áž”áŸážŽáŸ’ណសារ" -#: apt-inst/contrib/arfile.cc:94 +#: apt-inst/contrib/arfile.cc:96 #, fuzzy, c-format msgid "Invalid archive member header %s" msgstr "បឋមកážáž¶â€‹ážŸáž˜áž¶áž‡áž·áž€â€‹áž”áŸážŽáŸ’ណសារ" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "បឋមកážáž¶â€‹ážŸáž˜áž¶áž‡áž·áž€â€‹áž”áŸážŽáŸ’ណសារ" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "áž”áŸážŽáŸ’ណសារ ážáŸ’លីពáŸáž€" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "បរាជáŸáž™â€‹áž€áŸ’នុងការ​អាន​បឋមកážáž¶â€‹áž”áŸážŽáŸ’ណសារ" -#: apt-inst/filelist.cc:382 +#: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" msgstr "ទម្លាក់​ážáŸ’នាំង​ដែល​បាន​ហៅ​លើ​ážáŸ’នាំងដែល​នៅážáŸ‚ážáž—្ជាប់" -#: apt-inst/filelist.cc:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "បរាជáŸáž™â€‹áž€áŸ’នុងការ​ដាក់ទីážáž¶áŸ†áž„​ធាážáž»â€‹ážŠáŸ‚លរាយប៉ាយ !" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "បរាជáŸáž™â€‹áž€áŸ’នុងការ​បម្រុងទុក​ការបង្វែរ" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "កំហុស​ážáž¶áž„ក្នុង នៅក្នុង AddDiversion" -#: apt-inst/filelist.cc:479 +#: 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:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "ការបន្ážáŸ‚ម​ស្ទួន នៃការបង្វែរ​ %s -> %s" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "ឯកសារ​កំណážáŸ‹â€‹ážšáž…នាសម្ពáŸáž“្ធ​ស្ទួន​ %s/%s" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: 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:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "បរាជáŸáž™â€‹áž€áŸ’នុងការ​បិទឯកសារ %s" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: 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:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "កំពុង​ពន្លា​ %s ច្រើន​ជាង​ម្ážáž„​" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "ážážâ€‹ %s ážáŸ’រូវបាន​បង្វែរ" -#: apt-inst/extract.cc:145 +#: 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:155 apt-inst/extract.cc:299 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 msgid "The diversion path is too long" msgstr "ផ្លូវ​បង្វែរ វែងពáŸáž€" -#: apt-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "ážážâ€‹ %s ážáŸ’រូវ​បាន​ជំនួស​ដោយ​មិនមែន​ជា​ážážâ€‹" -#: apt-inst/extract.cc:282 +#: apt-inst/extract.cc:289 msgid "Failed to locate node in its hash bucket" msgstr "បរាជáŸáž™â€‹áž€áŸ’នុងការ​ដាក់ážáŸ’នាំង​នៅក្នុង​ធុង​រាយប៉ាយ​របស់វា" -#: apt-inst/extract.cc:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "ផ្លូវ​វែង​ពáŸáž€" -#: apt-inst/extract.cc:414 +#: apt-inst/extract.cc:421 #, c-format msgid "Overwrite package match with no version for %s" msgstr "សរសáŸážšâ€‹áž‡áž¶áž“់​លើកញ្ចប់ផ្គួផ្គង​ដោយ​គ្មាន​កំណែ​សម្រាប់ %s" -#: apt-inst/extract.cc:431 +#: 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:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "មិន​អាច​ážáŸ’លែង %s បានឡើយ" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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:124 +#: apt-inst/deb/debfile.cc:132 #, c-format msgid "Internal error, could not locate member %s" msgstr "កំហុស​ážáž¶áž„ក្នុង ​មិន​អាច​កំណážáŸ‹â€‹áž‘ីážáž¶áŸ†áž„​សមាជិក​ %s បានឡើយ" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "ឯកសារážáŸ’ážšáž½ážáž–ិនិážáŸ’យ​ដែលមិនអាច​ញែកបាន" @@ -2293,495 +2323,500 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "ជម្រើស​ %s រក​មិន​ឃើញ​ឡើយ" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "មិន​បាន​​ទទួល​ស្គាល់​ប្រភáŸáž‘​អក្សរ​សង្ážáŸáž” ៖ '%c'" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "កំពុង​បើ​ឯកសារ​កំណážáŸ‹ážšáž…នាសម្ពáŸáž“្ធ​ %s" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "កំហុស​វាក្យ​សម្ពន្ធ %s:%u ៖ ប្លុក​ចាប់​ផ្ážáž¾áž˜â€‹â€‹ážŠáŸ„យ​គ្មាន​ឈ្មោះ​ ។" -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "កំហុស​​វាក្យ​សម្ពន្ធ %s:%u ៖ ស្លាក​ដែលបាន Malformed" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "កំហុស​​វាក្យ​សម្ពន្ធ %s:%u ៖ ážáž˜áŸ’លៃ​ឥážáž”ានការ​នៅ​ក្រៅ​" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "កំហុសវាក្យ​សម្ពន្ធ %s:%u ៖ សáŸáž…ក្ដីបង្គាប់​អាចážáŸ’រូវបានធ្វើ​ážáŸ‚នៅលើ​កម្រិážâ€‹áž€áŸ†áž–ូល​ážáŸ‚ប៉ុណ្ណោះ" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "កំហុស​វាក្យសម្ពន្ធ %s:%u ៖ មាន​ការរួមបញ្ចូល​ដែលដាក់​រួមគ្នា​យ៉ាងច្រើន" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "កំហុសវាក្យ​សម្ពន្ធ %s:%u ៖ បានរួម​បញ្ចូល​ពី​ទីនáŸáŸ‡â€‹" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "កំហុស​វាក្យ​សម្ពន្ធ %s:%u ៖ សáŸáž…ក្ដី​បង្គាប់​ដែល​មិនបានគាំទ្រ '%s'" -#: apt-pkg/contrib/configuration.cc:884 +#: 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-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "កំហុស​វាក្យសម្ពន្ធ %s:%u ៖ សារឥážáž”ានការ​បន្ážáŸ‚ម ដែលនៅážáž¶áž„ចុង​ឯកសារ" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... កំហុស ​!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... ធ្វើរួច​" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s... ធ្វើរួច​" -#: apt-pkg/contrib/cmndline.cc:116 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format msgid "Command line option '%c' [from %s] is not known." msgstr "ជម្រើស​បន្ទាážáŸ‹â€‹áž–ាក្យបញ្ជា '%c' [from %s] មិនស្គាល់ឡើយ ។" -#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format msgid "Command line option %s is not boolean" msgstr "ជម្រើស​បន្ទាážáŸ‹áž–ាក្យ​បញ្ជា​ %s មិនមែនជាប៊ូលីនទáŸ" -#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "ជម្រើស​ %s ážáŸ’រូវការ​អាគុយម៉ង់មួយ ។" -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "ជម្រើស %s ៖ ការបញ្ជាក់​ធាážáž»â€‹áž€áŸ†ážŽážáŸ‹ážšáž…នាសម្ពáŸáž“្ធážáŸ’រូវážáŸ‚មាន =<val> មួយ ។" -#: apt-pkg/contrib/cmndline.cc:273 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format msgid "Option %s requires an integer argument, not '%s'" msgstr "ជម្រើស​ %s ážáŸ’រូវ​ការ​អាគុយម៉ង់​ចំនួន​គážáŸ‹â€‹ មិន​មែន​ '%s'" -#: apt-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "ជម្រើស​ '%s' វែងពáŸáž€" -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "មិនបានយល់អំពី​ការស្គាល់​ %s ឡើយ សូមព្យាយមយក​ áž–áž·ážâ€‹ ​​​ឫ មិន​ពិážÂ ។" -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "ប្រážáž·áž”ážáŸ’ážáž·áž€áž¶ážšâ€‹áž˜áž·áž“​ážáŸ’រឹមážáŸ’រូវ​ %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format msgid "Unable to stat the mount point %s" msgstr "មិនអាច​ážáŸ’លែង ចំណុចម៉ោន %s បានឡើយ" -#: apt-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "បរាជáŸáž™áž€áŸ’នុងការ​ážáŸ’លែង ស៊ីឌីរ៉ូម" -#: apt-pkg/contrib/fileutl.cc:95 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "មាន​បញ្ហា​ក្នុងការ​បិទ​ឯកសារ" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "មិន​ប្រើប្រាស់​ការចាក់សោ សម្រាប់ážáŸ‚ឯកសារចាក់សោ​ដែលបានážáŸ‚អានប៉ុណ្ណោះ %s" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "មិន​អាច​បើក​ឯកសារ​ចាក់សោ​ %s បានឡើយ" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "មិនប្រើ​ការចាក់សោ សម្រាប់ nfs ឯកសារ​ចាក់សោដែលបានម៉ោន%s" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "មិន​អាច​ចាក់សោ %s បានឡើយ" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "ដំណើរការ​រង​ %s បាន​ទទួល​កំហុស​ការ​ចែកជាចម្រៀក​ ។" -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "ដំណើរការ​រង​ %s បាន​ទទួល​កំហុស​ការ​ចែកជាចម្រៀក​ ។" -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 apt-pkg/contrib/gpgv.cc:239 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "ដំណើរការ​រង​ %s បានážáŸ’រឡប់​ទៅកាន់​កូដ​មាន​កំហុស​ (%u)" -#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "ដំណើរការ​រង​ %s បានចáŸáž‰ ដោយ​មិន​រំពឹង​ទុក​ " -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "មាន​បញ្ហា​ក្នុងការ​បិទ​ឯកសារ" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "មិន​អាច​បើក​បំពុង​សម្រាប់​ %s បានឡើយ" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​បង្កើážâ€‹ážŠáŸ†ážŽáž¾ážšáž€áž¶ážšâ€‹ážšáž„​ IPC" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​ប្រážáž·áž”ážáŸ’ážáž·â€‹áž€áž˜áŸ’មវិធី​បង្ហាប់ " -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, fuzzy, c-format msgid "read, still have %llu to read but none left" msgstr "អាន​, នៅážáŸ‚​មាន %lu ដើម្បី​អាន​ ប៉ុន្ážáŸ‚​គ្មាន​អ្វី​នៅសល់" -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, fuzzy, c-format msgid "write, still have %llu to write but couldn't" msgstr "សរសáŸážšâ€‹, នៅážáŸ‚មាន​ %lu ដើម្បី​សរសáŸážšâ€‹ ប៉ុន្ážáŸ‚​មិន​អាច​" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "មាន​បញ្ហា​ក្នុងការ​បិទ​ឯកសារ" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "មានបញ្ហា​ក្នុង​ការធ្វើ​សមកាលកម្មឯកសារ​" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "មានបញ្ហា​ក្នុងការ​ផ្ដាច់ážáŸ†ážŽâ€‹áž¯áž€ážŸáž¶ážš" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "មានបញ្ហា​ក្នុង​ការធ្វើ​សមកាលកម្មឯកសារ​" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "ប្ážáž¼ážšâ€‹ážˆáŸ’មោះ​បានបរាជáŸáž™â€‹, %s (%s -> %s) ។" + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, fuzzy, c-format msgid "No keyring installed in %s." msgstr "កំពុង​បោះបង់​ការ​ដំឡើង​ ។" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "ឃ្លាំង​កញ្ចប់​ទទáŸâ€‹" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "​​ឯកសារ​ឃ្លាំង​កញ្ចប់​មិន​ážáŸ’រឹមážáŸ’រូវ​" -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "ឯកសារ​ឃ្លាំងសម្ងាážáŸ‹â€‹â€‹áž€áž‰áŸ’ចប់​ជាកំណែ​មិន​ážáŸ’រូវគ្នា​" -#: apt-pkg/pkgcache.cc:162 +#: apt-pkg/pkgcache.cc:169 #, fuzzy msgid "The package cache file is corrupted, it is too small" msgstr "​​ឯកសារ​ឃ្លាំង​កញ្ចប់​មិន​ážáŸ’រឹមážáŸ’រូវ​" -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "APT áž“áŸáŸ‡ មិនគាំទ្រ​ប្រពáŸáž“្ធ​ ការធ្វើកំណែនáŸáŸ‡áž‘áŸâ€‹ '%s'" -#: apt-pkg/pkgcache.cc:172 +#: apt-pkg/pkgcache.cc:179 msgid "The package cache was built for a different architecture" msgstr "ឃ្លាំង​សម្ងាážáŸ‹â€‹áž€áž‰áŸ’ចប់ážáŸ’រូវ​បានស្ážáž¶áž”នា់​សម្រាប់ស្ážáž¶áž”ážáŸ’យករ​ážáž»ážŸâ€‹áŸ—គ្នា​​" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "អាស្រáŸáž™â€‹" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "អាស្រáŸáž™áž‡áž¶â€‹áž˜áž»áž“" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "ផ្ដល់យោបល់​" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "ផ្ážáž›áŸ‹â€‹áž¢áž“ុសាសនáŸâ€‹" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "ប៉ះទង្គិច" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "ជំនួស​" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "លែង​ប្រើ" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "សំážáž¶áž“់​" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "បាន​ទាមទារ" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "គំរូ" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "ស្រáŸáž…áž…áž·ážáŸ’áž" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "បន្ážáŸ‚ម" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "កំពុងស្ážáž¶áž”នា​មែកធាងភាពអាស្រáŸáž™" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "កំណែ​សាកល្បង​" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "ការបង្កើážâ€‹áž—ាពអាស្រáŸáž™â€‹" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: 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:244 +#: apt-pkg/depcache.cc:250 #, fuzzy, c-format msgid "Failed to open StateFile %s" msgstr "បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​បើក %s" -#: apt-pkg/depcache.cc:250 +#: apt-pkg/depcache.cc:256 #, fuzzy, c-format msgid "Failed to write temporary StateFile %s" msgstr "បរាជáŸáž™â€‹áž€áŸ’នុងការ​សរសáŸážšâ€‹áž¯áž€ážŸáž¶ážš %s" -#: apt-pkg/tagfile.cc:138 +#: apt-pkg/tagfile.cc:140 #, c-format msgid "Unable to parse package file %s (1)" msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់ %s (1) បានឡើយ" -#: apt-pkg/tagfile.cc:235 +#: apt-pkg/tagfile.cc:237 #, c-format msgid "Unable to parse package file %s (2)" msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់​ %s (2) បានឡើយ" -#: apt-pkg/sourcelist.cc:118 +#: apt-pkg/sourcelist.cc:127 #, fuzzy, c-format msgid "Malformed stanza %u in source list %s (URI parse)" msgstr "បន្ទាážáŸ‹â€‹ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (URI ញែក​)" -#: apt-pkg/sourcelist.cc:161 +#: apt-pkg/sourcelist.cc:170 #, fuzzy, c-format msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "បន្ទាážáŸ‹ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (dist ញែក​)" -#: apt-pkg/sourcelist.cc:164 +#: 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-pkg/sourcelist.cc:175 +#: 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-pkg/sourcelist.cc:181 +#: 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-pkg/sourcelist.cc:184 +#: 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-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "បន្ទាážáŸ‹ Malformed %lu ក្នុង​ញ្ជី​ប្រភព​ %s (URI)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "បន្ទាážáŸ‹ Malformed %lu ក្នុង​បញ្ជី​ប្រភព %s (dist)" -#: apt-pkg/sourcelist.cc:202 +#: apt-pkg/sourcelist.cc:211 #, c-format msgid "Malformed line %lu in source list %s (URI parse)" msgstr "បន្ទាážáŸ‹â€‹ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (URI ញែក​)" -#: apt-pkg/sourcelist.cc:208 +#: apt-pkg/sourcelist.cc:217 #, c-format msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "បន្ទាážáŸ‹ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (dist លែងប្រើ)" -#: apt-pkg/sourcelist.cc:215 +#: apt-pkg/sourcelist.cc:224 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" msgstr "បន្ទាážáŸ‹ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (dist ញែក​)" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "កំពុង​បើក​ %s" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "បន្ទាážáŸ‹â€‹ %u មាន​ប្រវែង​វែងពáŸáž€áž“ៅ​ក្នុង​បញ្ជី​ប្រភព​ %s ។" -#: apt-pkg/sourcelist.cc:362 +#: apt-pkg/sourcelist.cc:371 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "បន្ទាážáŸ‹â€‹ Malformed %u ក្នុង​បញ្ជី​ប្រភព​ %s (ប្រភáŸáž‘​)" -#: apt-pkg/sourcelist.cc:366 +#: apt-pkg/sourcelist.cc:375 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "ប្រភáŸáž‘​ '%s' មិន​ស្គាល់នៅលើបន្ទាážáŸ‹â€‹ %u ក្នុង​បញ្ជី​ប្រភព​ %s ឡើយ" -#: apt-pkg/sourcelist.cc:407 +#: 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/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, 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:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ" -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2792,18 +2827,18 @@ msgstr "" "ភាពអាស្រáŸáž™áž‡áž¶áž˜áž»áž“ ។ ជាញឹកញាប់គឺ មិនážáŸ’រឹមážáŸ’រូវ ប៉ុន្ážáŸ‚ ប្រសិនបើអ្នក​ពិážáž‡áž¶áž…ង់ធ្វើវា ធ្វើឲ្យជម្រើស APT::" "Force-LoopBreak សកម្ម ។" -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "ប្រភáŸáž‘​ឯកសារ​លិបិក្រម​ '%s' មិនážáŸ’រូវ​បាន​គាំទ្រ​" -#: apt-pkg/algorithms.cc:266 +#: 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:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2811,215 +2846,210 @@ msgstr "" "កំហុស pkgProblemResolver::ដោះស្រាយ​សញ្ញាបញ្ឈប់​ដែលបានបង្កើហនáŸáŸ‡â€‹áž”្រហែលជា បង្កដោយកញ្ចប់​" "ដែលបាន​ទុក ។" -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "មិន​អាច​កែ​បញ្ហាបានទáŸáŸ អ្កបានទុក​កញ្ចប់​ដែល​ážáž¼áž… ។។" -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, fuzzy, c-format msgid "List directory %spartial is missing." msgstr "រាយបញ្ជី​ážážâ€‹ %spartial គឺ​បាážáŸ‹áž”ង់​ ។" -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, fuzzy, c-format msgid "Archives directory %spartial is missing." msgstr "ážážâ€‹áž”áŸážŽáŸ’ណសារ​ %spartial គឺ​បាážáŸ‹áž”ង់​ ។" -#: apt-pkg/acquire.cc:93 +#: 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:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "កំពុង​ទៅ​យក​ឯកសារ %li នៃ %li (នៅសល់ %s)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "កំពុង​ទៅយក​ឯកសារ %li នៃ %li" -#: apt-pkg/acquire-worker.cc:113 +#: apt-pkg/acquire-worker.cc:116 #, c-format msgid "The method driver %s could not be found." msgstr "មិនអាច​រកឃើញ​កម្មវិធី​បញ្ជា​វិធីសាស្ážáŸ’ážš %s ឡើយ ។" -#: apt-pkg/acquire-worker.cc:115 +#: apt-pkg/acquire-worker.cc:118 #, fuzzy, c-format msgid "Is the package %s installed?" msgstr "ពិនិážáŸ’យ​ប្រសិន​បើកញ្ចប់ 'dpkg-dev' មិន​ទាន់​បាន​ដំឡើង​ ។\n" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "វិធីសាស្ážáŸ’រ​ %s មិន​អាច​ចាប់​ផ្ážáž¾áž˜â€‹ážáŸ’រឹមážáŸ’រូវ​ទáŸâ€‹" -#: apt-pkg/acquire-worker.cc:452 +#: apt-pkg/acquire-worker.cc:455 #, c-format msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "សូម​បញ្ចូល​ស្លាក​ឌីស​ ៖ '%s' ក្នុង​ដ្រាយ​ '%s' ហើយ​សង្កážáŸ‹â€‹áž…ូល ។" -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "មិន​គាំទ្រ​ប្រពáŸáž“្ធ​កញ្ចប់'%s' ឡើយ" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "មិនអាច​កំណážáŸ‹â€‹áž”្រភáŸáž‘​ប្រពáŸáž“្ធ​កញ្ចប់​ដែល​សមរម្យ​បានឡើយ" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "មិនអាច​ážáŸ’លែង %s បានឡើយ ។" -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "អ្នកážáŸ’រូវážáŸ‚ដាក់ 'ប្រភព' URIs មួយចំនួន​នៅក្នុង sources.list របស់អ្នក" -#: apt-pkg/cachefile.cc:87 +#: apt-pkg/cachefile.cc:94 msgid "The package lists or status file could not be parsed or opened." msgstr "បញ្ជី​កញ្ចប់​ ឬ ឯកសារ​ស្ážáž¶áž“ភាព​មិន​អាចážáŸ’រូវបាន​​ញែក ​​ឬ ážáŸ’រូវបាន​បើកបានឡើយ​​ ។" -#: apt-pkg/cachefile.cc:91 +#: 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:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "មិន​អាច​អាន​បញ្ជី​ប្រភព​បាន​ឡើយ​ ។" -#: apt-pkg/policy.cc:75 +#: 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 "" -#: apt-pkg/policy.cc:414 +#: apt-pkg/policy.cc:422 #, fuzzy, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "កំណážáŸ‹ážáŸ’រា​មិនážáŸ’រឹមážáŸ’រូវ​នៅក្នុង​ឯកសារចំណង់ចំណូលចិážáŸ’ហមិនមាន​បឋមកážáž¶â€‹áž€áž‰áŸ’ចប់ទáŸ" -#: apt-pkg/policy.cc:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "មិន​បាន​យល់​ពី​ប្រភáŸáž‘​ម្ជុល %s ឡើយ" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "គ្មាន​អទិភាព (ឬ សូន្យ​) បានបញ្ជាក់​សម្រាប់​ម្ជុល​ទáŸ" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 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:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: 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)" -#: apt-pkg/pkgcachegen.cc:251 +#: apt-pkg/pkgcachegen.cc:257 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "អស្ចារ្យ អ្នក​មាន​ឈ្មោះ​កញ្ចប់​លើស​ចំនួន​ APT áž“áŸáŸ‡â€‹áž†áž”គ្នា​​  ។" -#: apt-pkg/pkgcachegen.cc:254 +#: apt-pkg/pkgcachegen.cc:260 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "អស្ចារ្យ អ្នក​មាន​កំណែ​លើស​ចំនួន​ APT áž“áŸáŸ‡â€‹áž†áž”គ្នា​ ។" -#: apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:263 #, fuzzy msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "អស្ចារ្យ អ្នក​មាន​កំណែ​លើស​ចំនួន​ APT áž“áŸáŸ‡â€‹áž†áž”គ្នា​ ។" -#: apt-pkg/pkgcachegen.cc:260 +#: apt-pkg/pkgcachegen.cc:266 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "អស្ចារ្យ​, អ្នក​មាន​ភាពអាស្រáŸáž™â€‹áž›áž¾ážŸâ€‹áž…ំនួន​ APT áž“áŸáŸ‡â€‹áž†áž”គ្នា​ ។" -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:576 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "កញ្ចប់​ %s %s រក​មិន​ឃើញ​ážážŽáŸˆâ€‹áž–áŸáž›â€‹áž€áŸ†áž–ុង​ដំណើរការ​ភាពអាស្រáŸáž™â€‹â€‹áž¯áž€ážŸáž¶ážš" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "មិនអាចážáŸ’លែង បញ្ជី​កញ្ចប់​ប្រភពចប់​ បានឡើយ %s" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "ការផ្ដល់​ឯកសារ​ប្រមូលផ្ដុំ" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 msgid "IO Error saving source cache" msgstr "IO កំហុសក្នុងការររក្សាទុក​ឃ្លាំង​សម្ងាážáŸ‹â€‹áž”្រភព​" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "ប្ážáž¼ážšâ€‹ážˆáŸ’មោះ​បានបរាជáŸáž™â€‹, %s (%s -> %s) ។" - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 #, fuzzy msgid "Hash Sum mismatch" msgstr "MD5Sum មិន​ផ្គួផ្គង​" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "ទំហំ​មិនបាន​ផ្គួផ្គង​" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "ប្រážáž·áž”ážáŸ’ážáž·áž€áž¶ážšâ€‹áž˜áž·áž“​ážáŸ’រឹមážáŸ’រូវ​ %s" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, 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:1586 +#: apt-pkg/acquire-item.cc:1595 #, fuzzy, c-format msgid "Unable to find hash sum for '%s' in Release file" msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់ %s (1) បានឡើយ" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "គ្មាន​កូនសោ​សាធារណៈ​អាច​រក​បាន​ក្នុងកូនសោ IDs ážáž¶áž„ក្រោម​នáŸáŸ‡áž‘áŸÂ ៖\n" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " "repository will not be applied." msgstr "" -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3027,12 +3057,12 @@ msgid "" msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3041,105 +3071,101 @@ msgstr "" "ážáŸ’ញុំ​មិន​អាច​រកទីážáž¶áŸ†áž„​ឯកសារ​សម្រាប់​កញ្ចប់ %s បាន​ទáŸÂ ។ ​មាន​នáŸáž™â€‹ážáž¶â€‹áž¢áŸ’នក​ážáŸ’រូវការ​ជួសជុល​កញ្ចប់​នáŸáŸ‡â€‹ážŠáŸ„យ​ដៃ ។ " "(ដោយសារ​​បាážáŸ‹â€‹ážŸáŸ’ážáž¶áž”ážáŸ’យកម្ម)" -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "កញ្ចប់​ឯកសារ​លិបិក្រម​ážáŸ’រូវ​បាន​ážáž¼áž… ។ គ្មាន​ឈ្មោះ​ឯកសារ ៖ វាល​សម្រាប់​កញ្ចប់នáŸáŸ‡â€‹áž‘áŸâ€‹ %s ។" -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, fuzzy, c-format msgid "Unable to parse Release file %s" msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់ %s (1) បានឡើយ" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, fuzzy, c-format msgid "No sections in Release file %s" msgstr "ចំណាំ កំពុង​ជ្រើស​ %s ជំនួស​ %s\n" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "" -#: apt-pkg/indexrecords.cc:125 +#: apt-pkg/indexrecords.cc:130 #, fuzzy, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "បន្ទាážáŸ‹â€‹ážŠáŸ‚លមិនážáŸ’រឹមážáŸ’រូវ​នៅក្នុង​ឯកសារ​បង្វែរ ៖ %s" -#: apt-pkg/indexrecords.cc:144 +#: apt-pkg/indexrecords.cc:149 #, fuzzy, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់ %s (1) បានឡើយ" -#: apt-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "ប្លុក​ក្រុមហ៊ុន​លក់​ %s គ្មាន​ស្នាម​ផ្ážáž·ážâ€‹áž˜áŸ’រាម​ដៃ" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "ប្រើប្រាស់ចំណុចម៉ោន​ ស៊ីឌី​-រ៉ូម​ %s\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "ការមិនម៉ោន​ ស៊ីឌី-រ៉ូម​\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +#, fuzzy +msgid "Unmounting CD-ROM...\n" +msgstr "មិនកំពុងម៉ោន ស៊ីឌី​-រ៉ូម​ áž‘áŸ..." -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "កំពុង​រង់ចាំឌីស​...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "កំពុង​ម៉ោន​ ស៊ីឌី​-រ៉ូម​...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " -msgstr "កំពុង​ធ្វើអážáŸ’ážážŸáž‰áŸ’ញាណនា​.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " +msgstr "កំពុង​ធ្វើអážáŸ’ážážŸáž‰áŸ’ញាណនា​... " -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "បានទុក​ស្លាក ៖ %s \n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -#, fuzzy -msgid "Unmounting CD-ROM...\n" -msgstr "មិនកំពុងម៉ោន ស៊ីឌី​-រ៉ូម​ áž‘áŸ..." - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" -msgstr "កំពុង​ស្កáŸáž“​ឌីស​សម្រាប់​​ឯកសារ​លិបិក្រម​..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" +msgstr "កំពុង​ស្កáŸáž“​ឌីស​សម្រាប់​​ឯកសារ​លិបិក្រម​...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, fuzzy, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " "%zu signatures\n" msgstr "បានរកឃើញ លិបិក្រម​កញ្ចប់ %i លិបិក្រម​ប្រភព%i និង áž ážáŸ’ážáž›áŸážáž¶ %i \n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, fuzzy, c-format msgid "Found label '%s'\n" msgstr "បានទុក​ស្លាក ៖ %s \n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "នោះមិនមែនជាឈ្មោះážáŸ’រឹមážáŸ’រូវទ០សូមព្យាយាម​ម្ដងទៀážÂ ។\n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3148,34 +3174,34 @@ msgstr "" "ឌីស​នáŸáŸ‡â€‹ážáŸ’រូវ​បាន​ហៅ​ ៖ \n" "'%s'\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "កំពុង​ចម្លង​បញ្ជី​កញ្ចប់..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "កំពុងសរសáŸážšâ€‹áž”ញ្ជី​ប្រភព​ážáŸ’មី\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "áž’áž¶ážáž»áž”ញ្ចូល​បញ្ជីប្រភព​សម្រាប់​ឌីស​នáŸáŸ‡áž‚ឺ ៖\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: 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:777 +#: 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:780 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "បានសរសáŸážšâ€‹ %i កំណážáŸ‹ážáŸ’រា​ជាមួយួយ​ %i ឯកសារ​ដែល​មិន​បាន​ផ្គួផ្គង​\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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" @@ -3190,88 +3216,88 @@ msgstr "" msgid "Hash mismatch for: %s" msgstr "MD5Sum មិន​ផ្គួផ្គង​" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "រក​មិន​ឃើញ​ការ​ចáŸáž‰â€‹áž•្សាយ​ '%s' សម្រាប់​ '%s' ឡើយ" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "រក​មិន​ឃើញ​កំណែ​ '%s' សម្រាប់ '%s'" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, fuzzy, c-format msgid "Couldn't find task '%s'" msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទáŸ" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, fuzzy, c-format msgid "Couldn't find any package by regex '%s'" msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទáŸ" -#: apt-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទáŸ" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, c-format msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " "neither of them" msgstr "" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, c-format msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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 " @@ -3279,167 +3305,167 @@ msgid "" msgstr "" "ឯកសារ​លិបិក្រម​មួយ​ចំនួន​បាន​បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​​ទាញ​យក ​ពួកវាážáŸ’រូវបាន​មិន​អើពើ​ ឬ ប្រើ​​ឯកសារ​ចាស់​ជំនួសវិញ ​​។" -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, fuzzy, c-format msgid "Installing %s" msgstr "បាន​ដំឡើង %s" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "កំពុង​កំណážáŸ‹â€‹ážšáž…នា​សម្ពáŸáž“្ធ %s" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "កំពុង​យក %s áž…áŸáž‰" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, fuzzy, c-format msgid "Completely removing %s" msgstr "បាន​យក %s áž…áŸáž‰â€‹áž‘ាំង​ស្រុង" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, fuzzy, c-format msgid "Directory '%s' missing" msgstr "រាយបញ្ជី​ážážâ€‹ %spartial គឺ​បាážáŸ‹áž”ង់​ ។" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: 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:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "កំពុងរៀបចំ​ %s" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "កំពុង​ស្រាយ %s" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "កំពុងរៀបចំ​កំណážáŸ‹ážšáž…នាសម្ពáŸáž“្ធ %s" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "បាន​ដំឡើង %s" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "កំពុងរៀបចំដើម្បី​ការយក​ចáŸáž‰â€‹áž“ៃ %s" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "បាន​យក %s áž…áŸáž‰" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "កំពុង​រៀបចំ​យក %s áž…áŸáž‰â€‹áž‘ាំង​ស្រុង" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "បាន​យក %s áž…áŸáž‰â€‹áž‘ាំង​ស្រុង" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "មិន​អាច​សរសáŸážšâ€‹áž‘ៅ %s" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 msgid "" "No apport report written because the error message indicates an issue on the " "local system" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " "it?" msgstr "" -#: apt-pkg/deb/debsystem.cc:87 +#: 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:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " msgstr "" -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "" @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2010-08-30 02:31+0900\n" "Last-Translator: Changwoo Ryu <cwryu@debian.org>\n" "Language-Team: Korean <debian-l10n-korean@lists.debian.org>\n" @@ -15,152 +15,153 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: cmdline/apt-cache.cc:140 +#: cmdline/apt-cache.cc:149 #, c-format msgid "Package %s version %s has an unmet dep:\n" msgstr "%s íŒ¨í‚¤ì§€ì˜ %s ë²„ì „ì˜ ì˜ì¡´ì„±ì´ ë§žì§€ 않습니다:\n" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "ì „ì²´ 패키지 ì´ë¦„ : " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 msgid "Total package structures: " msgstr "ì „ì²´ 패키지 구조: " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " ì¼ë°˜ 패키지: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " 순수 ê°€ìƒ íŒ¨í‚¤ì§€: " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " ë‹¨ì¼ ê°€ìƒ íŒ¨í‚¤ì§€: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " 혼합 ê°€ìƒ íŒ¨í‚¤ì§€: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " ë¹ ì§: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "개별 ë²„ì „ ì „ì²´: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "개별 설명 ì „ì²´: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "ì „ì²´ ì˜ì¡´ì„±: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "ì „ì²´ ë²„ì „/íŒŒì¼ ê´€ê³„: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "ì „ì²´ 설명/íŒŒì¼ ê´€ê³„: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "ì „ì²´ ì œê³µ 매핑: " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "ì „ì²´ 패턴 문ìžì—´: " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "ì „ì²´ ì˜ì¡´ì„± ë²„ì „ 용량: " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "ì „ì²´ 빈 용량: " -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "차지하는 ì „ì²´ 용량: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: 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 파ì¼ì´ ë™ê¸°í™”ë˜ì§€ 않았습니다." -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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 "패키지가 없습니다" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 msgid "You must give at least one search pattern" msgstr "최소 한 ê°œì˜ ê²€ìƒ‰ì–´ë¥¼ ì§€ì •í•´ì•¼ 합니다" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "%s 패키지를 ì°¾ì„ ìˆ˜ 없습니다" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "패키지 파ì¼:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 msgid "Cache is out of sync, can't x-ref a package file" msgstr "ìºì‹œê°€ ë™ê¸°í™”ë˜ì§€ 않았습니다. 패키지 파ì¼ì„ ìƒí˜¸ ì°¸ì¡°í• ìˆ˜ 없습니다" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "í•€ 패키지:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(ì—†ìŒ)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " 설치: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " 후보: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(ì—†ìŒ)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " 패키지 í•€: " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " ë²„ì „ í…Œì´ë¸”:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: 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:1740 +#: cmdline/apt-cache.cc:1749 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -234,28 +235,28 @@ msgstr "" " -o=? ìž„ì˜ì˜ ì˜µì…˜ì„ ì„¤ì •í•©ë‹ˆë‹¤. 예를 들어 -o dir::cache=/tmp\n" "좀 ë” ìžì„¸í•œ ì •ë³´ëŠ” apt-cache(8) ë° apt.conf(5) 매뉴얼 페ì´ì§€ë¥¼ ë³´ì‹ì‹œì˜¤.\n" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: 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:104 +#: cmdline/apt-cdrom.cc:91 msgid "Please insert a Disc in the drive and press enter" msgstr "드ë¼ì´ë¸Œì— 디스í¬ë¥¼ ë„£ê³ Enter를 누르ì‹ì‹œì˜¤" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, c-format msgid "Failed to mount '%s' to '%s'" msgstr "%s 파ì¼ì˜ ì´ë¦„ì„ %s(으)로 ë°”ê¾¸ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "현재 ê°–ê³ ìžˆëŠ” 다른 CDì—ë„ ì´ ê³¼ì •ì„ ë°˜ë³µí•˜ì‹ì‹œì˜¤." @@ -291,65 +292,65 @@ msgstr "" " -c=? 해당 ì„¤ì • 파ì¼ì„ ì½ìŠµë‹ˆë‹¤\n" " -o=? ìž„ì˜ì˜ ì˜µì…˜ì„ ì„¤ì •í•©ë‹ˆë‹¤. 예를 들어 -o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:244 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format msgid "Can not find a package for architecture '%s'" msgstr "'%s' ì •ê·œì‹ì— 해당하는 패키지가 없습니다" -#: cmdline/apt-get.cc:326 +#: cmdline/apt-get.cc:327 #, fuzzy, c-format msgid "Can not find a package '%s' with version '%s'" msgstr "'%s' ì •ê·œì‹ì— 해당하는 패키지가 없습니다" -#: cmdline/apt-get.cc:329 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format msgid "Can not find a package '%s' with release '%s'" msgstr "'%s' ì •ê·œì‹ì— 해당하는 패키지가 없습니다" -#: cmdline/apt-get.cc:366 +#: 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:422 +#: cmdline/apt-get.cc:423 #, fuzzy, c-format msgid "Can not find version '%s' of package '%s'" msgstr "'%2$s' íŒ¨í‚¤ì§€ì˜ '%1$s' ë²„ì „ì€ ì—†ìœ¼ë¯€ë¡œ 무시합니다." -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "%s 패키지를 ì°¾ì„ ìˆ˜ 없습니다" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "%s 패키지 수ë™ì„¤ì¹˜ë¡œ ì§€ì •í•©ë‹ˆë‹¤.\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: 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:468 cmdline/apt-mark.cc:116 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 msgid "Internal error, problem resolver broke stuff" msgstr "ë‚´ë¶€ 오류, ë¬¸ì œ í•´ê²° í”„ë¡œê·¸ëž¨ì´ ë¬´ì–¸ê°€ë¥¼ ë§ê°€ëœ¨ë ¸ìŠµë‹ˆë‹¤" -#: cmdline/apt-get.cc:573 cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 msgid "Unable to lock the download directory" msgstr "다운로드 ë””ë ‰í„°ë¦¬ë¥¼ ìž ê¸€ 수 없습니다" -#: cmdline/apt-get.cc:725 +#: cmdline/apt-get.cc:726 msgid "Must specify at least one package to fetch source for" msgstr "해당ë˜ëŠ” 소스 패키지를 ê°€ì ¸ì˜¬ 패키지를 최소한 하나 ì§€ì •í•´ì•¼ 합니다" -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "%sì˜ ì†ŒìŠ¤ 패키지를 ì°¾ì„ ìˆ˜ 없습니다" @@ -374,95 +375,95 @@ msgstr "" "다ìŒê³¼ ê°™ì´ í•˜ì‹ì‹œì˜¤:\n" "bzr get %s\n" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "ì´ë¯¸ 다운로드 ë°›ì€ íŒŒì¼ '%s'ì€(는) 다시 받지 ì•Šê³ ê±´ë„ˆ ëœë‹ˆë‹¤.\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "%sì˜ ì—¬ìœ ê³µê°„ì˜ í¬ê¸°ë¥¼ íŒŒì•…í• ìˆ˜ 없습니다" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "%sì— ì¶©ë¶„í•œ ê³µê°„ì´ ì—†ìŠµë‹ˆë‹¤" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "소스 ì•„ì¹´ì´ë¸Œë¥¼ %së°”ì´íЏ/%së°”ì´íЏ 받아야 합니다.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "소스 ì•„ì¹´ì´ë¸Œë¥¼ %së°”ì´íЏ 받아야 합니다.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "%s 소스를 ê°€ì ¸ì˜µë‹ˆë‹¤\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "ì¼ë¶€ ì•„ì¹´ì´ë¸Œë¥¼ ê°€ì ¸ì˜¤ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "다운로드를 ë§ˆì³¤ê³ ë‹¤ìš´ë¡œë“œ ì „ìš© 모드입니다" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "%sì— ì´ë¯¸ í’€ë ¤ 있는 ì†ŒìŠ¤ì˜ ì••ì¶•ì„ í’€ì§€ ì•Šê³ ê±´ë„ˆ ëœë‹ˆë‹¤.\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "ì••ì¶• 풀기 ëª…ë ¹ '%s' 실패.\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "'dpkg-dev' 패키지가 설치ë˜ì—ˆëŠ”ì§€ë¥¼ 확ì¸í•˜ì‹ì‹œì˜¤.\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "빌드 ëª…ë ¹ '%s' 실패.\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "하위 프로세스가 실패했습니다" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "해당ë˜ëŠ” 빌드 ì˜ì¡´ì„±ì„ ê²€ì‚¬í• íŒ¨í‚¤ì§€ë¥¼ 최소한 하나 ì§€ì •í•´ì•¼ 합니다" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "%sì˜ ë¹Œë“œ ì˜ì¡´ì„± ì •ë³´ë¥¼ ê°€ì ¸ì˜¬ 수 없습니다" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s íŒ¨í‚¤ì§€ì— ë¹Œë“œ ì˜ì¡´ì„±ì´ 없습니다.\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -471,7 +472,7 @@ msgstr "" "%2$sì— ëŒ€í•œ %1$s ì˜ì¡´ì„±ì„ 만족시킬 수 없습니다. %3$s 패키지를 ì°¾ì„ ìˆ˜ 없습니" "다" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -480,14 +481,14 @@ msgstr "" "%2$sì— ëŒ€í•œ %1$s ì˜ì¡´ì„±ì„ 만족시킬 수 없습니다. %3$s 패키지를 ì°¾ì„ ìˆ˜ 없습니" "다" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "%2$sì— ëŒ€í•œ %1$s ì˜ì¡´ì„±ì„ ë§Œì¡±ì‹œí‚¤ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤: 설치한 %3$s 패키지가 너" "무 최근 ë²„ì „ìž…ë‹ˆë‹¤" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -496,7 +497,7 @@ msgstr "" "%2$sì— ëŒ€í•œ %1$s ì˜ì¡´ì„±ì„ 만족시킬 수 없습니다. %3$s íŒ¨í‚¤ì§€ì˜ ì‚¬ìš© 가능한 버" "ì „ 중ì—서는 ì´ ë²„ì „ 요구사í•ì„ ë§Œì¡±ì‹œí‚¬ 수 없습니다" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -505,30 +506,30 @@ msgstr "" "%2$sì— ëŒ€í•œ %1$s ì˜ì¡´ì„±ì„ 만족시킬 수 없습니다. %3$s 패키지를 ì°¾ì„ ìˆ˜ 없습니" "다" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "%2$sì— ëŒ€í•œ %1$s ì˜ì¡´ì„±ì„ ë§Œì¡±ì‹œí‚¤ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤: %3$s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "%sì˜ ë¹Œë“œ ì˜ì¡´ì„±ì„ 만족시키지 못했습니다." -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "빌드 ì˜ì¡´ì„±ì„ ì²˜ë¦¬í•˜ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "%s(%s)ì— ì—°ê²°í•˜ëŠ” 중입니다" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "ì§€ì›í•˜ëŠ” 모듈:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -616,53 +617,75 @@ msgstr "" "apt.conf(5) 매뉴얼 페ì´ì§€ë¥¼ ë³´ì‹ì‹œì˜¤.\n" " ì´ APT는 Super Cow Powers로 무장했습니다.\n" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "해당ë˜ëŠ” 소스 패키지를 ê°€ì ¸ì˜¬ 패키지를 최소한 하나 ì§€ì •í•´ì•¼ 합니다" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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:63 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format msgid "%s was already set to manually installed.\n" msgstr "%s 패키지 수ë™ì„¤ì¹˜ë¡œ ì§€ì •í•©ë‹ˆë‹¤.\n" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, fuzzy, c-format msgid "%s was already set to automatically installed.\n" msgstr "%s 패키지는 수ë™ì„¤ì¹˜ë¡œ ì§€ì •í•©ë‹ˆë‹¤.\n" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format msgid "%s was already set on hold.\n" msgstr "%s 패키지는 ì´ë¯¸ ìµœì‹ ë²„ì „ìž…ë‹ˆë‹¤.\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, fuzzy, c-format msgid "%s was already not hold.\n" msgstr "%s 패키지는 ì´ë¯¸ ìµœì‹ ë²„ì „ìž…ë‹ˆë‹¤.\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "%s 프로세스를 ê¸°ë‹¤ë ¸ì§€ë§Œ 해당 프로세스가 없습니다" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: 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:264 cmdline/apt-mark.cc:316 +#: 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:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" "\n" @@ -689,7 +712,7 @@ msgid "" "See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -737,52 +760,52 @@ msgstr "%s ì•ˆì˜ CD-ROMì„ ë§ˆìš´íŠ¸ í•´ì œí• ìˆ˜ 없습니다. 사용 ì¤‘ì¼ msgid "Disk not found." msgstr "디스í¬ê°€ 없습니다." -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "파ì¼ì´ 없습니다" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 msgid "Failed to stat" msgstr "íŒŒì¼ ì •ë³´ë¥¼ ì½ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: methods/copy.cc:82 methods/gzip.cc:113 methods/rred.cc:606 +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 msgid "Failed to set modification time" msgstr "íŒŒì¼ ë³€ê²½ 시ê°ì„ ì„¤ì •í•˜ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: methods/file.cc:47 +#: 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:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "로그ì¸í•˜ëŠ” 중입니다" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "ìƒëŒ€ë°©ì˜ ì´ë¦„ì„ ì•Œ 수 없습니다" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "로컬 ì´ë¦„ì„ ì•Œ 수 없습니다" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format msgid "The server refused the connection and said: %s" msgstr "서버ì—서 다ìŒê³¼ ê°™ì´ ì—°ê²°ì„ ê±°ë¶€í–ˆìŠµë‹ˆë‹¤: %s" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "USER 실패, 서버ì—서는: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS 실패, 서버ì—서는: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -790,121 +813,123 @@ msgstr "" "프ë¡ì‹œ 서버를 ì§€ì •í–ˆì§€ë§Œ ë¡œê·¸ì¸ ìŠ¤í¬ë¦½íŠ¸ê°€ 없습니다. Acquire::ftp::" "ProxyLogin ê°’ì´ ë¹„ì–´ 있습니다." -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "ë¡œê·¸ì¸ ìŠ¤í¬ë¦½íЏ ëª…ë ¹ '%s' 실패, 서버ì—서는: %s" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE 실패, 서버ì—서는: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 msgid "Connection timeout" msgstr "ì—°ê²° 시간 초과" -#: methods/ftp.cc:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "서버ì—서 ì—°ê²°ì„ ë‹«ì•˜ìŠµë‹ˆë‹¤" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "ì½ê¸° 오류" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "ì‘ë‹µì´ ë²„í¼ í¬ê¸°ë¥¼ 넘어갔습니다." -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "í”„ë¡œí† ì½œì´ í‹€ë ¸ìŠµë‹ˆë‹¤" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "쓰기 오류" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 msgid "Could not create a socket" msgstr "ì†Œì¼“ì„ ë§Œë“¤ 수 없습니다" -#: methods/ftp.cc:707 +#: methods/ftp.cc:712 msgid "Could not connect data socket, connection timed out" msgstr "ë°ì´í„° ì†Œì¼“ì„ ì—°ê²°í• ìˆ˜ 없습니다. ì—°ê²° ì‹œê°„ì´ ì´ˆê³¼ë˜ì—ˆìŠµë‹ˆë‹¤" -#: methods/ftp.cc:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "실패" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "수ë™(passive) ì†Œì¼“ì„ ì—°ê²°í• ìˆ˜ 없습니다." -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfoì—서 ì†Œì¼“ì— listení• ìˆ˜ 없습니다" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "ì†Œì¼“ì„ bindí• ìˆ˜ 없습니다" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "ì†Œì¼“ì— listení• ìˆ˜ 없습니다" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "ì†Œì¼“ì˜ ì´ë¦„ì„ ì•Œì•„ë‚¼ 수 없습니다" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "PORT ëª…ë ¹ì„ ë³´ë‚¼ 수 없습니다" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "주소 %uì˜ ì¢…ë¥˜(AF_*)를 알 수 없습니다" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT 실패, 서버ì—서는: %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "ë°ì´í„° 소켓 ì—°ê²° 시간 초과" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "ì—°ê²°ì„ ë°›ì„ ìˆ˜ 없습니다" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "íŒŒì¼ í•´ì‹±ì— ë¬¸ì œê°€ 있습니다" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "파ì¼ì„ ê°€ì ¸ì˜¬ 수 없습니다. 서버 왈, '%s'" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "ë°ì´í„° ì†Œì¼“ì— ì œí•œ ì‹œê°„ì´ ì´ˆê³¼í–ˆìŠµë‹ˆë‹¤" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "ë°ì´í„° ì „ì†¡ 실패, 서버ì—서는: %s" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "질ì˜" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "다ìŒì„ ì‹¤í–‰í• ìˆ˜ 없습니다: " @@ -940,7 +965,7 @@ msgstr "%s:%sì— ì—°ê²°í• ìˆ˜ 없습니다 (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "%sì— ì—°ê²°í•˜ëŠ” 중입니다" @@ -970,174 +995,174 @@ msgstr "'%s:%s'ì˜ ì£¼ì†Œë¥¼ ì•Œì•„ë‚´ëŠ”ë° ë¬´ì–¸ê°€ ì´ìƒí•œ ì¼ì´ ë°œìƒí– msgid "Unable to connect to %s:%s:" msgstr "%s:%sì— ì—°ê²°í• ìˆ˜ 없습니다:" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "ë‚´ë¶€ 오류: ì„œëª…ì€ ì˜¬ë°”ë¥´ì§€ë§Œ 키 핑거프린트를 확ì¸í• 수 없습니다?!" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "최소한 하나 ì´ìƒì˜ ì„œëª…ì´ ìž˜ëª»ë˜ì—ˆìŠµë‹ˆë‹¤." -#: methods/gpgv.cc:172 +#: 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:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "gpgv 실행 ë„중 알 수 없는 오류 ë°œìƒ" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "ë‹¤ìŒ ì„œëª…ì´ ì˜¬ë°”ë¥´ì§€ 않습니다:\n" -#: methods/gpgv.cc:229 +#: 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:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "해당 파ì¼ì— ì“°ëŠ”ë° ì˜¤ë¥˜ê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "서버ì—서 ì½ê³ ì—°ê²°ì„ ë‹«ëŠ”ë° ì˜¤ë¥˜ê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "서버ì—서 ì½ëŠ”ë° ì˜¤ë¥˜ê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "파ì¼ì— ì“°ëŠ”ë° ì˜¤ë¥˜ê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "selectê°€ 실패했습니다" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "ì—°ê²° ì‹œê°„ì´ ì´ˆê³¼í–ˆìŠµë‹ˆë‹¤" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "ì¶œë ¥ 파ì¼ì— ì“°ëŠ”ë° ì˜¤ë¥˜ê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "í—¤ë”를 기다리는 중입니다" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "í—¤ë” ì¤„ì´ ìž˜ëª»ë˜ì—ˆìŠµë‹ˆë‹¤" -#: methods/server.cc:139 methods/server.cc:146 +#: methods/server.cc:134 methods/server.cc:141 msgid "The HTTP server sent an invalid reply header" msgstr "HTTP 서버ì—서 ìž˜ëª»ëœ ì‘답 í—¤ë”를 보냈습니다" -#: methods/server.cc:176 +#: methods/server.cc:171 msgid "The HTTP server sent an invalid Content-Length header" msgstr "HTTP 서버ì—서 ìž˜ëª»ëœ Content-Length í—¤ë”를 보냈습니다" -#: methods/server.cc:199 +#: methods/server.cc:194 msgid "The HTTP server sent an invalid Content-Range header" msgstr "HTTP 서버ì—서 ìž˜ëª»ëœ Content-Range í—¤ë”를 보냈습니다" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "HTTP ì„œë²„ì— ë²”ìœ„ ì§€ì› ê¸°ëŠ¥ì´ ìž˜ëª»ë˜ì–´ 있습니다" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "ë°ì´í„° 형ì‹ì„ 알 수 없습니다" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "í—¤ë” ë°ì´í„°ê°€ 잘못ë˜ì—ˆìŠµë‹ˆë‹¤" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "ì—°ê²°ì´ ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "ë‚´ë¶€ 오류" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "ë‚´ë¶€ 오류. ë§ê°€ì§„ 패키지ì—서 InstallPackages를 호출했습니다!" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "패키지를 ì œê±°í•´ì•¼ 하지만 ì œê±°ê°€ 금지ë˜ì–´ 있습니다." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "ë‚´ë¶€ 오류. ìˆœì„œë³€ê²½ìž‘ì—…ì´ ë나지 않았습니다" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" "ì´ìƒí•˜ê²Œë„ í¬ê¸°ê°€ 서로 다릅니다. apt@packages.debian.org로 ì´ë©”ì¼ì„ 보내주ì‹" "시오." #. TRANSLATOR: The required 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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "%së°”ì´íЏ/%së°”ì´íЏ ì•„ì¹´ì´ë¸Œë¥¼ 받아야 합니다.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:171 +#: apt-private/private-install.cc:159 #, c-format msgid "Need to get %sB of archives.\n" msgstr "%së°”ì´íЏ ì•„ì¹´ì´ë¸Œë¥¼ 받아야 합니다.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:178 +#: apt-private/private-install.cc:166 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "ì´ ìž‘ì—… 후 %së°”ì´íŠ¸ì˜ ë””ìŠ¤í¬ ê³µê°„ì„ ë” ì‚¬ìš©í•˜ê²Œ ë©ë‹ˆë‹¤.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:183 +#: apt-private/private-install.cc:171 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "ì´ ìž‘ì—… 후 %së°”ì´íŠ¸ì˜ ë””ìŠ¤í¬ ê³µê°„ì´ ë¹„ì›Œì§‘ë‹ˆë‹¤.\n" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "%s ì•ˆì— ì¶©ë¶„í•œ ì—¬ìœ ê³µê°„ì´ ì—†ìŠµë‹ˆë‹¤." -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "ë¬¸ì œê°€ ë°œìƒí–ˆê³ -y ì˜µì…˜ì´ --force-yes 옵션 ì—†ì´ ì‚¬ìš©ë˜ì—ˆìŠµë‹ˆë‹¤" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "사소한 작업만 가능하ë„ë¡(Trivial Only) ì§€ì •ë˜ì—ˆì§€ë§Œ ì´ ìž‘ì—…ì€ ì‚¬ì†Œí•œ ìž‘ì—…ì´ " @@ -1146,11 +1171,11 @@ 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Yes, do as I say!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1161,19 +1186,19 @@ msgstr "" "계ì†í•˜ì‹œë ¤ë©´ ë‹¤ìŒ ë¬¸êµ¬ë¥¼ ìž…ë ¥í•˜ì‹ì‹œì˜¤: '%s'\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "중단." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "ê³„ì† í•˜ì‹œê² ìŠµë‹ˆê¹Œ?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "ì¼ë¶€ 파ì¼ì„ ë°›ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1181,19 +1206,19 @@ msgstr "" "ì•„ì¹´ì´ë¸Œë¥¼ ë°›ì„ ìˆ˜ 없습니다. ì•„ë§ˆë„ apt-get update를 실행해야 하거나 --fix-" "missing ì˜µì…˜ì„ ì¤˜ì„œ 실행해야 í• ê²ƒìž…ë‹ˆë‹¤." -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing 옵션과 ë™ì‹œì— 미디어 바꾸기는 현재 ì§€ì›í•˜ì§€ 않습니다" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "ë¹ ì§„ 패키지를 ë°”ë¡œìž¡ì„ ìˆ˜ 없습니다." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "설치를 중단합니다." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1204,15 +1229,15 @@ msgstr[0] "" "ë‹¤ìŒ íŒ¨í‚¤ì§€ëŠ” íŒ¨í‚¤ì§€ì˜ íŒŒì¼ì„ ëª¨ë‘ ë‹¤ë¥¸ 패키지가\n" "ë®ì–´ì¼ê¸° ë•Œë¬¸ì— ì‚¬ë¼ì¡ŒìŠµë‹ˆë‹¤:" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "주ì˜: dpkgì—서 ìžë™ìœ¼ë¡œ ì˜ë„ì 으로 수행했습니다." -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "ì‚ì œë¥¼ í• ìˆ˜ 없으므로 AutoRemover를 실행하지 못합니다" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1230,15 +1255,15 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 msgid "The following information may help to resolve the situation:" msgstr "ì´ ìƒí™©ì„ í•´ê²°í•˜ëŠ”ë° ë‹¤ìŒ ì •ë³´ê°€ ë„ì›€ì´ ë ìˆ˜ë„ ìžˆìŠµë‹ˆë‹¤:" -#: apt-private/private-install.cc:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "ë‚´ë¶€ 오류, ë¬¸ì œ í•´ê²° í”„ë¡œê·¸ëž¨ì´ ë¬´ì–¸ê°€ë¥¼ ë§ê°€ëœ¨ë ¸ìŠµë‹ˆë‹¤" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1246,25 +1271,25 @@ msgid_plural "" "required:" msgstr[0] "ë‹¤ìŒ íŒ¨í‚¤ì§€ê°€ ìžë™ìœ¼ë¡œ 설치ë˜ì—ˆì§€ë§Œ ë” ì´ìƒ 필요하지 않습니다:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" "%lu packages were automatically installed and are no longer required.\n" msgstr[0] "패키지 %lu개가 ìžë™ìœ¼ë¡œ 설치ë˜ì—ˆì§€ë§Œ ë” ì´ìƒ 필요하지 않습니다.\n" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 #, fuzzy msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "ì´ë“¤ì„ ì§€ìš°ë ¤ë©´ 'apt-get autoremove'를 사용하ì‹ì‹œì˜¤." -#: apt-private/private-install.cc:624 +#: apt-private/private-install.cc:612 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "다ìŒì„ ë°”ë¡œìž¡ìœ¼ë ¤ë©´ 'apt-get -f install'ì„ ì‹¤í–‰í•´ ë³´ì‹ì‹œì˜¤:" # FIXME: specify a solution? 무슨 솔루션? -#: apt-private/private-install.cc:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1272,7 +1297,7 @@ msgstr "" "ì˜ì¡´ì„±ì´ ë§žì§€ 않습니다. 패키지 ì—†ì´ 'apt-get -f install'ì„ ì‹œë„í•´ ë³´ì‹ì‹œì˜¤ " "(아니면 í•´ê²° ë°©ë²•ì„ ì§€ì •í•˜ì‹ì‹œì˜¤)." -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1283,145 +1308,145 @@ msgstr "" "ë¶ˆì•ˆì • ë°°í¬íŒì„ 사용해서 ì¼ë¶€ 필요한 패키지를 ì•„ì§ ë§Œë“¤ì§€ 않았거나,\n" "ì•„ì§ Incomingì—서 나오지 ì•Šì€ ê²½ìš°ì¼ ìˆ˜ë„ ìžˆìŠµë‹ˆë‹¤." -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "ë§ê°€ì§„ 패키지" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ ë” ì„¤ì¹˜í• ê²ƒìž…ë‹ˆë‹¤:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "ì œì•ˆí•˜ëŠ” 패키지:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "추천하는 패키지:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ê²½ê³ : ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ ì¸ì¦í• 수 없습니다!" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "ì¸ì¦ ê²½ê³ ë¥¼ 무시합니다.\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "ì¸ì¦í• 수 없는 패키지가 있습니다" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "확ì¸í•˜ì§€ ì•Šê³ íŒ¨í‚¤ì§€ë¥¼ ì„¤ì¹˜í•˜ì‹œê² ìŠµë‹ˆê¹Œ?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s 파ì¼ì„ ë°›ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤ %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [설치함]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [설치함]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [설치함]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [설치함]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "ë‹¤ìŒ íŒ¨í‚¤ì§€ì˜ ì˜ì¡´ì„±ì´ ë§žì§€ 않습니다:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "하지만 %s 패키지를 설치했습니다" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "하지만 %s 패키지를 ì„¤ì¹˜í• ê²ƒìž…ë‹ˆë‹¤" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "하지만 ì„¤ì¹˜í• ìˆ˜ 없습니다" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "하지만 ê°€ìƒ íŒ¨í‚¤ì§€ìž…ë‹ˆë‹¤" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "하지만 설치하지 않았습니다" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "하지만 %s 패키지를 설치하지 ì•Šì„ ê²ƒìž…ë‹ˆë‹¤" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " 혹ì€" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "ë‹¤ìŒ ìƒˆ 패키지를 ì„¤ì¹˜í• ê²ƒìž…ë‹ˆë‹¤:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ 지울 것입니다:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ 과거 ë²„ì „ìœ¼ë¡œ ìœ ì§€í•©ë‹ˆë‹¤:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ ì—…ê·¸ë ˆì´ë“œí• 것입니다:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ ë‹¤ìš´ê·¸ë ˆì´ë“œí• 것입니다:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "ê³ ì •ë˜ì—ˆë˜ ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ 바꿀 것입니다:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (%s때문ì—) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1429,27 +1454,27 @@ msgstr "" "ê²½ê³ : ê¼ í•„ìš”í•œ ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ 지우게 ë©ë‹ˆë‹¤.\n" "무슨 ì¼ì„ í•˜ê³ ìžˆëŠ” ì§€ ì •í™•ížˆ 알지 못한다면 지우지 마ì‹ì‹œì˜¤!" -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%luê°œ ì—…ê·¸ë ˆì´ë“œ, %luê°œ 새로 설치, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%luê°œ 다시 설치, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%luê°œ ì—…ê·¸ë ˆì´ë“œ, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%luê°œ ì œê±° ë° %luê°œ ì—…ê·¸ë ˆì´ë“œ 안 함.\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu개를 ì™„ì „ížˆ 설치하지 못했거나 지움.\n" @@ -1458,7 +1483,7 @@ msgstr "%lu개를 ì™„ì „ížˆ 설치하지 못했거나 지움.\n" #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "[Y/n]" @@ -1466,91 +1491,91 @@ msgstr "[Y/n]" #. 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:702 +#: apt-private/private-output.cc:708 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:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "Y" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "ì •ê·œì‹ ì»´íŒŒì¼ ì˜¤ë¥˜ - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "ì˜ì¡´ì„±ì„ 바로잡는 중입니다..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " 실패." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "ì˜ì¡´ì„±ì„ ë°”ë¡œìž¡ì„ ìˆ˜ 없습니다" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "ì—…ê·¸ë ˆì´ë“œ ì§‘í•©ì„ ìµœì†Œí™”í• ìˆ˜ 없습니다" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " 완료" -#: apt-private/private-cachefile.cc:102 +#: 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:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "ì˜ì¡´ì„±ì´ ë§žì§€ 않습니다. -f ì˜µì…˜ì„ ì‚¬ìš©í•´ ë³´ì‹ì‹œì˜¤." -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "update ëª…ë ¹ì€ ì¸ìˆ˜ë¥¼ 받지 않습니다" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "ì—…ê·¸ë ˆì´ë“œë¥¼ 계산하는 중입니다... " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "ë‚´ë¶€ 오류, AllUpgrade í”„ë¡œê·¸ëž¨ì´ ë¬´ì–¸ê°€ë¥¼ ë§ê°€ëœ¨ë ¸ìŠµë‹ˆë‹¤" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "완료" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1562,43 +1587,43 @@ msgstr "" " ë˜ ìž ê¸ˆ ê¸°ëŠ¥ì„ ì‚¬ìš©í•˜ì§€ 않는 ìƒíƒœì´ë¯€ë¡œ, 현재 ìƒí™©ì— ì˜ì¡´í•˜ì§€\n" " 않ë„ë¡ í•˜ì‹ì‹œì˜¤!" -#: apt-private/private-sources.cc:45 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format msgid "Failed to parse %s. Edit again? " msgstr "%s 파ì¼ì˜ ì´ë¦„ì„ %s(으)로 ë°”ê¾¸ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: apt-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "기존 " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "받기:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "무시" -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "오류 " -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "ë‚´ë ¤ë°›ê¸° %së°”ì´íЏ, 소요시간 %s (%së°”ì´íЏ/ì´ˆ)\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [작업중]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1611,19 +1636,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "%sì„(를) ì½ì„ 수 없습니다" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "%s ë””ë ‰í† ë¦¬ë¡œ ì´ë™í• 수 없습니다" @@ -1652,11 +1677,11 @@ msgstr "'%s' 미러 파ì¼ì´ 없습니다 " msgid "[Mirror: %s]" msgstr "[미러 사ì´íЏ: %s]" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 msgid "Failed to create IPC pipe to subprocess" msgstr "하위 í”„ë¡œì„¸ìŠ¤ì— ëŒ€í•œ IPC 파ì´í”„를 ë§Œë“œëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: methods/rsh.cc:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "ì—°ê²°ì´ ë„ˆë¬´ 빨리 ëŠì–´ì¡ŒìŠµë‹ˆë‹¤" @@ -1719,40 +1744,45 @@ msgstr "" " -c=? ì„¤ì • 파ì¼ì„ ì½ìŠµë‹ˆë‹¤\n" " -o=? ìž„ì˜ì˜ ì˜µì…˜ì„ ì„¤ì •í•©ë‹ˆë‹¤. 예를 들어 -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "%sì˜ ì •ë³´ë¥¼ ì½ì„ 수 없습니다" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "%sì— ì“¸ 수 없습니다" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "debconf ë²„ì „ì„ ì•Œ 수 없습니다. debconfê°€ 설치ë˜ì—ˆìŠµë‹ˆê¹Œ?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "패키지 확장 목ë¡ì´ 너무 ê¹ë‹ˆë‹¤" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "%s ë””ë ‰í„°ë¦¬ë¥¼ ì²˜ë¦¬í•˜ëŠ”ë° ì˜¤ë¥˜ê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "소스 확장 목ë¡ì´ 너무 ê¹ë‹ˆë‹¤" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "컨í…ì¸ íŒŒì¼ì— í—¤ë”를 ì“°ëŠ”ë° ì˜¤ë¥˜ê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "%s 컨í…ì¸ ë¥¼ ì²˜ë¦¬í•˜ëŠ”ë° ì˜¤ë¥˜ê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1833,26 +1863,26 @@ msgstr "" " -c=? ì´ ì„¤ì • 파ì¼ì„ ì½ìŠµë‹ˆë‹¤\n" " -o=? ìž„ì˜ì˜ ì˜µì…˜ì„ ì„¤ì •í•©ë‹ˆë‹¤" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "맞는 패키지가 없습니다" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "`%s' 패키지 íŒŒì¼ ê·¸ë£¹ì— ëª‡ëª‡ 파ì¼ì´ ë¹ ì¡ŒìŠµë‹ˆë‹¤" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "DBê°€ ë§ê°€ì¡ŒìŠµë‹ˆë‹¤. íŒŒì¼ ì´ë¦„ì„ %s.old로 바꿉니다" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "DBê°€ 오래ë˜ì—ˆìŠµë‹ˆë‹¤. %sì˜ ì—…ê·¸ë ˆì´ë“œë¥¼ 시ë„합니다" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -1860,194 +1890,194 @@ msgstr "" "DB 형ì‹ì´ 잘못ë˜ì—ˆìŠµë‹ˆë‹¤. APT ì˜ˆì „ ë²„ì „ì—서 ì—…ê·¸ë ˆì´ë“œí–ˆë‹¤ë©´, ë°ì´í„°ë² ì´ìŠ¤ë¥¼ " "ì§€ìš°ê³ ë‹¤ì‹œ 만드ì‹ì‹œì˜¤." -#: ftparchive/cachedb.cc:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "DB 파ì¼, %s 파ì¼ì„ ì—´ 수 없습니다: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "%sì˜ ì •ë³´ë¥¼ ì½ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "ì•„ì¹´ì´ë¸Œì— 컨트롤 기ë¡ì´ 없습니다" # FIXME: ì™ ì»¤ì„œ?? -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "커서를 ê°€ì ¸ì˜¬ 수 없습니다" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "ê²½ê³ : %s ë””ë ‰í„°ë¦¬ë¥¼ ì½ì„ 수 없습니다\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "ê²½ê³ : %sì˜ ì •ë³´ë¥¼ ì½ì„ 수 없습니다\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "오류: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "ê²½ê³ : " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "오류: ë‹¤ìŒ íŒŒì¼ì— ì ìš©í•˜ëŠ”ë° ì˜¤ë¥˜ê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤: " -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "%sì˜ ê²½ë¡œë¥¼ ì•Œì•„ë‚´ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "트리ì—서 ì´ë™ì´ 실패했습니다" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "%s 파ì¼ì„ ì—¬ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" # FIXME: ?? -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " ë§í¬ %s [%s] ì—†ì• ê¸°\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "%s 파ì¼ì— readlinkí•˜ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "%s 파ì¼ì„ ì§€ìš°ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** %s 파ì¼ì„ %sì— ë§í¬í•˜ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " DeLink 한계값 %së°”ì´íŠ¸ì— ë„달했습니다.\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "ì•„ì¹´ì´ë¸Œì— 패키지 필드가 없습니다" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %sì—는 override í•ëª©ì´ ì—†ìŠµë‹ˆë‹¤\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s 관리ìžê°€ %s입니다 (%s 아님)\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr " %sì—는 source override í•ëª©ì´ ì—†ìŠµë‹ˆë‹¤\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr " %sì—는 binary override í•ëª©ì´ ì—†ìŠµë‹ˆë‹¤\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - 메모리를 í• ë‹¹í•˜ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "%s ì—´ 수 없습니다" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "override %sì˜ %lu번 줄 #1ì´ ìž˜ëª»ë˜ì—ˆìŠµë‹ˆë‹¤" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "%s override 파ì¼ì„ ì½ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, fuzzy, c-format msgid "Malformed override %s line %llu #1" msgstr "override %sì˜ %lu번 줄 #1ì´ ìž˜ëª»ë˜ì—ˆìŠµë‹ˆë‹¤" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, fuzzy, c-format msgid "Malformed override %s line %llu #2" msgstr "override %sì˜ %lu번 줄 #2ê°€ 잘못ë˜ì—ˆìŠµë‹ˆë‹¤" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, fuzzy, c-format msgid "Malformed override %s line %llu #3" msgstr "override %sì˜ %lu번 줄 #3ì´ ìž˜ëª»ë˜ì—ˆìŠµë‹ˆë‹¤" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "'%s' ì••ì¶• ì•Œê³ ë¦¬ì¦˜ì„ ì•Œ 수 없습니다" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "ì••ì¶•ëœ ì¶œë ¥ë¬¼ %sì—는 ì••ì¶• 세트가 필요합니다" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "FILE*를 ë§Œë“œëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "forkí•˜ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "ì••ì¶• 하위 프로세스" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "ë‚´ë¶€ 오류, %s ë§Œë“œëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "하위 프로세스/파ì¼ì— ìž…ì¶œë ¥í•˜ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "MD5를 계산하는 ë™ì•ˆ ì½ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "%sì˜ ë§í¬ë¥¼ í•´ì œí•˜ëŠ”ë° ë¬¸ì œê°€ 있습니다" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "%s 파ì¼ì˜ ì´ë¦„ì„ %s(으)로 ë°”ê¾¸ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -2101,157 +2131,157 @@ msgstr "" " -c=? ì´ ì„¤ì • 파ì¼ì„ ì½ìŠµë‹ˆë‹¤\n" " -o=? ìž„ì˜ì˜ ì˜µì…˜ì„ ì„¤ì •í•©ë‹ˆë‹¤. 예를 들어 -o dir::cache=/tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "파ì´í”„ 만들기가 실패했습니다" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "gzip ì‹¤í–‰ì´ ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "ì•„ì¹´ì´ë¸Œê°€ ì†ìƒë˜ì—ˆìŠµë‹ˆë‹¤" -#: apt-inst/contrib/extracttar.cc:201 +#: apt-inst/contrib/extracttar.cc:203 msgid "Tar checksum failed, archive corrupted" msgstr "tar ì²´í¬ì„¬ 실패, ì•„ì¹´ì´ë¸Œê°€ ì†ìƒë˜ì—ˆìŠµë‹ˆë‹¤" -#: apt-inst/contrib/extracttar.cc:306 +#: apt-inst/contrib/extracttar.cc:308 #, c-format msgid "Unknown TAR header type %u, member %s" msgstr "알 수 없는 TAR í—¤ë” íƒ€ìž… %u, 멤버 %s" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "ì•„ì¹´ì´ë¸Œ ì„œëª…ì´ í‹€ë ¸ìŠµë‹ˆë‹¤" -#: apt-inst/contrib/arfile.cc:82 +#: apt-inst/contrib/arfile.cc:84 msgid "Error reading archive member header" msgstr "ì•„ì¹´ì´ë¸Œ 멤버 í—¤ë”를 ì½ëŠ”ë° ì˜¤ë¥˜ê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤" -#: apt-inst/contrib/arfile.cc:94 +#: apt-inst/contrib/arfile.cc:96 #, c-format msgid "Invalid archive member header %s" msgstr "ì•„ì¹´ì´ë¸Œ 멤버 í—¤ë” %sì´(ê°€) 잘못ë˜ì—ˆìŠµë‹ˆë‹¤" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "ì•„ì¹´ì´ë¸Œ 멤버 í—¤ë”ê°€ 잘못ë˜ì—ˆìŠµë‹ˆë‹¤" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "ì•„ì¹´ì´ë¸Œ 길ì´ê°€ 너무 짧습니다" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "ì•„ì¹´ì´ë¸Œ í—¤ë”를 ì½ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: apt-inst/filelist.cc:382 +#: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" msgstr "DropNodeê°€ ì•„ì§ ì—°ê²°ë˜ì–´ 있는 ë…¸ë“œì— ëŒ€í•´ 호출ë˜ì—ˆìŠµë‹ˆë‹¤" -#: apt-inst/filelist.cc:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "해시 í•ëª©ì„ ì°¾ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "diversionì„ í• ë‹¹í•˜ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "AddDiversionì—서 ë‚´ë¶€ 오류" -#: apt-inst/filelist.cc:479 +#: 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:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "ì „í™˜ëœ íŒŒì¼ì„ ë‘ ë²ˆ 추가합니다 (%s -> %s)" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "%s/%s ì„¤ì • 파ì¼ì´ 중복ë˜ì—ˆìŠµë‹ˆë‹¤" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: 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:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "%s 파ì¼ì„ ë‹«ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: 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:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "%sì„(를) ë‘ ë²ˆ ì´ìƒ 풀었습니다" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "%s ë””ë ‰í„°ë¦¬ê°€ ì „í™˜ë˜ì—ˆìŠµë‹ˆë‹¤" -#: apt-inst/extract.cc:145 +#: 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:155 apt-inst/extract.cc:299 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 msgid "The diversion path is too long" msgstr "ì „í™˜í•˜ëŠ” 경로가 너무 ê¹ë‹ˆë‹¤" -#: apt-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "%s ë””ë ‰í„°ë¦¬ë¥¼ ë””ë ‰í„°ë¦¬ê°€ 아닌 파ì¼ë¡œ ë®ì–´ì“°ë ¤ê³ 합니다" -#: apt-inst/extract.cc:282 +#: apt-inst/extract.cc:289 msgid "Failed to locate node in its hash bucket" msgstr "해시 버킷ì—서 노드를 ì°¾ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: apt-inst/extract.cc:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "경로가 너무 ê¹ë‹ˆë‹¤" -#: apt-inst/extract.cc:414 +#: apt-inst/extract.cc:421 #, c-format msgid "Overwrite package match with no version for %s" msgstr "ë®ì–´ 쓰는 패키지가 %s íŒ¨í‚¤ì§€ì˜ ì–´ë–¤ ë²„ì „ê³¼ë„ ë§žì§€ 않습니다" -#: apt-inst/extract.cc:431 +#: 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:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "%sì˜ ì •ë³´ë¥¼ ì½ì„ 수 없습니다" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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:124 +#: apt-inst/deb/debfile.cc:132 #, c-format msgid "Internal error, could not locate member %s" msgstr "ë‚´ë¶€ 오류, %s 멤버를 ì°¾ì„ ìˆ˜ 없습니다" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "control 파ì¼ì„ íŒŒì‹±í• ìˆ˜ 없습니다" @@ -2309,483 +2339,488 @@ msgstr "" "mmap í¬ê¸°ë¥¼ 늘릴 수 없습니다. ìžë™ìœ¼ë¡œ 늘리는 ê¸°ëŠ¥ì„ ì‚¬ìš©ìžê°€ 금지했습니다." #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "%liì¼ %li시간 %lië¶„ %liì´ˆ" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "%li시간 %lië¶„ %liì´ˆ" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "%lië¶„ %liì´ˆ" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "%liì´ˆ" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "ì„ íƒí•œ %sì´(ê°€) 없습니다" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "ì´ íƒ€ìž… 줄임ë§ì„ 알 수 없습니다: '%c'" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "ì„¤ì • íŒŒì¼ %s 파ì¼ì„ 여는 중입니다" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "문법 오류 %s:%u: 블ëŸì´ ì´ë¦„으로 시작하지 않습니다." -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "문법 오류 %s:%u: íƒœê·¸ì˜ í˜•ì‹ì´ 잘못ë˜ì—ˆìŠµë‹ˆë‹¤" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "문법 오류 %s:%u: ê°’ ë’¤ì— ì“°ë ˆê¸° ë°ì´í„°ê°€ ë” ìžˆìŠµë‹ˆë‹¤" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "문법 오류 %s:%u: 지시어는 맨 위 단계ì—서만 쓸 수 있습니다" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "문법 오류 %s:%u: includeê°€ 너무 ë§Žì´ ê²¹ì³ ìžˆìŠµë‹ˆë‹¤" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "문법 오류 %s:%u: 여기서 includeë©ë‹ˆë‹¤" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "문법 오류 %s:%u: ì§€ì›í•˜ì§€ 않는 지시어 '%s'" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-pkg/contrib/configuration.cc:900 #, c-format msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "문법 오류 %s:%u: clear 지시어는 ì¸ìˆ˜ë¡œ option 트리를 ì§€ì •í•´ì•¼ 합니다" -#: apt-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "문법 오류 %s:%u: 파ì¼ì˜ ëì— ì“°ë ˆê¸° ë°ì´í„°ê°€ ë” ìžˆìŠµë‹ˆë‹¤" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... 오류!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... 완료" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s... 완료" -#: apt-pkg/contrib/cmndline.cc:116 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format msgid "Command line option '%c' [from %s] is not known." msgstr "ëª…ë ¹í–‰ 옵션 '%c' ì˜µì…˜ì„ [%sì—서] 알 수 없습니다." -#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format msgid "Command line option %s is not boolean" msgstr "ëª…ë ¹í–‰ 옵션 '%s' ì˜µì…˜ì€ ë¶ˆë¦¬ì–¸ì´ ì•„ë‹™ë‹ˆë‹¤" -#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "%s 옵션ì—는 ì¸ìˆ˜ê°€ 필요합니다." -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "%s 옵션: ì„¤ì • í•목 ì§€ì •ì€ =<ê°’> 형태여야 합니다." -#: apt-pkg/contrib/cmndline.cc:273 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format msgid "Option %s requires an integer argument, not '%s'" msgstr "%s 옵션ì—는 ì •ìˆ˜ ì¸ìˆ˜ê°€ 필요합니다. '%s'ì´(ê°€) 아닙니다" -#: apt-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "'%s' ì˜µì…˜ì´ ë„ˆë¬´ ê¹ë‹ˆë‹¤" -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "%s 센스를 ì´í•´í• 수 없습니다. ì°¸ 아니면 거짓으로 í•´ ë³´ì‹ì‹œì˜¤." -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "ìž˜ëª»ëœ ìž‘ì—… %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format msgid "Unable to stat the mount point %s" msgstr "마운트 위치 %sì˜ ì •ë³´ë¥¼ ì½ì„ 수 없습니다" -#: apt-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "CD-ROMì˜ ì •ë³´ë¥¼ ì½ì„ 수 없습니다" -#: apt-pkg/contrib/fileutl.cc:95 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "%s gzip 파ì¼ì„ ë‹«ëŠ”ë° ë¬¸ì œê°€ 있습니다" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "ì½ê¸° ì „ìš© ìž ê¸ˆ íŒŒì¼ %sì— ëŒ€í•´ ìž ê¸ˆì„ ì‚¬ìš©í•˜ì§€ 않습니다" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "ìž ê¸ˆ íŒŒì¼ %s 파ì¼ì„ ì—´ 수 없습니다" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "NFS로 ë§ˆìš´íŠ¸ëœ ìž ê¸ˆ íŒŒì¼ %sì— ëŒ€í•´ ìž ê¸ˆì„ ì‚¬ìš©í•˜ì§€ 않습니다" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "%s ìž ê¸ˆ 파ì¼ì„ ì–»ì„ ìˆ˜ 없습니다" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "하위 프로세스 %s 프로세스가 세그멘테ì´ì…˜ 오류를 받았습니다." -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, c-format msgid "Sub-process %s received signal %u." msgstr "하위 프로세스 %s 프로세스가 %u번 시그ë„ì„ ë°›ì•˜ìŠµë‹ˆë‹¤." -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 apt-pkg/contrib/gpgv.cc:239 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "하위 프로세스 %s 프로세스가 오류 코드(%u)를 리턴했습니다" -#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "하위 프로세스 %s 프로세스가 예ìƒì¹˜ 못하게 ë났습니다" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "%s gzip 파ì¼ì„ ë‹«ëŠ”ë° ë¬¸ì œê°€ 있습니다" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "%s 파ì¼ì„ ì—´ 수 없습니다" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, c-format msgid "Could not open file descriptor %d" msgstr "%d íŒŒì¼ ë””ìŠ¤í¬ë¦½í„°ë¥¼ ì—´ 수 없습니다" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "하위 프로세스 IPC를 ë§Œë“œëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "ë‹¤ìŒ ì••ì¶• í”„ë¡œê·¸ëž¨ì„ ì‹¤í–‰í•˜ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤: " -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, fuzzy, c-format msgid "read, still have %llu to read but none left" msgstr "%luë§Œí¼ ë” ì½ì–´ì•¼ 하지만 ë” ì´ìƒ ì½ì„ ë°ì´í„°ê°€ 없습니다" -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, fuzzy, c-format msgid "write, still have %llu to write but couldn't" msgstr "%luë§Œí¼ ë” ì¨ì•¼ 하지만 ë” ì´ìƒ 쓸 수 없습니다" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, c-format msgid "Problem closing the file %s" msgstr "%s 파ì¼ì„ ë‹«ëŠ”ë° ë¬¸ì œê°€ 있습니다" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, c-format msgid "Problem renaming the file %s to %s" msgstr "%s 파ì¼ì„ %s(으)로 ì´ë¦„ì„ ë°”ê¾¸ëŠ”ë° ë¬¸ì œê°€ 있습니다" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, c-format msgid "Problem unlinking the file %s" msgstr "%s 파ì¼ì„ ì‚ì œí•˜ëŠ”ë° ë¬¸ì œê°€ 있습니다" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "파ì¼ì„ ë™ê¸°í™”í•˜ëŠ”ë° ë¬¸ì œê°€ 있습니다" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "ì´ë¦„ 바꾸기가 실패했습니다. %s (%s -> %s)." + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, c-format msgid "No keyring installed in %s." msgstr "%sì— í‚¤ 모ìŒì„ 설치하지 않았습니다." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "패키지 ìºì‹œê°€ 비어 있습니다" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "패키지 ìºì‹œ 파ì¼ì´ ì†ìƒë˜ì—ˆìŠµë‹ˆë‹¤" -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "패키지 ìºì‹œ 파ì¼ì´ 호환ë˜ì§€ 않는 ë²„ì „ìž…ë‹ˆë‹¤" -#: apt-pkg/pkgcache.cc:162 +#: apt-pkg/pkgcache.cc:169 #, fuzzy msgid "The package cache file is corrupted, it is too small" msgstr "패키지 ìºì‹œ 파ì¼ì´ ì†ìƒë˜ì—ˆìŠµë‹ˆë‹¤" -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "ì´ APT는 '%s' ë²„ì „ ì‹œìŠ¤í…œì„ ì§€ì›í•˜ì§€ 않습니다" -#: apt-pkg/pkgcache.cc:172 +#: apt-pkg/pkgcache.cc:179 msgid "The package cache was built for a different architecture" msgstr "패키지 ìºì‹œê°€ 다른 아키í…ì³ìš©ìž…니다." -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "ì˜ì¡´" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "미리ì˜ì¡´" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "ì œì•ˆ" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "추천" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "ì¶©ëŒ" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "대체" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "없앰" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "ë§ê°€ëœ¨ë¦¼" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "í–¥ìƒ" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "중요" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "필수" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "표준" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "옵션" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "별ë„" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "ì˜ì¡´ì„± 트리를 만드는 중입니다" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "후보 ë²„ì „" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "ì˜ì¡´ì„± 만들기" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 msgid "Reading state information" msgstr "ìƒíƒœ ì •ë³´ë¥¼ ì½ëŠ” 중입니다" -#: apt-pkg/depcache.cc:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "ìƒíƒœíŒŒì¼ %s ì—¬ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: apt-pkg/depcache.cc:250 +#: apt-pkg/depcache.cc:256 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "임시 ìƒíƒœíŒŒì¼ %s ì“°ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: apt-pkg/tagfile.cc:138 +#: apt-pkg/tagfile.cc:140 #, c-format msgid "Unable to parse package file %s (1)" msgstr "패키지 íŒŒì¼ %s 파ì¼ì„ íŒŒì‹±í• ìˆ˜ 없습니다 (1)" -#: apt-pkg/tagfile.cc:235 +#: apt-pkg/tagfile.cc:237 #, c-format msgid "Unable to parse package file %s (2)" msgstr "패키지 íŒŒì¼ %s 파ì¼ì„ íŒŒì‹±í• ìˆ˜ 없습니다 (2)" -#: apt-pkg/sourcelist.cc:118 +#: 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-pkg/sourcelist.cc:161 +#: apt-pkg/sourcelist.cc:170 #, c-format msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "소스 리스트 %2$sì˜ %1$lu번 ì¤„ì´ ìž˜ëª»ë˜ì—ˆìŠµë‹ˆë‹¤ ([option] 파싱 불가)" -#: apt-pkg/sourcelist.cc:164 +#: 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-pkg/sourcelist.cc:175 +#: 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-pkg/sourcelist.cc:181 +#: 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-pkg/sourcelist.cc:184 +#: 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-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "소스 리스트 %2$sì˜ %1$lu번 ì¤„ì´ ìž˜ëª»ë˜ì—ˆìŠµë‹ˆë‹¤ (URI)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "소스 리스트 %2$sì˜ %1$lu번 ì¤„ì´ ìž˜ëª»ë˜ì—ˆìŠµë‹ˆë‹¤ (dist)" -#: apt-pkg/sourcelist.cc:202 +#: apt-pkg/sourcelist.cc:211 #, c-format msgid "Malformed line %lu in source list %s (URI parse)" msgstr "소스 리스트 %2$sì˜ %1$lu번 ì¤„ì´ ìž˜ëª»ë˜ì—ˆìŠµë‹ˆë‹¤ (URI 파싱)" -#: apt-pkg/sourcelist.cc:208 +#: apt-pkg/sourcelist.cc:217 #, c-format msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "소스 리스트 %2$sì˜ %1$lu번 ì¤„ì´ ìž˜ëª»ë˜ì—ˆìŠµë‹ˆë‹¤ (ì ˆëŒ€ dist)" -#: apt-pkg/sourcelist.cc:215 +#: apt-pkg/sourcelist.cc:224 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" msgstr "소스 리스트 %2$sì˜ %1$lu번 ì¤„ì´ ìž˜ëª»ë˜ì—ˆìŠµë‹ˆë‹¤ (dist 파싱)" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "%s 파ì¼ì„ 여는 중입니다" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "소스 리스트 %2$sì˜ %1$u번 ì¤„ì´ ë„ˆë¬´ ê¹ë‹ˆë‹¤." -#: apt-pkg/sourcelist.cc:362 +#: apt-pkg/sourcelist.cc:371 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "소스 리스트 %2$sì˜ %1$u번 ì¤„ì´ ìž˜ëª»ë˜ì—ˆìŠµë‹ˆë‹¤ (타입)" -#: apt-pkg/sourcelist.cc:366 +#: 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' íƒ€ìž…ì„ ì•Œ 수 없습니다" -#: apt-pkg/sourcelist.cc:407 +#: apt-pkg/sourcelist.cc:416 #, fuzzy, c-format msgid "Type '%s' is not known on stanza %u in source list %s" msgstr "소스 ëª©ë¡ %3$sì˜ %2$u번 ì¤„ì˜ '%1$s' íƒ€ìž…ì„ ì•Œ 수 없습니다" -#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2794,12 +2829,12 @@ msgstr "" "'%s'ì— ëŒ€í•´ 즉시 ì„¤ì •ì„ í• ìˆ˜ 없습니다. ìžì„¸í•œ ì„¤ëª…ì€ man 5 apt.conf 페ì´ì§€ì—" "서 APT::Immediate-Configure í•ëª©ì„ ë³´ì‹ì‹œì˜¤. (%d)" -#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "'%s' 파ì¼ì„ ì—´ 수 없습니다" -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2810,19 +2845,19 @@ msgstr "" "ìž ê¹ ì œê±°í•´ì•¼ 합니다. ì´ íŒ¨í‚¤ì§€ë¥¼ ì œê±°í•˜ëŠ” ê±´ 좋지 않지만, ì •ë§ ì§€ìš°ë ¤ë©´ " "APT::Force-LoopBreak ì˜µì…˜ì„ ì¼œì‹ì‹œì˜¤." -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "ì¸ë±ìФ íŒŒì¼ íƒ€ìž… '%s' íƒ€ìž…ì€ ì§€ì›í•˜ì§€ 않습니다" -#: apt-pkg/algorithms.cc:266 +#: 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:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2830,214 +2865,209 @@ msgstr "" "오류, pkgProblemResolver::Resolveê°€ ë§ê°€ì¡ŒìŠµë‹ˆë‹¤. ê³ ì • íŒ¨í‚¤ì§€ë•Œë¬¸ì— ë°œìƒí• 수" "ë„ ìžˆìŠµë‹ˆë‹¤." -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "ë¬¸ì œë¥¼ ë°”ë¡œìž¡ì„ ìˆ˜ 없습니다. ë§ê°€ì§„ ê³ ì • 패키지가 있습니다." -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, c-format msgid "List directory %spartial is missing." msgstr "ëª©ë¡ ë””ë ‰í„°ë¦¬ %spartialì´ ë¹ ì¡ŒìŠµë‹ˆë‹¤." -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, c-format msgid "Archives directory %spartial is missing." msgstr "ì•„ì¹´ì´ë¸Œ ë””ë ‰í„°ë¦¬ %spartialì´ ë¹ ì¡ŒìŠµë‹ˆë‹¤." -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, c-format msgid "Unable to lock directory %s" msgstr "%s ë””ë ‰í„°ë¦¬ë¥¼ ìž ê¸€ 수 없습니다" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "íŒŒì¼ ë°›ì•„ì˜¤ëŠ” 중: %2$li 중 %1$li (%3$s 남았ìŒ)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "íŒŒì¼ ë°›ì•„ì˜¤ëŠ” 중: %2$li 중 %1$li" -#: apt-pkg/acquire-worker.cc:113 +#: apt-pkg/acquire-worker.cc:116 #, c-format msgid "The method driver %s could not be found." msgstr "설치 방법 드ë¼ì´ë²„ %sì„(를) ì°¾ì„ ìˆ˜ 없습니다." -#: apt-pkg/acquire-worker.cc:115 +#: apt-pkg/acquire-worker.cc:118 #, fuzzy, c-format msgid "Is the package %s installed?" msgstr "'dpkg-dev' 패키지가 설치ë˜ì—ˆëŠ”ì§€ë¥¼ 확ì¸í•˜ì‹ì‹œì˜¤.\n" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "설치 방법 %sì´(ê°€) 올바르게 시작하지 않았습니다" -#: apt-pkg/acquire-worker.cc:452 +#: apt-pkg/acquire-worker.cc:455 #, c-format msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "" "'%2$s' 드ë¼ì´ë¸Œì— '%1$s'(으)로 í‘œê¸°ëœ ë””ìŠ¤í¬ë¥¼ ë„£ê³ Enter를 누르ì‹ì‹œì˜¤." -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "'%s' 패키지 ì‹œìŠ¤í…œì„ ì§€ì›í•˜ì§€ 않습니다" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "올바른 패키지 시스템 íƒ€ìž…ì„ ì•Œì•„ë‚¼ 수 없습니다" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "%sì˜ ì •ë³´ë¥¼ ì½ì„ 수 없습니다." -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "sources.listì— '소스' URI를 ì¨ ë„£ì–´ì•¼ 합니다" -#: apt-pkg/cachefile.cc:87 +#: apt-pkg/cachefile.cc:94 msgid "The package lists or status file could not be parsed or opened." msgstr "패키지 목ë¡ì´ë‚˜ ìƒíƒœ 파ì¼ì„ íŒŒì‹±í• ìˆ˜ 없거나 ì—´ 수 없습니다." -#: apt-pkg/cachefile.cc:91 +#: 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:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "소스 목ë¡ì„ ì½ì„ 수 없습니다." -#: apt-pkg/policy.cc:75 +#: 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 "" -#: apt-pkg/policy.cc:414 +#: 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:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "í•€ 타입 %sì´(ê°€) 무엇ì¸ì§€ ì´í•´í• 수 없습니다" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "í•€ì— ìš°ì„ ìˆœìœ„(í˜¹ì€ 0)를 ì§€ì •í•˜ì§€ 않았습니다" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 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:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: 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)" -#: apt-pkg/pkgcachegen.cc:251 +#: apt-pkg/pkgcachegen.cc:257 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "우와, ì´ APTê°€ ì²˜ë¦¬í• ìˆ˜ 있는 패키지 ì´ë¦„ 개수를 넘어갔습니다." -#: apt-pkg/pkgcachegen.cc:254 +#: apt-pkg/pkgcachegen.cc:260 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "우와, ì´ APTê°€ ì²˜ë¦¬í• ìˆ˜ 있는 ë²„ì „ 개수를 넘어갔습니다." -#: apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:263 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "우와, ì´ APTê°€ ì²˜ë¦¬í• ìˆ˜ 있는 설명 개수를 넘어갔습니다." -#: apt-pkg/pkgcachegen.cc:260 +#: apt-pkg/pkgcachegen.cc:266 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "우와, ì´ APTê°€ ì²˜ë¦¬í• ìˆ˜ 있는 ì˜ì¡´ì„± 개수를 넘어갔습니다." -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:576 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "íŒŒì¼ ì˜ì¡´ì„±ì„ 처리하는 ë°, %s %s 패키지가 없습니다" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "소스 패키지 ëª©ë¡ %sì˜ ì •ë³´ë¥¼ ì½ì„ 수 없습니다" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "파ì¼ì—서 ì œê³µí•˜ëŠ” ê²ƒì„ ëª¨ìœ¼ëŠ” 중입니다" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 msgid "IO Error saving source cache" msgstr "소스 ìºì‹œë¥¼ ì €ìž¥í•˜ëŠ”ë° ìž…ì¶œë ¥ 오류가 ë°œìƒí–ˆìŠµë‹ˆë‹¤" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "ì´ë¦„ 바꾸기가 실패했습니다. %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "해시 í•©ì´ ë§žì§€ 않습니다" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "í¬ê¸°ê°€ ë§žì§€ 않습니다" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "ìž˜ëª»ëœ ìž‘ì—… %s" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, 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:1586 +#: apt-pkg/acquire-item.cc:1595 #, fuzzy, c-format msgid "Unable to find hash sum for '%s' in Release file" msgstr "Release íŒŒì¼ %s 파ì¼ì„ íŒŒì‹±í• ìˆ˜ 없습니다" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "ë‹¤ìŒ í‚¤ IDì˜ ê³µê°œí‚¤ê°€ 없습니다:\n" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " "repository will not be applied." msgstr "" -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "ë°°í¬íŒ ì¶©ëŒ: %s (예ìƒê°’ %s, ì‹¤ì œê°’ %s)" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3047,12 +3077,12 @@ msgstr "" "ì˜ˆì „ì˜ ì¸ë±ìФ 파ì¼ì„ 사용합니다. GPG 오류: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "GPG 오류: %s: %s" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3061,90 +3091,86 @@ msgstr "" "%s íŒ¨í‚¤ì§€ì˜ íŒŒì¼ì„ ì°¾ì„ ìˆ˜ 없습니다. 수ë™ìœ¼ë¡œ ì´ íŒ¨í‚¤ì§€ë¥¼ ê³ ì³ì•¼ í• ìˆ˜ë„ ìžˆìŠµ" "니다. (아키í…ì³ê°€ ë¹ ì¡Œê¸° 때문입니다)" -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" "패키지 ì¸ë±ìФ 파ì¼ì´ ì†ìƒë˜ì—ˆìŠµë‹ˆë‹¤. %s íŒ¨í‚¤ì§€ì— Filename: 필드가 없습니다." -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, c-format msgid "Unable to parse Release file %s" msgstr "Release íŒŒì¼ %s 파ì¼ì„ íŒŒì‹±í• ìˆ˜ 없습니다" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, c-format msgid "No sections in Release file %s" msgstr "Release íŒŒì¼ %sì— ì„¹ì…˜ì´ ì—†ìŠµë‹ˆë‹¤" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "Release íŒŒì¼ %sì— Hash í•ëª©ì´ ì—†ìŠµë‹ˆë‹¤" -#: apt-pkg/indexrecords.cc:125 +#: apt-pkg/indexrecords.cc:130 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Release íŒŒì¼ %sì— 'Valid-Until' í•ëª©ì´ ìž˜ëª»ë˜ì—ˆìŠµë‹ˆë‹¤" -#: apt-pkg/indexrecords.cc:144 +#: apt-pkg/indexrecords.cc:149 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Release íŒŒì¼ %sì— 'Date' í•ëª©ì´ ìž˜ëª»ë˜ì—ˆìŠµë‹ˆë‹¤" -#: apt-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "ë²¤ë” ë¸”ëŸ %sì˜ í•‘ê±°í”„ë¦°íŠ¸ê°€ 없습니다" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "CD-ROM 마운트 위치 %s 사용\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "CD-ROM 마운트 í•´ì œí•˜ëŠ” 중입니다\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "CD-ROMì„ ë§ˆìš´íŠ¸ í•´ì œí•˜ëŠ” 중입니다...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "디스í¬ë¥¼ 기다리는 중입니다...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "CD-ROM 마운트하는 중입니다...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " -msgstr "알아보는 중입니다.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " +msgstr "알아보는 중입니다... " -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "ì €ìž¥ëœ ë ˆì´ë¸”: %s\n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "CD-ROMì„ ë§ˆìš´íŠ¸ í•´ì œí•˜ëŠ” 중입니다...\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" msgstr "디스í¬ì—서 ìƒ‰ì¸ íŒŒì¼ì„ 찾는 중입니다...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " "%zu signatures\n" msgstr "패키지 ìƒ‰ì¸ %zuê°œ, 소스 ìƒ‰ì¸ %zuê°œ, ë²ˆì— ìƒ‰ì¸ %zuê°œ, 서명 %zuê°œ 발견\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" @@ -3152,16 +3178,16 @@ msgstr "" "패키지 파ì¼ì´ í•˜ë‚˜ë„ ì—†ìŠµë‹ˆë‹¤. ì•„ë§ˆë„ ë°ë¹„안 디스í¬ê°€ 아니거나 아키í…처가 잘" "ëª»ëœ ê²ƒ 같습니다?" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "ë ˆì´ë¸” 발견: %s \n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "올바른 ì´ë¦„ì´ ì•„ë‹™ë‹ˆë‹¤. 다시 시ë„하ì‹ì‹œì˜¤.\n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3170,34 +3196,34 @@ msgstr "" "ì´ ë””ìŠ¤í¬ëŠ” 다ìŒê³¼ 같습니다: \n" "'%s'\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "패키지 목ë¡ì„ 복사하는 중입니다..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "새 소스 리스트를 쓰는 중입니다\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "ì´ ë””ìŠ¤í¬ì˜ 소스 리스트 í•ëª©ì€ ë‹¤ìŒê³¼ 같습니다:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: 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:777 +#: 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:780 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "ë ˆì½”ë“œ %i개를 íŒŒì¼ %i개가 ë§žì§€ ì•Šì€ ìƒíƒœë¡œ ì¼ìŠµë‹ˆë‹¤\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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" @@ -3212,37 +3238,37 @@ msgstr "다ìŒì˜ ì¸ì¦ 기ë¡ì„ ì°¾ì„ ìˆ˜ 없습니다: %s" msgid "Hash mismatch for: %s" msgstr "다ìŒì˜ 해시가 다릅니다: %s" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "%2$s íŒ¨í‚¤ì§€ì˜ '%1$s' 릴리즈를 ì°¾ì„ ìˆ˜ 없습니다" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "%2$s íŒ¨í‚¤ì§€ì˜ '%1$s' ë²„ì „ì„ ì°¾ì„ ìˆ˜ 없습니다" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, c-format msgid "Couldn't find task '%s'" msgstr "'%s' ìž‘ì—…ì„ ì°¾ì„ ìˆ˜ 없습니다" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, c-format msgid "Couldn't find any package by regex '%s'" msgstr "'%s' ì •ê·œì‹ì— 해당하는 패키지가 없습니다" -#: apt-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "'%s' ì •ê·œì‹ì— 해당하는 패키지가 없습니다" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, c-format msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "'%s' 패키지는 ê°€ìƒ íŒ¨í‚¤ì§€ì´ë¯€ë¡œ ë²„ì „ì„ ì„ íƒí• 수 없습니다" -#: apt-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " @@ -3251,51 +3277,51 @@ msgstr "" "'%s' 패키지ì—서 설치한 ë²„ì „ì´ë‚˜ 후보 ë²„ì „ì„ ì„ íƒí• 수 없습니다. 둘 다 아닙니" "다." -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, c-format msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "'%s' 패키지ì—서 ìµœì‹ ë²„ì „ì„ ì„ íƒí• 수 없습니다. ê°€ìƒ íŒ¨í‚¤ì§€ìž…ë‹ˆë‹¤." -#: apt-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "'%s' 패키지ì—서 후보 ë²„ì „ì„ ì„ íƒí• 수 없습니다. 후보가 없습니다." -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "'%s' 패키지ì—서 설치한 ë²„ì „ì„ ì„ íƒí• 수 없습니다. 설치하지 않았습니다." -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "dpkg 실행하는 중입니다" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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 " @@ -3304,118 +3330,118 @@ msgstr "" "ì¼ë¶€ ì¸ë±ìФ 파ì¼ì„ ë‹¤ìš´ë¡œë“œí•˜ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤. 해당 파ì¼ì„ 무시하거나 과거" "ì˜ ë²„ì „ì„ ëŒ€ì‹ ì‚¬ìš©í•©ë‹ˆë‹¤." -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "%s 설치하는 중입니다" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "%s ì„¤ì • 중입니다" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "%s 패키지를 지우는 중입니다" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format msgid "Completely removing %s" msgstr "%s 패키지를 ì™„ì „ížˆ 지우는 중입니다" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "%s 사ë¼ì§ 발견했습니다" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "설치 후 트리거 %s 실행하는 중입니다" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "ë””ë ‰í„°ë¦¬ '%s' 없습니다." -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format msgid "Could not open file '%s'" msgstr "'%s' 파ì¼ì„ ì—´ 수 없습니다" -#: apt-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "%s 준비 중입니다" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "%s 푸는 중입니다" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "%s 패키지를 ì„¤ì •í• ì¤€ë¹„í•˜ëŠ” 중입니다" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "%s 설치" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "%s 패키지를 지울 준비하는 중입니다" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "%s 지움" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "%s 패키지를 ì™„ì „ížˆ 지울 준비를 하는 중입니다" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "%s 패키지를 ì™„ì „ížˆ ì§€ì› ìŠµë‹ˆë‹¤" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "%sì— ì“¸ 수 없습니다" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 msgid "No apport report written because MaxReports is reached already" msgstr "ë³´ê³ ì„œë¥¼ 작성하지 않습니다. ì´ë¯¸ MaxReports ê°’ì— ë„달했습니다." #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "ì˜ì¡´ì„± ë¬¸ì œ - ì„¤ì •í•˜ì§€ ì•Šì€ ìƒíƒœë¡œ 남겨둡니다" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3423,20 +3449,20 @@ msgstr "" "ë³´ê³ ì„œë¥¼ 작성하지 않습니다. 오류 ë©”ì‹œì§€ì— ë”°ë¥´ë©´ ì˜ˆì „ì˜ ì‹¤íŒ¨ ë•Œë¬¸ì— ìƒê¸´ 부수" "ì ì¸ ì˜¤ë¥˜ìž…ë‹ˆë‹¤." -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" "ë³´ê³ ì„œë¥¼ 작성하지 않습니다. 오류 ë©”ì‹œì§€ì— ë”°ë¥´ë©´ 디스í¬ê°€ ê°€ë“ ì°¼ìŠµë‹ˆë‹¤." -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "ë³´ê³ ì„œë¥¼ 작성하지 않습니다. 오류 ë©”ì‹œì§€ì— ë”°ë¥´ë©´ 메모리가 부족합니다." -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 #, fuzzy msgid "" "No apport report written because the error message indicates an issue on the " @@ -3444,13 +3470,13 @@ msgid "" msgstr "" "ë³´ê³ ì„œë¥¼ 작성하지 않습니다. 오류 ë©”ì‹œì§€ì— ë”°ë¥´ë©´ 디스í¬ê°€ ê°€ë“ ì°¼ìŠµë‹ˆë‹¤." -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" "ë³´ê³ ì„œë¥¼ 작성하지 않습니다. 오류 ë©”ì‹œì§€ì— ë”°ë¥´ë©´ dpkg ìž…ì¶œë ¥ 오류입니다." -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " @@ -3459,21 +3485,21 @@ msgstr "" "관리 ë””ë ‰í„°ë¦¬ë¥¼ (%s) ìž ê¸€ 수 없습니다. 다른 프로세스가 ì‚¬ìš©í•˜ê³ ìžˆì§€ 않습니" "까?" -#: apt-pkg/deb/debsystem.cc:87 +#: apt-pkg/deb/debsystem.cc:94 #, c-format msgid "Unable to lock the administration directory (%s), are you root?" msgstr "관리 ë””ë ‰í„°ë¦¬ë¥¼ (%s) ìž ê¸€ 수 없습니다. 루트 사용ìžê°€ 맞습니까?" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: 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-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "ìž ê¸°ì§€ 않ìŒ" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-ku\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2008-05-08 12:48+0200\n" "Last-Translator: Erdal Ronahi <erdal dot ronahi at gmail dot com>\n" "Language-Team: ku <ubuntu-l10n-kur@lists.ubuntu.com>\n" @@ -19,156 +19,157 @@ msgstr "" "X-Generator: KAider 0.1\n" "Plural-Forms: nplurals=2; plural= n != 1;\n" -#: cmdline/apt-cache.cc:140 +#: cmdline/apt-cache.cc:149 #, c-format msgid "Package %s version %s has an unmet dep:\n" msgstr "" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "Navên paketan bi giÅŸtî :" -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 #, fuzzy msgid "Total package structures: " msgstr "Navên paketan bi giÅŸtî :" -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " Pakêtên normal:" -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " Pakêtên farazî yên safî:" -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " Pakêta tenê ya farazî:" -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " Pakêtên hevbeÅŸ yên farazî:" -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " Winda: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "Guhertoyên vekirî yên giÅŸtî:" -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 #, fuzzy msgid "Total distinct descriptions: " msgstr "Guhertoyên vekirî yên giÅŸtî:" -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "Bindestên giÅŸtî:" -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "" -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 #, fuzzy msgid "Total Desc/File relations: " msgstr "Guhertoyên vekirî yên giÅŸtî:" -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "" -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "" -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "" -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "Cihê giÅŸtî yê sist:" -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "Cihê giÅŸtî yê veqetandî: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: 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." -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 #, fuzzy msgid "You must give at least one search pattern" msgstr "Pêwist e tu mînakekê bidî" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "Pakêt nehate dîtin %s" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "Pelgehên Pakêt:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 msgid "Cache is out of sync, can't x-ref a package file" msgstr "" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(nehate dîtin)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " Sazkirî: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " Berendam: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(ne tiÅŸtek)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " Destika pakêtê:" #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " Tabloya guhertoyan:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: 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" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] showpkg pkg1 [pkg2 ...]\n" @@ -205,29 +206,29 @@ msgid "" "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" msgstr "" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: 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'" -#: cmdline/apt-cdrom.cc:104 +#: 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" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, fuzzy, c-format msgid "Failed to mount '%s' to '%s'" msgstr "Anîna %s %s biserneket\n" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "" @@ -263,65 +264,65 @@ msgstr "" " -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:244 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format msgid "Can not find a package for architecture '%s'" msgstr "Nikarî pakêta %s bibîne" -#: cmdline/apt-get.cc:326 +#: 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" -#: cmdline/apt-get.cc:329 +#: 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:366 +#: cmdline/apt-get.cc:367 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "" -#: cmdline/apt-get.cc:422 +#: cmdline/apt-get.cc:423 #, c-format msgid "Can not find version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "Nikarî pakêta %s bibîne" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "lê %s dê were sazkirin" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: 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" -#: cmdline/apt-get.cc:468 cmdline/apt-mark.cc:116 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 msgid "Internal error, problem resolver broke stuff" msgstr "" -#: cmdline/apt-get.cc:573 cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 msgid "Unable to lock the download directory" msgstr "Pelrêça daxistinê nayê quflekirin" -#: cmdline/apt-get.cc:725 +#: cmdline/apt-get.cc:726 msgid "Must specify at least one package to fetch source for" msgstr "" -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "" @@ -341,151 +342,151 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "Nikarî cihê vala li %s tesbît bike" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "Cihê vala li %s têre nake" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "Çavkanîna %s bîne\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "Anîna çend arşîvan biserneket." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " "packages" msgstr "" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " "package %s can't satisfy version requirements" msgstr "" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " "version" msgstr "" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "Girêdan bi %s (%s) re pêk tê" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -531,53 +532,74 @@ msgid "" " This APT has Super Cow Powers.\n" msgstr "" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +msgid "Must specify at least one pair url/filename" +msgstr "" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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 "lê ne sazkirî ye" -#: cmdline/apt-mark.cc:63 +#: 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:65 +#: 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:230 +#: 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:232 +#: 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:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: 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:264 cmdline/apt-mark.cc:316 +#: 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:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" "\n" @@ -604,7 +626,7 @@ msgid "" "See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -650,173 +672,175 @@ msgstr "" msgid "Disk not found." msgstr "Dîsk nehate dîtin." -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "Pel nehate dîtin" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: 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:82 methods/gzip.cc:113 methods/rred.cc:606 +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 msgid "Failed to set modification time" msgstr "" -#: methods/file.cc:47 +#: 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:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "Têketin" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "Nikare navê herêmî tesbît bike" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format msgid "The server refused the connection and said: %s" msgstr "" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." msgstr "" -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 msgid "Connection timeout" msgstr "" -#: methods/ftp.cc:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "Çewiya xwendinê" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "" -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "Çewtiya nivîsînê" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 msgid "Could not create a socket" msgstr "" -#: methods/ftp.cc:707 +#: methods/ftp.cc:712 msgid "Could not connect data socket, connection timed out" msgstr "" -#: methods/ftp.cc:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "Serneket" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "" -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, fuzzy, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Danegira %s nehate vekirin: %s" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "Lêpirsîn" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 #, fuzzy msgid "Unable to invoke " msgstr "%s venebû" @@ -853,7 +877,7 @@ 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:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "Bi %s re tê girêdan" @@ -883,183 +907,183 @@ msgstr "" msgid "Unable to connect to %s:%s:" msgstr "Nikare bi %s re girêdan pêk bîne %s:" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "" -#: methods/gpgv.cc:172 +#: methods/gpgv.cc:174 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" #. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "Di xebitandina gpgv de çewtiya nenas" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: 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:229 +#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" msgstr "" -#: methods/gzip.cc:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "Dema li pelî dihate nivîsîn çewtî" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "Dema li pelî dihate nivîsîn çewtî" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "Hilbijartin neserketî" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "" -#: methods/http.cc:656 +#: methods/http.cc:648 #, fuzzy msgid "Error writing to output file" msgstr "Dema li dosyeya naverokê joreagahî dihate nivîsîn çewtî" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "" -#: methods/server.cc:139 methods/server.cc:146 +#: methods/server.cc:134 methods/server.cc:141 msgid "The HTTP server sent an invalid reply header" msgstr "" -#: methods/server.cc:176 +#: methods/server.cc:171 msgid "The HTTP server sent an invalid Content-Length header" msgstr "" -#: methods/server.cc:199 +#: methods/server.cc:194 msgid "The HTTP server sent an invalid Content-Range header" msgstr "" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "Girêdan pêk nehatiye" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "Çewtiya hundirîn" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "" -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Anîna %sB/%sB ji arşîvan pêwist e.\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:171 +#: apt-private/private-install.cc:159 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Anîna %sB ji arşîvan pêwist e.\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:178 +#: apt-private/private-install.cc:166 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:183 +#: apt-private/private-install.cc:171 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "Cihê vala li %s têre nake." -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Erê, wusa bike!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1067,37 +1091,37 @@ msgid "" " ?] " msgstr "" -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "Betal." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "Dixwazî bidomînî?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "Daxistina çend pelan biserneket" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" msgstr "" -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "" -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "Sazkirin tê betalkirin." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1107,15 +1131,15 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1131,15 +1155,15 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 msgid "The following information may help to resolve the situation:" msgstr "" -#: apt-private/private-install.cc:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1149,7 +1173,7 @@ msgid_plural "" msgstr[0] "Ev pakêtên NÛ dê werine sazkirin:" msgstr[1] "Ev pakêtên NÛ dê werine sazkirin:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1157,23 +1181,23 @@ msgid_plural "" msgstr[0] "Ev pakêtên NÛ dê werine sazkirin:" msgstr[1] "Ev pakêtên NÛ dê werine sazkirin:" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-install.cc:624 +#: apt-private/private-install.cc:612 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" -#: apt-private/private-install.cc:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." msgstr "" -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1181,171 +1205,171 @@ msgid "" "or been moved out of Incoming." msgstr "" -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "Paketên ÅŸikestî" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "Paketên tên pêşniyaz kirin:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "Paketên tên tawsiyê kirin:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Anîna %s %s biserneket\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [Sazkirî]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [Sazkirî]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [Sazkirî]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [Sazkirî]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "lê %s sazkirî ye" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "lê %s dê were sazkirin" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "lê sazkirina wê ne gengaz e" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "lê paketeke farazî ye" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "lê ne sazkirî ye" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "lê dê neyê sazkirin" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " û" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "Ev pakêtên NÛ dê werine sazkirin:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "Ev pakêt dê werine RAKIRIN:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "Ev paket dê werine bilindkirin:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (ji ber %s)" -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 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-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu hatine bilindkirin, %lu nû hatine sazkirin." -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu ji nû ve sazkirî," -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu hatine nizmkirin." -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu werin rakirin û %lu neyên bilindkirin. \n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "" @@ -1354,7 +1378,7 @@ msgstr "" #. 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:696 +#: apt-private/private-output.cc:702 #, fuzzy msgid "[Y/n]" msgstr "[E/n]" @@ -1363,90 +1387,90 @@ msgstr "[E/n]" #. 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:702 +#: apt-private/private-output.cc:708 msgid "[y/N]" msgstr "" #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "E" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "Bindestî tên serrastkirin..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " neserketî." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "Nikare bindestiyan rast kirin" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " Temam" -#: apt-private/private-cachefile.cc:102 +#: apt-private/private-cachefile.cc:108 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "" -#: apt-private/private-cachefile.cc:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "" -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "Bilindkirin tê hesibandin..." -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 msgid "Internal error, Upgrade broke stuff" msgstr "" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "Temam" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1454,43 +1478,43 @@ msgid "" " so don't depend on the relevance to the real current situation!" msgstr "" -#: apt-private/private-sources.cc:45 +#: 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:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "" -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "Anîn:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "" -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Çewt" -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, fuzzy, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "%s hatine anîn..." -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [Dixebite]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1500,19 +1524,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "Nikare %s bixwîne" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "Nikarî derbasa %s bike" @@ -1541,11 +1565,11 @@ msgstr "Nikarî pelê %s veke" msgid "[Mirror: %s]" msgstr "" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 msgid "Failed to create IPC pipe to subprocess" msgstr "" -#: methods/rsh.cc:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "Girêdan zû hatiye girtin" @@ -1597,40 +1621,45 @@ msgid "" " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: 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:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "Nivîsandin ji bo %s ne pêkane" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Guhertoya debconf nehate stendin. debconf sazkirî ye?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "Lîsteya dirêjahiya pakêtê zêde dirêj e" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "Di ÅŸixulandina pêrista %s de çewtî" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "Lîsteya dirêjahiya çavkaniyê zêde dirêj e" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "Dema li dosyeya naverokê joreagahî dihate nivîsîn çewtî" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "Dema ÅŸixulandina naveroka %s çewtî" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1672,217 +1701,217 @@ msgid "" " -o=? Set an arbitrary configuration option" msgstr "" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Di koma pelgehên pakêta '%s' de hin pelgeh kêm in" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, 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:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "Danegir kevn e, ji bo bilindkirina %s hewl dide" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 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:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Danegira %s nehate vekirin: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "Tomara kontrola arşîvê tuneye" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: pelrêça %s nayê xwendin\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "" -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "%s ji hev nehate veçirandin" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "%s venebû" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr "" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr "" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "Di arşîvê de qada pakêtê tuneye" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr "" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr "" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr "" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr "" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "%s venebû" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, c-format msgid "Malformed override %s line %llu (%s)" msgstr "" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, c-format msgid "Malformed override %s line %llu #1" msgstr "" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, c-format msgid "Malformed override %s line %llu #2" msgstr "" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, c-format msgid "Malformed override %s line %llu #3" msgstr "" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -1927,160 +1956,160 @@ msgid "" " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 #, fuzzy msgid "Failed to create pipes" msgstr "%s ji hev nehate veçirandin" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "Xebitandina gzip biserneket" -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "" -#: apt-inst/contrib/extracttar.cc:201 +#: apt-inst/contrib/extracttar.cc:203 msgid "Tar checksum failed, archive corrupted" msgstr "" -#: apt-inst/contrib/extracttar.cc:306 +#: apt-inst/contrib/extracttar.cc:308 #, c-format msgid "Unknown TAR header type %u, member %s" msgstr "" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "" -#: apt-inst/contrib/arfile.cc:82 +#: apt-inst/contrib/arfile.cc:84 msgid "Error reading archive member header" msgstr "" -#: apt-inst/contrib/arfile.cc:94 +#: apt-inst/contrib/arfile.cc:96 #, c-format msgid "Invalid archive member header %s" msgstr "" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "Arşîv zêde kin e" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "" -#: apt-inst/filelist.cc:382 +#: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" msgstr "" -#: apt-inst/filelist.cc:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 #, fuzzy msgid "Failed to allocate diversion" msgstr "%s venebû" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "" -#: apt-inst/filelist.cc:479 +#: apt-inst/filelist.cc:477 #, c-format msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" msgstr "" -#: apt-inst/filelist.cc:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format msgid "Failed to write file %s" msgstr "Nivîsîna pelê %s biserneket" -#: apt-inst/dirstream.cc:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "Girtina pelê %s biserneket" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: 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:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "" -#: apt-inst/extract.cc:145 +#: apt-inst/extract.cc:152 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "" -#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 +#: 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:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "" -#: apt-inst/extract.cc:282 +#: apt-inst/extract.cc:289 msgid "Failed to locate node in its hash bucket" msgstr "" -#: apt-inst/extract.cc:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "Rêç zêde dirêj e" -#: apt-inst/extract.cc:414 +#: apt-inst/extract.cc:421 #, c-format msgid "Overwrite package match with no version for %s" msgstr "" -#: apt-inst/extract.cc:431 +#: apt-inst/extract.cc:438 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "" -#: apt-inst/extract.cc:491 +#: apt-inst/extract.cc:498 #, fuzzy, c-format msgid "Unable to stat %s" msgstr "Nivîsandin ji bo %s ne pêkane" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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 "" -#: apt-inst/deb/debfile.cc:124 +#: apt-inst/deb/debfile.cc:132 #, c-format msgid "Internal error, could not locate member %s" msgstr "" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "" @@ -2138,493 +2167,498 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "Hilbijartina %s nehatiye dîtin" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "" -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-pkg/contrib/configuration.cc:900 #, c-format msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -#: apt-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... Çewtî!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... Çêbû" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s... Çêbû" -#: apt-pkg/contrib/cmndline.cc:116 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format msgid "Command line option '%c' [from %s] is not known." msgstr "" -#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format msgid "Command line option %s is not boolean" msgstr "" -#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "" -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "" -#: apt-pkg/contrib/cmndline.cc:273 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format msgid "Option %s requires an integer argument, not '%s'" msgstr "" -#: apt-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "Opsiyona '%s' zêde dirêj e" -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "" -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:56 +#: apt-pkg/contrib/cdromutl.cc:65 #, fuzzy, c-format msgid "Unable to stat the mount point %s" msgstr "Nivîsandin ji bo %s ne pêkane" -#: apt-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "" -#: apt-pkg/contrib/fileutl.cc:95 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Di girtina pelî de pirsgirêkek derket" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "Nikarî qufila pelê %s veke" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "" -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, c-format msgid "Sub-process %s received signal %u." msgstr "" -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 apt-pkg/contrib/gpgv.cc:239 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "" -#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Di girtina pelî de pirsgirêkek derket" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "Nikarî pelê %s veke" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "Nikarî pelê %s veke" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "" -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, c-format msgid "read, still have %llu to read but none left" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, c-format msgid "write, still have %llu to write but couldn't" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "Di girtina pelî de pirsgirêkek derket" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "Di girtina pelî de pirsgirêkek derket" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "Di girtina pelî de pirsgirêkek derket" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "nav guherandin biserneket, %s (%s -> %s)" + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, fuzzy, c-format msgid "No keyring installed in %s." msgstr "Sazkirin tê betalkirin." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "" -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "" -#: apt-pkg/pkgcache.cc:162 +#: apt-pkg/pkgcache.cc:169 msgid "The package cache file is corrupted, it is too small" msgstr "" -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "" -#: apt-pkg/pkgcache.cc:172 +#: apt-pkg/pkgcache.cc:179 msgid "The package cache was built for a different architecture" msgstr "" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "Bindest" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "PêşBindest" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "Pêşniyaz dike" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "Tawsiye dike" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "Nakokî" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "Dikeve ÅŸunve" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "Kevin dike" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "DiÅŸkîne" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "girîng" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "pêwist" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "standard" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "opsiyonel" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "ekstra" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "Guhartoyên berendam" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 msgid "Reading state information" msgstr "" -#: apt-pkg/depcache.cc:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "Vekirina StateFile %s biserneket" -#: apt-pkg/depcache.cc:250 +#: apt-pkg/depcache.cc:256 #, fuzzy, c-format msgid "Failed to write temporary StateFile %s" msgstr "%s ji hev nehate veçirandin" -#: apt-pkg/tagfile.cc:138 +#: apt-pkg/tagfile.cc:140 #, fuzzy, c-format msgid "Unable to parse package file %s (1)" msgstr "Pakêt nehate dîtin %s" -#: apt-pkg/tagfile.cc:235 +#: apt-pkg/tagfile.cc:237 #, fuzzy, c-format msgid "Unable to parse package file %s (2)" msgstr "Pakêt nehate dîtin %s" -#: apt-pkg/sourcelist.cc:118 +#: apt-pkg/sourcelist.cc:127 #, c-format msgid "Malformed stanza %u in source list %s (URI parse)" msgstr "" -#: apt-pkg/sourcelist.cc:161 +#: apt-pkg/sourcelist.cc:170 #, c-format msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" -#: apt-pkg/sourcelist.cc:164 +#: apt-pkg/sourcelist.cc:173 #, c-format msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "" -#: apt-pkg/sourcelist.cc:175 +#: apt-pkg/sourcelist.cc:184 #, c-format msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" msgstr "" -#: apt-pkg/sourcelist.cc:181 +#: apt-pkg/sourcelist.cc:190 #, c-format msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "" -#: apt-pkg/sourcelist.cc:184 +#: apt-pkg/sourcelist.cc:193 #, c-format msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -#: apt-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "" -#: apt-pkg/sourcelist.cc:202 +#: apt-pkg/sourcelist.cc:211 #, c-format msgid "Malformed line %lu in source list %s (URI parse)" msgstr "" -#: apt-pkg/sourcelist.cc:208 +#: apt-pkg/sourcelist.cc:217 #, c-format msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "" -#: apt-pkg/sourcelist.cc:215 +#: apt-pkg/sourcelist.cc:224 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" msgstr "" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "%s tê vekirin" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "" -#: apt-pkg/sourcelist.cc:362 +#: apt-pkg/sourcelist.cc:371 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "" -#: apt-pkg/sourcelist.cc:366 +#: apt-pkg/sourcelist.cc:375 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "" -#: apt-pkg/sourcelist.cc:407 +#: apt-pkg/sourcelist.cc:416 #, c-format msgid "Type '%s' is not known on stanza %u in source list %s" msgstr "" -#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, 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:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "Nikarî pelê %s veke" -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2632,229 +2666,224 @@ msgid "" "you really want to do it, activate the APT::Force-LoopBreak option." msgstr "" -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "" -#: apt-pkg/algorithms.cc:266 +#: 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-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." msgstr "" -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "" -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, fuzzy, c-format msgid "List directory %spartial is missing." msgstr "Peldanka '%s' kêm e" -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, fuzzy, c-format msgid "Archives directory %spartial is missing." msgstr "Peldanka '%s' kêm e" -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, fuzzy, c-format msgid "Unable to lock directory %s" msgstr "W: pelrêça %s nayê xwendin\n" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "Pel tê anîn %li ji %li" -#: apt-pkg/acquire-worker.cc:113 +#: apt-pkg/acquire-worker.cc:116 #, c-format msgid "The method driver %s could not be found." msgstr "" -#: apt-pkg/acquire-worker.cc:115 +#: apt-pkg/acquire-worker.cc:118 #, c-format msgid "Is the package %s installed?" msgstr "" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "" -#: apt-pkg/acquire-worker.cc:452 +#: 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/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, fuzzy, c-format msgid "Unable to stat %s." msgstr "Nivîsandin ji bo %s ne pêkane" -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "" -#: apt-pkg/cachefile.cc:87 +#: apt-pkg/cachefile.cc:94 msgid "The package lists or status file could not be parsed or opened." msgstr "" -#: apt-pkg/cachefile.cc:91 +#: apt-pkg/cachefile.cc:98 msgid "You may want to run apt-get update to correct these problems" msgstr "" -#: apt-pkg/cachefile.cc:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "" -#: apt-pkg/policy.cc:75 +#: 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 "" -#: apt-pkg/policy.cc:414 +#: apt-pkg/policy.cc:422 #, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -#: apt-pkg/policy.cc:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 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:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: 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:251 +#: apt-pkg/pkgcachegen.cc:257 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:254 +#: apt-pkg/pkgcachegen.cc:260 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:263 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:260 +#: apt-pkg/pkgcachegen.cc:266 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:576 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 msgid "IO Error saving source cache" msgstr "" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "nav guherandin biserneket, %s (%s -> %s)" - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "Hash Sum li hev nayên" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "Mezinahî li hev nayên" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 msgid "Invalid file format" msgstr "" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, 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:1586 +#: apt-pkg/acquire-item.cc:1595 #, 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:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " "repository will not be applied." msgstr "" -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -2862,116 +2891,112 @@ msgid "" msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, 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 "" -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, fuzzy, c-format msgid "Unable to parse Release file %s" msgstr "Pakêt nehate dîtin %s" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, c-format msgid "No sections in Release file %s" msgstr "" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "" -#: apt-pkg/indexrecords.cc:125 +#: apt-pkg/indexrecords.cc:130 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "" -#: apt-pkg/indexrecords.cc:144 +#: apt-pkg/indexrecords.cc:149 #, fuzzy, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Pakêt nehate dîtin %s" -#: apt-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" msgstr "" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " msgstr "" -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" msgstr "" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " "%zu signatures\n" msgstr "" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "Etîketa '%s' hatiye dîtin\n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -2980,34 +3005,34 @@ msgstr "" "Navê dîskê: \n" "'%s'\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "Lîsteyên pakêtan tên jibergirtin..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format msgid "Wrote %i records.\n" msgstr "%i tomar hatin nivîsîn.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:777 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:780 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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 "" @@ -3022,254 +3047,254 @@ msgstr "" msgid "Hash mismatch for: %s" msgstr "Hash Sum li hev nayên" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, fuzzy, c-format msgid "Couldn't find task '%s'" msgstr "Peywira %s nehate dîtin" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, fuzzy, c-format msgid "Couldn't find any package by regex '%s'" msgstr "Nikarî pakêta %s bibîne" -#: apt-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "Nikarî pakêta %s bibîne" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, c-format msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " "neither of them" msgstr "" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, c-format msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, fuzzy, c-format msgid "Installing %s" msgstr "%s hatine sazkirin" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "%s tê mîhengkirin" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "%s tê rakirin" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, fuzzy, c-format msgid "Completely removing %s" msgstr "%s bi tevahî hatine rakirin" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "Peldanka '%s' kêm e" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, fuzzy, c-format msgid "Could not open file '%s'" msgstr "Nikarî pelê %s veke" -#: apt-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "%s tê amadekirin" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "%s tê derxistin" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "Mîhengkirina %s tê amadekirin" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "%s hatine sazkirin" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "Rakirina %s tê amadekirin" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "%s hatine rakirin" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "Bi tevahî rakirina %s tê amadekirin" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "%s bi tevahî hatine rakirin" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "Nivîsandin ji bo %s ne pêkane" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 msgid "" "No apport report written because the error message indicates an issue on the " "local system" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " "it?" msgstr "" -#: apt-pkg/deb/debsystem.cc:87 +#: 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" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " msgstr "" -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2008-08-02 01:47-0400\n" "Last-Translator: Gintautas Miliauskas <gintas@akl.lt>\n" "Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n" @@ -18,155 +18,156 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2008-08-02 05:04+0000\n" -#: cmdline/apt-cache.cc:140 +#: 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" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 #, fuzzy msgid "Total package names: " msgstr "Visi paketų pavadinimai: " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 #, fuzzy msgid "Total package structures: " msgstr "Visi paketų pavadinimai: " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " NormalÅ«s paketai: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " VirtualÅ«s paketai: " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " Pavieniai virtualÅ«s paketai: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " MiÅ¡rÅ«s virtualÅ«s paketai: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " TrÅ«ksta: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "Viso skirtingų versijų: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 #, fuzzy msgid "Total distinct descriptions: " msgstr "Viso skirtingų apraÅ¡ymų: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "Viso priklausomybių: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "Viso versijų/failų santykių yra: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "Viso apraÅ¡ymų/failų santykių yra: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "" -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "" -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "" -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "" -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "" -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: 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 "" -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 msgid "You must give at least one search pattern" msgstr "" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "Nepavyko rasti paketo %s" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "Paketų failai:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 msgid "Cache is out of sync, can't x-ref a package file" msgstr "" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "SuriÅ¡ti paketai:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(nerasta)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " Ä®diegta: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " Kandidatas: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(nÄ—ra)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " Paketo susiejimai: " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " Versijų lentelÄ—:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] showpkg pkg1 [pkg2 ...]\n" @@ -203,28 +204,28 @@ msgid "" "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" msgstr "" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: cmdline/apt-cdrom.cc:76 msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" -#: cmdline/apt-cdrom.cc:104 +#: 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:141 +#: cmdline/apt-cdrom.cc:139 #, fuzzy, c-format msgid "Failed to mount '%s' to '%s'" msgstr "Nepavyko pervadinti %s į %s" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Pakartokite Å¡itÄ… procesÄ… su kitais CD savo rinkinyje." @@ -260,65 +261,65 @@ msgstr "" " -c=? Nuskaityti pateiktÄ… konfigÅ«racijos failÄ…\n" " -o=? Nurodyti tam tikrÄ… konfigÅ«racijos parametrÄ…, pvz -o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:244 +#: 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:326 +#: 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:329 +#: 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:366 +#: cmdline/apt-get.cc:367 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "" -#: cmdline/apt-get.cc:422 +#: cmdline/apt-get.cc:423 #, c-format msgid "Can not find version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "Nepavyko rasti paketo %s" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "%s nustatytas kaip įdiegtas rankiniu bÅ«du\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: 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:468 cmdline/apt-mark.cc:116 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: 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:573 cmdline/apt-get.cc:610 +#: 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:725 +#: 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:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "Nepavyko surasti iÅ¡eities teksto paketo, skirto %s" @@ -338,95 +339,95 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Praleidžiama jau parsiųsta byla „%s“\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "Nepavyko nustatyti %s laisvos vietos" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "Neturite pakankamai laisvos vietos %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Reikia parsiųsti %sB/%sB iÅ¡eities archyvų.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Reikia parsiųsti %sB iÅ¡eities archyvų.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "ParsiunÄiamas archyvas %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "Nepavyko gauti kai kurių arhcyvų." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "Pavyko parsiųsti tik parsiuntimo režime" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Jau iÅ¡pakuotas archyvas %s praleidžiama\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Nepavyko įvykdyti iÅ¡pakavimo komandos „%s“\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Patikrinkite, ar įdiegtas „dpkg-dev“ paketas.\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "Nepavyko įvykdyti paketo kompiliavimo komandos „%s“\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "Klaida procese-palikuonyje" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 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:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Nepavyko gauti kÅ«rimo-priklausomybių informacijos paketui %s" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -434,7 +435,7 @@ msgid "" msgstr "" "%s priklausomybÄ— %s paketui negali bÅ«ti patenkinama, nes paketas %s nerastas" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -442,14 +443,14 @@ msgid "" msgstr "" "%s priklausomybÄ— %s paketui negali bÅ«ti patenkinama, nes paketas %s nerastas" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Nepavyko patenkinti %s priklausomybÄ—s %s paketui: Ä®diegtas paketas %s yra " "per naujas" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -458,7 +459,7 @@ msgstr "" "%s priklausomybÄ— %s paketui negali bÅ«ti patenkinama, nes nÄ—ra tinkamos " "versijos %s paketo" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -466,30 +467,30 @@ msgid "" msgstr "" "%s priklausomybÄ— %s paketui negali bÅ«ti patenkinama, nes paketas %s nerastas" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Nepavyko patenkinti %s priklausomybÄ—s %s: %s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "Jungiamasi prie %s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "Palaikomi moduliai:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -535,53 +536,75 @@ msgid "" " This APT has Super Cow Powers.\n" msgstr "" -#: cmdline/apt-mark.cc:57 +#: 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:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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 "bet jis nÄ—ra įdiegtas" -#: cmdline/apt-mark.cc:63 +#: 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:65 +#: 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" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format msgid "%s was already set on hold.\n" msgstr "%s ir taip jau yra naujausias.\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, fuzzy, c-format msgid "%s was already not hold.\n" msgstr "%s ir taip jau yra naujausias.\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, fuzzy, c-format msgid "%s set on hold.\n" msgstr "%s nustatytas kaip įdiegtas rankiniu bÅ«du\n" -#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, fuzzy, c-format msgid "Canceled hold on %s.\n" msgstr "Nepavyko atverti %s" -#: cmdline/apt-mark.cc:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" "\n" @@ -608,7 +631,7 @@ msgid "" "See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -654,172 +677,174 @@ msgstr "Nepavyko atjungti CD-ROM įrenginyje %s, galbÅ«t jis vis dar naudojamas. msgid "Disk not found." msgstr "Diskas nerastas." -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "Failas nerastas" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 msgid "Failed to stat" msgstr "" -#: methods/copy.cc:82 methods/gzip.cc:113 methods/rred.cc:606 +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 msgid "Failed to set modification time" msgstr "" -#: methods/file.cc:47 +#: 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:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "Jungiamasi" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format msgid "The server refused the connection and said: %s" msgstr "" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." msgstr "" -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: 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:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "Skaitymo klaida" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "" -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "RaÅ¡ymo klaida" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 msgid "Could not create a socket" msgstr "" -#: methods/ftp.cc:707 +#: methods/ftp.cc:712 msgid "Could not connect data socket, connection timed out" msgstr "" -#: methods/ftp.cc:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "Nepavyko" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "" -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Nepavyko atsiųsti failo, serveris atsakÄ— „%s“" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "Užklausti" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "" @@ -855,7 +880,7 @@ msgstr "Nepavyko prisijungti prie %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "Jungiamasi prie %s" @@ -885,181 +910,181 @@ msgstr "" msgid "Unable to connect to %s:%s:" msgstr "Nepavyko prisijungti prie %s %s:" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "" -#: methods/gpgv.cc:172 +#: methods/gpgv.cc:174 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" #. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "Nežinoma klaida kvieÄiant gpgv" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: 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:229 +#: 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:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "Klaida bandant raÅ¡yti į failÄ…" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "Prisijungimo laiko limitas baigÄ—si" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "Laukiama antraÅ¡Äių" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "" -#: methods/server.cc:139 methods/server.cc:146 +#: methods/server.cc:134 methods/server.cc:141 msgid "The HTTP server sent an invalid reply header" msgstr "" -#: methods/server.cc:176 +#: methods/server.cc:171 msgid "The HTTP server sent an invalid Content-Length header" msgstr "" -#: methods/server.cc:199 +#: methods/server.cc:194 msgid "The HTTP server sent an invalid Content-Range header" msgstr "" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "Prisijungti nepavyko" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "VidinÄ— klaida" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "Reikia paÅ¡alinti paketus, taÄiau Å¡alinimas iÅ¡jungtas." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "" -#: apt-private/private-install.cc:159 -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-private/private-install.cc:147 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "Keista... Dydis neatitinka, ParaÅ¡ykite laiÅ¡kÄ… apt@packages.debian.org" #. TRANSLATOR: The required 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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Reikia parsiųsti %sB/%sB archyvų.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:171 +#: apt-private/private-install.cc:159 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Reikia parsiųsti %sB archyvų.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:178 +#: apt-private/private-install.cc:166 #, 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" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:183 +#: apt-private/private-install.cc:171 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Po Å¡ios operacijos bus atlaisvinta %sB disko vietos.\n" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "%s nÄ—ra pakankamai laisvos vietos." -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 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:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Taip, daryk kaip liepiu!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1070,19 +1095,19 @@ msgstr "" "Jei norite tÄ™sti, įveskite frazÄ™ „%s“\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "Nutraukti." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "Ar norite tÄ™sti?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "Nepavyko parsiųsti kai kurių failų" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1090,19 +1115,19 @@ msgstr "" "Nepavyko parsiųsti kai kurių archyvų, pabandykite paleisti „apt-get update“ " "arba pabandykite su parametru --fix-missing?" -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing bei laikmenų apkeitimas nepalaikomas" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "Nepavyko pataisyti dingusių paketų." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "Diegimas nutraukiamas." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1112,15 +1137,15 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1136,15 +1161,15 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 msgid "The following information may help to resolve the situation:" msgstr "Å i informacija gali padÄ—ti iÅ¡sprÄ™sti Å¡iÄ… situacijÄ…:" -#: apt-private/private-install.cc:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1154,7 +1179,7 @@ msgid_plural "" msgstr[0] "Å ie paketai buvo automatiÅ¡kai įdiegti ir daugiau nebÄ—ra reikalingi:" msgstr[1] "Å ie paketai buvo automatiÅ¡kai įdiegti ir daugiau nebÄ—ra reikalingi:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1162,18 +1187,18 @@ msgid_plural "" msgstr[0] "Å ie paketai buvo automatiÅ¡kai įdiegti ir daugiau nebÄ—ra reikalingi:" msgstr[1] "Å ie paketai buvo automatiÅ¡kai įdiegti ir daugiau nebÄ—ra reikalingi:" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 #, fuzzy msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "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:624 +#: apt-private/private-install.cc:612 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "JÅ«s galite norÄ—ti paleisti 'apt-get -f install\" klaidų taisymui:" -#: apt-private/private-install.cc:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1181,7 +1206,7 @@ msgstr "" "Nepatenkintos priklausomybÄ—s. Pabandykite įvykdyti 'apt-get -f install' be " "nurodytų paketų (arba nurodykite iÅ¡eitį)." -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1193,145 +1218,145 @@ msgstr "" "leidimÄ…, kuomet kai kurie paketai dar nebuvo sukurti arba buvo\n" "paÅ¡alinti iÅ¡ \"Incoming\" aplanko." -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "Sugadinti paketai" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "Bus įdiegti Å¡ie papildomi paketai:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "SiÅ«lomi paketai:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "Rekomenduojami paketai:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "DÄ–MESIO: Å ie paketai negali bÅ«ti autentifikuoti!" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "Nepavyko autentikuoti kai kurių paketų" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "Ä®diegti Å¡iuos paketus be patvirtinimo?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Nepavyko parsiųsti %s %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [Ä®diegtas]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [Ä®diegtas]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [Ä®diegtas]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [Ä®diegtas]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "Å ie paketai turi neįdiegtų priklausomybių:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "bet %s yra įdiegtas" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "bet %s bus įdiegtas" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "taÄiau jis negali bÅ«ti įdiegtas" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "bet tai yra virtualus paketas" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "bet jis nÄ—ra įdiegtas" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "bet jis nebus įdiegtas" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " arba" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "Bus įdiegti Å¡ie NAUJI paketai:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "Bus PAÅ ALINTI Å¡ie paketai:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "Å ių paketų atnaujinimas sulaikomas:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "Bus atnaujinti Å¡ie paketai:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "Bus PAKEISTI SENESNIAIS Å¡ie paketai:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "Bus pakeisti Å¡ie sulaikyti paketai:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (dÄ—l %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1339,27 +1364,27 @@ 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:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu atnaujinti, %lu naujai įdiegti, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu įdiegti iÅ¡ naujo, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu pasendinti, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu bus paÅ¡alinta ir %lu neatnaujinta.\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu nepilnai įdiegti ar paÅ¡alinti.\n" @@ -1368,7 +1393,7 @@ msgstr "%lu nepilnai įdiegti ar paÅ¡alinti.\n" #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "[T/n]" @@ -1376,92 +1401,92 @@ msgstr "[T/n]" #. 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:702 +#: apt-private/private-output.cc:708 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:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "T" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "Taisomos priklausomybÄ—s..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " nepavyko." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "Nepavyko patenkinti priklausomybių" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 #, fuzzy msgid "Unable to minimize the upgrade set" msgstr "Nepavyko minimizuoti atnaujinimo rinkinio" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " Ä®vykdyta" -#: apt-private/private-cachefile.cc:102 +#: 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:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "Nepatenkintos priklausomybÄ—s. Bandykit naudoti -f." -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "Atnaujinimo komandai argumentų nereikia" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "SkaiÄiuojami atnaujinimai... " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "VidinÄ— klaida, problemos sprendimas kažkÄ… sugadino" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "Ä®vykdyta" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1469,43 +1494,43 @@ msgid "" " so don't depend on the relevance to the real current situation!" msgstr "" -#: apt-private/private-sources.cc:45 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format msgid "Failed to parse %s. Edit again? " msgstr "Nepavyko pervadinti %s į %s" -#: apt-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "Imamas " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "Gauti:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "Ignoruotas " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Klaida " -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "Parsiųsta %sB iÅ¡ %s (%sB/s)\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [Vykdoma]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1518,19 +1543,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "Nepavyko perskaityti %s" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "Nepavyko pakeisti į %s" @@ -1559,11 +1584,11 @@ msgstr "Nepavyko atverti failo %s" msgid "[Mirror: %s]" msgstr "" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: 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:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "" @@ -1632,40 +1657,45 @@ msgstr "" " -c=? Nuskaityti šį konfigÅ«racijų failÄ…\n" " -o=? Nustatyti savarankiÅ¡kas nuostatas, pvz.: -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Nepavyko sukurti %s" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "Nepavyko įraÅ¡yti į %s" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Nepavyko sužinoti debconf versijos. Ar įdiegtas debconf?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "Paketo plÄ—tinių sÄ…raÅ¡as yra per ilgas" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "Klaida apdorojant aplankÄ… %s" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "Å altinio plÄ—tinys yra per ilgas" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "Klaida įraÅ¡ant antraÅ¡tÄ™ į turinio failÄ…" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "Klaida apdorojant turinį %s" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1751,26 +1781,26 @@ msgstr "" " -c=? Perskaityti šį nuostatų failÄ…\n" " -o=? Nustatyti savarankiÅ¡kÄ… konfigÅ«racijos nuostatÄ…" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "NÄ—ra atitikmenų" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Kai kurių failų nÄ—ra paketų grupÄ—je „%s“" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "Duomenų bazÄ— pažeista, failas pervardintas į %s.old" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "Duomenų bazÄ— yra sena, bandoma atnaujinti %s" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 #, fuzzy msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " @@ -1779,192 +1809,192 @@ 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:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Nepavyko atverti DB failo %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "Nepavyko patikrinti %s" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "Ä®: Nepavyko perskaityti aplanko %s\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "Ä®: Nepavyko patikrinti %s\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "K: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "Ä®: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "K: Klaidos failui " -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "Nepavyko iÅ¡sprÄ™sti %s" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "Judesys medyje nepavyko" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "Nepavyko atverti %s" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr "" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "Nepavyko nuskaityti nuorodos %s" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "Nepavyko atsieti nuorodos %s" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Nepavyko susieti %s su %s" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr "" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "Archyvas neturÄ—jo paketo lauko" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %s neturi perraÅ¡ymo įraÅ¡o\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, 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:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr "" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr "" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - Nepavyko iÅ¡skirti atminties" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "Nepavyko atverti %s" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "NekorektiÅ¡kas perraÅ¡ymas %s eilutÄ—je %lu #1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "Nepavyko nuskaityti perraÅ¡ymo failo %s" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, fuzzy, c-format msgid "Malformed override %s line %llu #1" msgstr "NekorektiÅ¡kas perraÅ¡ymas %s eilutÄ—je %lu #1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, fuzzy, c-format msgid "Malformed override %s line %llu #2" msgstr "NekorektiÅ¡kas perraÅ¡ymas %s eilutÄ—je %lu #2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, fuzzy, c-format msgid "Malformed override %s line %llu #3" msgstr "NekorektiÅ¡kas perraÅ¡ymas %s eilutÄ—je %lu #3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "Nežinomas suspaudimo algoritmas „%s“" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "Suspaustai iÅ¡vesÄiai %s reikia suspaudimo rinkinio" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "Nepavyko sukurti FILE*" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "VidinÄ— klaida, nepavyko sukurti %s" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "Nepavyko Nusk/Ä®raÅ¡ į subprocesÄ…/failÄ…" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "Skaitymo klaida skaiÄiuojant MD5" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "Nepavyko pervadinti %s į %s" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -2019,157 +2049,157 @@ msgstr "" " -c=? Nuskaityti Å¡iÄ… konfigÅ«racijos bylÄ…\n" " -o=? Nurodyti savarankiÅ¡kas nuostatas, pvz.: -o dir::cache=/tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "" -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "Sugadintas archyvas" -#: apt-inst/contrib/extracttar.cc:201 +#: apt-inst/contrib/extracttar.cc:203 msgid "Tar checksum failed, archive corrupted" msgstr "Tar kontrolinÄ— suma klaidinga, archyvas sugadintas" -#: apt-inst/contrib/extracttar.cc:306 +#: 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-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "" -#: apt-inst/contrib/arfile.cc:82 +#: apt-inst/contrib/arfile.cc:84 msgid "Error reading archive member header" msgstr "" -#: apt-inst/contrib/arfile.cc:94 +#: apt-inst/contrib/arfile.cc:96 #, c-format msgid "Invalid archive member header %s" msgstr "" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "Archyvas per trumpas" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "Nepavyko perskaityti archyvo antraÅ¡Äių" -#: apt-inst/filelist.cc:382 +#: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" msgstr "" -#: apt-inst/filelist.cc:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "" -#: apt-inst/filelist.cc:479 +#: apt-inst/filelist.cc:477 #, c-format msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" msgstr "" -#: apt-inst/filelist.cc:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format msgid "Failed to write file %s" msgstr "" -#: apt-inst/dirstream.cc:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: 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:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "" -#: apt-inst/extract.cc:145 +#: apt-inst/extract.cc:152 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "" -#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 msgid "The diversion path is too long" msgstr "" -#: apt-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "" -#: apt-inst/extract.cc:282 +#: apt-inst/extract.cc:289 msgid "Failed to locate node in its hash bucket" msgstr "" -#: apt-inst/extract.cc:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "Kelias per ilgas" -#: apt-inst/extract.cc:414 +#: apt-inst/extract.cc:421 #, c-format msgid "Overwrite package match with no version for %s" msgstr "" -#: apt-inst/extract.cc:431 +#: apt-inst/extract.cc:438 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "" -#: apt-inst/extract.cc:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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 "" -#: apt-inst/deb/debfile.cc:124 +#: apt-inst/deb/debfile.cc:132 #, c-format msgid "Internal error, could not locate member %s" msgstr "VidinÄ— klaida, nepavyko aptikti nario %s" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "" @@ -2227,493 +2257,498 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "" -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-pkg/contrib/configuration.cc:900 #, c-format msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -#: apt-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... Klaida!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... Baigta" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s... Baigta" -#: apt-pkg/contrib/cmndline.cc:116 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format msgid "Command line option '%c' [from %s] is not known." msgstr "" -#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format msgid "Command line option %s is not boolean" msgstr "" -#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: 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-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "" -#: apt-pkg/contrib/cmndline.cc:273 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format msgid "Option %s requires an integer argument, not '%s'" msgstr "" -#: apt-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "" -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "" -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "Klaidingas veiksmas %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format msgid "Unable to stat the mount point %s" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "" -#: apt-pkg/contrib/fileutl.cc:95 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Klaida užveriant failÄ…" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "Nepavyko atverti rakinimo failo %s" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "Nepavyko rezervuoti rakinimo failo %s" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Procesas %s gavo segmentavimo klaidÄ…" -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "Procesas %s gavo segmentavimo klaidÄ…" -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 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-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Procesas %s netikÄ—tai išėjo" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Klaida užveriant failÄ…" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "Nepavyko atverti failo %s" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "Nepavyko atverti failo %s" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "Nepavyko sukurti subproceso IPC" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "Nepavyko paleisti suspaudÄ—jo " -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, c-format msgid "read, still have %llu to read but none left" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, c-format msgid "write, still have %llu to write but couldn't" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "Klaida užveriant failÄ…" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "Klaida sinchronizuojant failÄ…" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "Klaida užveriant failÄ…" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "Klaida sinchronizuojant failÄ…" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "" + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, fuzzy, c-format msgid "No keyring installed in %s." msgstr "Diegimas nutraukiamas." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "" -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "" -#: apt-pkg/pkgcache.cc:162 +#: apt-pkg/pkgcache.cc:169 msgid "The package cache file is corrupted, it is too small" msgstr "" -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "" -#: apt-pkg/pkgcache.cc:172 +#: apt-pkg/pkgcache.cc:179 msgid "The package cache was built for a different architecture" msgstr "" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "Priklauso" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "PrieÅ¡priklauso" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "SiÅ«lo" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "Rekomenduoja" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "Konfliktuoja" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "PakeiÄia" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "PakeiÄia" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "Sugadina" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "Svarbu" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "privaloma" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "standartinis" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "nebÅ«tinas" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "papildomas" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "Konstruojamas priklausomybių medis" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "Galimos versijos" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "Priklausomybių generavimas" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 msgid "Reading state information" msgstr "Skaitoma bÅ«senos informacija" -#: apt-pkg/depcache.cc:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "" -#: apt-pkg/depcache.cc:250 +#: apt-pkg/depcache.cc:256 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "" -#: apt-pkg/tagfile.cc:138 +#: apt-pkg/tagfile.cc:140 #, c-format msgid "Unable to parse package file %s (1)" msgstr "" -#: apt-pkg/tagfile.cc:235 +#: apt-pkg/tagfile.cc:237 #, c-format msgid "Unable to parse package file %s (2)" msgstr "" -#: apt-pkg/sourcelist.cc:118 +#: apt-pkg/sourcelist.cc:127 #, c-format msgid "Malformed stanza %u in source list %s (URI parse)" msgstr "" -#: apt-pkg/sourcelist.cc:161 +#: apt-pkg/sourcelist.cc:170 #, c-format msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" -#: apt-pkg/sourcelist.cc:164 +#: apt-pkg/sourcelist.cc:173 #, c-format msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "" -#: apt-pkg/sourcelist.cc:175 +#: apt-pkg/sourcelist.cc:184 #, c-format msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" msgstr "" -#: apt-pkg/sourcelist.cc:181 +#: apt-pkg/sourcelist.cc:190 #, c-format msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "" -#: apt-pkg/sourcelist.cc:184 +#: apt-pkg/sourcelist.cc:193 #, c-format msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -#: apt-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "" -#: apt-pkg/sourcelist.cc:202 +#: apt-pkg/sourcelist.cc:211 #, c-format msgid "Malformed line %lu in source list %s (URI parse)" msgstr "" -#: apt-pkg/sourcelist.cc:208 +#: apt-pkg/sourcelist.cc:217 #, c-format msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "" -#: apt-pkg/sourcelist.cc:215 +#: apt-pkg/sourcelist.cc:224 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" msgstr "" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "Atveriama %s" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "" -#: apt-pkg/sourcelist.cc:362 +#: apt-pkg/sourcelist.cc:371 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "" -#: apt-pkg/sourcelist.cc:366 +#: apt-pkg/sourcelist.cc:375 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "" -#: apt-pkg/sourcelist.cc:407 +#: apt-pkg/sourcelist.cc:416 #, c-format msgid "Type '%s' is not known on stanza %u in source list %s" msgstr "" -#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, 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:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "Nepavyko atverti failo %s" -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2721,232 +2756,227 @@ msgid "" "you really want to do it, activate the APT::Force-LoopBreak option." msgstr "" -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "" -#: apt-pkg/algorithms.cc:266 +#: 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-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." msgstr "" -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "" -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, fuzzy, c-format msgid "List directory %spartial is missing." msgstr "TrÅ«ksta aplanko „%s“" -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, fuzzy, c-format msgid "Archives directory %spartial is missing." msgstr "TrÅ«ksta aplanko „%s“" -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, fuzzy, c-format msgid "Unable to lock directory %s" msgstr "Nepavyko užrakinti sÄ…raÅ¡o aplanko" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "ParsiunÄiamas %li failas iÅ¡ %li (liko %s)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "ParsiunÄiamas %li failas iÅ¡ %li" -#: apt-pkg/acquire-worker.cc:113 +#: apt-pkg/acquire-worker.cc:116 #, c-format msgid "The method driver %s could not be found." msgstr "" -#: apt-pkg/acquire-worker.cc:115 +#: apt-pkg/acquire-worker.cc:118 #, fuzzy, c-format msgid "Is the package %s installed?" msgstr "Patikrinkite, ar įdiegtas „dpkg-dev“ paketas.\n" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "" -#: apt-pkg/acquire-worker.cc:452 +#: apt-pkg/acquire-worker.cc:455 #, c-format msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "Ä®dÄ—kite diskÄ… „%s“ į įrenginį „%s“ ir paspauskite Enter." -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "" -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "" -#: apt-pkg/cachefile.cc:87 +#: 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:91 +#: 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" -#: apt-pkg/cachefile.cc:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "Nepavyko perskaityti Å¡altinių sÄ…raÅ¡o." -#: apt-pkg/policy.cc:75 +#: 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 "" -#: apt-pkg/policy.cc:414 +#: apt-pkg/policy.cc:422 #, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -#: apt-pkg/policy.cc:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 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:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: 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:251 +#: apt-pkg/pkgcachegen.cc:257 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:254 +#: apt-pkg/pkgcachegen.cc:260 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:263 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:260 +#: apt-pkg/pkgcachegen.cc:266 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:576 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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" -#: apt-pkg/pkgcachegen.cc:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 msgid "IO Error saving source cache" msgstr "" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "" - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "MaiÅ¡os sumos nesutapimas" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "Neatitinka dydžiai" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "Klaidingas veiksmas %s" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, 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:1586 +#: apt-pkg/acquire-item.cc:1595 #, 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:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " "repository will not be applied." msgstr "" -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -2954,116 +2984,112 @@ msgid "" msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "GPG klaida: %s: %s" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, 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 "" -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, fuzzy, c-format msgid "Unable to parse Release file %s" msgstr "Nepavyko atverti DB failo %s: %s" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, fuzzy, c-format msgid "No sections in Release file %s" msgstr "Pastaba: pažymimas %s vietoje %s\n" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "" -#: apt-pkg/indexrecords.cc:125 +#: 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-pkg/indexrecords.cc:144 +#: apt-pkg/indexrecords.cc:149 #, fuzzy, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Nepavyko atverti DB failo %s: %s" -#: apt-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Naudojama CD-ROM prijungimo vieta %s\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "Atjungiamas CD-ROM\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "Atjungiamas CD-ROM...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "Laukiama disko...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "Prijungiamas CD-ROM...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " -msgstr "Identifikuojama.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " +msgstr "Identifikuojama... " -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "Atjungiamas CD-ROM...\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" msgstr "" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " "%zu signatures\n" msgstr "" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "Rasta žymÄ— „%s“\n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3072,34 +3098,34 @@ msgstr "" "Å io disko pavadinimas: \n" "„%s“\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "Kopijuojami paketų sÄ…raÅ¡ai..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "RaÅ¡omas naujas Å¡altinių sÄ…raÅ¡as\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format msgid "Wrote %i records.\n" msgstr "" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:777 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:780 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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 "" @@ -3114,88 +3140,88 @@ msgstr "" msgid "Hash mismatch for: %s" msgstr "MaiÅ¡os sumos nesutapimas" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Nebuvo rastas „%s“ leidimas paketui „%s“" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Nebuvo rasta „%s“ versija paketui „%s“" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, fuzzy, c-format msgid "Couldn't find task '%s'" msgstr "Nepavyko rasti užduoties %s" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, fuzzy, c-format msgid "Couldn't find any package by regex '%s'" msgstr "Nepavyko rasti paketo %s" -#: apt-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "Nepavyko rasti paketo %s" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, c-format msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " "neither of them" msgstr "" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, c-format msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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 " @@ -3204,167 +3230,167 @@ msgstr "" "Kai kurių indeksų failų nepavyko parsiųsti, jie buvo ignoruoti arba vietoje " "jų panaudoti seni." -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, fuzzy, c-format msgid "Installing %s" msgstr "Ä®diegta %s" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: 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:93 apt-pkg/deb/dpkgpm.cc:984 +#: 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:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, fuzzy, c-format msgid "Completely removing %s" msgstr "VisiÅ¡kai paÅ¡alintas %s" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "TrÅ«ksta aplanko „%s“" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: 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-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "RuoÅ¡iamas %s" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "IÅ¡pakuojamas %s" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "RuoÅ¡iamasi konfigÅ«ruoti %s" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "Ä®diegta %s" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "RuoÅ¡iamasi %s paÅ¡alinimui" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "PaÅ¡alintas %s" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "RuoÅ¡iamasi visiÅ¡kai paÅ¡alinti %s" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "VisiÅ¡kai paÅ¡alintas %s" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "Nepavyko įraÅ¡yti į %s" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 msgid "" "No apport report written because the error message indicates an issue on the " "local system" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " "it?" msgstr "" -#: apt-pkg/deb/debsystem.cc:87 +#: 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" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " msgstr "" -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "" @@ -3452,9 +3478,6 @@ msgstr "" #~ msgid "Failed to remove %s" #~ msgstr "Nepavyko paÅ¡alinti %s" -#~ msgid "Unable to create %s" -#~ msgstr "Nepavyko sukurti %s" - #~ msgid "Reading file listing" #~ msgstr "Skaitomas failų sÄ…raÅ¡as" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2008-11-20 23:27+0530\n" "Last-Translator: Sampada <sampadanakhare@gmail.com>\n" "Language-Team: Marathi, janabhaaratii, C-DAC, Mumbai, India " @@ -16,154 +16,155 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: cmdline/apt-cache.cc:140 +#: cmdline/apt-cache.cc:149 #, c-format msgid "Package %s version %s has an unmet dep:\n" msgstr "पॅकेज %s आवृती %s मधà¥à¤¯à¥‡ à¤à¤• अनोळखी डीईपी:आहे\n" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "पॅकेजची सरà¥à¤µ नांवे: " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 #, fuzzy msgid "Total package structures: " msgstr "पॅकेजची सरà¥à¤µ नांवे: " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " सामानà¥à¤¯ पॅकेजेसà¥: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " शà¥à¤§à¥à¤¦ आà¤à¤¾à¤¸à¥€ पॅकेजेसà¥:" -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " à¤à¤•मेव आà¤à¤¾à¤¸à¥€ पॅकेजेसà¥:" -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr "मिशà¥à¤°à¤¿à¤¤ आà¤à¤¾à¤¸à¥€ पॅकेजेसà¥:" -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " हरवलेले/गहाळ: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "à¤à¤•ूण सà¥à¤ªà¤·à¥à¤Ÿ आवृतà¥à¤¯à¤¾: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "à¤à¤•ूण सà¥à¤ªà¤·à¥à¤Ÿ विवरणे: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "à¤à¤•ूण निरà¥à¤à¤°à¤¤à¤¾:" -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "à¤à¤•ूण वà¥à¤¹à¥€à¤ˆà¤†à¤°/संचिका परसà¥à¤ªà¤° संबंध:" -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "à¤à¤•ूण विव/संचिका परसà¥à¤ªà¤° संबंध:" -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "à¤à¤•ूण मॅपींगसॠतरतूद: " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "à¤à¤•ूण à¤à¤•तà¥à¤°à¤¿à¤¤ अकà¥à¤·à¤°à¤¸à¤‚च:" -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "à¤à¤•ूण परावलंबित आवृतà¥à¤¤à¥€ अवकाश:" -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "à¤à¤•ूण दà¥à¤°à¥à¤²à¤•à¥à¤·à¤¿à¤¤ अवकाश:" -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "हिशेबात घेतलेली à¤à¤•ूण अवकाश(जागा):" -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: 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 सिंकà¥à¤°à¥‹à¤¨à¤¾à¤‡à¤œ नाहीत" -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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 "पॅकेजेस सापडले नाहीत" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 #, fuzzy msgid "You must give at least one search pattern" msgstr "तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ फकà¥à¤¤ à¤à¤•च नमà¥à¤¨à¤¾ दà¥à¤¯à¤¾à¤µà¤¾ लागेल" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "पॅकेज %s शोधणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥ आहे" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "पॅकेज संचिका:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 msgid "Cache is out of sync, can't x-ref a package file" msgstr "दृतिका सिंक नाही,पॅकेज संचिका कà¥à¤·-संदरà¥à¤ करता येत नाही" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "à¤à¤•तà¥à¤°à¤¿à¤¤ पॅकेजेस:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(मिळाले नाही)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr "अधिषà¥à¤ ापित केले:" -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr "उमेदवार:" -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(कोणताच नाही)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr "पॅकेज (पिन):" #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr "आवृतà¥à¤¤à¥€ कोषà¥à¤Ÿà¤•:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: 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:1740 +#: cmdline/apt-cache.cc:1749 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -236,29 +237,29 @@ msgstr "" "-o=? à¤à¤–ादा अहेतूक संरचना परà¥à¤¯à¤¾à¤¯ निरà¥à¤§à¤¾à¤°à¤¿à¤¤ करा उदा --o dir::cache=/tmp\n" "अधिक माहितीसाठी apt-cache(8) and apt.conf(5) ची मॅनà¥à¤¯à¥à¤…ल पृषà¥à¤ े पहा \n" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: cmdline/apt-cdrom.cc:76 #, fuzzy msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "या तबकडीला कृपया नाव दà¥à¤¯à¤¾ जसे डेबियन २ à¤à¤²à¤†à¤°à¤à¤² तबकडी १" -#: cmdline/apt-cdrom.cc:104 +#: cmdline/apt-cdrom.cc:91 msgid "Please insert a Disc in the drive and press enter" msgstr "कृपया तबकडी डà¥à¤°à¤¾à¤ˆà¤µà¥à¤¹à¤®à¤§à¥à¤¯à¥‡ ठेवून à¤à¤‚टर दाबा" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, fuzzy, c-format msgid "Failed to mount '%s' to '%s'" msgstr "%s ला पà¥à¤¨à¤°à¥à¤¨à¤¾à¤®à¤¾à¤‚कन %s करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥ " -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "तà¥à¤®à¤šà¥à¤¯à¤¾ संचामधील सरà¥à¤µ सीडीजसाठी याच कृतीची पà¥à¤¨à¤°à¤¾à¤µà¥ƒà¤¤à¥à¤¤à¥€ करा(हीच कृती करा)" @@ -294,65 +295,65 @@ msgstr "" " -c= ? ही संरचना संचिका वाचा \n" " -o=? à¤à¤–दा अहेतà¥à¤• संरचना परà¥à¤¯à¤¾à¤¯ निरà¥à¤§à¤¾à¤°à¤¿à¤¤ करा, उदा।eg -o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:244 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format msgid "Can not find a package for architecture '%s'" msgstr "%s पॅकेज सापडू शकले नाही" -#: cmdline/apt-get.cc:326 +#: cmdline/apt-get.cc:327 #, fuzzy, c-format msgid "Can not find a package '%s' with version '%s'" msgstr "%s पॅकेज सापडू शकले नाही" -#: cmdline/apt-get.cc:329 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format msgid "Can not find a package '%s' with release '%s'" msgstr "%s पॅकेज सापडू शकले नाही" -#: cmdline/apt-get.cc:366 +#: cmdline/apt-get.cc:367 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "%s उगम पॅकेज यादी सà¥à¤°à¥‚ करता येत नाही" -#: cmdline/apt-get.cc:422 +#: cmdline/apt-get.cc:423 #, c-format msgid "Can not find version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "%s पॅकेज सापडू शकले नाही" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "%s सà¥à¤µà¤¹à¤¸à¥à¤¤à¥‡ संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ करायचे आहे.\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: 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:468 cmdline/apt-mark.cc:116 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 msgid "Internal error, problem resolver broke stuff" msgstr "अंतरà¥à¤—त तà¥à¤°à¥à¤Ÿà¥€, अडचण निवारकाने सà¥à¤Ÿà¤«à¤²à¤¾ तोडले" -#: cmdline/apt-get.cc:573 cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 msgid "Unable to lock the download directory" msgstr "डाऊनलोड डिरेकà¥à¤Ÿà¤°à¥€ कà¥à¤²à¥‚पबंद करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: cmdline/apt-get.cc:725 +#: cmdline/apt-get.cc:726 msgid "Must specify at least one package to fetch source for" msgstr "उगम शोधणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी किमान à¤à¤• पॅकेज देणे/सांगणे गरजेचे आहे" -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "%s उगम पॅकेज शोधणे शकà¥à¤¯ नाही/शोधणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥ आहे" @@ -372,114 +373,114 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "आधीच डाऊनलोड केलेली '%s' फाईल सोडून दà¥à¤¯à¤¾\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "%s मधà¥à¤¯à¥‡ रिकामी जागा सांगू शकत नाही" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "%s मधà¥à¤¯à¥‡ पà¥à¤°à¥‡à¤¶à¥€ जागा नाही" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "उगम अरà¥à¤•ाईवà¥à¤¹à¤œ चा %sB/%sB घेणà¥à¤¯à¤¾à¤šà¥€ गरज आहे.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "उगम अरà¥à¤•ाईवà¥à¤¹à¤œà¤šà¤¾ %sB घेणà¥à¤¯à¤¾à¤šà¥€ गरज आहे.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "%s उगम घà¥à¤¯à¤¾\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "काही अरà¥à¤•ाईवà¥à¤¹à¤œ आणणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "डाऊनलोड संपूरà¥à¤£ आणि डाऊनलोड मधà¥à¤¯à¥‡ फकà¥à¤¤ पदà¥à¤§à¤¤à¥€" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "%s मधà¥à¤¯à¥‡ आधीच उघडलेलà¥à¤¯à¤¾ उगमातील उघडलेलà¥à¤¯à¤¾à¤²à¤¾ सोडून दà¥à¤¯à¤¾ किंवा वगळा\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "'%s' आजà¥à¤žà¤¾ सà¥à¤Ÿà¥à¤¯à¤¾ करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥.\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "'dpkg-dev' पॅकेज संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले आहे का ते पडताळून पहा.\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "बांधणी करणाऱà¥à¤¯à¤¾ आजà¥à¤žà¤¾ '%s' अयशसà¥à¤µà¥€.\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "चाईलà¥à¤¡ पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ अयशसà¥à¤µà¥€" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "बिलà¥à¤¡à¥‡à¤ªà¤¸à¥ कशासाठी ते पडताळणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी किमान à¤à¤• पॅकेज सांगणे गरजेचे आहे" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "%s साठी बांधणी डिपेंडनà¥à¤¸à¥€ माहिती मिळवणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s ला बांधणी डिपेंडनà¥à¤¸ नाहीत.\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " "packages" msgstr "%s पॅकेज न सापडलà¥à¤¯à¤¾à¤¨à¥‡ %s साठी %s डिपेंडनà¥à¤¸à¥€ पूरà¥à¤£ होऊ शकत नाही" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, 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:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "%s अवलंबितà¥à¤µ %s साठी पूरà¥à¤£ होणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥: संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ पॅकेज %s खूपच नवीन आहे" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -488,37 +489,37 @@ msgstr "" "आवृतीची मागणी पूरà¥à¤£ करणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी %s पॅकेजची आवृतà¥à¤¤à¥€ उपलबà¥à¤§ नाही,तà¥à¤¯à¤¾à¤®à¥à¤³à¥‡ %s साठी %s " "डिपेंडनà¥à¤¸à¥€ पूरà¥à¤£ होऊ शकत नाही" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " "version" msgstr "%s पॅकेज न सापडलà¥à¤¯à¤¾à¤¨à¥‡ %s साठी %s डिपेंडनà¥à¤¸à¥€ पूरà¥à¤£ होऊ शकत नाही" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "%s साठी %s डिपेंडनà¥à¤¸à¥€ पूरà¥à¤£ होणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥: %s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "%s साठी बांधणी-डिपेंडनà¥à¤¸à¥€à¤œ पूरà¥à¤£ होऊ शकत नाही." -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "बांधणी-डिपेंडनà¥à¤¸à¥€à¤œ कà¥à¤°à¤¿à¤¯à¤¾ पूरà¥à¤£ करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥ " -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "%s (%s) ला जोडत आहे" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "पà¥à¤°à¥‹à¤—à¥à¤°à¤¾à¤® गटाला तांतà¥à¤°à¤¿à¤• मदत दिली:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -605,53 +606,75 @@ msgstr "" " apt.conf(5) पà¥à¤¸à¥à¤¤à¤¿à¤•ा पाने पहा.\n" " हà¥à¤¯à¤¾ APT ला सà¥à¤ªà¤° काऊ पॉवरà¥à¤¸ आहेत\n" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "उगम शोधणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी किमान à¤à¤• पॅकेज देणे/सांगणे गरजेचे आहे" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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:63 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format msgid "%s was already set to manually installed.\n" msgstr "%s सà¥à¤µà¤¹à¤¸à¥à¤¤à¥‡ संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ करायचे आहे.\n" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, fuzzy, c-format msgid "%s was already set to automatically installed.\n" msgstr "%s सà¥à¤µà¤¹à¤¸à¥à¤¤à¥‡ संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ करायचे आहे.\n" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format msgid "%s was already set on hold.\n" msgstr "%s ही आधीच नविन आवृतà¥à¤¤à¥€ आहे.\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, fuzzy, c-format msgid "%s was already not hold.\n" msgstr "%s ही आधीच नविन आवृतà¥à¤¤à¥€ आहे.\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "%s साठी थांबलो पण ते तेथे नवà¥à¤¹à¤¤à¥‡" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: 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:264 cmdline/apt-mark.cc:316 +#: 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:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" "\n" @@ -678,7 +701,7 @@ msgid "" "See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -726,52 +749,52 @@ msgstr "%s मधील सीडी-रॉम अनमाऊंट करणॠmsgid "Disk not found." msgstr "डिसà¥à¤• सापडत नाही" -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "फाईल सापडली नाही" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 msgid "Failed to stat" msgstr "सà¥à¤Ÿà¥…ट करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: methods/copy.cc:82 methods/gzip.cc:113 methods/rred.cc:606 +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 msgid "Failed to set modification time" msgstr "बदलणà¥à¤¯à¤¾à¤šà¤¾ वेळ निशà¥à¤šà¤¿à¤¤ करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: methods/file.cc:47 +#: 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:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "लॉग इन करत आहे" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "पिअर नाव सांगणà¥à¤¯à¤¾à¤¸/सापडणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "सà¥à¤¥à¤¾à¤¨à¤¿à¤• नाव सांगणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format msgid "The server refused the connection and said: %s" msgstr "सरà¥à¤µà¥à¤¹à¤° ने संबंध जोडणà¥à¤¯à¤¾à¤¸ नकार दिला व सांगितले: %s" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "सरà¥à¤µà¥à¤¹à¤°à¤¨à¥‡ %s सांगितले,यूजर असमरà¥à¤¥:" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "सरà¥à¤µà¥à¤¹à¤°à¤¨à¥‡ %s सांगितले, पास असमरà¥à¤¥:" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -779,121 +802,123 @@ msgstr "" "पà¥à¤°à¥‰à¤•à¥à¤¸à¥€ सरà¥à¤µà¥à¤¹à¤° निरà¥à¤¦à¥‡à¤¶à¤¿à¤¤ केला पण लॉगीन सà¥à¤•à¥à¤°à¤¿à¤ªà¥à¤Ÿ नाही, पà¥à¤°à¤¾à¤ªà¥à¤¤ केलेले ::ftp:: पà¥à¤°à¥‰à¤•à¥à¤¸à¥€à¤²à¥‰à¤—ीन " "निररà¥à¤¥à¤• आहे." -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "सरà¥à¤µà¥à¤¹à¤°à¤¨à¥‡ %s सांगितले, '%s' लॉग इन सà¥à¤•à¥à¤°à¤¿à¤ªà¥à¤Ÿ आजà¥à¤žà¤¾à¤µà¤²à¥€ असमरà¥à¤¥:" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "सरà¥à¤µà¥à¤¹à¤°à¤¨à¥‡ %s सांगितले: टाईप असमरà¥à¤¥:" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 msgid "Connection timeout" msgstr "वेळेअà¤à¤¾à¤µà¥€ संबंध जोडता येत नाही" -#: methods/ftp.cc:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "सरà¥à¤µà¥à¤¹à¤°à¤¨à¥‡ संबंध जोडणी बंद केली" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "तà¥à¤°à¥à¤Ÿà¥€ वाचा" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "पà¥à¤°à¤¤à¤¿à¤¸à¤¾à¤§à¤¾à¤¨à¥‡ बफर à¤à¤°à¥à¤¨ गेले." -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "पà¥à¤°à¥‹à¤Ÿà¥‹à¤•ॉल खराब à¤à¤¾à¤²à¥‡" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "लिहिणà¥à¤¯à¤¾à¤¤ तà¥à¤°à¥à¤Ÿà¥€" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 msgid "Could not create a socket" msgstr "सॉकेट तयार करू शकत नाही" -#: methods/ftp.cc:707 +#: methods/ftp.cc:712 msgid "Could not connect data socket, connection timed out" msgstr "डेटा सॉकेट जोडू शकत नाही,जोडणी वेळेअà¤à¤¾à¤µà¥€ बंद केली" -#: methods/ftp.cc:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "असमरà¥à¤¥" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "पॅसिवà¥à¤¹ सॉकेट जोडता येत नाही" -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "गेटà¤à¤¡à¥à¤°à¥‡à¤¸à¤‡à¤¨à¤«à¥‹ लिसनिंग सॉकेट घेणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥ होते" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "सॉकेट चिकटवता येत नाही" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "सॉकेट वर à¤à¤•ता येत नाही" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "सॉकेटचे नाव सांगता येत नाही" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "पोरà¥à¤Ÿ आजà¥à¤žà¤¾ पाठवता येत नाही/पोरà¥à¤Ÿ आजà¥à¤žà¤¾ पाठविणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "माहित नसलेला पतà¥à¤¤à¤¾ फॅमिली %u (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "ई.पी.आर.टी. चà¥à¤•ले,सरà¥à¤µà¥à¤¹à¤°à¤¨à¥‡ %s सांगितले" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "डेटा सॉकेट जोडणी वेळेअà¤à¤¾à¤µà¥€ तà¥à¤Ÿà¤²à¥€" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "जोडणी सà¥à¤µà¤¿à¤•ारणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "फाईल हॅश करणà¥à¤¯à¤¾à¤¤ तà¥à¤°à¥à¤Ÿà¥€" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "सरà¥à¤µà¥à¤¹à¤°à¤¨à¥‡ %s सांगितले, फाईल मिळवणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "डेटा सॉकेट वेळेअà¤à¤¾à¤µà¥€ तà¥à¤Ÿà¤²à¥‡" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "सरà¥à¤µà¥à¤¹à¤°à¤¨à¥‡ %s सांगितले, डेटा सà¥à¤¥à¤¾à¤¨à¤¾à¤‚तरण चà¥à¤•ले" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "पà¥à¤°à¤¶à¥à¤¨" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "जारी करणà¥à¤¯à¤¾à¤¸ करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" @@ -929,7 +954,7 @@ msgstr "%s:%s (%s) ला जोडू शकत नाही" #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "%s ला जोडत आहे" @@ -959,183 +984,183 @@ msgstr "%s:%s' (%i) रिà¤à¥‰à¤²à¥à¤µà¥à¤¹ होत असताना क msgid "Unable to connect to %s:%s:" msgstr "%s %s ला जोडणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥:" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "अंतरà¥à¤—त तà¥à¤°à¥à¤Ÿà¥€: चांगली सही, पण की ठसे सांगू शकत नाही?!" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "किमान à¤à¤• अवैध सही सापडली." -#: methods/gpgv.cc:172 +#: methods/gpgv.cc:174 #, fuzzy msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "सहीची खातà¥à¤°à¥€ करणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी '%s' कारà¥à¤¯à¤¾à¤¨à¥à¤µà¤¿à¤¤ करू शकत नाही (gpgv संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले आहे का?)" #. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "gpgv कारà¥à¤¯à¤¾à¤¨à¥à¤µà¤¿à¤¤ होत असताना अपरिचित तà¥à¤°à¥à¤Ÿà¥€" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "खालील सहà¥à¤¯à¤¾ अवैध आहेत:\n" -#: methods/gpgv.cc:229 +#: 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:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "फाईल मधà¥à¤¯à¥‡ लिहिणà¥à¤¯à¤¾à¤¤ चूक/तà¥à¤°à¥à¤Ÿà¥€" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "सरà¥à¤µà¥à¤¹à¤° मधून वाचणà¥à¤¯à¤¾à¤¤ चूक. लांब शेवट आणि बंद à¤à¤¾à¤²à¥‡à¤²à¥€ जोडणी" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "सरà¥à¤µà¥à¤¹à¤° मधून वाचणà¥à¤¯à¤¾à¤¤ चूक" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "फाईल मधà¥à¤¯à¥‡ लिहिणà¥à¤¯à¤¾à¤¤ चूक/तà¥à¤°à¥à¤Ÿà¥€" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "चà¥à¤•ले/असमरà¥à¤¥ निवड करा" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "जोडणी वेळेअà¤à¤¾à¤µà¥€ तà¥à¤Ÿà¤²à¥€" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "निरà¥à¤—त फाईल मधà¥à¤¯à¥‡ लिहिताना तà¥à¤°à¥à¤Ÿà¥€/चूक" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "शीरà¥à¤·à¤•ासाठी थांबले आहे...." -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "वाईट शीरà¥à¤·à¤• ओळ" -#: methods/server.cc:139 methods/server.cc:146 +#: methods/server.cc:134 methods/server.cc:141 msgid "The HTTP server sent an invalid reply header" msgstr "HTTP सरà¥à¤µà¥à¤¹à¤°à¤¨à¥‡ अवैध पà¥à¤°à¤¤à¥à¤¤à¥à¤¯à¥à¤¤à¥à¤¤à¤° शीरà¥à¤·à¤• पाठविले" -#: methods/server.cc:176 +#: methods/server.cc:171 msgid "The HTTP server sent an invalid Content-Length header" msgstr "HTTP सरà¥à¤µà¥à¤¹à¤°à¤¨à¥‡ अवैध मजकूर-लांबी शीरà¥à¤·à¤• पाठविले " -#: methods/server.cc:199 +#: methods/server.cc:194 msgid "The HTTP server sent an invalid Content-Range header" msgstr "HTTP सरà¥à¤µà¥à¤¹à¤°à¤¨à¥‡ अवैध मजकूर-विसà¥à¤¤à¤¾à¤° शीरà¥à¤·à¤• पाठविले" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "HTTP सरà¥à¤µà¥à¤¹à¤°à¤¨à¥‡ विसà¥à¤¤à¤¾à¤° तांतà¥à¤°à¤¿à¤• मदत जोडली" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "अपरिचित दिनांक पà¥à¤°à¤•ार/सà¥à¤µà¤°à¥‚प " -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "चà¥à¤•ीचा शीरà¥à¤·à¤• डाटा" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "जोडणी अयशसà¥à¤µà¥€" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "अंतरà¥à¤—त तà¥à¤°à¥à¤Ÿà¥€" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "अंतरà¥à¤—त तà¥à¤°à¥à¤Ÿà¥€, तà¥à¤Ÿà¤²à¥‡à¤²à¥à¤¯à¤¾ पॅकेजेस बरोबर संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ पॅकेजला आवाहन केले गेले/बोलावले गेले!" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "पॅकेजेस कायमची काढायची आहेत पण रिमूवà¥à¤¹ अकारà¥à¤¯à¤•à¥à¤·à¤® केले आहे" -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "अंतरà¥à¤—त तà¥à¤°à¥à¤Ÿà¥€,कà¥à¤°à¤® अजून संपला नाही" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "किती विचितà¥à¤°...आकार जà¥à¤³à¤¤ नाहीत, ईमेल apt@packages.debian.org" #. TRANSLATOR: The required 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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "अरà¥à¤•ाईवà¥à¤¹à¤œà¤šà¥à¤¯à¤¾ %sB/%sB घेणà¥à¤¯à¤¾à¤šà¥€ गरज आहे\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:171 +#: apt-private/private-install.cc:159 #, 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:178 +#: apt-private/private-install.cc:166 #, c-format msgid "After this operation, %sB of additional disk space will be used.\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:183 +#: apt-private/private-install.cc:171 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "या कà¥à¤°à¤¿à¤¯à¥‡à¤¨à¤‚तर, %sB डिसà¥à¤• जागा मोकळी होईल.\n" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "%s मधà¥à¤¯à¥‡ तà¥à¤®à¤šà¥à¤¯à¤¾à¤•डे पà¥à¤°à¥‡à¤¶à¥€ जागा नाही." -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "काही अडचणी आहेत आणि --force-yes शिवाय -y वापरला गेला" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "हो, मी मà¥à¤¹à¥à¤Ÿà¤²à¥à¤¯à¤¾à¤ªà¥à¤°à¤®à¤¾à¤£à¥‡ करा!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1146,20 +1171,20 @@ msgstr "" "पà¥à¤¢à¥‡ '%s' उकà¥à¤¤à¥€ मधà¥à¤¯à¥‡ लिहिणार \n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "वà¥à¤¯à¤¤à¥à¤¯à¤¯/बंद करा." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 #, fuzzy msgid "Do you want to continue?" msgstr "तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ पà¥à¤¢à¥‡ जायचे आहे [Y/n]? " -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "काही संचिका डाऊनलोड करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1167,20 +1192,20 @@ msgstr "" "काही आरà¥à¤•ाइवà¥à¤¹à¤œ आणणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥, कदाचित apt-get रन करà¥à¤¨ अदà¥à¤¯à¤¯à¤¾à¤µà¤¤ करा किंवा --fix- " "बरोबर पà¥à¤°à¤¯à¤¤à¥à¤¨ कराहरवलेले/गहाळ?" -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "" "--fix- सापडत नाही आणि माधà¥à¤¯à¤®/मिडिया अदलाबदल हे सधà¥à¤¯à¤¾ तांतà¥à¤°à¤¿à¤• मदत देऊ शकत नाही" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "न सापडणारी पॅकेजेस नीट करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "संसà¥à¤¥à¤¾à¤ªà¤¨ खंडित करत आहे." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1190,15 +1215,15 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "आपण या गोषà¥à¤Ÿà¥€ काढून टाकता नये, ऑटोरिमूवà¥à¤¹à¤° सà¥à¤°à¥‚ करता येत नाही" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1216,15 +1241,15 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 msgid "The following information may help to resolve the situation:" msgstr "खालील माहिती परिसà¥à¤¥à¤¿à¤¤à¥€ निवळणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी मदत ठरू शकेल:" -#: apt-private/private-install.cc:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "अंतरà¥à¤—त तà¥à¤°à¥à¤Ÿà¥€, AutoRemoverने सà¥à¤Ÿà¤«à¤²à¤¾ तोडले" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1234,7 +1259,7 @@ msgid_plural "" msgstr[0] "खालील नवीन पॅकेजेस सà¥à¤µà¤¯à¤‚चलितपणे संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ à¤à¤¾à¤²à¥€ होती व आता आवशà¥à¤¯à¤• नाहीत:" msgstr[1] "खालील नवीन पॅकेजेस सà¥à¤µà¤¯à¤‚चलितपणे संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ à¤à¤¾à¤²à¥€ होती व आता आवशà¥à¤¯à¤• नाहीत:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1242,20 +1267,20 @@ msgid_plural "" msgstr[0] "खालील नवीन पॅकेजेस सà¥à¤µà¤¯à¤‚चलितपणे संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ à¤à¤¾à¤²à¥€ होती व आता आवशà¥à¤¯à¤• नाहीत:" msgstr[1] "खालील नवीन पॅकेजेस सà¥à¤µà¤¯à¤‚चलितपणे संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ à¤à¤¾à¤²à¥€ होती व आता आवशà¥à¤¯à¤• नाहीत:" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 #, fuzzy msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "ती काढून टाकणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी 'apt-get autoremove' वापरा." msgstr[1] "ती काढून टाकणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी 'apt-get autoremove' वापरा." -#: apt-private/private-install.cc:624 +#: 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:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1263,7 +1288,7 @@ msgstr "" "अनमेट डिपेंडनà¥à¤¸à¥€à¤œ.à¤à¤ªà¥€à¤Ÿà¥€-गेट -à¤à¤« संसà¥à¤¥à¤¾à¤ªà¤¨ ('apt-get -f install') पॅकेजशिवाय पà¥à¤°à¤¯à¤¤à¥à¤¨ करा " "(किंवा परà¥à¤¯à¤¾à¤¯ सांगा)." -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1275,146 +1300,146 @@ msgstr "" "विà¤à¤¾à¤—णी असणारी पण हवी असणारी, तयार केली नसलेली पॅकेजेस वापरत असाल \n" "किंवा ती येणाऱà¥à¤¯à¤¾à¤‚पैकी बाहेर हलविली असतील." -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "तà¥à¤Ÿà¤²à¥‡à¤²à¥€ पॅकेजेस" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "खालील अतिरिकà¥à¤¤ पॅकेजेस संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ होतील:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "सà¥à¤šà¤µà¤²à¥‡à¤²à¥€ पॅकेजेस:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "शिफारस केलेली पॅकेजेस:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "धोकà¥à¤¯à¤¾à¤šà¥€ सूचना:खालील पॅकेजेसॠपà¥à¤°à¤®à¤¾à¤£à¤¿à¤¤ करॠशकत नाही! " -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "पà¥à¤°à¤®à¤¾à¤£à¥€à¤•रणाची धोकà¥à¤¯à¤¾à¤šà¥€ सूचना दà¥à¤°à¥à¤²à¤•à¥à¤·à¤¿à¤¤ करा.\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "काही पॅकेजेसचे पà¥à¤°à¤®à¤¾à¤£à¤¿à¤•रण होऊ शकत नाही" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 #, fuzzy msgid "Install these packages without verification?" msgstr "पडताळून पाहिलà¥à¤¯à¤¾à¤¶à¤¿à¤µà¤¾à¤¯ ही पॅकेजेस संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ करायची का [हो/नाही]?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s %s आणणे असफल\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr "[संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr "[संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr "[संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr "[संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "खालील पॅकेजेस मधà¥à¤¯à¥‡ नमिळणाऱà¥à¤¯à¤¾ निरà¥à¤à¤°à¤¤à¤¾/ डिपेनà¥à¤¡à¤¨à¥à¤¸à¥€à¤œ आहेत:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "पण %s संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ à¤à¤¾à¤²à¥‡" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "पण %s संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ करायचे आहे" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "पण ते संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ करणà¥à¤¯à¤¾à¤œà¥‹à¤—े नाही" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "पण ते आà¤à¤¾à¤¸à¥€ पॅकेज आहे" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "पण ते संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले नाही" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "पण ते संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ होणार नाही" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr "किंवा" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "खालील नविन पॅकेजेस संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ होतील:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "खालील नविन पॅकेजेस कायमची काढून टाकली जातील:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "खालील पॅकेजेस परत ठेवली गेली:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "खालील पॅकेजेस पà¥à¤¢à¤¿à¤² आवृतà¥à¤¤à¥€à¤•ृत होतील:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "खालील पॅकेजेस पà¥à¤¢à¤šà¥à¤¯à¤¾ आवृतà¥à¤¤à¥€à¤•ृत होणार नाहीत:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "पà¥à¤¢à¤¿à¤² ठेवलेली पॅकेजेस बदलतील:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (चà¥à¤¯à¤¾ मà¥à¤³à¥‡ %s)" -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1422,27 +1447,27 @@ msgstr "" "धोकà¥à¤¯à¤¾à¤šà¥€ सूचना:खालील जरूरीची पॅकेजेस कायमची काढून टाकली जातील।\n" "तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ तà¥à¤®à¥à¤¹à¥€ काय करत आहात हे कळेपरà¥à¤¯à¤‚त असं करता येणार नाही!" -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu पà¥à¤¢à¥‡ आवृतà¥à¤¤à¥€à¤•ृत केले, %lu नवà¥à¤¯à¤¾à¤¨à¥‡ संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले," -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu पà¥à¤¨à¤°à¥à¤¸à¤‚सà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले," -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu मागील आवृतà¥à¤¤à¥€à¤•ृत केले," -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu कायमचे काढून टाकणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी आणि %lu पà¥à¤¢à¤šà¥à¤¯à¤¾ आवृतà¥à¤¤à¥€à¤•ृत à¤à¤¾à¤²à¥‡à¤²à¥€ नाही.\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu संपूरà¥à¤£ संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ किंवा कायमची काढून टाकलेली नाही.\n" @@ -1451,7 +1476,7 @@ msgstr "%lu संपूरà¥à¤£ संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ किंवा ठ#. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "" @@ -1459,91 +1484,91 @@ msgstr "" #. 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:702 +#: apt-private/private-output.cc:708 msgid "[y/N]" msgstr "" #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "होय" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "रिजेकà¥à¤¸ कंपायलेशन तà¥à¤°à¥à¤Ÿà¥€ -%s " -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "डिपेनà¥à¤¡à¤¨à¥à¤¸à¥€à¤œ बरोबर/दà¥à¤°à¥‚सà¥à¤¤ करत आहे..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr "अयशसà¥à¤µà¥€/चूकीचे à¤à¤¾à¤²à¥‡." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "डिपेनà¥à¤¡à¤¨à¥à¤¸à¥€à¤œ बरोबर करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥ आहे " -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "आवृतà¥à¤¤à¥€à¤•ृत संच कमीतकमी करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr "à¤à¤¾à¤²à¥‡" -#: apt-private/private-cachefile.cc:102 +#: apt-private/private-cachefile.cc:108 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "हे बरोबर करणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ `apt-get -f संसà¥à¤¥à¤¾à¤ªà¤¨à¤¾' पà¥à¤°à¥‹à¤—à¥à¤°à¤¾à¤® चालू करावा लागेल." -#: apt-private/private-cachefile.cc:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "अनमेट डिपेंडनà¥à¤¸à¥€à¤œ.-f.वापरून पà¥à¤°à¤¯à¤¤à¥à¤¨ करा " -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "सà¥à¤§à¤¾à¤°à¤¿à¤¤ आवृतà¥à¤¤à¥€à¤šà¤¾ विधान आरà¥à¤—à¥à¤¯à¥à¤®à¥‡à¤‚टस घेऊ शकत नाही." -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "पà¥à¤¢à¤¿à¤² आवृतà¥à¤¤à¥€à¤šà¥€ गणती करीत आहे..." -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "अंतरà¥à¤—त तà¥à¤°à¥à¤Ÿà¥€,ऑलअपगà¥à¤°à¥‡à¤¡à¤¨à¥‡ सà¥à¤Ÿà¤«à¤²à¤¾ तोडले" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "à¤à¤¾à¤²à¥‡" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1551,43 +1576,43 @@ msgid "" " so don't depend on the relevance to the real current situation!" msgstr "" -#: apt-private/private-sources.cc:45 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format msgid "Failed to parse %s. Edit again? " msgstr "%s ला पà¥à¤¨à¤°à¥à¤¨à¤¾à¤®à¤¾à¤‚कन %s करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥ " -#: apt-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "दाबा" -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "मिळवा:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "आय.जी.à¤à¤¨." -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "दोष इ.आर.आर." -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "%s (%sB/s) मधà¥à¤¯à¥‡ %sB मिळविला\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr "[काम करत आहे]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1600,19 +1625,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "%s वाचणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "%s मधà¥à¤¯à¥‡ बदलणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" @@ -1641,11 +1666,11 @@ msgstr "%s फाईल उघडता येत नाही" msgid "[Mirror: %s]" msgstr "" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 msgid "Failed to create IPC pipe to subprocess" msgstr "उपकà¥à¤°à¤¿à¤¯à¥‡à¤šà¤¾ आयपीसी वाहिनी तयार करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: methods/rsh.cc:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "जोडणी अकाली बंद à¤à¤¾à¤²à¥€" @@ -1710,40 +1735,45 @@ msgstr "" " -c=? ही संरचना संचिका वाचा \n" " -o=? à¤à¤–ादा अहेतà¥à¤• संरचना परà¥à¤¯à¤¾à¤¯ निरà¥à¤§à¤¾à¤°à¤¿à¤¤ करा जसे- -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "%s सà¥à¤Ÿà¥…ट करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "%s मधà¥à¤¯à¥‡ लिहिणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥ " -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "debconf आवृतà¥à¤¤à¥€ मिळू शकत नाही,debconf अधिषà¥à¤ ापित à¤à¤¾à¤²à¥€ काय?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "पॅकेजेसची विसà¥à¤¤à¤¾à¤°à¤¿à¤¤ यादी खूप मोठी आहे" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "तà¥à¤°à¥à¤Ÿà¥€ पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ मारà¥à¤—दरà¥à¤¶à¤¿à¤•ा%s " -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "उगमसà¥à¤¥à¤¾à¤¨à¤¾à¤šà¥€ विसà¥à¤¤à¤¾à¤°à¤¿à¤¤ यादी खूप मोठी आहे" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "शीरà¥à¤·à¤• संचिकेमधून मजकूर संचिकेत लिहिणà¥à¤¯à¤¾à¤¤ तà¥à¤°à¥à¤Ÿà¥€" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "तà¥à¤°à¥à¤Ÿà¥€ पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ मजकूर %s" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1824,26 +1854,26 @@ msgstr "" " -c=? ही संरचना संचिका वाचा \n" " -o=? à¤à¤–ादा अहेतà¥à¤• संरचना परà¥à¤¯à¤¾à¤¯ निरà¥à¤§à¤¾à¤°à¤¿à¤¤ करा" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "निवडक à¤à¤¾à¤— जà¥à¤³à¤¤ नाही" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "`%s' पॅकेज संचिका समà¥à¤¹à¤¾à¤¤à¥€à¤² काही संचिका गहाळ आहेत" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "DB खराब à¤à¤¾à¤²à¥€ होती, संचिका %s.old मà¥à¤¹à¤£à¥‚न पà¥à¤¨à¤°à¥à¤¨à¤¾à¤®à¤¾à¤‚कित केली" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "DB जà¥à¤¨à¥‡ आहे,%s पà¥à¤¢à¤šà¥à¤¯à¤¾ आवृतीसाठी पà¥à¤°à¤¯à¤¤à¥à¤¨ करत आहे" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 #, fuzzy msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " @@ -1852,192 +1882,192 @@ msgstr "" "DB सà¥à¤µà¤°à¥à¤ª वैध नाही. जर तà¥à¤®à¥à¤¹à¥€ apt चà¥à¤¯à¤¾ जà¥à¤¨à¥à¤¯à¤¾ आवृतà¥à¤¤à¥€à¤ªà¤¾à¤¸à¥‚न पà¥à¤¢à¤¿à¤² आवृतà¥à¤¤à¥€à¤•ृत करत असाल तर, " "कृपया माहितीसंच काढून टाका आणि पà¥à¤¨à¤°à¥à¤¨à¤¿à¤°à¥à¤®à¤¿à¤¤ करा" -#: ftparchive/cachedb.cc:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "%s: %s DB संचिका उघडणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "%s सà¥à¤Ÿà¥‡à¤Ÿ करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "अरà¥à¤•ाईवà¥à¤¹ मधà¥à¤¯à¥‡ नियंतà¥à¤°à¤£ माहिती संच नाही" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "संकेतक घेणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "धोकà¥à¤¯à¤¾à¤šà¥€ सूचना:%s संचयिका वाचणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥ \n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "धो.सू.:%s सà¥à¤Ÿà¥‡à¤Ÿ करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "E:" -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "धो.सू.:" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "ई: संचिकेला लागू होणाऱà¥à¤¯à¤¾ चà¥à¤•ा" -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "%s सोडवणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "टà¥à¤°à¥€ चालणे असमरà¥à¤¥" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "%s उघडणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr "%s [%s] डी दà¥à¤µà¤¾\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "%s वाचणारा दà¥à¤µà¤¾ असमरà¥à¤¥" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "%s दà¥à¤µà¤¾ काढणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "%s चा %s दà¥à¤µà¤¾ साधणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr "%sB हीट ची डिलींक मरà¥à¤¯à¤¾à¤¦à¤¾\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "अरà¥à¤•ाईवà¥à¤¹ ला पॅकेज जागा नाही" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr "%s ला ओवà¥à¤¹à¤°à¤°à¤¾à¤ˆà¤¡/दà¥à¤°à¥à¤²à¤•à¥à¤·à¤¿à¤¤ जागा नाही\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr "%s देखà¤à¤¾à¤²à¤•रà¥à¤¤à¤¾ हा %s आणि %s नाही \n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr "%s ला उगम ओवà¥à¤¹à¤°à¤°à¤¾à¤ˆà¤¡/दà¥à¤°à¥à¤²à¤•à¥à¤·à¤¿à¤¤ जागा नाही\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr "%s ला दà¥à¤µà¤¯à¤‚क ओवà¥à¤¹à¤°à¤°à¤¾à¤ˆà¤¡ जागा नाही\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc-सà¥à¤®à¤°à¤£à¤¸à¥à¤¥à¤³ शोधणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "%s उघडणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "वà¥à¤¯à¤‚गीत/हिडीस दà¥à¤°à¥à¤²à¤•à¥à¤·à¤¿à¤¤ केले %s रेषा %lu #1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "%s दà¥à¤°à¥à¤²à¤•à¥à¤·à¤¿à¤¤ संचिका वाचणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, fuzzy, c-format msgid "Malformed override %s line %llu #1" msgstr "वà¥à¤¯à¤‚गीत/हिडीस दà¥à¤°à¥à¤²à¤•à¥à¤·à¤¿à¤¤ केले %s रेषा %lu #1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, fuzzy, c-format msgid "Malformed override %s line %llu #2" msgstr "वà¥à¤¯à¤‚गीत/हिडीस दà¥à¤°à¥à¤²à¤•à¥à¤·à¤¿à¤¤ केले %s रेषा %lu #2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, fuzzy, c-format msgid "Malformed override %s line %llu #3" msgstr "वà¥à¤¯à¤‚गीत/हिडीस दà¥à¤°à¥à¤²à¤•à¥à¤·à¤¿à¤¤ केले %s रेषा %lu #3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "माहित नसलेली/ले संकà¥à¤·à¥‡à¤ª पदà¥à¤§à¤¤à¥€/अलगोरिथम '%s'" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "%s संकलित आऊटपà¥à¤Ÿ/निरà¥à¤—त साठी संकà¥à¤·à¥‡à¤ª संचाची गरज" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "संचिका * तयार करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "नविन पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾(पà¥à¤°à¥‹à¤¸à¥‡à¤¸) निरà¥à¤®à¤¾à¤£ करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "चॉईलà¥à¤¡(पà¥à¤°à¥‹à¤¸à¥‡à¤¸)ला संकलित करा" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "अंतरà¥à¤—त तà¥à¤°à¥à¤Ÿà¥€, %s तयार करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "IO ची उपकà¥à¤°à¤¿à¤¯à¤¾/संचिका असमरà¥à¤¥ " -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "MD5 कामपà¥à¤¯à¥à¤Ÿà¥€à¤‚ग करतांना वाचणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी असमरà¥à¤¥" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "%s दà¥à¤µà¤¾ मोकळा/सà¥à¤Ÿà¤¾ करणà¥à¤¯à¤¾à¤¸ अडचण" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "%s ला पà¥à¤¨à¤°à¥à¤¨à¤¾à¤®à¤¾à¤‚कन %s करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥ " -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -2091,157 +2121,157 @@ msgstr "" " -c=? ही संरचना फाईल वाचा\n" " -o=?- अनियंतà¥à¤°à¤¿à¤¤ संरचना परà¥à¤¯à¤¾à¤¯ निशà¥à¤šà¤¿à¤¤ करा,eg -o dir::cache=/tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "पाईप तयार करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "exec gzip करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "बिघडलेली अरà¥à¤•ाईवà¥à¤¹à¤œ" -#: apt-inst/contrib/extracttar.cc:201 +#: apt-inst/contrib/extracttar.cc:203 msgid "Tar checksum failed, archive corrupted" msgstr "टार(टेपअरà¥à¤•ाईवà¥à¤¹) चेकसम चà¥à¤•ला, बिघडलेली अरà¥à¤•ाईवà¥à¤¹" -#: apt-inst/contrib/extracttar.cc:306 +#: apt-inst/contrib/extracttar.cc:308 #, c-format msgid "Unknown TAR header type %u, member %s" msgstr "अपरिचित TAR शीरà¥à¤·à¤• पà¥à¤°à¤•ार %u, मेंबर %s" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "अयोगà¥à¤¯ अरà¥à¤•ाईवà¥à¤¹ ओळख सही" -#: apt-inst/contrib/arfile.cc:82 +#: apt-inst/contrib/arfile.cc:84 msgid "Error reading archive member header" msgstr "अरà¥à¤•ाईवà¥à¤¹ मेंबर शीरà¥à¤·à¤• वाचणà¥à¤¯à¤¾à¤¸ तà¥à¤°à¥à¤Ÿà¥€" -#: apt-inst/contrib/arfile.cc:94 +#: apt-inst/contrib/arfile.cc:96 #, fuzzy, c-format msgid "Invalid archive member header %s" msgstr "अयोगà¥à¤¯ अरà¥à¤•ाईवà¥à¤¹ मेंबर शीरà¥à¤·à¤•" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "अयोगà¥à¤¯ अरà¥à¤•ाईवà¥à¤¹ मेंबर शीरà¥à¤·à¤•" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "अरà¥à¤•ाईवà¥à¤¹ खूप छोटे आहे" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "अरà¥à¤•ाईवà¥à¤¹ शीरà¥à¤·à¤•े वाचणे असफल" -#: apt-inst/filelist.cc:382 +#: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" msgstr "सà¥à¤Ÿà¤¾ करणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी बोलावलेला/आणलेला सांधा(डà¥à¤°à¤¾à¤ªà¤¨à¥‹à¤¡)अजà¥à¤¨à¤¹à¥€ जà¥à¤³à¤²à¥‡à¤²à¤¾à¤š सांधा(लिंकनोड) आहे" -#: apt-inst/filelist.cc:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "हॅश à¤à¤²à¤¿à¤®à¥‡à¤‚ट शोधूने काढणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥!" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "नेमून दिलेलà¥à¤¯à¤¾à¤¤ फेरबदल करणà¥à¤¯à¤¾à¤¸ अयशसà¥à¤µà¥€" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "AddDiversion/à¤à¤¡ डायवà¥à¤¹à¤°à¥à¤œà¤¨ मधà¥à¤¯à¥‡ आंतरिक दोष" -#: apt-inst/filelist.cc:479 +#: apt-inst/filelist.cc:477 #, c-format msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" msgstr "डायवà¥à¤¹à¤°à¥à¤œà¤¨ पà¥à¤¨à¤ƒ लिहिणà¥à¤¯à¤¾à¤¸ पà¥à¤°à¤¯à¤¤à¥à¤¨ करत आहे,%s -> %s and %s/%s" -#: apt-inst/filelist.cc:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "%s -> %s डायवà¥à¤¹à¤°à¥à¤œà¤¨ दà¥à¤ªà¥à¤ªà¤Ÿ मिळवा" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "%s/%s संचिरित संचिकाची दà¥à¤¸à¤°à¥€ पà¥à¤°à¤¤/नकà¥à¤•ल" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: 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:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "%s फाईल बंद करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: 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:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "%s à¤à¤•ापेकà¥à¤·à¤¾ जासà¥à¤¤ वेळा उघडत आहे" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "%s संचिका डायवà¥à¤¹à¤°à¥à¤Ÿ केली आहे/वळवली आहे" -#: apt-inst/extract.cc:145 +#: 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:155 apt-inst/extract.cc:299 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 msgid "The diversion path is too long" msgstr "डायवà¥à¤¹à¤°à¥à¤œà¤¨ मारà¥à¤— हा खूप लांब आहे" -#: apt-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "%s संचिका ही संचिका नसलेलà¥à¤¯à¤¾ संचिकेबरोबर बदललेली आहे" -#: apt-inst/extract.cc:282 +#: apt-inst/extract.cc:289 msgid "Failed to locate node in its hash bucket" msgstr "नोडचे तà¥à¤¯à¤¾à¤šà¥à¤¯à¤¾ हॅश बकेटमधà¥à¤¯à¥‡/बादलीत सà¥à¤¥à¤¾à¤¨ निशà¥à¤šà¤¿à¤¤ करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: apt-inst/extract.cc:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "मारà¥à¤— खूप लांब आहे" -#: apt-inst/extract.cc:414 +#: apt-inst/extract.cc:421 #, c-format msgid "Overwrite package match with no version for %s" msgstr "%s चà¥à¤¯à¤¾ आवृतà¥à¤¤à¥€à¤¶à¥€ पà¥à¤¨à¤ƒ लिहिलेलà¥à¤¯à¤¾ पॅकेज जà¥à¤³à¤¤ नाही" -#: apt-inst/extract.cc:431 +#: apt-inst/extract.cc:438 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "File %s/%s, %s पॅकेज मधलà¥à¤¯à¤¾ à¤à¤•ा वर पà¥à¤¨à¤°à¥à¤²à¤¿à¤–ित होते" -#: apt-inst/extract.cc:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "%s सà¥à¤Ÿà¥…ट करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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:124 +#: apt-inst/deb/debfile.cc:132 #, c-format msgid "Internal error, could not locate member %s" msgstr "अंतरà¥à¤—त तà¥à¤°à¥à¤Ÿà¥€,%s मेंबर शोधू शकत नाही" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "अनपारà¥à¤¸à¥‡à¤¬à¤² नियंतà¥à¤°à¤£ फाईल" @@ -2298,494 +2328,499 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "%s निवडक à¤à¤¾à¤— सापडत नाही" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "संकà¥à¤·à¤¿à¤ªà¥à¤¤à¤°à¥à¤ªà¤¾à¤šà¤¾ माहित नसलेला पà¥à¤°à¤•ार: '%c'" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "%s संरचना फाईल उघडत आहे" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "रचनेचà¥à¤¯à¤¾ नियमांचा दोष %s:%u: बà¥à¤²à¥‰à¤• नावाशिवाय सà¥à¤°à¥‚ होतो." -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "रचनेचà¥à¤¯à¤¾ नियमांचा दोष : %s:%u: मालफॉरà¥à¤®à¤¡à¥ टॅग" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "रचनेचà¥à¤¯à¤¾ नियमांचा दोष %s:%u: मà¥à¤²à¥à¤¯à¤¾à¤‚चà¥à¤¯à¤¾ नंतर अधिक जंक" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "रचनेचà¥à¤¯à¤¾ नियमांचा दोष %s:%u: दिशादरà¥à¤¶à¤• फकà¥à¤¤ उचà¥à¤š पातळीवर केले जाऊ शकतात" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "रचनेचà¥à¤¯à¤¾ नियमांचा दोष %s:%u: खूपच à¤à¤•ात à¤à¤• इनकà¥à¤²à¥‚डसà¥" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "रचनेचà¥à¤¯à¤¾ नियमांचा दोष %s:%u: हà¥à¤¯à¤¾ पासून समाविषà¥à¤Ÿ " -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "नियम रचनेचा दोष %s:%u: '%s' दिशादरà¥à¤¶à¤• असहायà¥à¤¯à¤•ारी" -#: apt-pkg/contrib/configuration.cc:884 +#: 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-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "नियम रचनेचा दोष %s:%u: फाईलचà¥à¤¯à¤¾ अंती अधिक जंक" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... चूक/तà¥à¤°à¥à¤Ÿà¥€!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... à¤à¤¾à¤²à¥‡" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s... à¤à¤¾à¤²à¥‡" -#: apt-pkg/contrib/cmndline.cc:116 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format msgid "Command line option '%c' [from %s] is not known." msgstr "आदेश रेखा परà¥à¤¯à¤¾à¤¯ '%c' [पासून %s] हे माहित नाही." -#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format msgid "Command line option %s is not boolean" msgstr "आदेश रेखा परà¥à¤¯à¤¾à¤¯ %s हे बूलियन नाही" -#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "परà¥à¤¯à¤¾à¤¯ %s साठी ऑरà¥à¤—à¥à¤®à¥‡à¤‚ट पाहिजे" -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "परà¥à¤¯à¤¾à¤¯ %s: संरचितेचà¥à¤¯à¤¾ यादीतील कलमांचा तपशीलाला असलेच पाहिजे ते =<मूलà¥à¤¯>." -#: apt-pkg/contrib/cmndline.cc:273 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format msgid "Option %s requires an integer argument, not '%s'" msgstr "%s परà¥à¤¯à¤¾à¤¯ ला पूरà¥à¤£à¤¾à¤‚क ऑरà¥à¤—à¥à¤®à¥‡à¤‚ट पाहिजे,'%s' नको" -#: apt-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "'%s' परà¥à¤¯à¤¾à¤¯ खूप लांब आहे" -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "%s संवेदना हे समजत नाही, चूक की बरोबर चा पà¥à¤°à¤¯à¤¤à¥à¤¨ करा." -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "%s अवैध कà¥à¤°à¤¿à¤¯à¤¾" -#: apt-pkg/contrib/cdromutl.cc:56 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format msgid "Unable to stat the mount point %s" msgstr "%s माऊंट पॉईंट सà¥à¤Ÿà¥…ट करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: apt-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "सीडी-रॉम सà¥à¤Ÿà¥…ट करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: apt-pkg/contrib/fileutl.cc:95 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "फाईल बंद करणà¥à¤¯à¤¾à¤¤ अडचण" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "फकà¥à¤¤ वाचणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी कà¥à¤²à¥‚प संचिका %s साठी कà¥à¤²à¥‚पबंदचा वापर करीत नाही" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "%s कà¥à¤²à¥‚प फाईल उघडता येत नाही" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "%s nfs(नेटवरà¥à¤• फाईल सिसà¥à¤Ÿà¥€à¤®) माऊंटेड कà¥à¤²à¥à¤ª फाईल ला कà¥à¤²à¥à¤ª /बंद करता येत नाही" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "%s कà¥à¤²à¥à¤ª मिळवता येत नाही" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "%s उपकà¥à¤°à¤¿à¤¯à¥‡à¤²à¤¾ सेगमेंटेशन दोष पà¥à¤°à¤¾à¤ªà¥à¤¤ à¤à¤¾à¤²à¤¾." -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "%s उपकà¥à¤°à¤¿à¤¯à¥‡à¤²à¤¾ सेगमेंटेशन दोष पà¥à¤°à¤¾à¤ªà¥à¤¤ à¤à¤¾à¤²à¤¾." -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 apt-pkg/contrib/gpgv.cc:239 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "%s उपकà¥à¤°à¤¿à¤¯à¥‡à¤¨à¥‡ (%u) तà¥à¤°à¥à¤Ÿà¥€ कोड दिलेला आहे" -#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "%s उपकà¥à¤°à¤¿à¤¯à¤¾ अचानकपणे बाहेर पडली" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "फाईल बंद करणà¥à¤¯à¤¾à¤¤ अडचण" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "%s फाईल उघडता येत नाही" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "%s साठी पाईप उघडता येत नाही" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "आयपीसी उपकà¥à¤°à¤¿à¤¯à¤¾ तयार करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "दाबक(संकलितकरà¥à¤¤à¤¾) करà¥à¤¯à¤¾à¤¨à¥à¤µà¤¿à¤¤ करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, fuzzy, c-format msgid "read, still have %llu to read but none left" msgstr "वाचा, %lu अजूनही वाचणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी आहे पण आता काही उरली नाही" -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, fuzzy, c-format msgid "write, still have %llu to write but couldn't" msgstr "लिहा, %lu अजूनही लिहिणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी आहे पण लिहिता येत नाही" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "फाईल बंद करणà¥à¤¯à¤¾à¤¤ अडचण" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "संचिकेची syncing समसà¥à¤¯à¤¾" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "फाईल अनलिंकिंग करणà¥à¤¯à¤¾à¤¤ अडचण" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "संचिकेची syncing समसà¥à¤¯à¤¾" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "पà¥à¤¨à¤°à¥à¤¨à¤¾à¤®à¤¾à¤‚कन अयशसà¥à¤µà¥€, %s (%s -> %s)." + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, fuzzy, c-format msgid "No keyring installed in %s." msgstr "संसà¥à¤¥à¤¾à¤ªà¤¨ खंडित करत आहे." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "पॅकेज असà¥à¤¥à¤¾à¤ˆ सà¥à¤®à¥ƒà¤¤à¤¿à¤•ोष" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "पॅकेज असà¥à¤¥à¤¾à¤ˆ सà¥à¤®à¥ƒà¤¤à¤¿à¤•ोष फाईल खराब à¤à¤¾à¤²à¥€ आहे" -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "पॅकेज असà¥à¤¥à¤¾à¤ˆ सà¥à¤®à¥ƒà¤¤à¤¿à¤•ोष फाईल ही विजोड आवृतà¥à¤¤à¥€ आहे" -#: apt-pkg/pkgcache.cc:162 +#: apt-pkg/pkgcache.cc:169 #, fuzzy msgid "The package cache file is corrupted, it is too small" msgstr "पॅकेज असà¥à¤¥à¤¾à¤ˆ सà¥à¤®à¥ƒà¤¤à¤¿à¤•ोष फाईल खराब à¤à¤¾à¤²à¥€ आहे" -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "'%s' आवृतà¥à¤¤à¥€à¤•रण पà¥à¤°à¤£à¤¾à¤²à¥€à¤²à¤¾ हे APT तांतà¥à¤°à¤¿à¤• मदत देऊ शकत नाही" -#: apt-pkg/pkgcache.cc:172 +#: apt-pkg/pkgcache.cc:179 msgid "The package cache was built for a different architecture" msgstr "पॅकेज असà¥à¤¥à¤¾à¤ˆ सà¥à¤®à¥ƒà¤¤à¥€à¤•ोष वेगळà¥à¤¯à¤¾ वासà¥à¤¤à¥à¤µà¤¿à¤¦à¥à¤¯à¥‡ साठी बनवला गेला" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "अवलंबित" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "पूरà¥à¤µ अवलंबित" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "सà¥à¤šà¤µà¤£à¥‡" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "शिफारस" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "परसà¥à¤ªà¤°à¤µà¤¿à¤°à¥‹à¤§" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "परत तà¥à¤¯à¤¾à¤ िकाणी आणा" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "अपà¥à¤°à¤šà¤²à¤¿à¤¤" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "तोडले" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "अतà¥à¤¯à¤¾à¤µà¤¶à¥à¤¯à¤•" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "आवशà¥à¤¯à¤•" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "मानक" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "à¤à¤šà¥à¤›à¤¿à¤•" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "अधिक" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "अवलंबित रचना बांधणी करत आहे" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "कंॅडिडेट आवृतà¥à¤¤à¥à¤¯à¤¾" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "अवलंबित/विसंबून असलेले उतà¥à¤ªà¤¾à¤¦à¤¨ " -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 msgid "Reading state information" msgstr "सà¥à¤¥à¤¿à¤¤à¥€ माहिती वाचत आहे" -#: apt-pkg/depcache.cc:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "%s StateFile उघडणे असफल" -#: apt-pkg/depcache.cc:250 +#: apt-pkg/depcache.cc:256 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "%s तातà¥à¤ªà¥à¤°à¤¤à¥à¤¯à¤¾ StateFile मधà¥à¤¯à¥‡ लिहिणे असफल" -#: apt-pkg/tagfile.cc:138 +#: apt-pkg/tagfile.cc:140 #, c-format msgid "Unable to parse package file %s (1)" msgstr "%s (1) पॅकेज फाईल पारà¥à¤¸ करणà¥à¤¯à¤¾à¤¤ असमरà¥à¤¥" -#: apt-pkg/tagfile.cc:235 +#: apt-pkg/tagfile.cc:237 #, c-format msgid "Unable to parse package file %s (2)" msgstr "%s (२) पॅकेज फाईल पारà¥à¤¸ करणà¥à¤¯à¤¾à¤¤ असमरà¥à¤¥" -#: apt-pkg/sourcelist.cc:118 +#: apt-pkg/sourcelist.cc:127 #, fuzzy, c-format msgid "Malformed stanza %u in source list %s (URI parse)" msgstr "सà¥à¤¤à¥à¤°à¥‹à¤¤ सà¥à¤šà¥€ %s (यूआरआय पारà¥à¤¸) मधà¥à¤¯à¥‡ %lu वाईट/वà¥à¤¯à¤‚ग रेषा" -#: apt-pkg/sourcelist.cc:161 +#: apt-pkg/sourcelist.cc:170 #, fuzzy, c-format msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "सà¥à¤¤à¥à¤°à¥‹à¤¤ सà¥à¤šà¥€ %s (डीआयà¤à¤¸à¤Ÿà¥€ पारà¥à¤¸) मधà¥à¤¯à¥‡ %lu वाईट/वà¥à¤¯à¤‚ग रेषा" -#: apt-pkg/sourcelist.cc:164 +#: apt-pkg/sourcelist.cc:173 #, fuzzy, c-format msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "सà¥à¤¤à¥à¤°à¥‹à¤¤ सà¥à¤šà¥€ %s (डिआयà¤à¤¸à¤Ÿà¥€) मधà¥à¤¯à¥‡ %lu वाईट/वà¥à¤¯à¤‚ग रेषा" -#: apt-pkg/sourcelist.cc:175 +#: apt-pkg/sourcelist.cc:184 #, fuzzy, c-format msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" msgstr "सà¥à¤¤à¥à¤°à¥‹à¤¤ सà¥à¤šà¥€ %s (डीआयà¤à¤¸à¤Ÿà¥€ पारà¥à¤¸) मधà¥à¤¯à¥‡ %lu वाईट/वà¥à¤¯à¤‚ग रेषा" -#: apt-pkg/sourcelist.cc:181 +#: apt-pkg/sourcelist.cc:190 #, fuzzy, c-format msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "सà¥à¤¤à¥à¤°à¥‹à¤¤ सà¥à¤šà¥€ %s (डीआयà¤à¤¸à¤Ÿà¥€ पारà¥à¤¸) मधà¥à¤¯à¥‡ %lu वाईट/वà¥à¤¯à¤‚ग रेषा" -#: apt-pkg/sourcelist.cc:184 +#: apt-pkg/sourcelist.cc:193 #, fuzzy, c-format msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "सà¥à¤¤à¥à¤°à¥‹à¤¤ सà¥à¤šà¥€ %s (डीआयà¤à¤¸à¤Ÿà¥€ पारà¥à¤¸) मधà¥à¤¯à¥‡ %lu वाईट/वà¥à¤¯à¤‚ग रेषा" -#: apt-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "सà¥à¤¤à¥à¤°à¥‹à¤¤ सà¥à¤šà¥€ %s (यूआरआय) मधà¥à¤¯à¥‡ %lu वाईट/वà¥à¤¯à¤‚ग रेषा" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "सà¥à¤¤à¥à¤°à¥‹à¤¤ सà¥à¤šà¥€ %s (डिआयà¤à¤¸à¤Ÿà¥€) मधà¥à¤¯à¥‡ %lu वाईट/वà¥à¤¯à¤‚ग रेषा" -#: apt-pkg/sourcelist.cc:202 +#: apt-pkg/sourcelist.cc:211 #, c-format msgid "Malformed line %lu in source list %s (URI parse)" msgstr "सà¥à¤¤à¥à¤°à¥‹à¤¤ सà¥à¤šà¥€ %s (यूआरआय पारà¥à¤¸) मधà¥à¤¯à¥‡ %lu वाईट/वà¥à¤¯à¤‚ग रेषा" -#: apt-pkg/sourcelist.cc:208 +#: apt-pkg/sourcelist.cc:217 #, c-format msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "सà¥à¤¤à¥à¤°à¥‹à¤¤ सà¥à¤šà¥€ %s (absolute dist) मधà¥à¤¯à¥‡ %lu वाईट/वà¥à¤¯à¤‚ग रेषा" -#: apt-pkg/sourcelist.cc:215 +#: apt-pkg/sourcelist.cc:224 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" msgstr "सà¥à¤¤à¥à¤°à¥‹à¤¤ सà¥à¤šà¥€ %s (डीआयà¤à¤¸à¤Ÿà¥€ पारà¥à¤¸) मधà¥à¤¯à¥‡ %lu वाईट/वà¥à¤¯à¤‚ग रेषा" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "%s उघडत आहे" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "%s सà¥à¤¤à¥à¤°à¥‹à¤¤ सà¥à¤šà¥€à¤®à¤§à¥à¤¯à¥‡ ओळ %u खूप लांब आहे." -#: apt-pkg/sourcelist.cc:362 +#: apt-pkg/sourcelist.cc:371 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "सà¥à¤¤à¥à¤°à¥‹à¤¤ सà¥à¤šà¥€ %s (पà¥à¤°à¤•ार) मधà¥à¤¯à¥‡ %u वाईट/वà¥à¤¯à¤‚ग रेषा" -#: apt-pkg/sourcelist.cc:366 +#: apt-pkg/sourcelist.cc:375 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "%s सà¥à¤¤à¥à¤°à¥‹à¤¤ सà¥à¤šà¥€à¤®à¤§à¥à¤¯à¥‡ %u रेषेवर '%s' पà¥à¤°à¤•ार माहित नाही " -#: apt-pkg/sourcelist.cc:407 +#: 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/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, 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:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "%s फाईल उघडता येत नाही" -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2796,19 +2831,19 @@ msgstr "" "गà¥à¤‚तागà¥à¤‚तीमà¥à¤³à¥‡/Pre-Depends पूरà¥à¤µ अवलंबित आवरà¥à¤¤à¤¨.हे नेहमीच वाईट असते, पण जर तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ ते खरोखर " "करावयाचे असेल तर,APT::Force-LoopBreak परà¥à¤¯à¤¾à¤¯ कारà¥à¤¯à¤¾à¤¨à¥à¤µà¤¿à¤¤ करा." -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "'%s' पà¥à¤°à¤•ारची निरà¥à¤¦à¥‡à¤¶à¤• संचिका सहायà¥à¤¯à¤•ारी नाही" -#: apt-pkg/algorithms.cc:266 +#: 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:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2816,218 +2851,213 @@ msgstr "" "दोष,पॅकेज समसà¥à¤¯à¤¾ निवारक::निवारण करतांना अडथळा निरà¥à¤®à¤¾à¤£ à¤à¤¾à¤²à¤¾, हà¥à¤¯à¤¾à¤šà¥‡ कारण सà¥à¤¥à¤—ित " "पॅकेजेस असू शकते." -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "अडचणी दूर करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥, तà¥à¤®à¥à¤¹à¥€ तà¥à¤Ÿà¤²à¥‡à¤²à¥‡ पॅकेज घेतलेले आहे." -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, fuzzy, c-format msgid "List directory %spartial is missing." msgstr "संचयिका यादीत %s पारà¥à¤¶à¤² हरवले आहे." -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, fuzzy, c-format msgid "Archives directory %spartial is missing." msgstr "ऑरà¥à¤•ाइवà¥à¤¹ संचयिका %spartial गायब आहे." -#: apt-pkg/acquire.cc:93 +#: 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:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "%li ची %li(%s राहिलेले) संचिका पà¥à¤¨:पà¥à¤°à¤¾à¤ªà¥à¤¤ करीत आहे" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "%li ची %li संचिका पà¥à¤¨:पà¥à¤°à¤¾à¤ªà¥à¤¤ करीत आहे" -#: apt-pkg/acquire-worker.cc:113 +#: apt-pkg/acquire-worker.cc:116 #, c-format msgid "The method driver %s could not be found." msgstr "%s कारà¥à¤¯à¤ªà¤§à¥à¤¦à¤¤à¥€à¤šà¤¾ डà¥à¤°à¤¾à¤‡à¤µà¥à¤¹à¤° सापडू शकला नाही. " -#: apt-pkg/acquire-worker.cc:115 +#: apt-pkg/acquire-worker.cc:118 #, fuzzy, c-format msgid "Is the package %s installed?" msgstr "'dpkg-dev' पॅकेज संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले आहे का ते पडताळून पहा.\n" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "%s कारà¥à¤¯à¤ªà¤§à¥à¤¦à¤¤à¥€ योगà¥à¤¯ रीतीने सà¥à¤°à¥ à¤à¤¾à¤²à¥‡à¤²à¥€ नाही" -#: apt-pkg/acquire-worker.cc:452 +#: apt-pkg/acquire-worker.cc:455 #, c-format msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "कृपया '%s' लेबल असलेली डिसà¥à¤• '%s' या डà¥à¤°à¤¾à¤‡à¤µà¥à¤¹à¤®à¤§à¥à¤¯à¥‡ ठेवा आणि à¤à¤¨à¥à¤Ÿà¤° कळ दाबा." -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "'%s' पॅकेजींग पà¥à¤°à¤£à¤¾à¤²à¥€ सहायà¥à¤¯à¤•ारी नाही" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "योगà¥à¤¯ असा पॅकेजिंग पà¥à¤°à¤£à¤¾à¤²à¥€ पà¥à¤°à¤•ार निशà¥à¤šà¤¿à¤¤ करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥ " -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "%s सà¥à¤Ÿà¥…ट करणà¥à¤¯à¤¾à¤¤ असमरà¥à¤¥. " -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "तà¥à¤®à¥à¤¹à¥€ तà¥à¤®à¤šà¥à¤¯à¤¾ उगमसà¥à¤¥à¤¾à¤¨ यादीत URI घाला" -#: apt-pkg/cachefile.cc:87 +#: apt-pkg/cachefile.cc:94 msgid "The package lists or status file could not be parsed or opened." msgstr "पॅकेजचà¥à¤¯à¤¾ यादà¥à¤¯à¤¾ किंवा संचिकेची सà¥à¤¥à¤¿à¤¤à¥€ सà¥à¤ªà¤·à¥à¤Ÿ होऊ शकत नाही किंवा ती उघडू शकत नाही." -#: apt-pkg/cachefile.cc:91 +#: 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:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "उगमांचà¥à¤¯à¤¾ यादà¥à¤¯à¤¾ वाचता येणार नाहीत." -#: apt-pkg/policy.cc:75 +#: 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 "" -#: apt-pkg/policy.cc:414 +#: apt-pkg/policy.cc:422 #, fuzzy, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "पसंतीचà¥à¤¯à¤¾ संचिकेत अवैध माहितीसंच, पॅकेजला शीरà¥à¤·à¤• नाही " -#: apt-pkg/policy.cc:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "%s पिनचा पà¥à¤°à¤•ार समजलेला नाही" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "पिन करिता पà¥à¤°à¤¾à¤§à¤¾à¤¨à¥à¤¯/अगà¥à¤°à¤•à¥à¤°à¤® (किंवा शूनà¥à¤¯)निरà¥à¤¦à¥‡à¤¶à¥€à¤¤ केलेला नाही" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 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:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: 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 (पॅकेज शोधतांना) पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ करीत असतांना दोष आढळून आला" -#: apt-pkg/pkgcachegen.cc:251 +#: apt-pkg/pkgcachegen.cc:257 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "अरेवा!, तà¥à¤®à¥à¤¹à¥€ तर हà¥à¤¯à¤¾ à¤à¤ªà¤¿à¤Ÿà¥€à¤šà¥à¤¯à¤¾ कारà¥à¤¯à¤•à¥à¤·à¤®à¤¤à¥‡à¤ªà¥‡à¤•à¥à¤·à¤¾à¤¹à¥€ पॅकेज नांवांचà¥à¤¯à¤¾ संखà¥à¤¯à¥‡à¤šà¥€ मरà¥à¤¯à¤¾à¤¦à¤¾ ओलांडली " "आहे." -#: apt-pkg/pkgcachegen.cc:254 +#: apt-pkg/pkgcachegen.cc:260 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" "अरेवा!, तà¥à¤®à¥à¤¹à¥€ तर हà¥à¤¯à¤¾ à¤à¤ªà¤¿à¤Ÿà¥€à¤šà¥à¤¯à¤¾ कारà¥à¤¯à¤•à¥à¤·à¤®à¤¤à¥‡à¤ªà¥‡à¤•à¥à¤·à¤¾à¤¹à¥€ आवृतà¥à¤¤à¥à¤¯à¤¾ संखà¥à¤¯à¥‡à¤šà¥€ मरà¥à¤¯à¤¾à¤¦à¤¾ ओलांडली आहे." -#: apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:263 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "अरेवा!, तà¥à¤®à¥à¤¹à¥€ तर हà¥à¤¯à¤¾ à¤à¤ªà¥à¤Ÿà¤šà¥à¤¯à¤¾ कारà¥à¤¯à¤•à¥à¤·à¤®à¤¤à¥‡à¤ªà¥‡à¤•à¥à¤·à¤¾à¤¹à¥€ विवरण संखà¥à¤¯à¥‡à¤šà¥€ मरà¥à¤¯à¤¾à¤¦à¤¾ ओलांडली आहे." -#: apt-pkg/pkgcachegen.cc:260 +#: apt-pkg/pkgcachegen.cc:266 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" "अरेवा!, तà¥à¤®à¥à¤¹à¥€ तर हà¥à¤¯à¤¾ à¤à¤ªà¤¿à¤Ÿà¥€à¤šà¥à¤¯à¤¾ कारà¥à¤¯à¤•à¥à¤·à¤®à¤¤à¥‡à¤ªà¥‡à¤•à¥à¤·à¤¾à¤¹à¥€ अवलंबित/विसंबून असलेलà¥à¤¯à¤¾ संखà¥à¤¯à¥‡à¤šà¥€ मरà¥à¤¯à¤¾à¤¦à¤¾ " "ओलांडली आहे." -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:576 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "अवलंबित/विसंबून असणाऱà¥à¤¯à¤¾ संचिकांची पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ करीत असतांना पॅकेज %s %s सापडले नाही " -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "%s उगम पॅकेज यादी सà¥à¤°à¥‚ करता येत नाही" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "तरतूद/पà¥à¤°à¤µà¤²à¥‡à¤²à¥à¤¯à¤¾ संचिका संगà¥à¤°à¤¹à¤¿à¤¤ करीत आहे" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 msgid "IO Error saving source cache" msgstr "IO तà¥à¤°à¥à¤Ÿà¥€ उगम निवडक संचयसà¥à¤¥à¤¾à¤¨à¤¾à¤¤ संगà¥à¤°à¤¹à¤¿à¤¤ होत आहे" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "पà¥à¤¨à¤°à¥à¤¨à¤¾à¤®à¤¾à¤‚कन अयशसà¥à¤µà¥€, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "हॅश बेरीज जà¥à¤³à¤¤ नाही" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "आकार जà¥à¤³à¤¤à¤¨à¤¾à¤¹à¥€" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "%s अवैध कà¥à¤°à¤¿à¤¯à¤¾" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, 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:1586 +#: apt-pkg/acquire-item.cc:1595 #, fuzzy, c-format msgid "Unable to find hash sum for '%s' in Release file" msgstr "%s (1) पॅकेज फाईल पारà¥à¤¸ करणà¥à¤¯à¤¾à¤¤ असमरà¥à¤¥" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "पà¥à¤¢à¥€à¤² कळ ओळखचिनà¥à¤¹à¤¾à¤‚साठी सारà¥à¤µà¤œà¤¨à¤¿à¤• कळ उपलबà¥à¤§ नाही:\n" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " "repository will not be applied." msgstr "" -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3035,12 +3065,12 @@ msgid "" msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3049,12 +3079,12 @@ msgstr "" "मी %s पॅकेजकरीता संचिका शोधणà¥à¤¯à¤¾à¤¸ समरà¥à¤¥ नवà¥à¤¹à¤¤à¥‹. याचा अरà¥à¤¥ असाकी तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ हे पॅकेज सà¥à¤µà¤¹à¤¸à¥à¤¤à¥‡ " "सà¥à¤¥à¤¿à¤°/निशà¥à¤šà¤¿à¤¤ करणà¥à¤¯à¤¾à¤šà¥€ गरज आहे(हरवलेलà¥à¤¯à¤¾ आरà¥à¤šà¤®à¥à¤³à¥‡) " -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -3062,71 +3092,67 @@ msgstr "" "पॅकेज यादीची/सà¥à¤šà¥€à¤šà¥€ संचिका दूषित/खराब à¤à¤¾à¤²à¥‡à¤²à¥€ आहे. संचिका नाव नाही: पॅकेजकरीता कà¥à¤·à¥‡à¤¤à¥à¤°/" "ठिकाण %s." -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, fuzzy, c-format msgid "Unable to parse Release file %s" msgstr "%s (1) पॅकेज फाईल पारà¥à¤¸ करणà¥à¤¯à¤¾à¤¤ असमरà¥à¤¥" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, fuzzy, c-format msgid "No sections in Release file %s" msgstr "लकà¥à¤·à¤¾à¤¤ घà¥à¤¯à¤¾,%s à¤à¤µà¤œà¥€ %s ची निवड करत आहे \n" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "" -#: apt-pkg/indexrecords.cc:125 +#: apt-pkg/indexrecords.cc:130 #, fuzzy, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "%s डायवà¥à¤¹à¤°à¥à¤œà¤¨ फाईलमधà¥à¤¯à¥‡ अवैध ओळ आहे:" -#: apt-pkg/indexrecords.cc:144 +#: apt-pkg/indexrecords.cc:149 #, fuzzy, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "%s (1) पॅकेज फाईल पारà¥à¤¸ करणà¥à¤¯à¤¾à¤¤ असमरà¥à¤¥" -#: apt-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "विकà¥à¤°à¥‡à¤¤à¤¾ गट %s मधà¥à¤¯à¥‡ बोटाचे ठसे नाहीत" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "सिडी-रॉमचे माउंट सà¥à¤¥à¤¾à¤¨ %s वापरà¥à¤¨\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "सिडी-रॉम अनमाउंट करत आहे\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "सिडी-रॉम अनमाउंट होत आहे...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "डिसà¥à¤•/चकती करिता पà¥à¤°à¤¤à¤¿à¤•à¥à¤·à¤¾ करीत आहे...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "सिडी-रॉम माउंट होत आहे...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " -msgstr "ओळखत आहे.." +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " +msgstr "ओळखत आहे..." -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "गà¥à¤°à¤¹à¤£ केलेले नामदरà¥à¤¶à¤•: %s \n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "सिडी-रॉम अनमाउंट होत आहे...\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" -msgstr "संचिकाचà¥à¤¯à¤¾ यादी/सूचीसाठी डिसà¥à¤•/चकती बारकाईने तपासत आहे..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" +msgstr "संचिकाचà¥à¤¯à¤¾ यादी/सूचीसाठी डिसà¥à¤•/चकती बारकाईने तपासत आहे...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3135,22 +3161,22 @@ msgstr "" "%zu पॅकेजेसची यादी/सूची, %zu सà¥à¤¤à¥à¤°à¥‹à¤¤à¤¾à¤šà¥€ यादी/सूची, %zu à¤à¤¾à¤·à¤¾à¤‚तर यादी/सूची आणि %zu " "सà¥à¤µà¤¾à¤•à¥à¤·à¤±à¥à¤¯à¤¾/सिगनेचरà¥à¤¸ सापडलà¥à¤¯à¤¾\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "'%s' लेबल सापडले\n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "ते सà¥à¤µà¤¿à¤•ारणà¥à¤¯à¤¾à¤œà¥‹à¤—े/वैध नांव नाही, पà¥à¤¨à¥à¤¹à¤¾ पà¥à¤°à¤¯à¤¤à¥à¤¨ करा.\n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3159,34 +3185,34 @@ msgstr "" "हà¥à¤¯à¤¾ डिसà¥à¤•ला/चकतीला: मà¥à¤¹à¤£à¤¤à¤¾à¤¤\n" "'%s'\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "पॅकेज सूचींचà¥à¤¯à¤¾ पà¥à¤°à¤¤à¥€ तयार करित आहे..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "नविन सà¥à¤¤à¥à¤°à¥‹à¤¤ सूची लिहित आहे\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "हà¥à¤¯à¤¾ डिसà¥à¤•/चकती करिता सà¥à¤¤à¥à¤°à¥‹à¤¤ सूचीचà¥à¤¯à¤¾ पà¥à¤°à¤µà¥‡à¤¶à¤¿à¤•ा आहेत: \n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: 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:777 +#: 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:780 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i विजोड संचिकांबरोबर %i माहिती संच लिहिले\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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" @@ -3201,88 +3227,88 @@ msgstr "" msgid "Hash mismatch for: %s" msgstr "हॅश बेरीज जà¥à¤³à¤¤ नाही" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "'%s' साठी '%s' आवृतà¥à¤¤à¥€ सापडली नाही" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "'%s' साठी '%s' आवृतà¥à¤¤à¥€ सापडली नाही" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, fuzzy, c-format msgid "Couldn't find task '%s'" msgstr "%s कारà¥à¤¯ सापडू शकले नाही" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, fuzzy, c-format msgid "Couldn't find any package by regex '%s'" msgstr "%s पॅकेज सापडू शकले नाही" -#: apt-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "%s पॅकेज सापडू शकले नाही" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, c-format msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " "neither of them" msgstr "" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, c-format msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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 " @@ -3291,167 +3317,167 @@ msgstr "" "काही अनà¥à¤•à¥à¤°à¤®à¤£à¤¿à¤•ा संचयिका डाऊनलोड करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥,तà¥à¤¯à¤¾ दà¥à¤°à¥à¤²à¤•à¥à¤·à¤¿à¤¤ à¤à¤¾à¤²à¥à¤¯à¤¾, किंवा " "तà¥à¤¯à¤¾à¤à¤µà¤œà¥€ जà¥à¤¨à¥à¤¯à¤¾ वापरलà¥à¤¯à¤¾ गेलà¥à¤¯à¤¾." -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "%s संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ होत आहे" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "%s संरचित होत आहे" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "%s काढून टाकत आहे" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, fuzzy, c-format msgid "Completely removing %s" msgstr "%s संपूरà¥à¤£ काढून टाकले" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "संसà¥à¤¥à¤¾à¤ªà¤¨à¤¾-पशà¥à¤šà¤¾à¤¤ टà¥à¤°à¤¿à¤—र %s चालवत आहे" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "'%s' संचयिका गहाळ आहे" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: 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:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "%s तयार करित आहे" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "%s सà¥à¤Ÿà¥‡/मोकळे करीत आहे " -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "%s संरचने साठी तयार करत आहे" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "%s संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ à¤à¤¾à¤²à¥‡" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "%s ला काढून टाकणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी तयारी करत आहे" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "%s काढून टाकले" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "%s संपूरà¥à¤£ काढून टाकणà¥à¤¯à¤¾à¤šà¥€ तयारी करत आहे" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "%s संपूरà¥à¤£ काढून टाकले" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "%s मधà¥à¤¯à¥‡ लिहिणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥ " -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 msgid "" "No apport report written because the error message indicates an issue on the " "local system" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " "it?" msgstr "" -#: apt-pkg/deb/debsystem.cc:87 +#: 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:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " msgstr "" -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "" @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2010-09-01 21:10+0200\n" "Last-Translator: Hans Fredrik Nordhaug <hans@nordhaug.priv.no>\n" "Language-Team: Norwegian BokmÃ¥l <i18n-nb@lister.ping.uio.no>\n" @@ -22,153 +22,154 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Virtaal 0.6.1\n" -#: cmdline/apt-cache.cc:140 +#: 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" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "Antall pakkenavn: " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 msgid "Total package structures: " msgstr "Antall pakkestrukturer: " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " Vanlige pakker: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " Rent virtuelle pakker: " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " Enkle virtuelle pakker: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " Sammensatte virtuelle pakker: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " Mangler: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "Antall unike versjoner: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "Antall unike beskrivelser: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "Antall avhengighetsforhold: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "Antall forhold versjon/fil: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "Antall forhold beskrivelse/fil: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "Antall tilbudte tilknyttinger: " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "Antall utvidede strenger: " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "Total plass for avhengighetsforhold/versjoner: " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "Plass brukt av slark: " -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "Samlet mengde redegjort plass: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format msgid "Package file %s is out of sync." msgstr "Pakkefila %s er ikke oppdatert." -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 msgid "You must give at least one search pattern" msgstr "Du mÃ¥ oppgi minst ett søkemønster" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "Klarer ikke Ã¥ finne pakken %s" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "Pakkefiler:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: 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" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "LÃ¥ste pakker:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(ikke funnet)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " Installert: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " Kandidat: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(ingen)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " Pakke lÃ¥st til: " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " Versjonstabell:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s for %s kompilert pÃ¥ %s %s\n" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -243,28 +244,28 @@ msgstr "" " -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:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: 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:104 +#: 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" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, c-format msgid "Failed to mount '%s' to '%s'" msgstr "Klarte ikke montere «%s» pÃ¥ «%s»" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Gjenta denne prosessen for resten av CD-ene i ditt sett." @@ -300,65 +301,65 @@ msgstr "" " -c=? Les denne innstillingsfila.\n" " -o=? Sett en vilkÃ¥rlig innstilling, f.eks. -o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:244 +#: 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»" -#: cmdline/apt-get.cc:326 +#: 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»" -#: cmdline/apt-get.cc:329 +#: 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»" -#: cmdline/apt-get.cc:366 +#: cmdline/apt-get.cc:367 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Velger «%s» som kildepakke istedenfor «%s»\n" -#: cmdline/apt-get.cc:422 +#: 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»" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "Klarte ikke Ã¥ finne pakken %s" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "%s satt til manuell installasjon.\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: 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:468 cmdline/apt-mark.cc:116 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: 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:573 cmdline/apt-get.cc:610 +#: 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:725 +#: 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:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "Klarer ikke Ã¥ finne en kildekodepakke for %s" @@ -383,116 +384,116 @@ msgstr "" "bzr get %s\n" "for Ã¥ hente siste (muligens ikke utgitte) oppdateringer for pakken.\n" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Hopper over allerede nedlastet fil «%s»\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "Klarte ikke bestemme ledig plass i %s" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "Du har ikke nok ledig plass i %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Trenger Ã¥ skaffe %sB av %sB fra kildekodearkivet.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Trenger Ã¥ skaffe %sB fra kildekodearkivet.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "Skaffer kildekode %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "Klarte ikke Ã¥ skaffe alle arkivene." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "Nedlasting fullført med innstillinga «bare nedlasting»" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "OmgÃ¥r utpakking av allerede utpakket kilde i %s\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Utpakkingskommandoen «%s» mislyktes.\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Sjekk om pakken «dpkg-dev» er installert.\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "Byggekommandoen «%s» mislyktes.\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "Barneprosessen mislyktes" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "Du mÃ¥ angi minst en pakke du vil sjekke «builddeps» for" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Klarer ikke Ã¥ skaffe informasjon om bygge-avhengighetene for %s" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s har ingen avhengigheter.\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " "packages" msgstr "Kravet %s for %s kan ikke oppfylles fordi pakken %s ikke finnes" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "Kravet %s for %s kan ikke oppfylles fordi pakken %s ikke finnes" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Klarte ikke Ã¥ tilfredsstille %s avhengighet for %s: den installerte pakken " "%s er for ny" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -501,37 +502,37 @@ msgstr "" "Kravet %s for %s kan ikke oppfylles fordi det ikke finnes noen tilgjengelige " "versjoner av pakken %s som oppfyller versjonskravene" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " "version" msgstr "Kravet %s for %s kan ikke oppfylles fordi pakken %s ikke finnes" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Klarte ikke Ã¥ tilfredsstille %s avhengighet for %s: %s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Klarte ikke Ã¥ tilfredstille bygg-avhengighetene for %s." -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "Klarte ikke Ã¥ behandle forutsetningene for bygging" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "Kobler til %s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "Støttede moduler:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -620,53 +621,75 @@ msgstr "" "for mer informasjon og flere valg.\n" " Denne APT har kraften til en Superku.\n" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Du mÃ¥ angi minst en pakke du vil ha kildekoden til" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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 "men er ikke installert" -#: cmdline/apt-mark.cc:63 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format msgid "%s was already set to manually installed.\n" msgstr "%s satt til manuell installasjon.\n" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, fuzzy, c-format msgid "%s was already set to automatically installed.\n" msgstr "%s satt til automatisk installasjon.\n" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format msgid "%s was already set on hold.\n" msgstr "%s er allerede nyeste versjon.\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, fuzzy, c-format msgid "%s was already not hold.\n" msgstr "%s er allerede nyeste versjon.\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Ventet pÃ¥ %s, men den ble ikke funnet" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: 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" -#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, fuzzy, c-format msgid "Canceled hold on %s.\n" msgstr "Klarte ikke Ã¥ Ã¥pne %s" -#: cmdline/apt-mark.cc:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" "\n" @@ -693,7 +716,7 @@ msgid "" "See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -743,52 +766,52 @@ msgstr "" msgid "Disk not found." msgstr "Disk ikke funnet." -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "Fant ikke fila" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: 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:82 methods/gzip.cc:113 methods/rred.cc:606 +#: 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:47 +#: 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:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "Logger inn" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "Klarte ikke Ã¥ fastslÃ¥ navnet pÃ¥ motparten" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "Klarte ikke Ã¥ fastslÃ¥ det lokale navnet" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: 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" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "USER mislykkes, tjeneren sa: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS mislykkes, tjeneren sa: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -796,121 +819,123 @@ msgstr "" "En mellomtjener er oppgitt, men ikke noe innloggingsskript. Feltet «Acquire::" "ftp::ProxyLogin» er tomt." -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Kommandoen «%s» i innlogginsskriptet mislykkes, tjeneren sa: %s" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE mislykkes, tjeneren sa: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: 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:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "Tjeneren lukket forbindelsen" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "Lesefeil" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "Et svar oversvømte bufferen." -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "Protokollødeleggelse" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "Skrivefeil" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: 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:707 +#: 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:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "Mislyktes" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "Klarte ikke Ã¥ koble til en passiv sokkel." -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo klarte ikke Ã¥ opprette en lyttesokkel" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "Klarte ikke Ã¥ binde til sokkel" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "Klarte ikke Ã¥ lytte til sokkel" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "Klarte ikke Ã¥ avgjøre sokkelnavnet" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "Klarte ikke Ã¥ sende PORT-kommandoen" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Ukjent adressefamilie %u (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT mislykkes, tjeneren sa: %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "Tidsavbrudd pÃ¥ tilkoblingen til datasokkelen" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "Klarte ikke Ã¥ godta tilkoblingen" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: 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" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Klarte ikke Ã¥ hente fila, tjeneren sa «%s»" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "Tidsavbrudd pÃ¥ datasokkelen" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Dataoverføringen mislykkes, tjeneren sa «%s»" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "Spørring" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "Klarte ikke Ã¥ starte" @@ -946,7 +971,7 @@ msgstr "Klarte ikke Ã¥ koble til %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "Kobler til %s" @@ -976,37 +1001,37 @@ msgstr "Noe galt skjedde ved oppslag av «%s:%s» (%i - %s)" msgid "Unable to connect to %s:%s:" msgstr "Klarte ikke koble til %s:%s:" -#: methods/gpgv.cc:166 +#: 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?!" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "Minst en ugyldig signatur ble funnet." -#: methods/gpgv.cc:172 +#: methods/gpgv.cc:174 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "Klarte ikke kjøre «gpgv» for Ã¥ verifisere signaturen (er gpgv installert?)" #. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "Ukjent feil ved kjøring av gpgv" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "De følgende signaturene var ugyldige:\n" -#: methods/gpgv.cc:229 +#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@ -1014,149 +1039,149 @@ msgstr "" "De følgende signaturene kunne ikke verifiseres fordi den offentlige nøkkelen " "ikke er tilgjengelig:\n" -#: methods/gzip.cc:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "Feil ved skriving til fila" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "Feil ved lesing fra tjeneren. Forbindelsen ble lukket i andre enden" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "Feil ved lesing fra tjeneren" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "Feil ved skriving til fil" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "Utvalget mislykkes" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "Tidsavbrudd pÃ¥ forbindelsen" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "Feil ved skriving til utfil" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "Venter pÃ¥ hoder" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "Ødelagt hodelinje" -#: methods/server.cc:139 methods/server.cc:146 +#: methods/server.cc:134 methods/server.cc:141 msgid "The HTTP server sent an invalid reply header" msgstr "HTTP-tjeneren sendte et ugyldig svarhode" -#: methods/server.cc:176 +#: methods/server.cc:171 msgid "The HTTP server sent an invalid Content-Length header" msgstr "HTTP-tjeneren sendte et ugyldig «Content-Length»-hode" -#: methods/server.cc:199 +#: methods/server.cc:194 msgid "The HTTP server sent an invalid Content-Range header" msgstr "HTTP-tjeneren sendte et ugyldig «Content-Range»-hode" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "Denne HTTP-tjeneren har ødelagt støtte for omrÃ¥de" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "Ukjent datoformat" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "Ødelagte hodedata" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "Forbindelsen mislykkes" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "Intern feil" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Intern feil, InstallPackages ble kalt med ødelagte pakker!" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "Pakker trenges Ã¥ fjernes, men funksjonen er slÃ¥tt av." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "Intern feil, sortering fullførte ikke" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" "SÃ¥ rart ... Størrelsene stemmer ikke overens, send en e-post til " "apt@packages.debian.org" #. TRANSLATOR: The required 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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "MÃ¥ hente %sB/%sB med arkiver.\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:171 +#: apt-private/private-install.cc:159 #, c-format msgid "Need to get %sB of archives.\n" msgstr "MÃ¥ hente %sB med arkiver.\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:178 +#: apt-private/private-install.cc:166 #, 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" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:183 +#: apt-private/private-install.cc:171 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Etter denne operasjonen vil %sB diskplass bli ledig.\n" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "Dessverre, ikke nok ledig plass i %s" -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "Det oppsto problemer og «-y» ble brukt uten «--force-yes»" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "«Bare trivielle endringer» ble angitt, men dette er ikke en triviell endring." #. 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Ja, gjør som jeg sier!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1167,19 +1192,19 @@ msgstr "" "For Ã¥ fortsette skriv inn teksten «%s»\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "Avbryter." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "Vil du fortsette?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "Klarte ikke laste ned alle filene" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1187,19 +1212,19 @@ msgstr "" "Klarte ikke Ã¥ hente alle arkivene. Du kan prøve med «apt-get update» eller " "«--fix-missing»." -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "«--fix-missing» og bytte av media støttes nÃ¥ ikke" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "Klarer ikke Ã¥ rette pÃ¥ manglende pakker." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "Avbryter installasjonen." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1213,15 +1238,15 @@ msgstr[1] "" "De følgende pakkene forsvant fra systemet ditt siden\n" "alle filene er overskrevet av andre pakker:" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Merk: Dette er gjort automatisk og med hensikt av dpkg." -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Vi skal ikke slette ting, kan ikke starte auto-fjerner (AutoRemover)" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1239,15 +1264,15 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 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:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "Intern feil, autofjerneren (AutoRemover) ødela noe" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1258,7 +1283,7 @@ msgstr[0] "" msgstr[1] "" "Følgende pakker ble automatisk installert og er ikke lenger pÃ¥krevet:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1266,18 +1291,18 @@ msgid_plural "" msgstr[0] "%lu pakke ble automatisk installert og er ikke lenger pÃ¥krevet.\n" msgstr[1] "%lu pakker ble automatisk installert og er ikke lenger pÃ¥krevet.\n" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 #, fuzzy msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Bruk «apt-get autoremove» for Ã¥ fjerne dem." msgstr[1] "Bruk «apt-get autoremove» for Ã¥ fjerne dem." -#: apt-private/private-install.cc:624 +#: apt-private/private-install.cc:612 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Du vil kanskje utføre «apt-get -f install» for Ã¥ rette pÃ¥ disse:" -#: apt-private/private-install.cc:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1285,7 +1310,7 @@ msgstr "" "Uinnfridde avhengighetsforhold. Prøv «apt-get -f install» uten pakker (eller " "angi en løsning)." -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1297,145 +1322,145 @@ msgstr "" "at visse kjernepakker ennÃ¥ ikke er laget eller flyttet ut av «Incoming» for\n" "distribusjonen." -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "Ødelagte pakker" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "Følgende ekstra pakker vil bli installert." -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "ForeslÃ¥tte pakker:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "Anbefalte pakker" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ADVARSEL: Følgende pakker ble ikke autentisert!" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "Autentiseringsadvarsel overstyrt.\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "Noen pakker ble ikke autentisert" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "Installer disse pakkene uten verifikasjon?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Klarte ikke Ã¥ skaffe %s %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [Installert]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [Installert]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [Installert]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [Installert]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "Følgende pakker har uinnfridde avhengighetsforhold:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "men %s er installert" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "men %s skal installeres" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "men lar seg ikke installere" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "men er en virtuell pakke" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "men er ikke installert" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "men skal ikke installeres" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " eller" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "Følgende NYE pakker vil bli installert:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "Følgende pakker vil bli FJERNET:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "Følgende pakker er holdt tilbake:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "Følgende pakker vil bli oppgradert:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "Følgende pakker vil bli NEDGRADERT:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "Følgende pakker vil bli endret:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (pga. %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1443,27 +1468,27 @@ 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:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu oppgraderte, %lu nylig installerte, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu installert pÃ¥ nytt, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu nedgraderte, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu Ã¥ fjerne og %lu ikke oppgradert.\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu pakker ikke fullt installert eller fjernet.\n" @@ -1472,7 +1497,7 @@ msgstr "%lu pakker ikke fullt installert eller fjernet.\n" #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "[J/n]" @@ -1480,91 +1505,91 @@ msgstr "[J/n]" #. 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:702 +#: apt-private/private-output.cc:708 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:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "J" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "Kompileringsfeil i regulært uttrykk - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "Retter pÃ¥ avhengighetsforhold ..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " mislyktes." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "Klarer ikke Ã¥ rette pÃ¥ avhengighetsforholdene" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "Klarer ikke Ã¥ minimere oppgraderingsettet" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " Utført" -#: apt-private/private-cachefile.cc:102 +#: 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-private/private-cachefile.cc:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "Uinnfridde avhengighetsforhold - Prøv «-f»." -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "Oppdaterings-kommandoen tar ingen argumenter" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "Beregner oppgradering... " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "Intern feil - «AllUpgrade» ødela noe" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "Utført" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1576,43 +1601,43 @@ msgstr "" " Husk ogsÃ¥ at lÃ¥sing er deaktivert, sÃ¥ ikke regn med \n" " relevans i forhold til den reelle gjeldende situasjonen." -#: apt-private/private-sources.cc:45 +#: 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-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "Funnet " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "Hent:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "Ign " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Feil " -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "Hentet %sB pÃ¥ %s (%sB/s)\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [Arbeider]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1625,19 +1650,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "Klarer ikke Ã¥ lese %s" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "Klarer ikke Ã¥ endre %s" @@ -1666,11 +1691,11 @@ msgstr "Ingen speilfil «%s» funnet" msgid "[Mirror: %s]" msgstr "[Speil: %s]" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: 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:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "Forbindelsen ble uventet stengt" @@ -1736,40 +1761,45 @@ msgstr "" " -c=? Les denne innstillingsfila.\n" " -o=? Sett en vilkÃ¥rlig innstilling, f.eks. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Klarte ikke Ã¥ fÃ¥ statusen pÃ¥ %s" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "Kan ikke skrive til %s" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Kan ikke fastslÃ¥ debconf-versjonen. Er debconf installert?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "Lista over pakkeutvidelser er for lang" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "Feil ved lesing av katalogen %s" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "Lista over kildeutvidelser er for lang" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "Feil ved skriving av topptekst til innholdsfila" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "Det oppsto en feil ved lesing av %s" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1851,26 +1881,26 @@ msgstr "" " -c=? Les denne oppsettsfila.\n" " -o=? Setter en vilkÃ¥rlig innstilling" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "Ingen utvalg passet" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Enkelte filer mangler i pakkegruppa «%s»" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "Databasen er ødelagt. Filnavnet er endret til %s.old" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "Databasen er gammel, forsøker Ã¥ oppgradere %s" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -1878,192 +1908,192 @@ msgstr "" "DB-formatet er ugyldig. Hvis du oppgraderte fra en eldre versjon av apt, " "fjern og sÃ¥ gjenopprett databasen." -#: ftparchive/cachedb.cc:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Klarte ikke Ã¥ Ã¥pne Databasefila %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "Klarte ikke Ã¥ fÃ¥ statusen pÃ¥ %s" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "Arkivet har ingen kontrollpost" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "Klarte ikke Ã¥ finne en peker" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "A: Klarte ikke Ã¥ lese katalogen %s\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "A: Klarte ikke Ã¥ fÃ¥ statusen pÃ¥ %s\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "F:" -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "A:" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "F: Det er feil ved fila" -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "Klarte ikke Ã¥ slÃ¥ opp %s" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "Klarte ikke Ã¥ finne fram i treet" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "Klarte ikke Ã¥ Ã¥pne %s" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "Klarte ikke Ã¥ lese lenken %s" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "Klarte ikke Ã¥ oppheve lenken %s" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Klarte ikke Ã¥ lenke %s til %s" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " DeLink-grensa pÃ¥ %s B er nÃ¥dd.\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "Arkivet har ikke noe pakkefelt" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %s har ingen overstyringsoppføring\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s-vedlikeholderen er %s, ikke %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr " %s har ingen kildeoverstyringsoppføring\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s har ingen binæroverstyringsoppføring heller\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - Klarte ikke Ã¥ tildele minne" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "Klarte ikke Ã¥ Ã¥pne %s" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "Ugyldig overstyring %s linje %lu #1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "Klarte ikke Ã¥ lese overstyringsfila %s" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, fuzzy, c-format msgid "Malformed override %s line %llu #1" msgstr "Ugyldig overstyring %s linje %lu #1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, fuzzy, c-format msgid "Malformed override %s line %llu #2" msgstr "Ugyldig overstyring %s linje %lu #2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, fuzzy, c-format msgid "Malformed override %s line %llu #3" msgstr "Ugyldig overstyring %s linje %lu #3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "Ukjent komprimeringsalgoritme «%s»" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "Komprimert utdata %s trenger et komprimeringssett" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "Klarte ikke Ã¥ opprette FILE*" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "Klarte ikke Ã¥ forgreine prosess" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "Komprimer barneprosess" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "Intern feil, klarte ikke Ã¥ opprette %s" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "Klarte ikke Ã¥ kommunisere med underprosess/fil" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "Klarte ikke Ã¥ lese under utregning av MD5" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "Problem ved oppheving av lenken til %s" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "Klarte ikke Ã¥ endre navnet pÃ¥ %s til %s" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -2117,157 +2147,157 @@ msgstr "" " -c=? Les denne innstillingsfila.\n" " -o=? Sett en vilkÃ¥rlig innstilling, f.eks. -o dir::cache=/tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "Klarte ikke Ã¥ opprette rør" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "Klarte ikke Ã¥ kjøre gzip " -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "Ødelagt arkiv" -#: apt-inst/contrib/extracttar.cc:201 +#: apt-inst/contrib/extracttar.cc:203 msgid "Tar checksum failed, archive corrupted" msgstr "Tar-sjekksummen mislykkes, arkivet er ødelagt" -#: apt-inst/contrib/extracttar.cc:306 +#: 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-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "Ugyldig arkivsignatur" -#: apt-inst/contrib/arfile.cc:82 +#: apt-inst/contrib/arfile.cc:84 msgid "Error reading archive member header" msgstr "Feil ved lesing av arkivmedlemshode" -#: apt-inst/contrib/arfile.cc:94 +#: apt-inst/contrib/arfile.cc:96 #, c-format msgid "Invalid archive member header %s" msgstr "Ugyldig arkivmedlemshode %s" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "Ugyldig arkivmedlemshode" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "Arkivet er for kort" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "Klarte ikke Ã¥ lese arkivhodene" -#: apt-inst/filelist.cc:382 +#: 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:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "Fant ikke nøkkelelementet." -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "Klarte ikke Ã¥ tildele avledning" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "Intern feil i AddDiversion" -#: apt-inst/filelist.cc:479 +#: 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-inst/filelist.cc:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "Dobbel tillegging av avledning %s -> %s" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "Dobbel oppsettsfil %s/%s" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format msgid "Failed to write file %s" msgstr "Klarte ikke Ã¥ skrive fila %s" -#: apt-inst/dirstream.cc:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "Klarte ikke Ã¥ lukke fila %s" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format msgid "The path %s is too long" msgstr "Stien %s er for lang" -#: apt-inst/extract.cc:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "Pakker ut %s mer enn en gang" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "Katalogen %s er avledet" -#: apt-inst/extract.cc:145 +#: 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" -#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 msgid "The diversion path is too long" msgstr "Avledningsstien er for lang" -#: apt-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "Mappa %s blir byttet ut med noe som ikke er en mappe" -#: apt-inst/extract.cc:282 +#: apt-inst/extract.cc:289 msgid "Failed to locate node in its hash bucket" msgstr "Fant ikke knutepunktet i dens hash-spann" -#: apt-inst/extract.cc:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "Stien er for lang" -#: apt-inst/extract.cc:414 +#: apt-inst/extract.cc:421 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Skriver over pakketreff uten versjon for %s" -#: apt-inst/extract.cc:431 +#: apt-inst/extract.cc:438 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "Fila %s/%s skriver over den tilsvarende fila i pakken %s" -#: apt-inst/extract.cc:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "Klarte ikke Ã¥ fÃ¥ statusen pÃ¥ %s" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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 "Dette er ikke et gyldig DEB-arkiv, mangler «%s»-medlemmet" -#: apt-inst/deb/debfile.cc:124 +#: apt-inst/deb/debfile.cc:132 #, c-format msgid "Internal error, could not locate member %s" msgstr "Intern feil, fant ikke medlemmet %s" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "Kontrollfila kan ikke tolkes" @@ -2328,482 +2358,487 @@ msgstr "" "av brukeren." #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lid %lit %lim %lis" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "%lit %lim %lis" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "%lim %lis" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "%lis" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "Fant ikke utvalget %s" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Ukjent typeforkortelse: «%c»" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "Ã…pner oppsettsfila %s" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Syntaksfeil %s:%u: Blokka starter uten navn." -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Syntaksfeil %s:%u: Feil pÃ¥ taggen" -#: apt-pkg/contrib/configuration.cc:821 +#: 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-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, 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" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Syntaksfeil %s:%u: For mange nøstede inkluderte filer" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Syntaksfeil %s:%u: Inkludert herfra" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Syntaksfeil %s:%u: Direktivet «%s» er ikke støttet" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-pkg/contrib/configuration.cc:900 #, c-format msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "Syntaksfeil %s:%u: clear-direktivet krever et valgtre som argument" -#: apt-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Syntaksfeil %s:%u: Ugyldige angivelser pÃ¥ slutten av fila" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s ... Feil" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s ... Ferdig" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s ... Ferdig" -#: apt-pkg/contrib/cmndline.cc:116 +#: 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-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format msgid "Command line option %s is not boolean" msgstr "Kommandolinjevalget %s er ikke boolsk" -#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "Valget %s krever et argument." -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "Valg %s: Angivelsen av oppsettselementet mÃ¥ ha en =<verdi>." -#: apt-pkg/contrib/cmndline.cc:273 +#: 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-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "Valget «%s» er for langt" -#: apt-pkg/contrib/cmndline.cc:336 +#: 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-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "Ugyldig operasjon %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format msgid "Unable to stat the mount point %s" msgstr "Klarer ikke Ã¥ fastsette monteringspunktet %s" -#: apt-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "Klarer ikke Ã¥ fÃ¥ statusen pÃ¥ CD-spilleren" -#: apt-pkg/contrib/fileutl.cc:95 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problem ved lÃ¥sing av gzip-fila %s" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "Bruker ikke lÃ¥sing for den skrivebeskyttede lÃ¥sefila %s" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "Klarte ikke Ã¥pne lÃ¥sefila %s" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, 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-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "FÃ¥r ikke lÃ¥st %s" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Underprosessen %s mottok et minnefeilsignal." -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, c-format msgid "Sub-process %s received signal %u." msgstr "Underprosessen %s mottok signalet %u." -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 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-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Underprosessen %s avsluttet uventet" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problem ved lÃ¥sing av gzip-fila %s" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "Klarte ikke Ã¥pne fila %s" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, c-format msgid "Could not open file descriptor %d" msgstr "Klarte ikke Ã¥pne fildeskriptor %d" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "Klarte ikke Ã¥ opprette underprosessen IPC" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "Klarte ikke Ã¥ kjøre komprimeringen" -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, fuzzy, c-format msgid "read, still have %llu to read but none left" msgstr "lese, har fremdeles %lu igjen Ã¥ lese, men ingen igjen" -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, fuzzy, c-format msgid "write, still have %llu to write but couldn't" msgstr "skrive, har fremdeles %lu igjen Ã¥ skrive, men klarte ikke Ã¥" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, c-format msgid "Problem closing the file %s" msgstr "Problem ved lÃ¥sing av fila %s" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, c-format msgid "Problem renaming the file %s to %s" msgstr "Problem ved endring av navn pÃ¥ fila %s til %s" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, c-format msgid "Problem unlinking the file %s" msgstr "Problem ved oppheving av lenke til fila %s" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "Problem ved oppdatering av fila" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "klarte ikke Ã¥ endre navnet, %s (%s -> %s)." + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, c-format msgid "No keyring installed in %s." msgstr "Ingen nøkkelring installert i %s." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "Tomt pakkelager" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "Pakkens lagerfil er ødelagt" -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "Pakkens lagerfil er av feil versjon (samvirker ikke)" -#: apt-pkg/pkgcache.cc:162 +#: apt-pkg/pkgcache.cc:169 #, fuzzy msgid "The package cache file is corrupted, it is too small" msgstr "Pakkens lagerfil er ødelagt" -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "Denne APT støtter ikke versjonssystemet «%s»" -#: apt-pkg/pkgcache.cc:172 +#: 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:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "Avhenger av" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "Forutsetter" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "ForeslÃ¥r" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "Anbefaler" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "Er i konflikt med" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "Erstatter" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "Nuller" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "Ødelegger" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "Forbedrer" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "viktig" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "pÃ¥krevet" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "vanlig" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "valgfri" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "tillegg" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "Skaper oversikt over avhengighetsforhold" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "Versjons-kandidater" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "Oppretter avhengighetsforhold" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 msgid "Reading state information" msgstr "Leser tilstandsinformasjon" -#: apt-pkg/depcache.cc:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "Klarte ikke Ã¥ Ã¥pne StateFile %s" -#: apt-pkg/depcache.cc:250 +#: apt-pkg/depcache.cc:256 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Klarte ikke Ã¥ skrive midlertidig StateFile %s" -#: apt-pkg/tagfile.cc:138 +#: apt-pkg/tagfile.cc:140 #, c-format msgid "Unable to parse package file %s (1)" msgstr "Klarer ikke Ã¥ fortolke pakkefila %s (1)" -#: apt-pkg/tagfile.cc:235 +#: apt-pkg/tagfile.cc:237 #, c-format msgid "Unable to parse package file %s (2)" msgstr "Klarer ikke Ã¥ fortolke pakkefila %s (2)" -#: apt-pkg/sourcelist.cc:118 +#: 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-pkg/sourcelist.cc:161 +#: 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-pkg/sourcelist.cc:164 +#: 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-pkg/sourcelist.cc:175 +#: apt-pkg/sourcelist.cc:184 #, c-format msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" msgstr "Feil pÃ¥ linje %lu i kildelista %s ([%s] er ingen tilordning)" -#: apt-pkg/sourcelist.cc:181 +#: apt-pkg/sourcelist.cc:190 #, c-format msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "Feil pÃ¥ linje %lu i kildelista %s ([%s] har ingen nøkkel)" -#: apt-pkg/sourcelist.cc:184 +#: apt-pkg/sourcelist.cc:193 #, c-format msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "Feil pÃ¥ linje %lu i kildelista %s ([%s] nøkkel %s har ingen verdi)" -#: apt-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "Feil pÃ¥ linje %lu i kildelista %s (nettadresse)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "Feil pÃ¥ linje %lu i kildelista %s (dist)" -#: apt-pkg/sourcelist.cc:202 +#: 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)" -#: apt-pkg/sourcelist.cc:208 +#: 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)" -#: apt-pkg/sourcelist.cc:215 +#: 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-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "Ã…pner %s" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "Linje %u i kildelista %s er for lang" -#: apt-pkg/sourcelist.cc:362 +#: 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-pkg/sourcelist.cc:366 +#: apt-pkg/sourcelist.cc:375 #, 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" -#: apt-pkg/sourcelist.cc:407 +#: 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-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2812,12 +2847,12 @@ msgstr "" "Klarte ikke gjennomføre umiddelbar konfigurasjon av «%s». Se man 5 apt.conf " "under APT::Immediate-Configure for detaljer. (%d)" -#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "Klarte ikke Ã¥pne fila «%s»" -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2828,19 +2863,19 @@ msgstr "" "%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/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "Oversiktsfil av typen «%s» støttes ikke" -#: apt-pkg/algorithms.cc:266 +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" "Pakka %s trenger Ã¥ installeres pÃ¥ nytt, men jeg finner ikke lageret for den." -#: apt-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2848,216 +2883,211 @@ msgstr "" "Feil, pkgProblemResolver::Resolve skapte et brudd, det kan skyldes pakker " "som holdes tilbake." -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "Klarer ikke Ã¥ rette problemene, noen ødelagte pakker er holdt tilbake." -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, c-format msgid "List directory %spartial is missing." msgstr "Listemappa %spartial mangler." -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, c-format msgid "Archives directory %spartial is missing." msgstr "Arkivmappa %spartial mangler." -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, c-format msgid "Unable to lock directory %s" msgstr "Klarte ikke lÃ¥se mappa %s" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Henter fil %li av %li (%s gjenværende)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "Henter fil %li av %li" -#: apt-pkg/acquire-worker.cc:113 +#: apt-pkg/acquire-worker.cc:116 #, c-format msgid "The method driver %s could not be found." msgstr "Finner ikke metode-driveren %s." -#: apt-pkg/acquire-worker.cc:115 +#: apt-pkg/acquire-worker.cc:118 #, fuzzy, c-format msgid "Is the package %s installed?" msgstr "Sjekk om pakken «dpkg-dev» er installert.\n" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "Metoden %s startet ikke korrekt" -#: apt-pkg/acquire-worker.cc:452 +#: 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." -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Pakkesystemet «%s» støttes ikke" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "Klarer ikke bestemme en passende pakkesystemtype" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "Klarer ikke finne informasjonom %s." -#: apt-pkg/srcrecords.cc:47 +#: 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»." -#: apt-pkg/cachefile.cc:87 +#: 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." -#: apt-pkg/cachefile.cc:91 +#: 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:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "Kan ikke lese kildlista." -#: apt-pkg/policy.cc:75 +#: 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 "" -#: apt-pkg/policy.cc:414 +#: 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:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "Forsto ikke spikring av typen %s" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "Ingen prioritet (eller null) spesifisert for pin" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 msgid "Cache has an incompatible versioning system" msgstr "Lageret har et uoverensstemmende versjonssystem" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: 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)" -#: apt-pkg/pkgcachegen.cc:251 +#: 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." -#: apt-pkg/pkgcachegen.cc:254 +#: 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." -#: apt-pkg/pkgcachegen.cc:257 +#: 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." -#: apt-pkg/pkgcachegen.cc:260 +#: 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." -#: apt-pkg/pkgcachegen.cc:570 +#: 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" -#: apt-pkg/pkgcachegen.cc:1199 +#: 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" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 msgid "Reading package lists" msgstr "Leser pakkelister" -#: apt-pkg/pkgcachegen.cc:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "Samler inn filtilbud" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 msgid "IO Error saving source cache" msgstr "IO-feil ved lagring av kildekode-lager" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "klarte ikke Ã¥ endre navnet, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "Hashsummen stemmer ikke" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "Feil størrelse" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "Ugyldig operasjon %s" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, 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:1586 +#: apt-pkg/acquire-item.cc:1595 #, fuzzy, c-format msgid "Unable to find hash sum for '%s' in Release file" msgstr "Klarer ikke Ã¥ fortolke Release-fila %s" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 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" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " "repository will not be applied." msgstr "" -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Konflikt mellom distribusjoner: %s (forventet %s men fant %s)" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3067,12 +3097,12 @@ msgstr "" "forrige indeksfilen vil bli brukt. GPG-feil: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "GPG-feil: %s: %s" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3081,82 +3111,78 @@ msgstr "" "Klarte ikke Ã¥ finne en fil for pakken %s. Det kan bety at du mÃ¥ ordne pakken " "selv (fordi arkitekturen mangler)." -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, 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." -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, c-format msgid "Unable to parse Release file %s" msgstr "Klarer ikke Ã¥ fortolke Release-fila %s" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, c-format msgid "No sections in Release file %s" msgstr "Ingen avsnitt i Release-fila %s" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "Ingen sjekksumoppføring i Release-fila %s" -#: apt-pkg/indexrecords.cc:125 +#: 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-pkg/indexrecords.cc:144 +#: 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-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "Utgivers blokk %s inneholder ikke no fingeravtrykk" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Bruker CD-ROM monteringspunkt %s\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "Avmonterer CD-ROM\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "Avmonterer CD-ROM ...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "Venter pÃ¥ CD-en...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "Monterer CD-ROM...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " -msgstr "Indentifiserer.." +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " +msgstr "Indentifiserer..." -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "Lagret merkelapp: %s \n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "Avmonterer CD-ROM ...\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" -msgstr "Leter gjennom CD for indeksfiler..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" +msgstr "Leter gjennom CD for indeksfiler...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3165,7 +3191,7 @@ msgstr "" "Fant %zu pakkeindekser, %zu kildeindekser, %zu oversettelsesindekser og %zu " "signaturer\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" @@ -3173,16 +3199,16 @@ msgstr "" "Klarte ikke finne noen Package-filer. Kanskje dette ikke er en Debian Disc " "eller du har valgt feil arkitektur?" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "Fant merkelapp «%s»\n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 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:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3191,34 +3217,34 @@ msgstr "" "CD-en er kalt: \n" "«%s»\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "Kopierer pakkelister..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "Skriver ny kildeliste\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "Kildelisteoppføringer for denne CD-en er:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: 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:777 +#: 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" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:780 +#: 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" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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" @@ -3233,37 +3259,37 @@ msgstr "Klarte ikke finne autentiseringsoppføring for: %s" msgid "Hash mismatch for: %s" msgstr "Hashsummen stemmer ikke for: %s" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Utgave «%s» av «%s» ble ikke funnet" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Versjon «%s» av «%s» ble ikke funnet" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, c-format msgid "Couldn't find task '%s'" msgstr "Klarte ikke Ã¥ finne oppgave «%s»" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, c-format msgid "Couldn't find any package by regex '%s'" msgstr "Klarte ikke finne noen pakken med regex «%s»" -#: apt-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "Klarte ikke finne noen pakken med regex «%s»" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, 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-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " @@ -3272,56 +3298,56 @@ msgstr "" "Klarte ikke velge installert eller kandidatversjon fra pakken «%s» siden den " "har ingen av dem" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, 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-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, 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" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, 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" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "Kjører dpkg" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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 " @@ -3330,118 +3356,118 @@ msgstr "" "Klarte ikke Ã¥ laste ned alle oversiktfilene. De ble ignorerte, eller gamle " "ble brukt isteden. " -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "Installerer %s" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "Setter opp %s" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "Fjerner %s" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format msgid "Completely removing %s" msgstr "Fjerner %s fullstendig" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "Legger merke til at %s forsvinner" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "Kjører etter-installasjonsutløser %s" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "Mappa «%s» mangler" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format msgid "Could not open file '%s'" msgstr "Klarte ikke Ã¥pne fila «%s»" -#: apt-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "Forbereder %s" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "Pakker ut %s" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "Forbereder oppsett av %s" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "Installerte %s" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "Forbereder fjerning av %s" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "Fjernet %s" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "Forbereder Ã¥ fullstendig slette %s" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "Fjernet %s fullstendig" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "Kan ikke skrive til %s" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 msgid "No apport report written because MaxReports is reached already" msgstr "Ingen apport-rapport skrevet for MaxReports allerede er nÃ¥dd" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "avhengighetsproblemer - lar den være uoppsatt" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3449,7 +3475,7 @@ msgstr "" "Ingen apport-rapport skrevet fordi feilmeldingen indikerer at den er en " "følgefeil fra en tidligere feil." -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" @@ -3457,7 +3483,7 @@ msgstr "" "Ingen apport-rapport skrevet fordi feilmeldingen indikerer en «full disk»-" "feil" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3465,7 +3491,7 @@ msgstr "" "Ingen apport-rapport skrevet fordi feilmeldingen indikerer en «tom for " "minne»-feil" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 #, fuzzy msgid "" "No apport report written because the error message indicates an issue on the " @@ -3474,13 +3500,13 @@ msgstr "" "Ingen apport-rapport skrevet fordi feilmeldingen indikerer en «full disk»-" "feil" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" "Ingen apport-rapport skrevet fordi feilmeldingen indikerer en «dpkg I/O»-feil" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " @@ -3488,20 +3514,20 @@ msgid "" msgstr "" "Klarte ikke lÃ¥se den administrative mappen (%s). Bruker en annen prosess den?" -#: apt-pkg/deb/debsystem.cc:87 +#: 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?" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: 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-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "Ikke lÃ¥st" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2006-06-12 14:35+0545\n" "Last-Translator: Shiva Pokharel <pokharelshiva@hotmail.com>\n" "Language-Team: Nepali <info@mpp.org.np>\n" @@ -17,156 +17,157 @@ msgstr "" "Plural-Forms: nplurals=2;plural=(n!=1)\n" "X-Generator: KBabel 1.10.2\n" -#: cmdline/apt-cache.cc:140 +#: cmdline/apt-cache.cc:149 #, c-format msgid "Package %s version %s has an unmet dep:\n" msgstr "पà¥à¤¯à¤¾à¤•ेज %s संसà¥à¤•रण %s संग à¤à¤‰à¤Ÿà¤¾ नà¤à¥‡à¤Ÿà¤¿à¤à¤•ो dep छ:\n" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "कूल पà¥à¤¯à¤¾à¤•ेज नामहरू :" -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 #, fuzzy msgid "Total package structures: " msgstr "कूल पà¥à¤¯à¤¾à¤•ेज नामहरू :" -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " सामानà¥à¤¯ पà¥à¤¯à¤¾à¤•ेजहरू:" -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr "शà¥à¤¦à¥à¤§ अवासà¥à¤¤à¤µà¤¿à¤• पà¥à¤¯à¤¾à¤•ेजहरू:" -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " à¤à¤•ल अवासà¥à¤¤à¤µà¤¿à¤• पà¥à¤¯à¤¾à¤•ेजहरू:" -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " मिशà¥à¤°à¤¿à¤¤ अवासà¥à¤¤à¤µà¤¿à¤• पà¥à¤¯à¤¾à¤•ेजहरू:" -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " हराइरहेको:" -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "कूल à¤à¤¿à¤¨à¥à¤¨ संसà¥à¤•रणहरू:" -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 #, fuzzy msgid "Total distinct descriptions: " msgstr "कूल à¤à¤¿à¤¨à¥à¤¨ संसà¥à¤•रणहरू:" -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "कूल निरà¥à¤à¤°à¤¤à¤¾à¤¹à¤°à¥‚:" -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "जमà¥à¤®à¤¾ ver/file समà¥à¤¬à¤¨à¥à¤§à¤¹à¤°à¥‚: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 #, fuzzy msgid "Total Desc/File relations: " msgstr "जमà¥à¤®à¤¾ ver/file समà¥à¤¬à¤¨à¥à¤§à¤¹à¤°à¥‚: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "कूल उपलबà¥à¤§ मानचितà¥à¤°à¤£à¤¹à¤°à¥‚:" -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "कूल विशà¥à¤µà¤µà¥à¤¯à¤¾à¤ªà¥€ सà¥à¤Ÿà¥à¤°à¤¿à¤™à¥à¤—हरू:" -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "कूल निरà¥à¤à¤°à¤¤à¤¾ संसà¥à¤•रण खाली ठाऊà¤:" -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "कूल शिथिल खाली ठाऊà¤:" -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "को लागि कूल खाली ठाऊठलेखांकन:" -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: 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 à¤à¤¨à¥à¤¦à¤¾ बाहिर छ ।" -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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 "कà¥à¤¨à¥ˆ पà¥à¤¯à¤¾à¤•ेजहरू फेला परेन" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 #, fuzzy msgid "You must give at least one search pattern" msgstr "तपाईà¤à¤²à¥‡ à¤à¤‰à¤Ÿà¤¾ वासà¥à¤¤à¤µà¤¿à¤• बानà¥à¤•ी दिनà¥à¤ªà¤°à¥à¤›" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "पà¥à¤¯à¤¾à¤•ेज %s तोकà¥à¤¨ असकà¥à¤·à¤® à¤à¤¯à¥‹" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "पà¥à¤¯à¤¾à¤•ेज फाइलहरू:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: 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 गरà¥à¤¨ सकà¥à¤¦à¥ˆà¤¨" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "पिन गरिà¤à¤•ा पà¥à¤¯à¤¾à¤•ेजहरू:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(फेला परेन)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ à¤à¤¯à¥‹:" -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " उमेदà¥à¤µà¤¾à¤°:" -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(कà¥à¤¨à¥ˆ पनि होइन)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr "पà¥à¤¯à¤¾à¤•ेज पिन:" #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " संसà¥à¤•रण तालिका:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: 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" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -240,29 +241,29 @@ msgstr "" " -o=? à¤à¤‰à¤Ÿà¤¾ सà¥à¤µà¥‡à¤šà¥à¤›à¤¾à¤šà¤¾à¤°à¥€ कनफिगरेसन फाइल सेट गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥, जसà¥à¤¤à¥ˆ -o dir::cache=/tmp\n" "धेरै जानकारीकोप लागि apt-cache(8) र apt.conf(5) मà¥à¤¯à¤¾à¤¨à¥à¤² पृषà¥à¤Ÿà¤¹à¤°à¥‚ हेरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।\n" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: 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:104 +#: cmdline/apt-cdrom.cc:91 msgid "Please insert a Disc in the drive and press enter" msgstr "कृपया डà¥à¤°à¤¾à¤‡à¤à¤®à¤¾ डिसà¥à¤• घà¥à¤¸à¤¾à¤‰à¤¨à¥à¤¹à¥‹à¤¸à¥ र इनà¥à¤Ÿà¤° थिचà¥à¤¨à¥à¤¹à¥‹à¤¸à¥" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, fuzzy, c-format msgid "Failed to mount '%s' to '%s'" msgstr " %s मा %s पà¥à¤¨:नामकरण असफल à¤à¤¯à¥‹" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "तपाईà¤à¤•ो सेटमा बाà¤à¤•ी सि डि हरà¥à¤•ो लागि यो पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ फेरी गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ । " @@ -298,65 +299,65 @@ msgstr "" " -c=? यो कनफिगरेसन फाइल पढà¥à¤¨à¥à¤¹à¥‹à¤¸à¥\n" " -o=? à¤à¤‰à¤Ÿà¤¾ सà¥à¤µà¥‡à¤šà¥à¤›à¤¾à¤šà¤¾à¤°à¥€ कनफिगरेसन विकलà¥à¤ª सेट गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥, जसà¥à¤¤à¥ˆ -o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:244 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format msgid "Can not find a package for architecture '%s'" msgstr "पà¥à¤¯à¤¾à¤•ेज फेला पारà¥à¤¨ सकिà¤à¤¨ %s" -#: cmdline/apt-get.cc:326 +#: cmdline/apt-get.cc:327 #, fuzzy, c-format msgid "Can not find a package '%s' with version '%s'" msgstr "पà¥à¤¯à¤¾à¤•ेज फेला पारà¥à¤¨ सकिà¤à¤¨ %s" -#: cmdline/apt-get.cc:329 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format msgid "Can not find a package '%s' with release '%s'" msgstr "पà¥à¤¯à¤¾à¤•ेज फेला पारà¥à¤¨ सकिà¤à¤¨ %s" -#: cmdline/apt-get.cc:366 +#: cmdline/apt-get.cc:367 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "सà¥à¤°à¥‹à¤¤ पà¥à¤¯à¤¾à¤•ेज सूची %s सà¥à¤¥à¤¿à¤° गरà¥à¤¨ सकिà¤à¤¨ " -#: cmdline/apt-get.cc:422 +#: cmdline/apt-get.cc:423 #, c-format msgid "Can not find version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "पà¥à¤¯à¤¾à¤•ेज फेला पारà¥à¤¨ सकिà¤à¤¨ %s" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "तर %s सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥à¤ªà¤°à¥à¤¯à¥‹" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "तर %s सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥à¤ªà¤°à¥à¤¯à¥‹" -#: cmdline/apt-get.cc:468 cmdline/apt-mark.cc:116 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 msgid "Internal error, problem resolver broke stuff" msgstr "आनà¥à¤¤à¤°à¤¿à¤• तà¥à¤°à¥à¤Ÿà¤¿,समसà¥à¤¯à¤¾ हलकरà¥à¤¤à¤¾à¤²à¥‡ उतà¥à¤¤à¤® गà¥à¤£ à¤à¤¾à¤à¤šà¥à¤¯à¥‹ " -#: cmdline/apt-get.cc:573 cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 msgid "Unable to lock the download directory" msgstr "डाउनलोड डाइरेकà¥à¤Ÿà¥à¤°à¥€ तालà¥à¤šà¤¾ मारà¥à¤¨ असकà¥à¤·à¤®" -#: cmdline/apt-get.cc:725 +#: cmdline/apt-get.cc:726 msgid "Must specify at least one package to fetch source for" msgstr "को लागि सà¥à¤°à¥‹à¤¤ तानà¥à¤¨ कमà¥à¤¤à¤¿à¤®à¤¾ à¤à¤‰à¤Ÿà¤¾ पà¥à¤¯à¤¾à¤•ेज निरà¥à¤¦à¤¿à¤·à¥à¤Ÿ गरà¥à¤¨à¥à¤ªà¤°à¥à¤›" -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "%s को लागि सà¥à¤°à¥‹à¤¤ पà¥à¤¯à¤¾à¤•ेज फेला पारà¥à¤¨ असफल à¤à¤¯à¥‹" @@ -376,114 +377,114 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "पहिलà¥à¤¯à¥ˆ डाउनलोड à¤à¤à¤•ा फाइलहरॠफडà¥à¤•ाइदैछ '%s'\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr " %s मा खाली ठाऊठनिरà¥à¤§à¤¾à¤°à¤£ गरà¥à¤¨ सकिà¤à¤¨" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "तपाईठसंग %s मा परà¥à¤¯à¤¾à¤ªà¥à¤¤ खाली ठाऊठछैन" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "सà¥à¤°à¥‹à¤¤ संगà¥à¤°à¤¹à¤¹à¤°à¥à¤•ो %sB/%sB पà¥à¤°à¤¾à¤ªà¥à¤¤ गरà¥à¤¨ आवशà¥à¤¯à¤• छ ।\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "सà¥à¤°à¥‹à¤¤ संगà¥à¤°à¤¹à¤¹à¤°à¥à¤•ो %sB पà¥à¤°à¤¾à¤ªà¥à¤¤ गरà¥à¤¨ आवशà¥à¤¯à¤• छ ।\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "सà¥à¤°à¥‹à¤¤ फडà¥à¤•ाउनà¥à¤¹à¥‹à¤¸à¥ %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "केही संगà¥à¤°à¤¹ फडà¥à¤•ाउन असफल à¤à¤¯à¥‹ ।" -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "डाउनलोड समापà¥à¤¤ à¤à¤¯à¥‹ र डाउनलोडमा मोड मातà¥à¤°à¥ˆ छ" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr " %s मा पहिलà¥à¤¯à¥ˆ अनपà¥à¤¯à¤¾à¤• गरिà¤à¤•ा सà¥à¤°à¥‹à¤¤à¤•ो अनपà¥à¤¯à¤¾à¤• फडà¥à¤•ाइदैछ\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "अनपà¥à¤¯à¤¾à¤• आदेश '%s' असफल à¤à¤¯à¥‹ ।\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "जाà¤à¤šà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ यदि 'dpkg-dev' पà¥à¤¯à¤¾à¤•ेज सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ à¤à¤¯à¥‹ ।\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "निरà¥à¤®à¤¾à¤£ आदेश '%s' असफल à¤à¤¯à¥‹ ।\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "शाखा पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ असफल à¤à¤¯à¥‹" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "को लागि builddeps जाà¤à¤šà¥à¤¨ कमà¥à¤¤à¤¿à¤®à¤¾ à¤à¤‰à¤Ÿà¤¾ पà¥à¤¯à¤¾à¤•ेज निरà¥à¤¦à¤·à¥à¤Ÿ गरà¥à¤¨à¥à¤ªà¤°à¥à¤›" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "%s को लागि निरà¥à¤®à¤¾à¤£-निरà¥à¤à¤°à¤¤à¤¾ सूचना पà¥à¤°à¤¾à¤ªà¥à¤¤ गरà¥à¤¨ असकà¥à¤·à¤® à¤à¤¯à¥‹" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s कà¥à¤¨à¥ˆ निरà¥à¤®à¤¾à¤£à¤®à¤¾ आधारित हà¥à¤¦à¥ˆà¤¨ ।\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " "packages" msgstr "%s को लागि %s निरà¥à¤à¤°à¤¤à¤¾ सनà¥à¤¤à¥à¤·à¥à¤Ÿ हà¥à¤¨ सकेन किनà¤à¤¨à¥‡ पà¥à¤¯à¤¾à¤•ेज %s फेला पारà¥à¤¨ सकिà¤à¤¨" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, 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:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "%s को लागि %s निरà¥à¤à¤°à¤¤à¤¾ सनà¥à¤¤à¥à¤·à¥à¤Ÿ पारà¥à¤¨ असफल à¤à¤¯à¥‹: सà¥à¤¥à¤¾à¤ªà¤¿à¤¤ पà¥à¤¯à¤¾à¤•ेज %s अति नयाठछ" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -492,37 +493,37 @@ msgstr "" "%sको लागि %s निरà¥à¤à¤°à¤¤à¤¾ सनà¥à¤¤à¥à¤·à¥à¤Ÿ हà¥à¤¨ सकेन किन à¤à¤¨à¥‡ पà¥à¤¯à¤¾à¤•ेज %s को कà¥à¤¨à¥ˆ उपलबà¥à¤§ संसà¥à¤•रणले संसà¥à¤•रण " "आवशà¥à¤¯à¤•ताहरà¥à¤²à¤¾à¤ˆ सनà¥à¤¤à¥à¤·à¥à¤Ÿ पारà¥à¤¨ सकेन " -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " "version" msgstr "%s को लागि %s निरà¥à¤à¤°à¤¤à¤¾ सनà¥à¤¤à¥à¤·à¥à¤Ÿ हà¥à¤¨ सकेन किनà¤à¤¨à¥‡ पà¥à¤¯à¤¾à¤•ेज %s फेला पारà¥à¤¨ सकिà¤à¤¨" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "%s को लागि %s निरà¥à¤à¤°à¤¤à¤¾ सनà¥à¤¤à¥à¤·à¥à¤Ÿ गरà¥à¤¨ असफल: %s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "%s को लागि निरà¥à¤®à¤¾à¤£ निरà¥à¤à¤°à¤¤à¤¾à¤¹à¤°à¥‚ सनà¥à¤¤à¥à¤·à¥à¤Ÿ गरà¥à¤¨ सकिà¤à¤¨ । " -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "निरà¥à¤®à¤¾à¤£ निरà¥à¤à¤°à¤¤à¤¾à¤¹à¤°à¥‚ पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ गरà¥à¤¨ असफल" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "%s (%s) मा जडान गरिदैछ" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "समरà¥à¤¥à¤¿à¤¤ मोडà¥à¤¯à¥à¤²à¤¹à¤°à¥‚:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -607,53 +608,75 @@ msgstr "" "pages हेरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।\n" " APT संग सà¥à¤ªà¤° काउ शकà¥à¤¤à¤¿à¤¹à¤°à¥‚ छ ।\n" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "को लागि सà¥à¤°à¥‹à¤¤ तानà¥à¤¨ कमà¥à¤¤à¤¿à¤®à¤¾ à¤à¤‰à¤Ÿà¤¾ पà¥à¤¯à¤¾à¤•ेज निरà¥à¤¦à¤¿à¤·à¥à¤Ÿ गरà¥à¤¨à¥à¤ªà¤°à¥à¤›" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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:63 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format msgid "%s was already set to manually installed.\n" msgstr "तर %s सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥à¤ªà¤°à¥à¤¯à¥‹" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, fuzzy, c-format msgid "%s was already set to automatically installed.\n" msgstr "तर %s सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥à¤ªà¤°à¥à¤¯à¥‹" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format msgid "%s was already set on hold.\n" msgstr "%s पहिलà¥à¤¯à¥ˆ नयाठसंसà¥à¤•रण हो ।\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, fuzzy, c-format msgid "%s was already not hold.\n" msgstr "%s पहिलà¥à¤¯à¥ˆ नयाठसंसà¥à¤•रण हो ।\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr " %s को लागि परà¥à¤–िरहेको तर यो तà¥à¤¯à¤¹à¤¾à¤ छैन" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: 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:264 cmdline/apt-mark.cc:316 +#: 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:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" "\n" @@ -680,7 +703,7 @@ msgid "" "See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -728,52 +751,52 @@ msgstr "%s मा सिडी रोम अनमाउनà¥à¤Ÿ गरà¥à¤¨ à msgid "Disk not found." msgstr "डिसà¥à¤• फेला परेन ।" -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "फाइल फेला परेन " -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 msgid "Failed to stat" msgstr "सà¥à¤¥à¤¿à¤° गरà¥à¤¨ असफल à¤à¤¯à¥‹" -#: methods/copy.cc:82 methods/gzip.cc:113 methods/rred.cc:606 +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 msgid "Failed to set modification time" msgstr "परिमारà¥à¤œà¤¨ समय सेट असफल à¤à¤¯à¥‹" -#: methods/file.cc:47 +#: methods/file.cc:48 msgid "Invalid URI, local URIS must not start with //" msgstr "अवैध URl, सà¥à¤¥à¤¾à¤¨à¤¿à¤¯ URIS // संग सà¥à¤°à¥‚ हà¥à¤¨ सकà¥à¤¦à¥ˆà¤¨" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "लगइन à¤à¤‡à¤°à¤¹à¥‡à¤›" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "समान नाम निरà¥à¤§à¤¾à¤°à¤£ गरà¥à¤¨ असकà¥à¤·à¤® à¤à¤¯à¥‹" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "सà¥à¤¥à¤¾à¤¨à¤¿à¤¯ नाम निरà¥à¤§à¤¾à¤°à¤£ गरà¥à¤¨ असकà¥à¤·à¤® à¤à¤¯à¥‹" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format msgid "The server refused the connection and said: %s" msgstr "सरà¥à¤à¤°à¤²à¥‡ जडान असà¥à¤µà¥€à¤•ार गरà¥à¤¯à¥‹ र à¤à¤¨à¥à¤¯à¥‹: %s" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "पà¥à¤°à¤¯à¥‹à¤—करà¥à¤¤à¤¾ असफल à¤à¤¯à¥‹, सरà¥à¤à¤°à¤²à¥‡ à¤à¤¨à¥à¤¯à¥‹: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "पास असफल à¤à¤¯à¥‹, सरà¥à¤à¤°à¤²à¥‡ à¤à¤¨à¥à¤¯à¥‹: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -781,121 +804,123 @@ msgstr "" "पà¥à¤°à¥‹à¤•à¥à¤¸à¥€ सरà¥à¤à¤° निरà¥à¤¦à¤¿à¤·à¥à¤Ÿ गरियो तर कà¥à¤¨à¥ˆ सà¥à¤•à¥à¤°à¤¿à¤«à¥à¤Ÿ लगइन à¤à¤à¤¨, Acquire::ftp::ProxyLogin " "खाली छ ।" -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "लगइन सà¥à¤•à¥à¤°à¤¿à¤«à¥à¤Ÿ आदेश '%s' असफल à¤à¤¯à¥‹, सरà¥à¤à¤°à¤²à¥‡ à¤à¤¨à¥à¤¯à¥‹: %s" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "टाइप असफल à¤à¤¯à¥‹: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 msgid "Connection timeout" msgstr "जडान समय सकियो" -#: methods/ftp.cc:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "सरà¥à¤à¤°à¤²à¥‡ जडान बनà¥à¤¦ गरà¥à¤¯à¥‹" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "तà¥à¤°à¥à¤Ÿà¤¿ पढà¥à¤¨à¥à¤¹à¥‹à¤¸à¥" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "à¤à¤‰à¤Ÿà¤¾ पà¥à¤°à¤¤à¤¿à¤•à¥à¤°à¤¿à¤¯à¤¾à¤²à¥‡ बफर अधिपà¥à¤°à¤µà¤¾à¤¹ गरà¥à¤¯à¥‹" -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "पà¥à¤°à¥‹à¤Ÿà¥‹à¤•ल दूषित" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "तà¥à¤°à¥à¤Ÿà¤¿ लेखà¥à¤¨à¥à¤¹à¥‹à¤¸à¥" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 msgid "Could not create a socket" msgstr "à¤à¤‰à¤Ÿà¤¾ सकेट सिरà¥à¤œà¤¨à¤¾ गरà¥à¤¨ सकेन" -#: methods/ftp.cc:707 +#: methods/ftp.cc:712 msgid "Could not connect data socket, connection timed out" msgstr "डेटा सकेट जडान गरà¥à¤¨ सकिà¤à¤¨, जडान समय सकियो" -#: methods/ftp.cc:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "असफल à¤à¤¯à¥‹" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "निसà¥à¤•à¥à¤°à¤¿à¤¯ सकेट जडान गरà¥à¤¨ सकिà¤à¤¨" -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo सà¥à¤¨à¥à¤¨à¥‡ सकेट पà¥à¤°à¤¾à¤ªà¥à¤¤ गरà¥à¤¨ असकà¥à¤·à¤® à¤à¤¯à¥‹" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "सकेट बाà¤à¤§à¥à¤¨ सकिà¤à¤¨" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "सकेटमा सà¥à¤¨à¥à¤¨ सकिà¤à¤¨" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "सकेट नाम निरà¥à¤§à¤¾à¤°à¤£ गरà¥à¤¨ सकिà¤à¤¨" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "पोरà¥à¤Ÿ आदेश पठाउन असकà¥à¤·à¤® à¤à¤¯à¥‹" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "अजà¥à¤žà¤¾à¤¤ ठेगाना परिवार %u (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT असफल à¤à¤¯à¥‹, सरà¥à¤à¤°à¤²à¥‡ à¤à¤¨à¥à¤¯à¥‹: %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "डेटा सकेटको जडान समय सकियो" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "जडान सà¥à¤µà¥€à¤•ार गरà¥à¤¨ असकà¥à¤·à¤® à¤à¤¯à¥‹" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "समसà¥à¤¯à¤¾ दà¥à¤°à¥à¤¤à¤¾à¤¨à¥à¤µà¥‡à¤·à¤£ फाइल" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "फाइल तानà¥à¤¨ असकà¥à¤·à¤® à¤à¤¯à¥‹, सरà¥à¤à¤°à¤²à¥‡ à¤à¤¨à¥à¤¯à¥‹ '%s'" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "डेटा सकेट समय सकियो" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "डेटा सà¥à¤¥à¤¾à¤¨à¥à¤¤à¤°à¤£ असफल à¤à¤¯à¥‹, सरà¥à¤à¤°à¤²à¥‡ à¤à¤¨à¥à¤¯à¥‹ '%s'" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "कà¥à¤µà¥‡à¤°à¥€" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "आहà¥à¤µà¤¾à¤¨ गरà¥à¤¨ असकà¥à¤·à¤® à¤à¤¯à¥‹" @@ -931,7 +956,7 @@ msgstr " %s:%s (%s) मा जडान गरà¥à¤¨ सकिà¤à¤¨ ।" #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "%s मा जडान गरिदैछ" @@ -961,182 +986,182 @@ msgstr " '%s:%s' (%i) हल गरà¥à¤¦à¤¾ केही दà¥à¤·à¥à¤Ÿ घट msgid "Unable to connect to %s:%s:" msgstr "%s %s मा जडान गरà¥à¤¨ असफल à¤à¤¯à¥‹:" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "आनà¥à¤¤à¤°à¤¿à¤• तà¥à¤°à¥à¤Ÿà¤¿: असल हसà¥à¤¤à¤¾à¤•à¥à¤·à¤°, तर कà¥à¤žà¥à¤œà¥€ औठाछाप निरà¥à¤§à¤¾à¤°à¤£ गरà¥à¤¨ सकिà¤à¤¨?!" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "कमà¥à¤¤à¤¿à¤®à¤¾ à¤à¤‰à¤Ÿà¤¾ अवैध हसà¥à¤¤à¤¾à¤•à¥à¤·à¤° विरोध à¤à¤¯à¥‹ ।" -#: methods/gpgv.cc:172 +#: methods/gpgv.cc:174 #, fuzzy msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "हसà¥à¤¤à¤¾à¤•à¥à¤·à¤° रूजू गरà¥à¤¨ '%s' कारà¥à¤¯à¤¨à¥à¤µà¤¯à¤¨ गरà¥à¤¨ सकिà¤à¤¨ (के gpgv सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ à¤à¤¯à¥‹?)" #. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "gpgv कारà¥à¤¯à¤¨à¥à¤µà¤¯à¤¨ गरà¥à¤¦à¤¾ अजà¥à¤žà¤¾à¤¤ तà¥à¤°à¥à¤Ÿà¤¿" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "निमà¥à¤¨ हसà¥à¤¤à¤¾à¤•à¥à¤·à¤°à¤¹à¤°à¥‚ अवैध छनà¥:\n" -#: methods/gpgv.cc:229 +#: 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:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "फाइलमा तà¥à¤°à¥à¤Ÿà¤¿ लेखिदैछ" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "सरà¥à¤à¤°à¤¬à¤¾à¤Ÿ तà¥à¤°à¥à¤Ÿà¤¿ पढिदैछ । दूर गनà¥à¤¤à¤¬à¥à¤¯ बनà¥à¤¦ जडान" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "सरà¥à¤à¤°à¤¬à¤¾à¤Ÿ तà¥à¤°à¥à¤Ÿà¤¿ पढिदैछ" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "फाइलमा तà¥à¤°à¥à¤Ÿà¤¿ लेखिदैछ" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "असफल चयन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "जडान समय सकियो" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "निरà¥à¤—ात फाइलमा तà¥à¤°à¥à¤Ÿà¤¿ लेखिदैछ" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "हेडरहरà¥à¤•ो लागि परà¥à¤–िदैछ" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "खराब हेडर लाइन" -#: methods/server.cc:139 methods/server.cc:146 +#: methods/server.cc:134 methods/server.cc:141 msgid "The HTTP server sent an invalid reply header" msgstr "HTTP सरà¥à¤à¤°à¤²à¥‡ अवैध जवाफ हेडर पठायो" -#: methods/server.cc:176 +#: methods/server.cc:171 msgid "The HTTP server sent an invalid Content-Length header" msgstr "HTTP सरà¥à¤à¤°à¤²à¥‡ अवैध सामगà¥à¤°à¥€-लमà¥à¤¬à¤¾à¤ˆ हेडर पठायो" -#: methods/server.cc:199 +#: methods/server.cc:194 msgid "The HTTP server sent an invalid Content-Range header" msgstr "HTTP सरà¥à¤à¤°à¤²à¥‡ अवैध सामगà¥à¤°à¥€-दायरा हेडर पठायो" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "HTTP सरà¥à¤à¤° संग à¤à¤¾à¤à¤šà¤¿à¤à¤•ो दायरा समरà¥à¤¥à¤¨ छ" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "अजà¥à¤žà¤¾à¤¤ मिति ढाà¤à¤šà¤¾" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "खराब हेडर डेटा" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "जडान असफल à¤à¤¯à¥‹" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "आनà¥à¤¤à¤°à¤¿à¤• तà¥à¤°à¥à¤Ÿà¤¿" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "आनà¥à¤¤à¤°à¤¿à¤• तà¥à¤°à¥à¤Ÿà¤¿, सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ पà¥à¤¯à¤¾à¤•ेजहरà¥à¤²à¤¾à¤ˆ à¤à¤¾à¤à¤šà¤¿à¤à¤•ो पà¥à¤¯à¤¾à¤•ेज à¤à¤¨à¤¿à¤¨à¥à¤¥à¥à¤¯à¥‹!" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "पà¥à¤¯à¤¾à¤•ेजहरू हटà¥à¤¨ चाहदैछनॠतर हटाई अकà¥à¤·à¤® à¤à¤‡à¤°à¤¹à¥‡à¤› ।" -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "आनà¥à¤¤à¤°à¤¿à¤• तà¥à¤°à¥à¤Ÿà¤¿, आदेश समापà¥à¤¤ à¤à¤à¤•ो छैन" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "कसà¥à¤¤à¥‹ नमिलेको.. साइजहरू मेल खाà¤à¤¨, apt@packages.debian.org इमेल गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥" #. TRANSLATOR: The required 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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "संगà¥à¤°à¤¹à¤¹à¤°à¥à¤•ो %sB/%sB पà¥à¤°à¤¾à¤ªà¥à¤¤ गरà¥à¤¨ आवशà¥à¤¯à¤• ।\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:171 +#: apt-private/private-install.cc:159 #, 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:178 +#: apt-private/private-install.cc:166 #, fuzzy, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "अनपà¥à¤¯à¤¾à¤• गरिसके पछि थप डिसà¥à¤• खाली ठाउà¤à¤•ो %sB पà¥à¤°à¤¯à¥‹à¤— हà¥à¤¨à¥‡à¤› ।\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:183 +#: apt-private/private-install.cc:171 #, fuzzy, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "%sB अनपà¥à¤¯à¤¾à¤• गरिसके पछि डिसà¥à¤• खाली ठाउठखाली हà¥à¤¨à¥‡à¤› ।\n" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "तपाईठसंग %s मा परà¥à¤¯à¤¾à¤ªà¥à¤¤ खाली ठाऊठछैन ।" -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "तà¥à¤¯à¤¹à¤¾à¤ समसà¥à¤¯à¤¾à¤¹à¤°à¥‚ छनॠर हà¥à¤¨à¥à¤›à¤²à¤¾à¤ˆ जोड नगरिकन -y को पà¥à¤°à¤¯à¥‹à¤— à¤à¤¯à¥‹" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "हो,मैले à¤à¤¨à¥‡ जसà¥à¤¤à¥ˆ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1147,20 +1172,20 @@ msgstr "" "निरनà¥à¤¤à¤°à¤¤à¤¾ दिन '%s' वाकà¥à¤¯à¤¾à¤‚शमा टाइप गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ \n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "परितà¥à¤¯à¤¾à¤— गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।" -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 #, fuzzy msgid "Do you want to continue?" msgstr "के तपाईठनिरनà¥à¤¤à¤°à¤¤à¤¾ दिन चाहनà¥à¤¹à¥à¤¨à¥à¤› [Y/n]? " -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "केही फाइलहरू डाउनलोड गरà¥à¤¨ असफल à¤à¤¯à¥‹" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1168,19 +1193,19 @@ msgstr "" "केही संगà¥à¤°à¤¹à¤¹à¤°à¥‚ तानà¥à¤¨ असकà¥à¤·à¤® à¤à¤¯à¥‹,apt-get अदà¥à¤¯à¤¾à¤µà¤§à¤¿à¤• चलिरहेछ वा हराइरहेको --fix-संगै पà¥à¤°à¤¯à¤¾à¤¸ " "गरà¥à¤¨à¥à¤¹à¥à¤¨à¥à¤› ?" -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "हराइरहेको --fix-र सà¥à¤µà¤¾à¤ª à¤à¤‡à¤°à¤¹à¥‡à¤•ो मेडिया हाल समरà¥à¤¥à¤¿à¤¤ à¤à¤‡à¤°à¤¹à¥‡à¤•ो छैन" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "हराइरहेको पà¥à¤¯à¤¾à¤•ेजहरू सà¥à¤§à¤¾à¤°à¥à¤¨ असकà¥à¤·à¤® à¤à¤¯à¥‹ ।" -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ परितà¥à¤¯à¤¾à¤— गरिदैछ ।" -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1190,15 +1215,15 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1214,16 +1239,16 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 msgid "The following information may help to resolve the situation:" msgstr "निमà¥à¤¨ सूचनाले अवसà¥à¤¥à¤¾à¤²à¤¾à¤ˆ हल गरà¥à¤¨ मदà¥à¤¦à¤¤ गरà¥à¤¨à¥‡à¤›: " -#: apt-private/private-install.cc:517 +#: apt-private/private-install.cc:505 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "आनà¥à¤¤à¤°à¤¿à¤• तà¥à¤°à¥à¤Ÿà¤¿,समसà¥à¤¯à¤¾ हलकरà¥à¤¤à¤¾à¤²à¥‡ उतà¥à¤¤à¤® गà¥à¤£ à¤à¤¾à¤à¤šà¥à¤¯à¥‹ " -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1233,7 +1258,7 @@ msgid_plural "" msgstr[0] "निमà¥à¤¨ नयाठपà¥à¤¯à¤¾à¤•ेजहरू सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥‡à¤›à¤¨à¥:" msgstr[1] "निमà¥à¤¨ नयाठपà¥à¤¯à¤¾à¤•ेजहरू सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥‡à¤›à¤¨à¥:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1241,17 +1266,17 @@ msgid_plural "" msgstr[0] "निमà¥à¤¨ नयाठपà¥à¤¯à¤¾à¤•ेजहरू सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥‡à¤›à¤¨à¥:" msgstr[1] "निमà¥à¤¨ नयाठपà¥à¤¯à¤¾à¤•ेजहरू सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥‡à¤›à¤¨à¥:" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-install.cc:624 +#: 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:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1259,7 +1284,7 @@ msgstr "" "नà¤à¥‡à¤Ÿà¤¿à¤à¤•ा निरà¥à¤à¤°à¤¤à¤¾à¤¹à¤°à¥‚ । पà¥à¤¯à¤¾à¤•ेजहरू बिना 'apt-get -f install' पà¥à¤°à¤¯à¤¾à¤¸ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ( वा " "समाधान निरà¥à¤¦à¤¿à¤·à¥à¤Ÿ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥) ।" -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1272,146 +1297,146 @@ msgstr "" " वितरण अहिले समà¥à¤® सिरà¥à¤œà¤¨à¤¾\n" " à¤à¤à¤•ो छैन वा आवगमन विनानै सरà¥à¤¯à¥‹ ।" -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "à¤à¤¾à¤à¤šà¤¿à¤à¤•ा पà¥à¤¯à¤¾à¤•ेजहरू" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "निमà¥à¤¨ अतिरिकà¥à¤¤ पà¥à¤¯à¤¾à¤•ेजहरू सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥‡à¤›à¤¨à¥:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "सà¥à¤à¤¾à¤µ दिà¤à¤•ा पà¥à¤¯à¤¾à¤•ेजहरू:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "सिफारिस गरिà¤à¤•ा पà¥à¤¯à¤¾à¤•ेजहरू:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "चेतावनी: निमà¥à¤¨ पà¥à¤¯à¤¾à¤•लेजहरू पà¥à¤°à¤£à¤¾à¤£à¥€à¤•रण हà¥à¤¨ सकà¥à¤¦à¥ˆà¤¨! " -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "पà¥à¤°à¤®à¤¾à¤£à¤¿à¤•रण चेतावनी अधिलेखन à¤à¤¯à¥‹ ।\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "केही पà¥à¤¯à¤¾à¤•ेजहरू पà¥à¤°à¤®à¤¾à¤£à¥€à¤•रण हà¥à¤¨ सकà¥à¤¦à¥ˆà¤¨" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 #, fuzzy msgid "Install these packages without verification?" msgstr "यी पà¥à¤¯à¤¾à¤•ेजहरू रूजू बिना सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ गरà¥à¤¨à¥à¤¹à¥à¤¨à¥à¤› [y/N]? " -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s %s तानà¥à¤¨ असफल à¤à¤¯à¥‹\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ à¤à¤¯à¥‹]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ à¤à¤¯à¥‹]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ à¤à¤¯à¥‹]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ à¤à¤¯à¥‹]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "निमà¥à¤¨ पà¥à¤¯à¤¾à¤•ेजहरà¥à¤²à¥‡ निरà¥à¤à¤°à¤¤à¤¾à¤¹à¤°à¥‚ à¤à¥‡à¤Ÿà¥‡à¤¨à¤¨à¥:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "तर %s सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ à¤à¤¯à¥‹" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "तर %s सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥à¤ªà¤°à¥à¤¯à¥‹" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "तर यो सà¥à¤¥à¤¾à¤ªà¤¨à¤¾à¤¯à¥‹à¤—à¥à¤¯ छैन" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "तर यो अवासà¥à¤¤à¤µà¤¿à¤• पà¥à¤¯à¤¾à¤•ेज होइन" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "तर यो सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ à¤à¤à¤¨" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "तर यो सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨ गइरहेको छैन" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr "वा" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "निमà¥à¤¨ नयाठपà¥à¤¯à¤¾à¤•ेजहरू सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥‡à¤›à¤¨à¥:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "निमà¥à¤¨ पà¥à¤¯à¤¾à¤•ेजहरू हटाइनेछनà¥:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "निमà¥à¤¨ पà¥à¤¯à¤¾à¤•ेजहरू पछाडि राखिनेछनà¥:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "निमà¥à¤¨ पà¥à¤¯à¤¾à¤•ेजहरू सà¥à¤¤à¤° वृदà¥à¤§à¤¿ हà¥à¤¨à¥‡à¤›à¤¨à¥:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "निमà¥à¤¨ पà¥à¤¯à¤¾à¤•ेजहरू सà¥à¤¤à¤°à¤•म गरिनेछनà¥:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "निमà¥à¤¨ à¤à¤‡à¤°à¤¹à¥‡à¤•ो पà¥à¤¯à¤¾à¤•ेजहरू परिवरà¥à¤¤à¤¨ हà¥à¤¨à¥‡à¤›à¥ˆà¤¨:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (%s कारणले) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1419,27 +1444,27 @@ msgstr "" "चेतावनी: निमà¥à¤¨ आवशà¥à¤¯à¤• पà¥à¤¯à¤¾à¤•ेजहरू हटाइनेछनॠ।\n" "तपाईठके गरिरहेको यकिन नà¤à¤à¤¸à¤®à¥à¤® यो काम गरिने छैन!" -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu सà¥à¤¤à¤° वृदà¥à¤§à¤¿ गरियो, %lu नयाठसà¥à¤¥à¤¾à¤ªà¤¨à¤¾ à¤à¤¯à¥‹, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu पà¥à¤¨: सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ गरियो, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu सà¥à¤¤à¤° कम गरियो, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu हटाउन र %lu सà¥à¤¤à¤° वृदà¥à¤§à¤¿ गरिà¤à¤¨ ।\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu पूरà¥à¤£à¤°à¥à¤ªà¤²à¥‡ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ à¤à¤à¤¨ र हटाइà¤à¤¨ ।\n" @@ -1448,7 +1473,7 @@ msgstr "%lu पूरà¥à¤£à¤°à¥à¤ªà¤²à¥‡ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ à¤à¤à¤¨ र à #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "" @@ -1456,91 +1481,91 @@ msgstr "" #. 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:702 +#: apt-private/private-output.cc:708 msgid "[y/N]" msgstr "" #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "संकलन तà¥à¤°à¥à¤Ÿà¤¿ रिजेकà¥à¤¸ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "निरà¥à¤à¤°à¤¤à¤¾à¤¹à¤°à¥‚ सà¥à¤§à¤¾à¤° गरिदैछ..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr "असफल à¤à¤¯à¥‹ ।" -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "निरà¥à¤à¤°à¤¤à¤¾à¤¹à¤°à¥‚ सà¥à¤§à¤¾à¤° गरà¥à¤¨ असकà¥à¤·à¤® à¤à¤¯à¥‹" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "सà¥à¤¤à¤° वृदà¥à¤§à¤¿ सेटलाई नà¥à¤¯à¥‚नतम गरà¥à¤¨ असकà¥à¤·à¤® à¤à¤¯à¥‹" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr "काम à¤à¤¯à¥‹" -#: apt-private/private-cachefile.cc:102 +#: 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:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "नà¤à¥‡à¤Ÿà¤¿à¤à¤•ा निरà¥à¤à¤°à¤¤à¤¾à¤¹à¤°à¥‚ । -f पà¥à¤°à¤¯à¥‹à¤— गरेर पà¥à¤°à¤¯à¤¾à¤¸ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।" -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "अदà¥à¤¯à¤¾à¤µà¤§à¤¿à¤• आदेशले कà¥à¤¨à¥ˆ तरà¥à¤•हरू लिदैन" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "सà¥à¤¤à¤° वृदà¥à¤§à¤¿ गणना गरिदैछ..." -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "आनà¥à¤¤à¤°à¤¿à¤• तà¥à¤°à¥à¤Ÿà¤¿,सबै सà¥à¤¤à¤°à¤µà¥ƒà¤¦à¥à¤§à¤¿à¤²à¥‡ उतà¥à¤¤à¤® गà¥à¤£ नषà¥à¤Ÿ गरà¥à¤¦à¤›" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "काम à¤à¤¯à¥‹" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1548,43 +1573,43 @@ msgid "" " so don't depend on the relevance to the real current situation!" msgstr "" -#: apt-private/private-sources.cc:45 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format msgid "Failed to parse %s. Edit again? " msgstr " %s मा %s पà¥à¤¨:नामकरण असफल à¤à¤¯à¥‹" -#: apt-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "हानà¥à¤¨à¥à¤¹à¥‹à¤¸à¥" -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "पà¥à¤°à¤¾à¤ªà¥à¤¤ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "Ign " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Err " -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "%s (%sB/s) मा %sB मा तानियो\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [काम गरिरहेको]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1597,19 +1622,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "%s पढà¥à¤¨ असफल à¤à¤¯à¥‹" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "%s मा परिवरà¥à¤¤à¤¨ गरà¥à¤¨ असकà¥à¤·à¤®" @@ -1638,11 +1663,11 @@ msgstr "फाइल %s खोलà¥à¤¨ सकिà¤à¤¨" msgid "[Mirror: %s]" msgstr "" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 msgid "Failed to create IPC pipe to subprocess" msgstr "सहायक पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾à¤®à¤¾ IPC पाइप सिरà¥à¤œà¤¨à¤¾ गरà¥à¤¨ असफल" -#: methods/rsh.cc:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "जडान असमायिक बनà¥à¤¦ à¤à¤¯à¥‹" @@ -1708,40 +1733,45 @@ msgstr "" " -c=? यो कनफिगरेसन फाइल पढà¥à¤¨à¥à¤¹à¥‹à¤¸à¥\n" " -o=? à¤à¤‰à¤Ÿà¤¾ सà¥à¤µà¥‡à¤šà¥à¤›à¤¾à¤šà¤¾à¤°à¥€ कनफिगरेसन विकलà¥à¤ª सेट गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥, जसà¥à¤¤à¥ˆ -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "%s सà¥à¤¥à¤¿à¤° गरà¥à¤¨ असकà¥à¤·à¤® à¤à¤¯à¥‹" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr " %s मा लेखà¥à¤¨ असकà¥à¤·à¤®" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr " debconf संसà¥à¤•रण पà¥à¤°à¤¾à¤ªà¥à¤¤ गरà¥à¤¨ सकिà¤à¤¨ । के debconf सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ à¤à¤¯à¥‹ ? " -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "पà¥à¤¯à¤¾à¤•ेज विसà¥à¤¤à¤¾à¤° सूचि अति लामो छ" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "डाइरेकà¥à¤Ÿà¥à¤°à¥€ %s पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ गरà¥à¤¦à¤¾ तà¥à¤°à¥à¤Ÿà¤¿" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "सà¥à¤°à¥‹à¤¤ विसà¥à¤¤à¤¾à¤° सूचि अति लामो छ" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "सामागà¥à¤°à¥€ फाइलहरà¥à¤®à¤¾ हेडर लेखà¥à¤¦à¤¾ तà¥à¤°à¥à¤Ÿà¤¿" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "सामगà¥à¤°à¥€ %sपà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ गरà¥à¤¦à¤¾ तà¥à¤°à¥à¤Ÿà¤¿" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1824,217 +1854,217 @@ msgstr "" " -c=? यो कनफिगरेसन फाइल पढà¥à¤¨à¥à¤¹à¥‹à¤¸à¥\n" " -o=? à¤à¤‰à¤Ÿà¤¾ सà¥à¤µà¥‡à¤šà¥à¤›à¤¾à¤šà¤¾à¤°à¥€ कनफिगरेसन विकलà¥à¤ª सेट गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "कà¥à¤¨à¥ˆ चयनहरू मेल खाà¤à¤¨" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "केही फाइलहरू पà¥à¤¯à¤¾à¤•ेज फाइल समूह `%s' मा हराइरहेको छ" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "DB दूषित थियो, फाइल %s.पà¥à¤°à¤¾à¤¨à¥‹ मा पà¥à¤¨:नामकरण गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "DB पà¥à¤°à¤¾à¤¨à¥‹ छ, %s सà¥à¤¤à¤°à¤µà¥ƒà¤¦à¥à¤§à¤¿ गरà¥à¤¨ पà¥à¤°à¤¯à¤¾à¤¸ गरिदैछ" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 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:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "DB फाइल %s असकà¥à¤·à¤® à¤à¤¯à¥‹: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr " %s सà¥à¤¥à¤¿à¤° गरà¥à¤¨ असफल" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "संगà¥à¤°à¤¹ संग नियनà¥à¤¤à¥à¤°à¤£ रेकरà¥à¤¡ छैन" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "करà¥à¤¸à¤° पà¥à¤°à¤¾à¤ªà¥à¤¤ गरà¥à¤¨ असकà¥à¤·à¤® à¤à¤¯à¥‹" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: डाइरेकà¥à¤Ÿà¥à¤°à¥€ %s पढà¥à¤¨ असकà¥à¤·à¤®\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: %s सà¥à¤¥à¤¿à¤° गरà¥à¤¨ असकà¥à¤·à¤®\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "E: फाइलमा तà¥à¤°à¥à¤Ÿà¤¿à¤¹à¤°à¥‚ लागू गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥" -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "%s हल गरà¥à¤¨ असफल à¤à¤¯à¥‹" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "टà¥à¤°à¥€ हिडाईठअसफल à¤à¤¯à¥‹" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "%s खोलà¥à¤¨ असफल" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "लिङà¥à¤• पढà¥à¤¨ असफल %s" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "अनलिङà¥à¤• गरà¥à¤¨ असफल %s" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** %s मा %s लिङà¥à¤• असफल à¤à¤¯à¥‹" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr "यस %sB हिटको डि लिङà¥à¤• सिमा।\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "संगà¥à¤°à¤¹ संग कà¥à¤¨à¥ˆ पà¥à¤¯à¤¾à¤•ेज फाà¤à¤Ÿ छैन" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %s संग कà¥à¤¨à¥ˆ अधिलेखन पà¥à¤°à¤µà¤¿à¤·à¥à¤Ÿà¤¿ छैन\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s संà¤à¤¾à¤°à¤•रà¥à¤¤à¤¾ %s हो %s होइन\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, fuzzy, c-format msgid " %s has no source override entry\n" msgstr " %s संग कà¥à¤¨à¥ˆ अधिलेखन पà¥à¤°à¤µà¤¿à¤·à¥à¤Ÿà¤¿ छैन\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, fuzzy, c-format msgid " %s has no binary override entry either\n" msgstr " %s संग कà¥à¤¨à¥ˆ अधिलेखन पà¥à¤°à¤µà¤¿à¤·à¥à¤Ÿà¤¿ छैन\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - सà¥à¤®à¥ƒà¤¤à¤¿ बाà¤à¤¡à¤«à¤¾à¤à¤¡ गरà¥à¤¨ असफल à¤à¤¯à¥‹" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "%s खोलà¥à¤¨ असफल" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "वैरà¥à¤ªà¥à¤¯ गरिà¤à¤•ो अधिलेखन %s रेखा %lu #१" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "अधिलेखन फाइल पढà¥à¤¨ असफल %s" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, fuzzy, c-format msgid "Malformed override %s line %llu #1" msgstr "वैरà¥à¤ªà¥à¤¯ गरिà¤à¤•ो अधिलेखन %s रेखा %lu #१" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, fuzzy, c-format msgid "Malformed override %s line %llu #2" msgstr "वैरà¥à¤ªà¥à¤¯ गरिà¤à¤•ो अधिलेखन %s रेखा %lu #२" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, fuzzy, c-format msgid "Malformed override %s line %llu #3" msgstr "वैरà¥à¤ªà¥à¤¯ गरिà¤à¤•ो अधिलेखन %s रेखा %lu #३" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "अजà¥à¤žà¤¾à¤¤ सङà¥à¤•à¥à¤šà¤¨ अलà¥à¤—ोरिदà¥à¤® '%s'" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "सङà¥à¤•à¥à¤šà¤¨ गरिà¤à¤•ो निरà¥à¤—ात %s लाई सङà¥à¤•à¥à¤šà¤¨ सेटको आवशà¥à¤¯à¤•à¥à¤¤à¤¾ परà¥à¤¦à¤›" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "FILE* सिरà¥à¤œà¤¨à¤¾ गरà¥à¤¨ असफल" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "काà¤à¤Ÿà¤¾ गरà¥à¤¨ असफल" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "सङà¥à¤•à¥à¤šà¤¨ शाखा" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "आनà¥à¤¤à¤°à¥€à¤• तà¥à¤°à¥à¤Ÿà¤¿, %s सिरà¥à¤œà¤¨à¤¾ गरà¥à¤¨ असफल" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "सहायक पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾/फाइलमा IO असफल à¤à¤¯à¥‹" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "MD5 गणना गरà¥à¤¦à¤¾ पढà¥à¤¨ असफल à¤à¤¯à¥‹" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "समसà¥à¤¯à¤¾ अनलिङà¥à¤• à¤à¤‡à¤°à¤¹à¥‡à¤› %s" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr " %s मा %s पà¥à¤¨:नामकरण असफल à¤à¤¯à¥‹" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -2087,157 +2117,157 @@ msgstr "" " -c=? यो कनफिगरेसन फाइल पढà¥à¤¨à¥à¤¹à¥‹à¤¸à¥\n" " -o=? à¤à¤‰à¤Ÿà¤¾ सà¥à¤µà¥‡à¤šà¥à¤›à¤¾à¤šà¤¾à¤°à¥€ कनफिगरेसन विकलà¥à¤ª सेट गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥, जसà¥à¤¤à¥ˆ -o dir::cache=/tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "पाइपहरू सिरà¥à¤œà¤¨à¤¾ गरà¥à¤¨ असफल" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "gzip कारà¥à¤¯à¤¨à¥à¤µà¤¯à¤¨ गरà¥à¤¨ असफल" -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "संगà¥à¤°à¤¹ दूषित à¤à¤¯à¥‹" -#: apt-inst/contrib/extracttar.cc:201 +#: apt-inst/contrib/extracttar.cc:203 msgid "Tar checksum failed, archive corrupted" msgstr "टार चेकसम असफल à¤à¤¯à¥‹, संगà¥à¤°à¤¹ दूषित à¤à¤¯à¥‹" -#: apt-inst/contrib/extracttar.cc:306 +#: apt-inst/contrib/extracttar.cc:308 #, c-format msgid "Unknown TAR header type %u, member %s" msgstr "अजà¥à¤žà¤¾à¤¤ टार हेडर पà¥à¤°à¤•ार %u, सदसà¥à¤¯ %s" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "अवैध संगà¥à¤°à¤¹ हसà¥à¤¤à¤¾à¤•à¥à¤·à¤°" -#: apt-inst/contrib/arfile.cc:82 +#: apt-inst/contrib/arfile.cc:84 msgid "Error reading archive member header" msgstr "संगà¥à¤°à¤¹ सदसà¥à¤¯ हेडर पढà¥à¤¦à¤¾ तà¥à¤°à¥à¤Ÿà¤¿ " -#: apt-inst/contrib/arfile.cc:94 +#: apt-inst/contrib/arfile.cc:96 #, fuzzy, c-format msgid "Invalid archive member header %s" msgstr "अवैध संगà¥à¤°à¤¹ सदसà¥à¤¯ हेडर" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "अवैध संगà¥à¤°à¤¹ सदसà¥à¤¯ हेडर" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "संगà¥à¤°à¤¹ अति छोटो छ" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "संगà¥à¤°à¤¹ हेडरहरू पढà¥à¤¨ असफल" -#: apt-inst/filelist.cc:382 +#: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" msgstr "अहिलेसमà¥à¤® लिङà¥à¤• गरिà¤à¤•ो नोडमा बोलाइà¤à¤•ो डà¥à¤°à¤ªà¤¨à¥‹à¤¡" -#: apt-inst/filelist.cc:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "हà¥à¤¯à¤¾à¤¸ ततà¥à¤µ तोकà¥à¤¨ असफल à¤à¤¯à¥‹" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "मोड बाà¤à¤¡à¥à¤¨ असफल à¤à¤¯à¥‹" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "थपमोडमा आनà¥à¤¤à¤°à¤¿à¤• तà¥à¤°à¥à¤Ÿà¤¿" -#: apt-inst/filelist.cc:479 +#: 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:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "मोडको डबल थप %s -> %s" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "नकà¥à¤•ली कनफिगगरेसन फाइल %s/%s" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: 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:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "%s फाइल बनà¥à¤¦ गरà¥à¤¨ असफल à¤à¤¯à¥‹" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: 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:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "à¤à¤• à¤à¤¨à¥à¤¦à¤¾ बढी %s अनपà¥à¤¯à¤¾à¤• गरिदैछ" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "डाइरेकà¥à¤Ÿà¥à¤°à¥€ %s फेरियो " -#: apt-inst/extract.cc:145 +#: 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:155 apt-inst/extract.cc:299 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 msgid "The diversion path is too long" msgstr "घà¥à¤®à¥à¤¤à¥€ बाटो अति लामो छ" -#: apt-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "डाइरेकà¥à¤Ÿà¥à¤°à¥€ %s डाइरेकà¥à¤Ÿà¥à¤°à¥€ विहिन दà¥à¤µà¤¾à¤°à¤¾ बदलिदैछ" -#: apt-inst/extract.cc:282 +#: apt-inst/extract.cc:289 msgid "Failed to locate node in its hash bucket" msgstr "यसको हà¥à¤¯à¤¾à¤¸ बालà¥à¤Ÿà¥€à¤®à¤¾ नोड सà¥à¤¥à¤¿à¤¤ गरà¥à¤¨ असफल à¤à¤¯à¥‹" -#: apt-inst/extract.cc:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "बाटो अति लामो छ" -#: apt-inst/extract.cc:414 +#: apt-inst/extract.cc:421 #, c-format msgid "Overwrite package match with no version for %s" msgstr " %s को लागि संसà¥à¤•रन बिना अधिलेखन पà¥à¤¯à¤¾à¤•ेज मेल खायो" -#: apt-inst/extract.cc:431 +#: 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:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "%s सà¥à¤¥à¤¿à¤° गरà¥à¤¨ असकà¥à¤·à¤® à¤à¤¯à¥‹" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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:124 +#: apt-inst/deb/debfile.cc:132 #, c-format msgid "Internal error, could not locate member %s" msgstr "आनà¥à¤¤à¤°à¥€à¤• तà¥à¤°à¥à¤Ÿà¤¿, सदसà¥à¤¯ तोकà¥à¤¨ सकà¥à¤¦à¥ˆà¤¨ %s" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "पद वरà¥à¤£à¤¨ गरà¥à¤¨ नसकिने नियनà¥à¤¤à¥à¤°à¤£ फाइल" @@ -2295,495 +2325,500 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "चयन %s फेला पारà¥à¤¨ सकिà¤à¤¨" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "नचिनिà¤à¤•ो टाइप संकà¥à¤·à¤¿à¤ªà¥à¤¤ रà¥à¤ª: '%c'" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "कनफिगरेसन फाइल खोलिदैछ %s" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "वाकà¥à¤¯ संरचना तà¥à¤°à¥à¤Ÿà¤¿ %s:%u: बनà¥à¤¦ कà¥à¤¨à¥ˆ नाम बिना सà¥à¤°à¥‚ हà¥à¤¨à¥à¤› ।" -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "वाकà¥à¤¯ संरचना तà¥à¤°à¥à¤Ÿà¤¿ %s:%u: वैरà¥à¤ª गरिà¤à¤•ो टà¥à¤¯à¤¾à¤—" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "वाकà¥à¤¯ संरचना तà¥à¤°à¥à¤Ÿà¤¿ %s:%u: मान पछाडि अतिरिकà¥à¤¤ जंक" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "वाकà¥à¤¯ संरचना तà¥à¤°à¥à¤Ÿà¤¿ %s:%u: निरà¥à¤¦à¥‡à¤¶à¤¨à¤¹à¤°à¥‚ माथिलà¥à¤²à¥‹ तहबाट मातà¥à¤° हà¥à¤¨à¥à¤›" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "वाकà¥à¤¯ संरचना तà¥à¤°à¥à¤Ÿà¤¿ %s:%u: अति धेरै नेसà¥à¤Ÿà¥‡à¤¡ समावेश गरà¥à¤¦à¤›" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "वाकà¥à¤¯ संरचना तà¥à¤°à¥à¤Ÿà¤¿ %s:%u: यहाठबाट समावेश गरेको" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "वाकà¥à¤¯ संरचना तà¥à¤°à¥à¤Ÿà¤¿ %s:%u: समरà¥à¤¥à¤¨ नà¤à¤à¤•ो डाइरेकà¥à¤Ÿà¤¿à¤ '%s'" -#: apt-pkg/contrib/configuration.cc:884 +#: 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-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "वाकà¥à¤¯ संरचना तà¥à¤°à¥à¤Ÿà¤¿ %s:%u:फाइलको अनà¥à¤¤à¥à¤¯à¤®à¤¾ अतिरिकà¥à¤¤ जंक" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... तà¥à¤°à¥à¤Ÿà¤¿!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... गरियो" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s... गरियो" -#: apt-pkg/contrib/cmndline.cc:116 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format msgid "Command line option '%c' [from %s] is not known." msgstr "आदेश लाइन विकलà¥à¤ª '%c' [%s बाट] जà¥à¤žà¤¾à¤¤ छैन ।" -#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format msgid "Command line option %s is not boolean" msgstr "आदेश लाइन विकलà¥à¤ª %s बूलियन छैन" -#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "विकलà¥à¤ª %s लाई à¤à¤‰à¤Ÿà¤¾ तरà¥à¤•को आवशà¥à¤¯à¤•ता परà¥à¤¦à¤› ।" -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "विकलà¥à¤ª %s: कनफिगरेसन वसà¥à¤¤à¥ विशिषà¥à¤Ÿà¤¿à¤•रण संग à¤à¤‰à¤Ÿà¤¾ =<val> हà¥à¤¨à¥à¤ªà¤°à¥à¤› ।" -#: apt-pkg/contrib/cmndline.cc:273 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format msgid "Option %s requires an integer argument, not '%s'" msgstr "विकलà¥à¤ª %s लाई à¤à¤‰à¤Ÿà¤¾ इनà¥à¤Ÿà¤¿à¤œà¤° तरà¥à¤•को आवशà¥à¤¯à¤• परà¥à¤¦à¤›, '%s' होइन" -#: apt-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "विकलà¥à¤ª '%s' अति लामो छ" -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "अरà¥à¤¥ %s बà¥à¤à¤¿à¤à¤¨, सतà¥à¤¯ वा à¤à¥‚ठो पà¥à¤°à¤¯à¤¾à¤¸ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।" -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "अवैध सञà¥à¤šà¤¾à¤²à¤¨ %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format msgid "Unable to stat the mount point %s" msgstr "माउनà¥à¤Ÿ बिनà¥à¤¦à¥ %s सà¥à¤¥à¤¿à¤° गरà¥à¤¨ असकà¥à¤·à¤®" -#: apt-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "सिडी रोम सà¥à¤¥à¤¿à¤° गरà¥à¤¨ असफल à¤à¤¯à¥‹" -#: apt-pkg/contrib/fileutl.cc:95 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "फाइल बनà¥à¤¦ गरà¥à¤¦à¤¾ समसà¥à¤¯à¤¾" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "तालà¥à¤šà¤¾ मारिà¤à¤•ो फाइल मातà¥à¤° पढà¥à¤¨à¤•ो लागि तालà¥à¤šà¤¾ मारà¥à¤¨ पà¥à¤°à¤¯à¥‹à¤— गरिà¤à¤•ो छैन %s" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "तालà¥à¤šà¤¾ मारिà¤à¤•ो फाइल खोलà¥à¤¨ सकिà¤à¤¨ %s" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "nfs माउनà¥à¤Ÿ गरिà¤à¤•ो लक फाइलको लागि लक पà¥à¤°à¤¯à¥‹à¤— गरिà¤à¤•ो छैन %s" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "तालà¥à¤šà¤¾ पà¥à¤°à¤¾à¤ªà¥à¤¤ गरà¥à¤¨ सकिà¤à¤¨ %s" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "सहायक पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ %s ले खणà¥à¤¡à¤¿à¤•रण गलà¥à¤¤à¤¿ पà¥à¤°à¤¾à¤ªà¥à¤¤ à¤à¤¯à¥‹ ।" -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "सहायक पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ %s ले खणà¥à¤¡à¤¿à¤•रण गलà¥à¤¤à¤¿ पà¥à¤°à¤¾à¤ªà¥à¤¤ à¤à¤¯à¥‹ ।" -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 apt-pkg/contrib/gpgv.cc:239 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "सहायक पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ %s ले à¤à¤‰à¤Ÿà¤¾ तà¥à¤°à¥à¤Ÿà¤¿ कोड फरà¥à¤•ायो (%u)" -#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "सहायक पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ %s अनपेकà¥à¤·à¤¿à¤¤ बनà¥à¤¦ à¤à¤¯à¥‹" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "फाइल बनà¥à¤¦ गरà¥à¤¦à¤¾ समसà¥à¤¯à¤¾" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "फाइल %s खोलà¥à¤¨ सकिà¤à¤¨" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "%s को लागि पाइप खोलà¥à¤¨ सकिà¤à¤¨" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "सहायक पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ IPC सिरà¥à¤œà¤¨à¤¾ गरà¥à¤¨ असफल" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "सङà¥à¤•à¥à¤šà¤¨à¤•रà¥à¤¤à¤¾ कारà¥à¤¯à¤¾à¤¨à¥à¤µà¤¯à¤¨ गरà¥à¤¨ असफल à¤à¤¯à¥‹" -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, fuzzy, c-format msgid "read, still have %llu to read but none left" msgstr "पडà¥à¤¨à¥à¤¹à¥‹à¤¸à¥, अहिले समà¥à¤® %lu पढà¥à¤¨ छ तर कà¥à¤¨à¥ˆ बाà¤à¤•ी छैन" -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, fuzzy, c-format msgid "write, still have %llu to write but couldn't" msgstr "लेखà¥à¤¨à¥à¤¹à¥‹à¤¸à¥, अहिले समà¥à¤® %lu लेखà¥à¤¨ छ तर सकिदैन " -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "फाइल बनà¥à¤¦ गरà¥à¤¦à¤¾ समसà¥à¤¯à¤¾" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "फाइल गà¥à¤ªà¥à¤¤à¤¿à¤•रण गरà¥à¤¦à¤¾ समसà¥à¤¯à¤¾" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "फाइल अनलिङà¥à¤• गरà¥à¤¦à¤¾ समसà¥à¤¯à¤¾" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "फाइल गà¥à¤ªà¥à¤¤à¤¿à¤•रण गरà¥à¤¦à¤¾ समसà¥à¤¯à¤¾" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "पà¥à¤¨:नामकरण असफल गरियो, %s (%s -> %s) ।" + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, fuzzy, c-format msgid "No keyring installed in %s." msgstr "सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ परितà¥à¤¯à¤¾à¤— गरिदैछ ।" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "खाली पà¥à¤¯à¤¾à¤•ेज कà¥à¤¯à¤¾à¤¸" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "पà¥à¤¯à¤¾à¤•ेज कà¥à¤¯à¤¾à¤¸ फाइल दूषित à¤à¤¯à¥‹ " -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "पà¥à¤¯à¤¾à¤•ेज कà¥à¤¯à¤¾à¤¸ फाइल à¤à¤‰à¤Ÿà¤¾ अमिलà¥à¤¦à¥‹ संसà¥à¤•रण हो" -#: apt-pkg/pkgcache.cc:162 +#: apt-pkg/pkgcache.cc:169 #, fuzzy msgid "The package cache file is corrupted, it is too small" msgstr "पà¥à¤¯à¤¾à¤•ेज कà¥à¤¯à¤¾à¤¸ फाइल दूषित à¤à¤¯à¥‹ " -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "यो APT ले संसà¥à¤•रण पà¥à¤°à¤£à¤¾à¤²à¥€à¤²à¤¾à¤ˆ समरà¥à¤¥à¤¨ गरà¥à¤¦à¥ˆà¤¨ '%s'" -#: apt-pkg/pkgcache.cc:172 +#: apt-pkg/pkgcache.cc:179 msgid "The package cache was built for a different architecture" msgstr "पà¥à¤¯à¤¾à¤•ेज कà¥à¤¯à¤¾à¤¸ विà¤à¤¿à¤¨à¥à¤¨ वासà¥à¤¤à¥à¤•लाको लागि निरà¥à¤®à¤¾à¤£ à¤à¤à¤•ो हो" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "आधारित" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "पà¥à¤¨:आधारित" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "सà¥à¤à¤¾à¤µ दिनà¥à¤›" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "सिफारिस गरà¥à¤¦à¤›" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "दà¥à¤µà¤¨à¥à¤¦à¤¹à¤°à¥‚" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "बदलà¥à¤›" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "वेकायमहरू" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "महतà¥à¤µà¤ªà¥‚रà¥à¤£" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "आवशà¥à¤¯à¤•" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "मानक" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "वैकलà¥à¤ªà¤¿à¤•" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "अतिरिकà¥à¤¤" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "निरà¥à¤à¤°à¤¤à¤¾ टà¥à¤°à¥€ निरà¥à¤®à¤¾à¤£ गरिदैछ" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "उमेदà¥à¤µà¤¾à¤° संसà¥à¤•रणहरू" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "निरà¥à¤à¤°à¤¤à¤¾ सिरà¥à¤œà¤¨à¤¾" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: 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:244 +#: apt-pkg/depcache.cc:250 #, fuzzy, c-format msgid "Failed to open StateFile %s" msgstr "%s खोलà¥à¤¨ असफल" -#: apt-pkg/depcache.cc:250 +#: apt-pkg/depcache.cc:256 #, fuzzy, c-format msgid "Failed to write temporary StateFile %s" msgstr "फाइल %s लेखà¥à¤¨ असफल à¤à¤¯à¥‹" -#: apt-pkg/tagfile.cc:138 +#: apt-pkg/tagfile.cc:140 #, c-format msgid "Unable to parse package file %s (1)" msgstr "पà¥à¤¯à¤¾à¤•ेज फाइल पद वरà¥à¤£à¤¨ गरà¥à¤¨ असकà¥à¤·à¤® %s (१)" -#: apt-pkg/tagfile.cc:235 +#: apt-pkg/tagfile.cc:237 #, c-format msgid "Unable to parse package file %s (2)" msgstr "पà¥à¤¯à¤¾à¤•ेज फाइल पद वरà¥à¤£à¤¨ गरà¥à¤¨ असकà¥à¤·à¤® %s (२)" -#: apt-pkg/sourcelist.cc:118 +#: apt-pkg/sourcelist.cc:127 #, fuzzy, c-format msgid "Malformed stanza %u in source list %s (URI parse)" msgstr "वैरà¥à¤ªà¥à¤¯ लाइन %lu सà¥à¤°à¥‹à¤¤ सूचिमा %s (URI पद वरà¥à¤£à¤¨)" -#: apt-pkg/sourcelist.cc:161 +#: 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:164 +#: 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:175 +#: 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:181 +#: 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:184 +#: 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-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "वैरà¥à¤ªà¥à¤¯ लाइन %lu सà¥à¤°à¥‹à¤¤ सूचिमा %s (URI)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "वैरà¥à¤ªà¥à¤¯ लाइन %lu सà¥à¤°à¥‹à¤¤ सूचिमा %s (dist)" -#: apt-pkg/sourcelist.cc:202 +#: apt-pkg/sourcelist.cc:211 #, c-format msgid "Malformed line %lu in source list %s (URI parse)" msgstr "वैरà¥à¤ªà¥à¤¯ लाइन %lu सà¥à¤°à¥‹à¤¤ सूचिमा %s (URI पद वरà¥à¤£à¤¨)" -#: apt-pkg/sourcelist.cc:208 +#: apt-pkg/sourcelist.cc:217 #, c-format msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "वैरà¥à¤ªà¥à¤¯ लाइन %lu सà¥à¤°à¥‹à¤¤ सूचिमा %s (पूरà¥à¤£ dist)" -#: apt-pkg/sourcelist.cc:215 +#: apt-pkg/sourcelist.cc:224 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" msgstr "वैरà¥à¤ªà¥à¤¯ लाइन %lu सà¥à¤°à¥‹à¤¤ सूचिमा %s (dist पद वरà¥à¤£à¤¨ )" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "%s खोलिदैछ" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "लाइन %u सà¥à¤°à¥‹à¤¤ सूचि %s मा अति लामो छ ।" -#: apt-pkg/sourcelist.cc:362 +#: apt-pkg/sourcelist.cc:371 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "वैरà¥à¤ªà¥à¤¯ लाइन %u सà¥à¤°à¥‹à¤¤ सूचिमा %s (पà¥à¤°à¤•ार)" -#: apt-pkg/sourcelist.cc:366 +#: apt-pkg/sourcelist.cc:375 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "सà¥à¤°à¥‹à¤¤ सूची %s à¤à¤¿à¤¤à¥à¤° %u लाइनमा टाइप '%s' जà¥à¤žà¤¾à¤¤ छैन" -#: apt-pkg/sourcelist.cc:407 +#: 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/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, 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:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "फाइल %s खोलà¥à¤¨ सकिà¤à¤¨" -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2794,18 +2829,18 @@ msgstr "" "हटाउनॠपरà¥à¤¨à¥‡à¤› । यो पà¥à¤°à¤¾à¤¯ नरामà¥à¤°à¥‹ हो, तर यदि तपाईठयो साà¤à¤šà¥à¤šà¥ˆ गरà¥à¤¨ चाहनà¥à¤¹à¥à¤¨à¥à¤› à¤à¤¨à¥‡, APT::" "Force-LoopBreak विकलà¥à¤ª सकà¥à¤°à¤¿à¤¯ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।" -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "अनà¥à¤•à¥à¤°à¤®à¤£à¤¿à¤•ा फाइल पà¥à¤°à¤•ार '%s' समरà¥à¤¥à¤¿à¤¤ छैन" -#: apt-pkg/algorithms.cc:266 +#: 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:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2813,215 +2848,210 @@ msgstr "" "तà¥à¤°à¥à¤Ÿà¤¿, pkgProblemResolver:: समाधानले विचà¥à¤›à¥‡à¤¦à¤¨ सिरà¥à¤œà¤¨à¤¾ गरà¥à¤¦à¤›, यो à¤à¤‡à¤°à¤¹à¥‡à¤•ो पà¥à¤¯à¤¾à¤•ेजहरà¥à¤•ो " "कारणले गरà¥à¤¦à¤¾ हो ।" -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "समसà¥à¤¯à¤¾à¤¹à¤°à¥‚ सà¥à¤§à¤¾à¤°à¥à¤¨ असकà¥à¤·à¤® à¤à¤¯à¥‹, तपाईà¤à¤²à¥‡ पà¥à¤¯à¤¾à¤•ेजहरॠà¤à¤¾à¤à¤šà¥à¤¨à¥à¤à¤¯à¥‹ ।" -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, fuzzy, c-format msgid "List directory %spartial is missing." msgstr "आंशिक सूचिहरà¥à¤•ो डाइरेकà¥à¤Ÿà¥à¤°à¥€ %s हराइरहेछ ।" -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, fuzzy, c-format msgid "Archives directory %spartial is missing." msgstr "आंशिक संगà¥à¤°à¤¹ डाइरेकà¥à¤Ÿà¥à¤°à¥€ %s हराइरहेछ ।" -#: apt-pkg/acquire.cc:93 +#: 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:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "%li को %li फाइल पà¥à¤¨:पà¥à¤°à¤¾à¤ªà¥à¤¤ गरिदैछ (%s बाà¤à¤•ी छ)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "%li को %li फाइल पà¥à¤¨:पà¥à¤°à¤¾à¤ªà¥à¤¤ गरिदैछ" -#: apt-pkg/acquire-worker.cc:113 +#: apt-pkg/acquire-worker.cc:116 #, c-format msgid "The method driver %s could not be found." msgstr "विधि डà¥à¤°à¤¾à¤‡à¤à¤° %s फेला पारà¥à¤¨ सकिà¤à¤¨ ।" -#: apt-pkg/acquire-worker.cc:115 +#: apt-pkg/acquire-worker.cc:118 #, fuzzy, c-format msgid "Is the package %s installed?" msgstr "जाà¤à¤šà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ यदि 'dpkg-dev' पà¥à¤¯à¤¾à¤•ेज सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ à¤à¤¯à¥‹ ।\n" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "विधि %s सही रà¥à¤ªà¤²à¥‡ सà¥à¤°à¥‚ हà¥à¤¨ सकेन" -#: apt-pkg/acquire-worker.cc:452 +#: apt-pkg/acquire-worker.cc:455 #, c-format msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "कृपया डिसà¥à¤• लेबà¥à¤²: '%s' डà¥à¤°à¤¾à¤‡à¤ '%s'मा घà¥à¤¸à¤‰à¤¨à¥à¤¹à¥‹à¤¸à¥ र इनà¥à¤Ÿà¤° थिचà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ । " -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "पà¥à¤¯à¤¾à¤•िङà¥à¤— पà¥à¤°à¤£à¤¾à¤²à¥€ '%s' समरà¥à¤¥à¤¿à¤¤ छैन" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "उपयà¥à¤•à¥à¤¤ पà¥à¤¯à¤¾à¤•िङà¥à¤— पà¥à¤°à¤£à¤¾à¤²à¥€ पà¥à¤°à¤•ार निरà¥à¤§à¤¾à¤°à¤¨ गरà¥à¤¨ असकà¥à¤·à¤® à¤à¤¯à¥‹" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "%s सà¥à¤¥à¤¿à¤° गरà¥à¤¨ असकà¥à¤·à¤® à¤à¤¯à¥‹ ।" -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "तपाईà¤à¤•ो सà¥à¤°à¥‹à¤¤ सूचिमा केही 'source' URIs राखà¥à¤¨à¥à¤¹à¥‹à¤¸à¥" -#: apt-pkg/cachefile.cc:87 +#: apt-pkg/cachefile.cc:94 msgid "The package lists or status file could not be parsed or opened." msgstr "पà¥à¤¯à¤¾à¤•ेज सूचीहरू वा वसà¥à¤¤à¥à¤¸à¥à¤¥à¤¿à¤¤à¤¿ फाइल पद वरà¥à¤£à¤¨ गरà¥à¤¨ वा खोलà¥à¤¨ सकिà¤à¤¨ ।" -#: apt-pkg/cachefile.cc:91 +#: 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:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "सà¥à¤°à¥‹à¤¤à¤¹à¤°à¥à¤•ो सूचि पढà¥à¤¨ सकिà¤à¤¨ ।" -#: apt-pkg/policy.cc:75 +#: 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 "" -#: apt-pkg/policy.cc:414 +#: apt-pkg/policy.cc:422 #, fuzzy, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "पà¥à¤°à¤¾à¤¥à¤®à¤¿à¤•ता फाइलमा अवैध रेकरà¥à¤¡, कà¥à¤¨à¥ˆ पà¥à¤¯à¤¾à¤•ेज हेडर छैन" -#: apt-pkg/policy.cc:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "पिन टाइप %s बà¥à¤à¥à¤¨ सकिà¤à¤¨ " -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "पिनको लागि कà¥à¤¨à¥ˆ पà¥à¤°à¤¾à¤¥à¤®à¤¿à¤•ता (वा शूनà¥à¤¯) निरà¥à¤¦à¤¿à¤·à¥à¤Ÿ छैन" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 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:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: 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 फेला पारà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ )" -#: apt-pkg/pkgcachegen.cc:251 +#: apt-pkg/pkgcachegen.cc:257 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "वाऊ, APT ले सकà¥à¤·à¤® गरेको पà¥à¤¯à¤¾à¤•ेज नामहरà¥à¤•ो नमà¥à¤¬à¤°à¤²à¤¾à¤ˆ तपाईà¤à¤²à¥‡ उछिनà¥à¤¨à¥à¤à¤¯à¥‹ । " -#: apt-pkg/pkgcachegen.cc:254 +#: apt-pkg/pkgcachegen.cc:260 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "वाऊ, APT ले सकà¥à¤·à¤® गरेको संसà¥à¤•रणहरà¥à¤•ो नमà¥à¤¬à¤°à¤²à¤¾à¤ˆ तपाईà¤à¤²à¥‡ उछिनà¥à¤¨à¥à¤à¤¯à¥‹ । " -#: apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:263 #, fuzzy msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "वाऊ, APT ले सकà¥à¤·à¤® गरेको संसà¥à¤•रणहरà¥à¤•ो नमà¥à¤¬à¤°à¤²à¤¾à¤ˆ तपाईà¤à¤²à¥‡ उछिनà¥à¤¨à¥à¤à¤¯à¥‹ । " -#: apt-pkg/pkgcachegen.cc:260 +#: apt-pkg/pkgcachegen.cc:266 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "वाऊ, APT ले सकà¥à¤·à¤® गरेको निरà¥à¤à¤°à¤¤à¤¾à¤¹à¤°à¥à¤•ो नमà¥à¤¬à¤°à¤²à¤¾à¤ˆ तपाईà¤à¤²à¥‡ उछिनà¥à¤¨à¥à¤à¤¯à¥‹ । " -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:576 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "फाइल निरà¥à¤à¤°à¤¤à¤¾à¤¹à¤°à¥‚ पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ गरà¥à¤¦à¤¾ पà¥à¤¯à¤¾à¤•ेज %s %s फेला परेन" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "सà¥à¤°à¥‹à¤¤ पà¥à¤¯à¤¾à¤•ेज सूची %s सà¥à¤¥à¤¿à¤° गरà¥à¤¨ सकिà¤à¤¨ " -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "फाइल उपलबà¥à¤§à¤¤à¤¾à¤¹à¤°à¥‚ संकलन गरिदैछ" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 msgid "IO Error saving source cache" msgstr "सà¥à¤°à¥‹à¤¤ कà¥à¤¯à¤¾à¤¸ बचत गरà¥à¤¦à¤¾ IO तà¥à¤°à¥à¤Ÿà¤¿" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "पà¥à¤¨:नामकरण असफल गरियो, %s (%s -> %s) ।" - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 #, fuzzy msgid "Hash Sum mismatch" msgstr "MD5Sum मेल à¤à¤à¤¨" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "साइज मेल खाà¤à¤¨" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "अवैध सञà¥à¤šà¤¾à¤²à¤¨ %s" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, 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:1586 +#: apt-pkg/acquire-item.cc:1595 #, fuzzy, c-format msgid "Unable to find hash sum for '%s' in Release file" msgstr "पà¥à¤¯à¤¾à¤•ेज फाइल पद वरà¥à¤£à¤¨ गरà¥à¤¨ असकà¥à¤·à¤® %s (१)" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "निमà¥à¤¨ कà¥à¤žà¥à¤œà¥€ IDs को लागि कà¥à¤¨à¥ˆ सारà¥à¤µà¤œà¤¨à¤¿à¤• कà¥à¤žà¥à¤œà¥€ उपलबà¥à¤§ छैन:\n" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " "repository will not be applied." msgstr "" -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3029,12 +3059,12 @@ msgid "" msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3043,105 +3073,101 @@ msgstr "" "%s पà¥à¤¯à¤¾à¤•ेजको लागि मैले फाइल सà¥à¤¥à¤¿à¤¤ गरà¥à¤¨ सकिन । यसको मतलब तपाईà¤à¤²à¥‡ मà¥à¤¯à¤¾à¤¨à¥à¤²à¥à¤²à¥€ यो पà¥à¤¯à¤¾à¤•ेज " "निशà¥à¤šà¤¿à¤¤ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ । (arch हराà¤à¤°à¤¹à¥‡à¤•ो कारणले) " -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "पà¥à¤¯à¤¾à¤•ेज अनà¥à¤•à¥à¤°à¤®à¤£à¤¿à¤•ा फाइलहरू दूषित à¤à¤ । पà¥à¤¯à¤¾à¤•ेज %s को लागि कà¥à¤¨à¥ˆ फाइलनाम: फाà¤à¤Ÿ छैन ।" -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, fuzzy, c-format msgid "Unable to parse Release file %s" msgstr "पà¥à¤¯à¤¾à¤•ेज फाइल पद वरà¥à¤£à¤¨ गरà¥à¤¨ असकà¥à¤·à¤® %s (१)" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, fuzzy, c-format msgid "No sections in Release file %s" msgstr "दà¥à¤°à¤·à¥à¤Ÿà¤¬à¥à¤¯, %s को सटà¥à¤Ÿà¤¾ %s चयन à¤à¤‡à¤°à¤¹à¥‡à¤›\n" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "" -#: apt-pkg/indexrecords.cc:125 +#: apt-pkg/indexrecords.cc:130 #, fuzzy, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "घà¥à¤®à¤¾à¤‰à¤°à¥‹ फाइलमा अवैध लाइन:%s" -#: apt-pkg/indexrecords.cc:144 +#: apt-pkg/indexrecords.cc:149 #, fuzzy, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "पà¥à¤¯à¤¾à¤•ेज फाइल पद वरà¥à¤£à¤¨ गरà¥à¤¨ असकà¥à¤·à¤® %s (१)" -#: apt-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "बिकà¥à¤°à¤¤à¤¾ बà¥à¤²à¥à¤• %s ले कà¥à¤¨à¥ˆ औठाछाप समाविषà¥à¤Ÿ गरà¥à¤¦à¥ˆà¤¨" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "सिडी रोम माउनà¥à¤Ÿ विनà¥à¤¦à¥ पà¥à¤°à¤¯à¥‹à¤— गरिदैछ %s\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "सिडी रोम अनमाउनà¥à¤Ÿ गरिदैछ\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +#, fuzzy +msgid "Unmounting CD-ROM...\n" +msgstr "सिडी रोम अनमाउनà¥à¤Ÿ गरिदैछ..." -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "डिसà¥à¤•ो लागि परà¥à¤–िदै...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "सिडी रोम माउनà¥à¤Ÿ गरिदै...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " -msgstr "परिचय गराइदैछ.." +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " +msgstr "परिचय गराइदैछ..." -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "लेबà¥à¤² à¤à¤£à¥à¤¡à¤¾à¤°à¤£ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥:%s \n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -#, fuzzy -msgid "Unmounting CD-ROM...\n" -msgstr "सिडी रोम अनमाउनà¥à¤Ÿ गरिदैछ..." - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" msgstr "अनà¥à¤•à¥à¤°à¤®à¤£à¤¿à¤•ा फाइलहरà¥à¤•ो लागि डिसà¥à¤• सà¥à¤•à¥à¤¯à¤¾à¤¨ गरिदैछ...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, fuzzy, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " "%zu signatures\n" msgstr " %i पà¥à¤¯à¤¾à¤•ेज अनà¥à¤•à¥à¤°à¤®à¤£à¤¿à¤•ाहरू, %i सà¥à¤°à¥‹à¤¤ अनà¥à¤•à¥à¤°à¤®à¤£à¤¿à¤•ा र %i हसà¥à¤¤à¤¾à¤•à¥à¤·à¤°à¤¹à¤°à¥‚ फेला परे\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, fuzzy, c-format msgid "Found label '%s'\n" msgstr "लेबà¥à¤² à¤à¤£à¥à¤¡à¤¾à¤°à¤£ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥:%s \n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "तà¥à¤¯à¥‹ वैध नाम होइन, फेरी पà¥à¤°à¤¯à¤¾à¤¸ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।\n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3150,34 +3176,34 @@ msgstr "" "यो डिसà¥à¤•को नाम:\n" "'%s'\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "पà¥à¤¯à¤•ेज सूचिहरू पà¥à¤°à¤¤à¤¿à¤²à¤¿à¤ªà¥€ गरिदैछ..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "नयाठसà¥à¤°à¥‹à¤¤ सूचि लेखिदैछ\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "यो डिसà¥à¤•को लागि सà¥à¤°à¥‹à¤¤ सूचि पà¥à¤°à¤µà¤¿à¤·à¥à¤Ÿà¤¿à¤¹à¤°à¥‚:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: 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:777 +#: 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:780 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "मेल नखाà¤à¤•ा फाइल %i हरू संगै %i रेकरà¥à¤¡à¤¹à¤°à¥‚ लेखà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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" @@ -3192,88 +3218,88 @@ msgstr "" msgid "Hash mismatch for: %s" msgstr "MD5Sum मेल à¤à¤à¤¨" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr " '%s' को लागि '%s' निषà¥à¤•ाशन फेला पारà¥à¤¨ सकिà¤à¤¨" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr " '%s' को लागि '%s' संसà¥à¤•रण फेला पारà¥à¤¨ सकिà¤à¤¨" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, fuzzy, c-format msgid "Couldn't find task '%s'" msgstr "पà¥à¤¯à¤¾à¤•ेज फेला पारà¥à¤¨ सकिà¤à¤¨ %s" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, fuzzy, c-format msgid "Couldn't find any package by regex '%s'" msgstr "पà¥à¤¯à¤¾à¤•ेज फेला पारà¥à¤¨ सकिà¤à¤¨ %s" -#: apt-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "पà¥à¤¯à¤¾à¤•ेज फेला पारà¥à¤¨ सकिà¤à¤¨ %s" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, c-format msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " "neither of them" msgstr "" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, c-format msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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 " @@ -3282,167 +3308,167 @@ msgstr "" "केही अनà¥à¤•à¥à¤°à¤®à¤£à¤¿à¤•ा फाइलहरू डाउनलोड गरà¥à¤¨ असफल à¤à¤¯à¥‹, तिनीहरू उपेकà¥à¤·à¤¿à¤¤ à¤à¤, वा सटà¥à¤Ÿà¤¾à¤®à¤¾ पà¥à¤°à¤¾à¤¨à¥‹ " "à¤à¤‰à¤Ÿà¤¾ पà¥à¤°à¤¯à¥‹à¤— गरियो ।" -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, fuzzy, c-format msgid "Installing %s" msgstr " %s सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ à¤à¤¯à¥‹" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr " %s कनफिगर गरिदैछ" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr " %s हटाइदैछ" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, fuzzy, c-format msgid "Completely removing %s" msgstr " %s पूरà¥à¤£ रà¥à¤ªà¤²à¥‡ हटà¥à¤¯à¥‹" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, fuzzy, c-format msgid "Directory '%s' missing" msgstr "आंशिक सूचिहरà¥à¤•ो डाइरेकà¥à¤Ÿà¥à¤°à¥€ %s हराइरहेछ ।" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: 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:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr " %s तयार गरिदैछ" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr " %s अनपà¥à¤¯à¤¾à¤• गरिदैछ" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr " %s कनफिगर गरà¥à¤¨ तयार गरिदैछ" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr " %s सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ à¤à¤¯à¥‹" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr " %s हटाउन तयार गरिदैछ" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr " %s हटà¥à¤¯à¥‹" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr " %s पूरà¥à¤£ रà¥à¤ªà¤²à¥‡ हटाउन तयार गरिदैछ" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr " %s पूरà¥à¤£ रà¥à¤ªà¤²à¥‡ हटà¥à¤¯à¥‹" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr " %s मा लेखà¥à¤¨ असकà¥à¤·à¤®" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 msgid "" "No apport report written because the error message indicates an issue on the " "local system" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " "it?" msgstr "" -#: apt-pkg/deb/debsystem.cc:87 +#: 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:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " msgstr "" -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "" @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.8.15.9\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2011-12-05 17:10+0100\n" "Last-Translator: Jeroen Schot <schot@a-eskwadraat.nl>\n" "Language-Team: Debian l10n Dutch <debian-l10n-dutch@lists.debian.org>\n" @@ -21,152 +21,153 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: cmdline/apt-cache.cc:140 +#: 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" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "Totaal aantal pakketnamen: " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 msgid "Total package structures: " msgstr "Totaal aantal pakketstructuren: " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " Normale pakketten: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " Zuiver virtuele pakketten: " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " Losstaande virtuele pakketten: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " Gemengde virtuele pakketten: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " Ontbrekend: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "Totaal aantal verschillende versies: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "Totaal aantal verschillende beschrijvingen: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "Totaal aantal vereisten: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "Totaal aantal versie/bestand-relaties: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "Totaal aantal Beschrijving/bestand-relaties: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "Totaal aantal 'Voorziet'-toewijzingen " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "Totaal aantal geglobde strings: " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "Totale hoeveelheid vereisten-versieruimte: " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "Totale onbenutte ruimte: " -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "Totale hoeveelheid verantwoorde ruimte: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format msgid "Package file %s is out of sync." msgstr "Pakketbestand %s is niet meer gesynchroniseerd." -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 msgid "No packages found" msgstr "Geen pakketten gevonden" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 msgid "You must give at least one search pattern" msgstr "U dient precies één zoekpatroon op te geven" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "Kan pakket %s niet vinden" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "Pakketbestanden:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: 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" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "Vastgepinde pakketten:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(niet gevonden)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " Geïnstalleerd: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " Kandidaat: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(geen)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " Pakketpin: " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " Versietabel:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s voor %s gecompileerd op %s %s\n" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -240,30 +241,30 @@ msgstr "" " -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" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: cmdline/apt-cdrom.cc:76 msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" "Gelieve een naam voor deze schijf op te geven, bijvoorbeeld 'Debian 5.0.3 " "Schijf 1'" -#: cmdline/apt-cdrom.cc:104 +#: 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:141 +#: 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:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Dit proces dient herhaald te worden voor alle CD's in uw set." @@ -300,67 +301,67 @@ msgstr "" " -c=? Lees dit configuratiebestand.\n" " -o=? Stel een willekeurige optie in, b.v. -o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:244 +#: 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:326 +#: 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'" -#: cmdline/apt-get.cc:329 +#: 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'" -#: cmdline/apt-get.cc:366 +#: 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" -#: cmdline/apt-get.cc:422 +#: 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'" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "Kon pakket %s niet vinden" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "%s is ingesteld voor handmatige installatie.\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: 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:468 cmdline/apt-mark.cc:116 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 msgid "Internal error, problem resolver broke stuff" msgstr "Interne fout, probleemoplosser heeft dingen stukgemaakt" -#: cmdline/apt-get.cc:573 cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 msgid "Unable to lock the download directory" msgstr "Kon de ophaalmap niet vergrendelen" -#: cmdline/apt-get.cc:725 +#: cmdline/apt-get.cc:726 msgid "Must specify at least one package to fetch source for" msgstr "" "U dient minstens 1 pakket op te geven waarvan de broncode opgehaald moet " "worden" -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "Kan geen bronpakket vinden voor %s" @@ -387,97 +388,97 @@ msgstr "" "om de nieuwste (mogelijk nog niet uit uitgebrachte) versie van het pakket op " "te halen.\n" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Reeds opgehaald bestand '%s' wordt overgeslagen\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "Kon de hoeveelheid vrije schijfruimte op %s niet bepalen" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "U heeft niet voldoende vrije schijfruimte op %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Moet %sB/%sB aan bronarchieven ophalen.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Moet %sB aan bronarchieven ophalen.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "Ophalen bron %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "Ophalen van sommige archieven is mislukt." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "Ophalen klaar en alleen-ophalen-modus staat aan" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Het uitpakken van de reeds uitgepakte bron in %s wordt overgeslagen\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Uitpakopdracht '%s' is mislukt.\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Gelieve na te gaan of het 'dpkg-dev'-pakket geïnstalleerd is.\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "Bouwopdracht '%s' is mislukt.\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "Dochterproces is mislukt" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "" "U dient tenminste één pakket op te geven om de bouwvereisten van te " "controleren" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Kan de informatie over de bouwvereisten voor %s niet ophalen" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s heeft geen bouwvereisten.\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -486,7 +487,7 @@ msgstr "" "De vereiste %s van pakket %s kan niet voldaan worden omdat pakket %s " "onvindbaar is" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -495,14 +496,14 @@ msgstr "" "De vereiste %s van pakket %s kan niet voldaan worden omdat pakket %s " "onvindbaar is" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Voldoen van Vereiste %s van pakket %s is mislukt: geïnstalleerde versie %s " "is te nieuw" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -511,7 +512,7 @@ msgstr "" "De vereiste %s van pakket %s kan niet voldaan worden omdat er geen " "beschikbare versies zijn van pakket %s die aan de versievereisten voldoen" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -520,30 +521,30 @@ msgstr "" "De vereiste %s van pakket %s kan niet voldaan worden omdat pakket %s " "onvindbaar is" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Voldoen van de vereiste %s van pakket %s is mislukt: %s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Bouwvereisten voor %s konden niet voldaan worden." -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "Verwerken van de bouwvereisten is mislukt" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "Er wordt verbinding gemaakt met %s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "Ondersteunde modules:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -632,53 +633,77 @@ msgstr "" "voor meer informatie en opties.\n" " Deze APT heeft Super Koe kracht.\n" -#: cmdline/apt-mark.cc:57 +#: 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:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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:63 +#: 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:65 +#: cmdline/apt-mark.cc:76 #, fuzzy, c-format msgid "%s was already set to automatically installed.\n" msgstr "%s is ingesteld op automatische geïnstalleerd.\n" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format msgid "%s was already set on hold.\n" msgstr "%s is reeds de nieuwste versie.\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, fuzzy, c-format msgid "%s was already not hold.\n" msgstr "%s is reeds de nieuwste versie.\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Er is gewacht op %s, maar die kwam niet" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, fuzzy, c-format msgid "%s set on hold.\n" msgstr "%s is ingesteld voor handmatige installatie.\n" -#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316 +#: 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" -#: cmdline/apt-mark.cc:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" "\n" @@ -705,7 +730,7 @@ msgid "" "See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -754,52 +779,52 @@ msgstr "" msgid "Disk not found." msgstr "Schijf niet gevonden" -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "Bestand niet gevonden" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 msgid "Failed to stat" msgstr "stat is mislukt" -#: methods/copy.cc:82 methods/gzip.cc:113 methods/rred.cc:606 +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 msgid "Failed to set modification time" msgstr "Instellen van de aanpassingstijd is mislukt" -#: methods/file.cc:47 +#: methods/file.cc:48 msgid "Invalid URI, local URIS must not start with //" msgstr "Ongeldige URI, lokale URIs mogen niet beginnen met //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "Bezig met aanmelden" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "Kan de 'peer'-naam niet bepalen" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "Kan de lokale naam niet bepalen" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format msgid "The server refused the connection and said: %s" msgstr "Onze verbinding is door de server geweigerd met bericht: %s" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "USER mislukt; bericht van server: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS mislukt; bericht van server: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -807,121 +832,123 @@ msgstr "" "Er was een proxy-server opgegeven, maar geen aanmeldscript, Acquire::ftp::" "ProxyLogin is leeg." -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Aanmeldscriptopdracht '%s' is mislukt; bericht van server: %s" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE mislukt; bericht van server: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: 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:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "Verbinding is verbroken door de server" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "Leesfout" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "Een reactie deed de buffer overlopen" -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "Protocolcorruptie" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "Schrijffout" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: 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:707 +#: 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:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "Mislukt" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "Kon de passieve socket niet verbinden." -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo kon geen luistersocket verkrijgen" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "Kon geen socket binden" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "Kon niet op de socket niet luisteren" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "Kon de socketnaam niet bepalen" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "Kan PORT-commando niet verzenden" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Onbekende adresfamilie %u (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT is mislukt; bericht van server: %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "Datasocket verbinding is verlopen" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "Kan de verbinding niet aanvaarden" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "Probleem bij het hashen van het bestand" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Kan bestand niet ophalen; bericht van server: %s" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "Datasocket verliep" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Data transfer is mislukt, server zei: %s" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "Zoekopdracht" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "Aanroepen mislukt van " @@ -957,7 +984,7 @@ msgstr "Kon niet verbinden met %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "Er wordt verbinding gemaakt met %s" @@ -987,40 +1014,40 @@ msgstr "Er gebeurde iets raars bij het oplossen van '%s:%s' (%i - %s)" msgid "Unable to connect to %s:%s:" msgstr "Kan geen verbinding maken met %s %s:" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Interne fout: ondertekening is goed maar kon de vingerafdruk van de sleutel\n" "niet bepalen?!" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "Er is tenminste één ongeldige ondertekening gevonden." -#: methods/gpgv.cc:172 +#: 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?)" #. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "Onbekende fout bij het uitvoeren van gpgv" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "De volgende ondertekeningen waren ongeldig:\n" -#: methods/gpgv.cc:229 +#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@ -1028,151 +1055,151 @@ msgstr "" "De volgende ondertekeningen konden niet geverifieerd worden omdat de " "publieke sleutel niet beschikbaar is:\n" -#: methods/gzip.cc:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "Fout bij het schrijven naar het bestand" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "" "Fout bij het lezen van de server, andere kant heeft de verbinding gesloten" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "Fout bij het lezen van de server" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "Fout bij het schrijven naar bestand" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "Selectie is mislukt" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "Verbinding verliep" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "Fout bij het schrijven naar het uitvoerbestand" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "Wachtend op de kopteksten" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "Foute koptekstregel" -#: methods/server.cc:139 methods/server.cc:146 +#: 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" -#: methods/server.cc:176 +#: methods/server.cc:171 msgid "The HTTP server sent an invalid Content-Length header" msgstr "" "Er is door de HTTP server een ongeldige 'Content-Length'-koptekst verstuurd" -#: methods/server.cc:199 +#: methods/server.cc:194 msgid "The HTTP server sent an invalid Content-Range header" msgstr "" "Er is door de HTTP server een ongeldige 'Content-Range'-koptekst verstuurd" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "De bereik-ondersteuning van deze HTTP-server werkt niet" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "Onbekend datumformaat" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "Foute koptekstdata" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "Verbinding mislukt" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "Interne fout" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Interne fout, InstallPackages is aangeroepen met defecte pakketten!" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "Pakketten moeten verwijderd worden maar verwijderen is uitgeschakeld." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "Interne fout, rangschikken is niet voltooid" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" "Merkwaardig... De groottes kwamen niet overeen, gelieve apt@packages.debian." "org te mailen" #. TRANSLATOR: The required 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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Er moeten %sB/%sB aan archieven opgehaald worden.\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:171 +#: apt-private/private-install.cc:159 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Er moeten %sB aan archieven opgehaald worden.\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:178 +#: apt-private/private-install.cc:166 #, 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" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:183 +#: apt-private/private-install.cc:171 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Door deze operatie zal er %sB schijfruimte vrijkomen.\n" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "U heeft onvoldoende vrije schijfruimte op %s." -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "Er zijn problemen en -y was gebruikt zonder --force-yes" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 msgid "Trivial Only specified but this is not a trivial operation." msgstr "'Trivial Only' is opgegeven, dit is echter geen triviale bewerking." #. 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Ja, doe wat ik zeg!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1183,19 +1210,19 @@ msgstr "" "Als u wilt doorgaan, dient u de zin '%s' in te typen.\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "Afbreken." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "Wilt u doorgaan?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "Ophalen van sommige bestanden is mislukt" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1203,19 +1230,19 @@ msgstr "" "Kon sommige archieven niet ophalen, misschien kunt u 'apt-get update' of --" "fix-missing proberen?" -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing en medium wisselen wordt op dit moment niet ondersteund" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "Geen oplossing voor de missende pakketten gevonden." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "Installatie wordt afgebroken." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1229,15 +1256,15 @@ msgstr[1] "" "De volgende pakketten zijn van uw systeem verdwenen omdat\n" "alle bestanden zijn overschreven door andere pakketten:" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Let op: Dit wordt automatische en bewust door dpkg gedaan." -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "We mogen geen dingen verwijderen, kan AutoRemover niet starten" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1255,15 +1282,15 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 msgid "The following information may help to resolve the situation:" msgstr "De volgende informatie helpt u mogelijk verder:" -#: apt-private/private-install.cc:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "Interne fout, AutoRemover heeft dingen stukgemaakt" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1275,7 +1302,7 @@ msgstr[1] "" "De volgende pakketten zijn automatisch geïnstalleerd en zijn niet langer " "nodig:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1284,20 +1311,20 @@ 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-private/private-install.cc:530 +#: apt-private/private-install.cc:518 #, fuzzy msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "U kunt deze verwijderen via 'apt-get autoremove'." msgstr[1] "U kunt deze verwijderen via 'apt-get autoremove'." -#: apt-private/private-install.cc:624 +#: 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:" -#: apt-private/private-install.cc:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1305,7 +1332,7 @@ msgstr "" "Er zijn niet-voldane vereisten. U kunt best 'apt-get -f install' uitvoeren " "zonder pakketten op te geven, (of u kunt zelf een oplossing specificeren)." -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1316,146 +1343,146 @@ msgstr "" "een onmogelijke situatie gevraagd hebt of dat u de 'unstable'-distributie \n" "gebruikt en sommige benodigde pakketten nog vastzitten in 'incoming'." -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "Niet-werkende pakketten:" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "De volgende extra pakketten zullen geïnstalleerd worden:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "Voorgestelde pakketten:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "Aanbevolen pakketten:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "" "WAARSCHUWING: De volgende pakketten kunnen niet geauthentificeerd worden:" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "Authentificatiewaarschuwing is genegeerd.\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "Sommige pakketten konden niet geauthentificeerd worden" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "Wilt u deze pakketten installeren zonder verificatie?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Ophalen van %s is mislukt %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [Geïnstalleerd]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [Geïnstalleerd]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [Geïnstalleerd]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [Geïnstalleerd]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "De volgende pakketten hebben niet-voldane vereisten:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "maar %s is geïnstalleerd" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "maar %s zal geïnstalleerd worden" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "maar het is niet installeerbaar" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "maar het is een virtueel pakket" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "maar het is niet geïnstalleerd" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "maar het zal niet geïnstalleerd worden" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " of" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "De volgende NIEUWE pakketten zullen geïnstalleerd worden:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "De volgende pakketten zullen VERWIJDERD worden:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "De volgende pakketten zijn achtergehouden:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "De volgende pakketten zullen opgewaardeerd worden:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "De volgende pakketten zullen GEDEGRADEERD worden:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "De volgende vastgehouden pakketten zullen gewijzigd worden:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (vanwege %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1463,27 +1490,27 @@ msgstr "" "WAARSCHUWING: De volgende essentiële pakketten zullen verwijderd worden.\n" "Dit dient NIET gedaan te worden tenzij u precies weet wat u doet!" -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu pakketten opgewaardeerd, %lu pakketten nieuw geïnstalleerd, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu opnieuw geïnstalleerd, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu gedegradeerd, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu te verwijderen en %lu niet opgewaardeerd.\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu pakketten niet volledig geïnstalleerd of verwijderd.\n" @@ -1492,7 +1519,7 @@ msgstr "%lu pakketten niet volledig geïnstalleerd of verwijderd.\n" #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "[J/n]" @@ -1500,91 +1527,91 @@ msgstr "[J/n]" #. 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:702 +#: apt-private/private-output.cc:708 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:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "J" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "N" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "Regex-compilatiefout - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "Vereisten worden gecorrigeerd..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " mislukt." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "Kan vereisten niet corrigeren" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "Kon de verzameling op te waarderen pakketten niet minimaliseren" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " Klaar" -#: apt-private/private-cachefile.cc:102 +#: 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:105 +#: 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-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "De opdracht 'update' aanvaard geen argumenten" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "Opwaardering wordt doorgerekend... " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "Interne fout, AllUpgrade heeft dingen stukgemaakt" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "Klaar" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1596,43 +1623,43 @@ msgstr "" " Houd er ook rekening mee ook dat vergrendeling is uitgeschakeld en\n" " vertrouw dus niet op de relevantie voor de werkelijke huidige situatie!" -#: apt-private/private-sources.cc:45 +#: 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-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "Geraakt " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "Ophalen:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "Genegeerd " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Fout " -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "%sB opgehaald in %s (%sB/s)\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [Bezig]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1645,19 +1672,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "Kan %s niet lezen" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "Kan %s niet veranderen" @@ -1686,11 +1713,11 @@ msgstr "Geen spiegelbestand '%s' gevonden " msgid "[Mirror: %s]" msgstr "[Spiegelserver: %s]" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: 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:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "Verbinding werd voortijdig afgebroken" @@ -1760,40 +1787,45 @@ msgstr "" " -c=? Lees dit configuratiebestand.\n" " -o=? Stel een willekeurige optie in, b.v. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: 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:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "Kan niet naar %s schrijven" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Kan versie van debconf niet bepalen. Is debconf geïnstalleerd?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "Pakket-extensielijst is te lang" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "Fout bij het verwerken van map %s" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "Bron-extensielijst is te lang" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "Fout bij wegschrijven van de koptekst naar het 'contents'-bestand" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "Fout bij het verwerken van de inhoud van %s" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1877,26 +1909,26 @@ msgstr "" " -c=? Lees dit configuratiebestand in\n" " -o=? Stel een willekeurige configuratie optie in" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "Geen van de selecties kwam overeen" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Sommige bestanden zijn niet aanwezig in de pakketbestandsgroep '%s'" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "DB is beschadigd, bestand hernoemd naar %s.old" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "DB is verouderd, opwaardering van %s wordt geprobeerd" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -1904,192 +1936,192 @@ 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:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Kan het DB-bestand %s niet openen: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "stat op %s is mislukt" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "Archief heeft geen 'control'-record" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "Kan geen cursor verkrijgen" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: Kon map %s niet lezen\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: Kon de status van %s niet opvragen\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "F: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "F: Er zijn fouten van toepassing op het bestand " -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "Oplossen van %s is mislukt" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "Doorlopen boomstructuur is mislukt" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "Openen van %s is mislukt" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " OntlLink %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "readlink op %s is mislukt" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "Ontlinken van %s is mislukt" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Linken van %s aan %s is mislukt" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Ontlinklimiet van %sB bereikt.\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "Archief heeft geen 'package'-veld" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %s heeft geen voorrangsingang\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s beheerder is %s, niet %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr " %s heeft geen voorrangsingang voor bronpakketten\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s heeft ook geen voorrangsingang voor binaire pakketten\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - Geheugentoewijzing is mislukt" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "Kan %s niet openen" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "Misvormde voorrangsingang %s op regel %lu #1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "Lezen van het voorrangsbestand %s is mislukt" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, fuzzy, c-format msgid "Malformed override %s line %llu #1" msgstr "Misvormde voorrangsingang %s op regel %lu #1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, fuzzy, c-format msgid "Malformed override %s line %llu #2" msgstr "Misvormde voorrangsingang %s op regel %lu #2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, fuzzy, c-format msgid "Malformed override %s line %llu #3" msgstr "Misvormde voorrangsingang %s op regel %lu #3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "Onbekend compressie-algoritme '%s'" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "Gecomprimeerde uitvoer %s vereist een compressieset" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "Aanmaken van FILE* is mislukt" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "Vorken van proces is mislukt" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "Comprimeer kind" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "Interne fout, aanmaken van %s is mislukt" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "IO naar subproces/bestand is mislukt" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "Lezen tijdens het berekenen van de MD5 is mislukt" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "Probleem bij het ontlinken van %s" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "Hernoemen van %s naar %s is mislukt" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -2143,157 +2175,157 @@ msgstr "" " -c=? Lees dit configuratiebestand\n" " -o=? Stel een willekeurige optie in, b.v. -o dir::cache=/tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "Aanmaken pijp is mislukt" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "Uitvoeren van gzip is mislukt " -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "Beschadigd archief" -#: apt-inst/contrib/extracttar.cc:201 +#: 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:306 +#: apt-inst/contrib/extracttar.cc:308 #, c-format msgid "Unknown TAR header type %u, member %s" msgstr "Onbekende TAR-kopteksttype %u, onderdeel %s" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "Ongeldige archiefondertekening" -#: apt-inst/contrib/arfile.cc:82 +#: 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:94 +#: apt-inst/contrib/arfile.cc:96 #, c-format msgid "Invalid archive member header %s" msgstr "Ongeldige koptekst voor archiefonderdeel: %s" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "Ongeldige koptekst in archiefonderdeel" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "Archief is te kort" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "Lezen van de archiefkopteksten is mislukt" -#: apt-inst/filelist.cc:382 +#: 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:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "Lokaliseren van het hash-element is mislukt!" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "Toewijzen van de omleiding is mislukt" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "Interne fout in AddDiversion" -#: apt-inst/filelist.cc:479 +#: apt-inst/filelist.cc:477 #, c-format msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" msgstr "Er wordt gepoogd om de omleiding %s->%s en %s/%s te overschrijven" -#: apt-inst/filelist.cc:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "Dubbele toevoeging van de omleiding %s->%s" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "Dubbel configuratiebestand %s/%s" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format msgid "Failed to write file %s" msgstr "Wegschrijven van bestand %s is mislukt" -#: apt-inst/dirstream.cc:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "Sluiten van bestand %s is mislukt" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format msgid "The path %s is too long" msgstr "Het pad %s is te lang" -#: apt-inst/extract.cc:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "%s wordt meer dan eens uitgepakt" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "De map %s is al omgeleid" -#: apt-inst/extract.cc:145 +#: 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" -#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 msgid "The diversion path is too long" msgstr "Het omleidingspad is te lang" -#: apt-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "De map %s wordt vervangen door een niet-map" -#: apt-inst/extract.cc:282 +#: 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:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "Het pad is te lang" -#: apt-inst/extract.cc:414 +#: 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" -#: apt-inst/extract.cc:431 +#: apt-inst/extract.cc:438 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "Het bestand %s/%s overschrijft het bestand van pakket %s" -#: apt-inst/extract.cc:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "Kan de status van %s niet opvragen" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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 "Dit is geen geldig DEB-archief, het onderdeel '%s' mankeert" -#: apt-inst/deb/debfile.cc:124 +#: apt-inst/deb/debfile.cc:132 #, c-format msgid "Internal error, could not locate member %s" msgstr "Interne fout, kon onderdeel %s niet vinden" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "Niet-ontleedbaar 'control'-bestand" @@ -2354,491 +2386,496 @@ msgstr "" "door de gebruiker is uitgeschakeld." #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lid %liu %limin %lis" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "%liu %limin %lis" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "%limin %lis" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "%lis" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "Selectie %s niet gevonden" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Onbekende type-afkorting '%c'" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "Configuratiebestand %s wordt geopend" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Syntaxfout %s:%u: Blok start zonder naam." -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Syntaxfout %s:%u: Verkeerd gevormde markering" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Syntaxfout %s:%u: Extra rommel na waarde" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "Syntaxfout %s:%u: Richtlijnen kunnen enkel op het hoogste niveau gegeven " "worden" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Syntaxfout %s:%u: Teveel geneste invoegingen" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Syntaxfout %s:%u: Vanaf hier ingevoegd" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Syntaxfout %s:%u: Niet-ondersteunde richtlijn '%s'" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-pkg/contrib/configuration.cc:900 #, 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-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Syntaxfout %s:%u: Extra rommel aan het einde van het bestand" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... Fout!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... Klaar" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s... Klaar" -#: apt-pkg/contrib/cmndline.cc:116 +#: 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-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format msgid "Command line option %s is not boolean" msgstr "Commandoregel-optie %s is niet booleaans" -#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "Optie %s vereist een argument." -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "" "Optie %s: De specificatie van het configuratie-item dient een =<waarde> te " "bevatten." -#: apt-pkg/contrib/cmndline.cc:273 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format msgid "Option %s requires an integer argument, not '%s'" msgstr "Optie %s vereist een integer getal als argument, niet '%s'" -#: apt-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "Optie '%s' is te lang" -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "Waarde %s wordt niet begrepen, probeer 'true' of 'false'." -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "Ongeldige operatie %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format msgid "Unable to stat the mount point %s" msgstr "Kan de status van het aanhechtpunt %s niet opvragen" -#: apt-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "stat op de CD-ROM is mislukt" -#: apt-pkg/contrib/fileutl.cc:95 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Probleem bij het afsluiten van het gzip-bestand %s" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "" "Er wordt geen vergrendeling gebruikt voor het alleen-lezen-" "vergrendelingsbestand %s" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "Kon het vergrendelingsbestand '%s' niet openen" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "" "Het via nfs aangekoppelde vergrendelingsbestand %s wordt niet vergrendeld" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "Kon vergrendeling %s niet verkrijgen" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Subproces %s ontving een segmentatiefout." -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, c-format msgid "Sub-process %s received signal %u." msgstr "Subproces %s ontving signaal %u." -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 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-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Subproces %s sloot onverwacht af" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Probleem bij het afsluiten van het gzip-bestand %s" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "Kon het bestand %s niet openen" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, c-format msgid "Could not open file descriptor %d" msgstr "Kon de bestandsindicator %d niet openen" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "Aanmaken subproces-IPC is mislukt" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "Uitvoeren van de compressor is mislukt " -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, fuzzy, c-format msgid "read, still have %llu to read but none left" msgstr "lees, de laatste te lezen %lu zijn niet beschikbaar" -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, fuzzy, c-format msgid "write, still have %llu to write but couldn't" msgstr "schrijf, de laatste %lu konden niet weggeschreven worden" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, c-format msgid "Problem closing the file %s" msgstr "Probleem bij het afsluiten van het bestand %s" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, c-format msgid "Problem renaming the file %s to %s" msgstr "Probleem bij het hernoemen van '%s' naar '%s'" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, c-format msgid "Problem unlinking the file %s" msgstr "Probleem bij het ontlinken van het bestand %s" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "Probleem bij het synchroniseren van het bestand" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "herbenoeming is mislukt, %s (%s -> %s)." + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, c-format msgid "No keyring installed in %s." msgstr "Geen sleutelring geïnstalleerd in %s." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "Lege pakketcache" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "Het pakketcachebestand is beschadigd" -#: apt-pkg/pkgcache.cc:159 +#: 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:162 +#: 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:167 +#: apt-pkg/pkgcache.cc:174 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "Deze APT ondersteunt het versienummeringssysteem '%s' niet" -#: apt-pkg/pkgcache.cc:172 +#: 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:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "Vereisten" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "Voor-Vereisten" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "Suggesties" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "Aanbevelingen" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "Conflicteert met" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "Vervangt" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "Verouderd" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "Breekt" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "Vult aan" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "belangrijk" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "noodzakelijk" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "standaard" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "optioneel" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "extra" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "Boom van vereisten wordt opgebouwd" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "Kandidaat-versies" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "Generatie vereisten" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: 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:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "Openen van StateFile %s is mislukt" -#: apt-pkg/depcache.cc:250 +#: apt-pkg/depcache.cc:256 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Wegschrijven van tijdelijke StateFile %s is mislukt" -#: apt-pkg/tagfile.cc:138 +#: apt-pkg/tagfile.cc:140 #, c-format msgid "Unable to parse package file %s (1)" msgstr "Kon pakketbestand %s niet ontleden (1)" -#: apt-pkg/tagfile.cc:235 +#: apt-pkg/tagfile.cc:237 #, c-format msgid "Unable to parse package file %s (2)" msgstr "Kon pakketbestand %s niet ontleden (2)" -#: apt-pkg/sourcelist.cc:118 +#: 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-pkg/sourcelist.cc:161 +#: 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-pkg/sourcelist.cc:164 +#: 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-pkg/sourcelist.cc:175 +#: 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-pkg/sourcelist.cc:181 +#: 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-pkg/sourcelist.cc:184 +#: apt-pkg/sourcelist.cc:193 #, c-format msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" "Misvormde regel %lu in bronlijst %s ([%s] sleutel %s heeft geen waarde)" -#: apt-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "Misvormde regel %lu in bronlijst %s (URI)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "Misvormde regel %lu in bronlijst %s (dist)" -#: apt-pkg/sourcelist.cc:202 +#: apt-pkg/sourcelist.cc:211 #, c-format msgid "Malformed line %lu in source list %s (URI parse)" msgstr "Misvormde regel %lu in bronlijst %s (URI parse)" -#: apt-pkg/sourcelist.cc:208 +#: 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)" -#: apt-pkg/sourcelist.cc:215 +#: apt-pkg/sourcelist.cc:224 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" msgstr "Misvormde regel %lu in bronlijst %s (dist parse)" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "%s wordt geopend" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "Regel %u van de bronlijst %s is te lang." -#: apt-pkg/sourcelist.cc:362 +#: apt-pkg/sourcelist.cc:371 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Misvormde regel %u in bronlijst %s (type)" -#: apt-pkg/sourcelist.cc:366 +#: apt-pkg/sourcelist.cc:375 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Type '%s' op regel %u in bronlijst %s is onbekend" -#: apt-pkg/sourcelist.cc:407 +#: 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-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2847,12 +2884,12 @@ msgstr "" "Kon onmiddellijke configuratie van '%s' niet uitvoeren. Voor details zie " "'man 5 apt.conf', onder APT::Immediate-Configure. (%d)" -#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "Kon het bestand '%s' niet openen" -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2864,12 +2901,12 @@ msgstr "" "vaak slecht, wilt u dit echt doen dan dient u de APT::Force-LoopBreak optie " "te activeren." -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "Indexbestand van type '%s' wordt niet ondersteund" -#: apt-pkg/algorithms.cc:266 +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." @@ -2877,7 +2914,7 @@ msgstr "" "Pakket %s moet opnieuw geïnstalleerd worden, maar er kan geen archief voor " "gevonden worden." -#: apt-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2885,226 +2922,221 @@ msgstr "" "Fout, pkgProblemResolver::Resolve maakte scheidingen aan, dit kan " "veroorzaakt worden door vastgehouden pakketten." -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "Kan problemen niet verhelpen, u houdt defecte pakketten vast." -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, c-format msgid "List directory %spartial is missing." msgstr "Lijstmap %spartial is afwezig." -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, c-format msgid "Archives directory %spartial is missing." msgstr "Archiefmap %spartial is afwezig." -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, c-format msgid "Unable to lock directory %s" msgstr "Kan de map %s niet vergrendelen" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Bestand %li van %li wordt opgehaald (nog %s te gaan)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "Bestand %li van %li wordt opgehaald" -#: apt-pkg/acquire-worker.cc:113 +#: 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." -#: apt-pkg/acquire-worker.cc:115 +#: 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" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "Methode %s startte niet op de juiste manier" -#: apt-pkg/acquire-worker.cc:452 +#: apt-pkg/acquire-worker.cc:455 #, c-format msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "" "Gelieve de schijf met label '%s' in het station '%s' te plaatsen en op " "'enter' te drukken." -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Pakketbeheersysteem '%s' wordt niet ondersteund" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "Kan geen geschikt pakketsysteemtype bepalen" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "Kan de status van %s niet opvragen." -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "" "Uw bronnenlijst (/etc/apt/sources.list) dient tenminste één bron-URI te " "bevatten" -#: apt-pkg/cachefile.cc:87 +#: 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." -#: apt-pkg/cachefile.cc:91 +#: 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:109 +#: 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/policy.cc:75 +#: 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 "" -#: apt-pkg/policy.cc:414 +#: apt-pkg/policy.cc:422 #, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "" "Ongeldige record in het voorkeurenbestand %s, 'Package' koptekst ontbreekt" -#: apt-pkg/policy.cc:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "Pintype %s wordt niet begrepen" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "Er is geen prioriteit (of nul) opgegeven voor deze pin" -#: apt-pkg/pkgcachegen.cc:87 +#: 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:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: 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)" -#: apt-pkg/pkgcachegen.cc:251 +#: 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." -#: apt-pkg/pkgcachegen.cc:254 +#: 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." -#: apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:263 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" "Wauw, u heeft het maximum aantal beschrijvingen dat deze APT aan kan " "overschreden." -#: apt-pkg/pkgcachegen.cc:260 +#: 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." -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:576 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "Pakket %s %s werd niet gevonden bij het verwerken van de " "bestandsafhankelijkheden" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "Kon de status van de bronpakketlijst %s niet opvragen" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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" -#: apt-pkg/pkgcachegen.cc:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "Voorziene bestanden worden verzameld" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 msgid "IO Error saving source cache" msgstr "Invoer/Uitvoer-fout tijdens wegschrijven bronpakket-cache" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "herbenoeming is mislukt, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "Hash-som komt niet overeen" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "Grootte komt niet overeen" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "Ongeldige operatie %s" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, 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:1586 +#: apt-pkg/acquire-item.cc:1595 #, fuzzy, c-format msgid "Unable to find hash sum for '%s' in Release file" msgstr "Kon Release-bestand %s niet ontleden" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 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" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " "repository will not be applied." msgstr "" -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Conflicterende distributie: %s (verwachtte %s, maar kreeg %s)" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3115,12 +3147,12 @@ msgstr "" "%s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "GPG-fout: %s: %s" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3129,12 +3161,12 @@ msgstr "" "Er kon geen bestand gevonden worden voor pakket %s. Dit kan betekenen dat u " "dit pakket handmatig moet repareren (wegens missende architectuur)" -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -3142,71 +3174,67 @@ msgstr "" "De pakketindex-bestanden zijn beschadigd. Er is geen 'Filename:'-veld voor " "pakket %s." -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, c-format msgid "Unable to parse Release file %s" msgstr "Kon Release-bestand %s niet ontleden" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, c-format msgid "No sections in Release file %s" msgstr "Geen secties in Release-bestand %s" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "Geen Hash-vermelding in Release-bestand %s" -#: apt-pkg/indexrecords.cc:125 +#: 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-pkg/indexrecords.cc:144 +#: apt-pkg/indexrecords.cc:149 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Geen 'Date'-vermelding in Release-bestand %s" -#: apt-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "Verkopersblok %s bevat geen vingerafdruk" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Er wordt gebruik gemaakt van CD-aankoppelpunt %s\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "CD wordt losgekoppeld\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "CD wordt afgekoppeld...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "Er wordt gewacht op de schijf...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "CD wordt aangekoppeld...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " msgstr "Identificatie..." -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "Opgeslagen label: %s \n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "CD wordt afgekoppeld...\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" msgstr "Er wordt gescand voor indexbestanden...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3215,7 +3243,7 @@ msgstr "" "Er zijn %zu pakket-indexen, %zu bron-indexen, %zu vertalingsindexen, en %zu " "handtekeningen gevonden\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" @@ -3223,16 +3251,16 @@ msgstr "" "Kan geen Package-bestanden vinden. Is dit mogelijk geen Debian schijf, of de " "verkeerde architectuur?" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "Label '%s' gevonden\n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 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:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3241,34 +3269,34 @@ msgstr "" "De schijf heet:\n" "'%s'\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "Pakketlijsten worden gekopieerd..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "Nieuwe bronlijst wordt weggeschreven\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "Bronlijst-ingangen voor de schijf zijn:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format msgid "Wrote %i records.\n" msgstr "%i records weggeschreven.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:777 +#: 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" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:780 +#: 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" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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 "" @@ -3285,38 +3313,38 @@ msgstr "Kan geen authenticatierecord vinden voor: %s" msgid "Hash mismatch for: %s" msgstr "Hash-som komt niet overeen voor: %s" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Release '%s' voor '%s' is niet gevonden" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Versie '%s' voor '%s' is niet gevonden" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, c-format msgid "Couldn't find task '%s'" msgstr "Kon taak '%s' niet vinden" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, c-format msgid "Couldn't find any package by regex '%s'" msgstr "Kon geen enkel pakket vinden bij regex '%s'" -#: apt-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "Kon geen enkel pakket vinden bij regex '%s'" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, 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" -#: apt-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " @@ -3325,57 +3353,57 @@ msgstr "" "Kan noch de geïnstalleerde, noch de kandidaat-versie van het pakket '%s' " "selecteren omdat deze geen van beide heeft" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, 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" -#: apt-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" "Kan de kandidaat-versie van het pakket %s niet selecteren omdat deze geen " "kandidaat heeft" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "" "Kan de geïnstalleerde versie van het pakket %s niet selecteren omdat deze " "niet geïnstalleerd is" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "dpkg wordt uitgevoerd" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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 " @@ -3384,120 +3412,120 @@ msgstr "" "Ophalen van sommige indexbestanden is mislukt, deze zijn of genegeerd, of er " "zijn oudere versies van gebruikt." -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "%s wordt geïnstalleerd" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "%s wordt geconfigureerd" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "%s wordt verwijderd" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format msgid "Completely removing %s" msgstr "%s wordt volledig verwijderd" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "De verdwijning van %s wordt opgemerkt" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "Post-installatie-trigger %s wordt uitgevoerd" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "Map '%s' ontbreekt" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format msgid "Could not open file '%s'" msgstr "Kon het bestand '%s' niet openen" -#: apt-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "%s wordt voorbereid" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "%s wordt uitgepakt" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "Configuratie van %s wordt voorbereid" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "%s is geïnstalleerd" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "Verwijdering van %s wordt voorbereid" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "%s is verwijderd" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "Volledige verwijdering van %s wordt voorbereid" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "%s is volledig verwijderd" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "Kan niet naar %s schrijven" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 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" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "problemen met vereisten - wordt niet geconfigureerd" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3505,7 +3533,7 @@ msgstr "" "Er is geen apport-verslag weggeschreven omdat de foutmelding volgt op een " "eerdere mislukking." -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" @@ -3513,7 +3541,7 @@ msgstr "" "Er is geen apport-verslag weggeschreven omdat de foutmelding een fout is " "over een volle schijf." -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3521,7 +3549,7 @@ msgstr "" "Er is geen apport-verslag weggeschreven omdat de foutmelding een fout is " "over onvoldoende-geheugen." -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 #, fuzzy msgid "" "No apport report written because the error message indicates an issue on the " @@ -3530,14 +3558,14 @@ msgstr "" "Er is geen apport-verslag weggeschreven omdat de foutmelding een fout is " "over een volle schijf." -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" "Er is geen apport-verslag weggeschreven omdat de foutmelding een fout over " "dpkg-I/O is." -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " @@ -3546,21 +3574,21 @@ msgstr "" "Kan de beheersmap (%s) niet vergrendelen. Is deze in gebruik door een ander " "proces?" -#: apt-pkg/deb/debsystem.cc:87 +#: 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?" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " msgstr "" "dpkg werd onderbroken; voer handmatig '%s' uit om het probleem te verhelpen. " -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "Niet vergrendeld" @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_nn\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2005-02-14 23:30+0100\n" "Last-Translator: Havard Korsvoll <korsvoll@skulelinux.no>\n" "Language-Team: Norwegian nynorsk <i18n-nn@lister.ping.uio.no>\n" @@ -19,156 +19,157 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.9.1\n" -#: cmdline/apt-cache.cc:140 +#: cmdline/apt-cache.cc:149 #, c-format msgid "Package %s version %s has an unmet dep:\n" msgstr "Pakken %s versjon %s har eit krav som ikkje er oppfylt:\n" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "Tal på pakkenamn: " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 #, fuzzy msgid "Total package structures: " msgstr "Tal på pakkenamn: " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " Vanlege pakkar: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " Reine virtuelle pakkar: " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " Enkle virtuelle pakkar: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " Samansette virtuelle pakkar: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " Manglar: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "Tal på einskildversjonar: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 #, fuzzy msgid "Total distinct descriptions: " msgstr "Tal på einskildversjonar: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "Tal på krav: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "Tal på ver./fil-forhold: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 #, fuzzy msgid "Total Desc/File relations: " msgstr "Tal på ver./fil-forhold: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "Tal på tilbyr-forhold: " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "Tal på strengar med jokerteikn: " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "Storleik på kravs- og versjonsrom: " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "Slingringsmon: " -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "Brukt plass i alt: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: 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." -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 #, fuzzy msgid "You must give at least one search pattern" msgstr "Du må oppgi nøyaktig eitt mnster" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "Finn ikkje pakken %s" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "Pakkefiler:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: 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" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "Spikra pakkar:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(ikkje funne)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " Installert: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " Kandidat: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(ingen)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " Pakke spikra til: " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " Versjonstabell:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: 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" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -241,19 +242,11 @@ msgstr "" " -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" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: cmdline/apt-cdrom.cc:76 msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" -#: cmdline/apt-cdrom.cc:104 +#: cmdline/apt-cdrom.cc:91 #, fuzzy msgid "Please insert a Disc in the drive and press enter" msgstr "" @@ -261,12 +254,20 @@ msgstr "" " «%s»\n" "i stasjonen «%s» og trykk Enter.\n" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, fuzzy, c-format msgid "Failed to mount '%s' to '%s'" msgstr "Klarte ikkje endra namnet på %s til %s" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "" @@ -302,66 +303,66 @@ msgstr "" " -c=? Les denne oppsettsfila.\n" " -o=? Set ei vilkårleg innstilling, t.d. «-o dir::cache=/tmp».\n" -#: cmdline/apt-get.cc:244 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format msgid "Can not find a package for architecture '%s'" msgstr "Fann ikkje pakken %s" -#: cmdline/apt-get.cc:326 +#: cmdline/apt-get.cc:327 #, fuzzy, c-format msgid "Can not find a package '%s' with version '%s'" msgstr "Fann ikkje pakken %s" -#: cmdline/apt-get.cc:329 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format msgid "Can not find a package '%s' with release '%s'" msgstr "Fann ikkje pakken %s" -#: cmdline/apt-get.cc:366 +#: 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" -#: cmdline/apt-get.cc:422 +#: cmdline/apt-get.cc:423 #, c-format msgid "Can not find version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "Fann ikkje pakken %s" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "men %s skal installerast" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: 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" -#: cmdline/apt-get.cc:468 cmdline/apt-mark.cc:116 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: 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:573 cmdline/apt-get.cc:610 +#: 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:725 +#: 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" -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "Finn ingen kjeldepakke for %s" @@ -381,115 +382,115 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, 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" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, fuzzy, c-format msgid "Couldn't determine free space in %s" msgstr "Du har ikkje nok ledig plass i %s" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "Du har ikkje nok ledig plass i %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Må henta %sB/%sB med kjeldekodearkiv.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Må henta %sB med kjeldekodearkiv.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "Hent kjeldekode %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "Klarte ikkje henta nokre av arkiva." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "Nedlastinga er ferdig i nedlastingsmodus" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, 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" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Utpakkingskommandoen «%s» mislukkast.\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "Byggjekommandoen «%s» mislukkast.\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "Barneprosessen mislukkast" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "Du må velja minst ein pakke som byggjekrava skal sjekkast for" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Klarte ikkje henta byggjekrav for %s" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s har ingen byggjekrav.\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " "packages" msgstr "Kravet %s for %s kan ikkje oppfyllast fordi pakken %s ikkje finst" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "Kravet %s for %s kan ikkje oppfyllast fordi pakken %s ikkje finst" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Klarte ikkje oppfylla kravet %s for %s: Den installerte pakken %s er for ny" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -498,37 +499,37 @@ msgstr "" "Kravet %s for %s kan ikkje oppfyllast fordi det ikkje finst nokon " "tilgjengelege versjonar av pakken %s som oppfyller versjonskrava" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " "version" msgstr "Kravet %s for %s kan ikkje oppfyllast fordi pakken %s ikkje finst" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Klarte ikkje oppfylla kravet %s for %s: %s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Byggjekrav for %s kunne ikkje tilfredstillast." -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "Klarte ikkje behandla byggjekrava" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "Koplar til %s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "Støtta modular:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -614,53 +615,75 @@ msgstr "" "til apt-get(8), sources.list(5) og apt.conf(5).\n" " APT har superku-krefter.\n" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Du må velja minst éin pakke som kjeldekoden skal hentast for" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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 "men er ikkje installert" -#: cmdline/apt-mark.cc:63 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format msgid "%s was already set to manually installed.\n" msgstr "men %s skal installerast" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, fuzzy, c-format msgid "%s was already set to automatically installed.\n" msgstr "men %s skal installerast" -#: cmdline/apt-mark.cc:230 +#: 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" -#: cmdline/apt-mark.cc:232 +#: 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" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Venta på %s, men den fanst ikkje" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, fuzzy, c-format msgid "%s set on hold.\n" msgstr "men %s skal installerast" -#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, fuzzy, c-format msgid "Canceled hold on %s.\n" msgstr "Klarte ikkje opna %s" -#: cmdline/apt-mark.cc:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" "\n" @@ -687,7 +710,7 @@ msgid "" "See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -737,52 +760,52 @@ msgstr "" msgid "Disk not found." msgstr "Fann ikkje fila" -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "Fann ikkje fila" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: 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" -#: methods/copy.cc:82 methods/gzip.cc:113 methods/rred.cc:606 +#: 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:47 +#: methods/file.cc:48 msgid "Invalid URI, local URIS must not start with //" msgstr "Ugyldig URI. Lokale URI-ar kan ikkje starta med //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "Loggar inn" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "Klarte ikkje avgjera namnet på motparten" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "Klarte ikkje avgjera det lokale namnet" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: 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" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "USER mislukkast, tenaren sa: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS mislukkast, tenaren sa: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -790,121 +813,123 @@ msgstr "" "Ein mellomtenar er oppgitt, men ikkje noko innloggingsskript. Feltet " "«Acquire::ftp::ProxyLogin» er tomt." -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Kommandoen «%s» i innlogginsskriptet mislukkast, tenaren sa: %s" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE mislukkast, tenaren sa: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 msgid "Connection timeout" msgstr "Tidsavbrot på samband" -#: methods/ftp.cc:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "Tenaren lukka sambandet" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "Lesefeil" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "Eit svar flaumde over bufferen." -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "Protokolløydeleggjing" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "Skrivefeil" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 msgid "Could not create a socket" msgstr "Klarte ikkje oppretta sokkel" -#: methods/ftp.cc:707 +#: methods/ftp.cc:712 msgid "Could not connect data socket, connection timed out" msgstr "Klarte ikkje kopla til datasokkel, tidsavbrot på sambandet" -#: methods/ftp.cc:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "Mislukkast" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "Klarte ikkje kopla til passiv sokkel." -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo klarte ikkje oppretta ein lyttesokkel" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "Klarte ikkje binda til sokkel" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "Klarte ikkje lytta til sokkel" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "Klarte ikkje avgjera sokkelnamnet" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "Klarte ikkje senda PORT-kommandoen" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Ukjend adressefamilie %u (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT mislukkast, tenaren sa: %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "Tidsavbrot på tilkopling til datasokkel" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "Klarte ikkje godta tilkoplinga" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: 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" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Klarte ikkje henta fila, tenaren sa «%s»" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "Tidsavbrot på datasokkelen" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Dataoverføringa mislukkast, tenaren sa «%s»" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "Spørjing" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "Klarte ikkje starta " @@ -940,7 +965,7 @@ msgstr "Klarte ikkje kopla til %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "Koplar til %s" @@ -970,184 +995,184 @@ msgstr "Det hende noko dumt ved oppslag av «%s:%s» (%i)" msgid "Unable to connect to %s:%s:" msgstr "Klarte ikkje kopla til %s %s:" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "" -#: methods/gpgv.cc:172 +#: methods/gpgv.cc:174 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" #. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: methods/gpgv.cc:217 methods/gpgv.cc:224 #, fuzzy msgid "The following signatures were invalid:\n" msgstr "Dei følgjande tilleggspakkane vil verta installerte:" -#: methods/gpgv.cc:229 +#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" msgstr "" -#: methods/gzip.cc:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "Feil ved skriving til fila" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "Feil ved lesing frå tenaren. Sambandet vart lukka i andre enden" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "Feil ved lesing frå tenaren" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "Feil ved skriving til fil" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "Utvalet mislukkast" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "Tidsavbrot på sambandet" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "Feil ved skriving til utfil" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "Ventar på hovud" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "Øydelagd hovudlinje" -#: methods/server.cc:139 methods/server.cc:146 +#: methods/server.cc:134 methods/server.cc:141 msgid "The HTTP server sent an invalid reply header" msgstr "HTTP-tenaren sende eit ugyldig svarhovud" -#: methods/server.cc:176 +#: methods/server.cc:171 msgid "The HTTP server sent an invalid Content-Length header" msgstr "HTTP-tenaren sende eit ugyldig «Content-Length»-hovud" -#: methods/server.cc:199 +#: methods/server.cc:194 msgid "The HTTP server sent an invalid Content-Range header" msgstr "HTTP-tenaren sende eit ugyldig «Content-Range»-hovud" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "Denne HTTP-tenaren har øydelagd støtte for område" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "Ukjend datoformat" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "Øydelagde hovuddata" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "Sambandet mislukkast" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "Intern feil" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "Nokre pakkar må fjernast, men fjerning er slått av." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 #, fuzzy msgid "Internal error, Ordering didn't finish" msgstr "Intern feil ved tilleggjing av avleiing" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +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:166 +#: apt-private/private-install.cc:154 #, 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:171 +#: apt-private/private-install.cc:159 #, 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:178 +#: apt-private/private-install.cc:166 #, fuzzy, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "Etter utpakking vil %sB meir diskplass verta brukt.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:183 +#: apt-private/private-install.cc:171 #, fuzzy, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Etter utpakking vil %sB meir diskplass verta frigjort.\n" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "Du har ikkje nok ledig plass i %s." -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 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:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "«Trivial Only» var spesifisert, men dette er ikkje noka triviell handling." #. 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Ja, gjer som eg seier!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, fuzzy, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1158,19 +1183,19 @@ msgstr "" "For å halda fram, må du skriva nøyaktig «%s».\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "Avbryt." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "Vil du halda fram?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "Klarte ikkje henta nokre av filene" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1178,19 +1203,19 @@ msgstr "" "Klarte ikkje henta nokre av arkiva. Du kan prøva med «apt-get update» eller " "«--fix-missing»." -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "«--fix-missing» og byte av medium er ikkje støtta for tida" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "Klarte ikkje retta opp manglande pakkar." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "Avbryt installasjon." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1200,15 +1225,15 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1224,16 +1249,16 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 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:517 +#: apt-private/private-install.cc:505 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "Intern feil. AllUpgrade øydelagde noko" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1243,7 +1268,7 @@ msgid_plural "" 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:528 +#: apt-private/private-install.cc:516 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1251,18 +1276,18 @@ msgid_plural "" 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:530 +#: apt-private/private-install.cc:518 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-install.cc:624 +#: apt-private/private-install.cc:612 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" "Du vil kanskje prøva å retta på desse ved å køyra «apt-get -f install»." -#: apt-private/private-install.cc:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1270,7 +1295,7 @@ msgstr "" "Nokre krav er ikkje oppfylte. Du kan prøva «apt-get -f install» (eller velja " "ei løysing)." -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1282,145 +1307,145 @@ msgstr "" "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:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "Øydelagde pakkar" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "Dei følgjande tilleggspakkane vil verta installerte:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "Føreslåtte pakkar:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "Tilrådde pakkar" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ÅTVARING: Klarer ikkje autentisere desse pakkane." -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "Nokre pakkar kunne ikkje bli autentisert" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "Installer desse pakkane utan verifikasjon?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Klarte ikkje henta %s %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [Installert]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [Installert]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [Installert]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [Installert]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "Følgjande pakkar har krav som ikkje er oppfylte:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "men %s er installert" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "men %s skal installerast" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "men lèt seg ikkje installera" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "men er ein virtuell pakke" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "men er ikkje installert" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "men skal ikkje installerast" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " eller" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "Dei følgjande NYE pakkane vil verta installerte:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "Dei følgjande pakkane vil verta FJERNA:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "Dei følgjande pakkane er haldne tilbake:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "Dei følgjande pakkane vil verta oppgraderte:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "Dei følgjande pakkane vil verta NEDGRADERTE:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "Dei følgjande pakkane som er haldne tilbake vil verta endra:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (fordi %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 #, fuzzy msgid "" "WARNING: The following essential packages will be removed.\n" @@ -1429,27 +1454,27 @@ msgstr "" "ÅTVARING: Dei følgjande nødvendige pakkane vil verta fjerna.\n" "Dette bør IKKJE gjerast utan at du er fullstendig klar over kva du gjer!" -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu oppgraderte, %lu nyleg installerte, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu installerte på nytt, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu nedgraderte, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu skal fjernast og %lu skal ikkje oppgraderast.\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu ikkje fullstendig installerte eller fjerna.\n" @@ -1458,7 +1483,7 @@ msgstr "%lu ikkje fullstendig installerte eller fjerna.\n" #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "[J/n]" @@ -1466,92 +1491,92 @@ msgstr "[J/n]" #. 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:702 +#: apt-private/private-output.cc:708 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:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "J" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "N" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "Regex-kompileringsfeil - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "Rettar på krav ..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " mislukkast." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "Klarte ikkje retta på krav" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "Klarte ikkje minimera oppgraderingsmengda" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " Ferdig" -#: apt-private/private-cachefile.cc:102 +#: 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-private/private-cachefile.cc:105 +#: 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-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "Oppdateringskommandoen tek ingen argument" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "Reknar ut oppgradering ... " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "Intern feil. AllUpgrade øydelagde noko" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "Ferdig" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1559,43 +1584,43 @@ msgid "" " so don't depend on the relevance to the real current situation!" msgstr "" -#: apt-private/private-sources.cc:45 +#: 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" -#: apt-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "Treff " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "Hent:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "Ign " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Feil " -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "Henta %sB på %s (%sB/s)\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [Arbeider]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1608,19 +1633,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "Klarte ikkje lesa %s" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "Klarte ikkje byta til %s" @@ -1649,11 +1674,11 @@ msgstr "Klarte ikkje opna fila %s" msgid "[Mirror: %s]" msgstr "" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: 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:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "Sambandet vart uventa stengd" @@ -1717,40 +1742,45 @@ msgstr "" " -c=? Les denne innstillingsfila.\n" " -o=? Set ei vilkårleg innstilling, t.d. «-o dir::cache=/tmp».\n" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Klarte ikkje få status til %s" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "Klarte ikkje skriva til %s" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Finn ikkje debconf-versjonen. Er debconf installert?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "Lista over pakkeutvidingar er for lang" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "Feil ved lesing av katalogen %s" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "Lista over kjeldeutvidingar er for lang" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "Feil ved skriving av topptekst til innhaldsfila" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "Feil ved lesing av %s" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 #, fuzzy msgid "" "Usage: apt-ftparchive [options] command\n" @@ -1830,217 +1860,217 @@ msgstr "" " -c=? Les denne oppsettsfila.\n" " -o=? Set ei vilkårleg innstilling." -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "Ingen utval passa" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Enkelte filer manglar i pakkefilgruppa %s" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "Databasen er øydelagd. Filnamnet er endra til %s.old" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "DB er for gammal, forsøkjer å oppgradere %s" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 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:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Klarte ikkje opna DB-fila %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "Klarte ikkje få status til %s" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "Arkivet har ingen kontrollpost" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "Klarte ikkje få peikar" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "Å: Klarte ikkje lesa katalogen %s\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "Å: Klarte ikkje få status til %s\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "F: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "Å: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "F: Det er feil ved fila " -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "Klarte ikkje slå opp %s" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "Treklatring mislukkast" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "Klarte ikkje opna %s" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "Klarte ikkje lesa lenkja %s" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "Klarte ikkje oppheva lenkja %s" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Klarte ikkje lenkja %s til %s" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " DeLink-grensa på %sB er nådd.\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "Arkivet har ikkje noko pakkefelt" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %s har inga overstyringsoppføring\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s-vedlikehaldaren er %s, ikkje %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, fuzzy, c-format msgid " %s has no source override entry\n" msgstr " %s har inga overstyringsoppføring\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, fuzzy, c-format msgid " %s has no binary override entry either\n" msgstr " %s har inga overstyringsoppføring\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - Klarte ikkje tildela minne" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "Klarte ikkje opna %s" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "Misforma overstyring %s linje %lu #1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "Klarte ikkje lesa overstyringsfila %s" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, fuzzy, c-format msgid "Malformed override %s line %llu #1" msgstr "Misforma overstyring %s linje %lu #1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, fuzzy, c-format msgid "Malformed override %s line %llu #2" msgstr "Misforma overstyring %s linje %lu #2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, fuzzy, c-format msgid "Malformed override %s line %llu #3" msgstr "Misforma overstyring %s linje %lu #3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "Ukjend komprimeringsalgoritme %s" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "Komprimert utdata %s treng eit komprimeringssett" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "Klarte ikkje oppretta FILE*" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "Klarte ikkje gafla" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "Komprimer barn" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "Intern feil, klarte ikkje oppretta %s" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "Klarte ikkje kommunisera med underprosess/fil" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "Klarte ikkje lesa under utrekning av MD5" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "Problem ved oppheving av lenkje til %s" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "Klarte ikkje endra namnet på %s til %s" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -2093,157 +2123,157 @@ msgstr "" " -c=? Les denne oppsettsfila.\n" " -o=? Set ei vilkårleg innstilling, t.d. «-o dir::cache=/tmp».\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "Klarte ikkje oppretta røyr" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "Klarte ikkje køyra gzip " -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "Øydelagt arkiv" -#: apt-inst/contrib/extracttar.cc:201 +#: apt-inst/contrib/extracttar.cc:203 msgid "Tar checksum failed, archive corrupted" msgstr "Tar-sjekksummen mislukkast, arkivet er øydelagt" -#: apt-inst/contrib/extracttar.cc:306 +#: apt-inst/contrib/extracttar.cc:308 #, c-format msgid "Unknown TAR header type %u, member %s" msgstr "Ukjend TAR-hovud type %u, medlem %s" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "Ugyldig arkivsignatur" -#: apt-inst/contrib/arfile.cc:82 +#: apt-inst/contrib/arfile.cc:84 msgid "Error reading archive member header" msgstr "Feil ved lesing av arkivmedlemshovud" -#: apt-inst/contrib/arfile.cc:94 +#: apt-inst/contrib/arfile.cc:96 #, fuzzy, c-format msgid "Invalid archive member header %s" msgstr "Ugyldig arkivmedlemshovud" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "Ugyldig arkivmedlemshovud" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "Arkivet er for kort" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "Klarte ikkje lesa arkivhovuda" -#: apt-inst/filelist.cc:382 +#: 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:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "Fann ikkje nøkkelelementet." -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "Klarte ikkje tildela avleiing" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "Intern feil i AddDiversion" -#: apt-inst/filelist.cc:479 +#: 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:508 +#: 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:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "Dobbel oppsettsfil %s/%s" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: 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-inst/dirstream.cc:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "Klarte ikkje lukka fila %s" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: 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:125 +#: 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:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "Katalogen %s er avleidd" -#: apt-inst/extract.cc:145 +#: 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:155 apt-inst/extract.cc:299 +#: 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:242 +#: 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:282 +#: 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:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "Stigen er for lang" -#: apt-inst/extract.cc:414 +#: 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:431 +#: 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:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "Klarte ikkje få status til %s" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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 "Dette er ikkje eit gyldig DEB-arkiv, manglar «%s»-medlemmen" -#: apt-inst/deb/debfile.cc:124 +#: apt-inst/deb/debfile.cc:132 #, c-format msgid "Internal error, could not locate member %s" msgstr "Intern feil, fann ikkje medlemmen %s" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "Kontrollfila kan ikkje tolkast" @@ -2301,495 +2331,500 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "Fann ikkje utvalet %s" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Ukjend typeforkorting: «%c»" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "Opnar oppsettsfila %s" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Syntaksfeil %s:%u: Blokka startar utan namn." -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Syntaksfeil %s:%u: Misforma tagg" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Syntaksfeil %s:%u: Ekstra rot etter verdien" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, 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-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Syntaksfeil %s:%u: For mange nøsta inkluderte filer" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Syntaksfeil %s:%u: Inkludert herifrå" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Syntaksfeil %s:%u: Direktivet «%s» er ikkje støtta" -#: apt-pkg/contrib/configuration.cc:884 +#: 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-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Syntaksfeil %s:%u: Ekstra rot til slutt i fila" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s ... Feil" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s ... Ferdig" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s ... Ferdig" -#: apt-pkg/contrib/cmndline.cc:116 +#: 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-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format msgid "Command line option %s is not boolean" msgstr "Kommandolinjevalet %s er ikkje boolsk" -#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "Valet %s krev eit argument." -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "Val %s: Spesifikasjonen av oppsettselementet må ha ein =<verdi>." -#: apt-pkg/contrib/cmndline.cc:273 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format msgid "Option %s requires an integer argument, not '%s'" msgstr "Valet %s må ha eit heiltalsargument, ikkje «%s»" -#: apt-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "Valet «%s» er for langt" -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "Skjønar ikkje %s. Prøv «true» eller «false»." -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "Ugyldig operasjon %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: 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-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "Klarte ikkje få status til CD-ROM" -#: apt-pkg/contrib/fileutl.cc:95 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problem ved låsing av fila" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "Brukar ikkje låsing for den skrivebeskytta låsefila %s" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "Klarte ikkje opna låsefila %s" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "Brukar ikkje låsing for den nfs-monterte låsefila %s" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "Klarte ikkje låsa %s" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Underprosessen %s mottok ein segmenteringsfeil." -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "Underprosessen %s mottok ein segmenteringsfeil." -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 apt-pkg/contrib/gpgv.cc:239 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Underprosessen %s returnerte ein feilkode (%u)" -#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Underprosessen %s avslutta uventa" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problem ved låsing av fila" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "Klarte ikkje opna fila %s" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "Klarte ikkje opna røyr for %s" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "Klarte ikkje oppretta underprosessen IPC" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "Klarte ikkje køyra komprimeringa " -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, fuzzy, c-format msgid "read, still have %llu to read but none left" msgstr "lese, har framleis %lu att å lesa, men ingen att" -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, fuzzy, c-format msgid "write, still have %llu to write but couldn't" msgstr "skrive, har framleis %lu att å skrive, men klarte ikkje" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "Problem ved låsing av fila" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "Problem ved synkronisering av fila" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "Problem ved oppheving av lenkje til fila" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "Problem ved synkronisering av fila" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "endring av namn mislukkast, %s (%s -> %s)." + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, fuzzy, c-format msgid "No keyring installed in %s." msgstr "Avbryt installasjon." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "Tomt pakkelager" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "Pakkelagerfila er øydelagd" -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "Versjonen til pakkelagerfila er ikkje kompatibel" -#: apt-pkg/pkgcache.cc:162 +#: apt-pkg/pkgcache.cc:169 #, fuzzy msgid "The package cache file is corrupted, it is too small" msgstr "Pakkelagerfila er øydelagd" -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "APT støttar ikkje versjonssystemet «%s»" -#: apt-pkg/pkgcache.cc:172 +#: apt-pkg/pkgcache.cc:179 msgid "The package cache was built for a different architecture" msgstr "Pakkelageret er bygd for ein annan arkitektur" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "Krav" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "Forkrav" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "Forslag" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "Tilrådingar" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "Konflikt" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "Byter ut" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "Foreldar" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "viktig" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "påkravd" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "vanleg" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "valfri" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "tillegg" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "Byggjer kravtre" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "Kandidatversjonar" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "Genererer kravforhold" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: 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-pkg/depcache.cc:244 +#: apt-pkg/depcache.cc:250 #, fuzzy, c-format msgid "Failed to open StateFile %s" msgstr "Klarte ikkje opna %s" -#: apt-pkg/depcache.cc:250 +#: apt-pkg/depcache.cc:256 #, fuzzy, c-format msgid "Failed to write temporary StateFile %s" msgstr "Klarte ikkje skriva fila %s" -#: apt-pkg/tagfile.cc:138 +#: apt-pkg/tagfile.cc:140 #, c-format msgid "Unable to parse package file %s (1)" msgstr "Klarte ikkje tolka pakkefila %s (1)" -#: apt-pkg/tagfile.cc:235 +#: apt-pkg/tagfile.cc:237 #, c-format msgid "Unable to parse package file %s (2)" msgstr "Klarte ikkje tolka pakkefila %s (2)" -#: apt-pkg/sourcelist.cc:118 +#: 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-pkg/sourcelist.cc:161 +#: 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-pkg/sourcelist.cc:164 +#: 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-pkg/sourcelist.cc:175 +#: 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-pkg/sourcelist.cc:181 +#: 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-pkg/sourcelist.cc:184 +#: 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-pkg/sourcelist.cc:197 +#: 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-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "Misforma linje %lu i kjeldelista %s (dist)" -#: apt-pkg/sourcelist.cc:202 +#: 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-pkg/sourcelist.cc:208 +#: 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)" -#: apt-pkg/sourcelist.cc:215 +#: apt-pkg/sourcelist.cc:224 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" msgstr "Misforma linje %lu i kjeldelista %s (dist-tolking)" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "Opnar %s" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "Linja %u i kjeldelista %s er for lang." -#: apt-pkg/sourcelist.cc:362 +#: apt-pkg/sourcelist.cc:371 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Misforma linje %u i kjeldelista %s (type)" -#: apt-pkg/sourcelist.cc:366 +#: 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-pkg/sourcelist.cc:407 +#: 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" -#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, 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:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "Klarte ikkje opna fila %s" -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2801,18 +2836,18 @@ msgstr "" "om du verkeleg vil gjera det, kan du bruka innstillinga «APT::Force-" "LoopBreak»." -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "Indeksfiltypen «%s» er ikkje støtta" -#: apt-pkg/algorithms.cc:266 +#: 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." -#: apt-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2820,54 +2855,54 @@ msgstr "" "Feil, «pkgProblemResolver::Resolve» har laga brot. Dette kan skuldast pakkar " "som er haldne tilbake." -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Klarte ikkje retta opp problema. Nokre øydelagde pakkar er haldne tilbake." -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, fuzzy, c-format msgid "List directory %spartial is missing." msgstr "Listekatalogen %spartial manglar." -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, fuzzy, c-format msgid "Archives directory %spartial is missing." msgstr "Arkivkatalogen %spartial manglar." -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, fuzzy, c-format msgid "Unable to lock directory %s" msgstr "Klarte ikkje låsa listekatalogen" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, fuzzy, c-format msgid "Retrieving file %li of %li" msgstr "Les filliste" -#: apt-pkg/acquire-worker.cc:113 +#: apt-pkg/acquire-worker.cc:116 #, c-format msgid "The method driver %s could not be found." msgstr "Finn ikkje metodedrivaren %s." -#: apt-pkg/acquire-worker.cc:115 +#: apt-pkg/acquire-worker.cc:118 #, c-format msgid "Is the package %s installed?" msgstr "" -#: apt-pkg/acquire-worker.cc:166 +#: 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:452 +#: apt-pkg/acquire-worker.cc:455 #, fuzzy, c-format msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "" @@ -2875,165 +2910,160 @@ msgstr "" " «%s»\n" "i stasjonen «%s» og trykk Enter.\n" -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Pakkesystemet «%s» er ikkje støtta" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "Klarte ikkje avgjera ein eigna pakkesystemtype" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "Klarte ikkje få status på %s." -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "Du må leggja nokre kjelde-URI-ar i fila sources.list." -#: apt-pkg/cachefile.cc:87 +#: 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:91 +#: 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»." -#: apt-pkg/cachefile.cc:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "Kjeldelista kan ikkje lesast." -#: apt-pkg/policy.cc:75 +#: 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 "" -#: apt-pkg/policy.cc:414 +#: 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:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "Skjønar ikkje spikringstypen %s" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "Ingen prioritet (eller null) oppgitt for spiker" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 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:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: 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)" -#: apt-pkg/pkgcachegen.cc:251 +#: 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." -#: apt-pkg/pkgcachegen.cc:254 +#: 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." -#: apt-pkg/pkgcachegen.cc:257 +#: 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." -#: apt-pkg/pkgcachegen.cc:260 +#: 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." -#: apt-pkg/pkgcachegen.cc:570 +#: 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" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "Klarte ikkje få status på kjeldepakkelista %s" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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" -#: apt-pkg/pkgcachegen.cc:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "Samlar inn filtilbod" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: 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/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "endring av namn mislukkast, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 #, fuzzy msgid "Hash Sum mismatch" msgstr "Feil MD5-sum" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "Feil storleik" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "Ugyldig operasjon %s" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, 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:1586 +#: apt-pkg/acquire-item.cc:1595 #, fuzzy, c-format msgid "Unable to find hash sum for '%s' in Release file" msgstr "Klarte ikkje tolka pakkefila %s (1)" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " "repository will not be applied." msgstr "" -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3041,12 +3071,12 @@ msgid "" msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3055,106 +3085,101 @@ msgstr "" "Fann ikkje fila for pakken %s. Det kan henda du må fiksa denne pakken sjølv " "(fordi arkitekturen manglar)." -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, 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." -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, fuzzy, c-format msgid "Unable to parse Release file %s" msgstr "Klarte ikkje tolka pakkefila %s (1)" -#: apt-pkg/indexrecords.cc:81 +#: 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-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "" -#: apt-pkg/indexrecords.cc:125 +#: apt-pkg/indexrecords.cc:130 #, fuzzy, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Ugyldig linje i avleiingsfila: %s" -#: apt-pkg/indexrecords.cc:144 +#: apt-pkg/indexrecords.cc:149 #, fuzzy, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Klarte ikkje tolka pakkefila %s (1)" -#: apt-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "Utgjevarblokka %s inneheld ingen fingeravtrykk" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Brukar monteringspunktet %s for CD-ROM\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "Avmonterer CD-ROM\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "Avmonterer CD-ROM ...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "Ventar på disk ...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "Monterer CD-ROM ...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " msgstr "Identifiserer ... " -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "Lagra etikett: %s \n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -#, fuzzy -msgid "Unmounting CD-ROM...\n" -msgstr "Avmonterer CD-ROM ..." - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" msgstr "Leitar etter indeksfiler på disken ...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, 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" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, fuzzy, c-format msgid "Found label '%s'\n" msgstr "Lagra etikett: %s \n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "Det er ikkje eit gyldig namn, prøv igjen.\n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3163,34 +3188,34 @@ msgstr "" "Disken vert kalla: \n" "«%s»\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "Kopierer pakkelister ..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "Skriv ny kjeldeliste\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "Kjeldelisteoppføringar for denne disken er:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format msgid "Wrote %i records.\n" msgstr "Skreiv %i postar.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:777 +#: 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" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:780 +#: 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" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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" @@ -3205,88 +3230,88 @@ msgstr "" msgid "Hash mismatch for: %s" msgstr "Feil MD5-sum" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Fann ikkje utgåva «%s» av «%s»" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Fann ikkje versjonen «%s» av «%s»" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, fuzzy, c-format msgid "Couldn't find task '%s'" msgstr "Fann ikkje pakken %s" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, fuzzy, c-format msgid "Couldn't find any package by regex '%s'" msgstr "Fann ikkje pakken %s" -#: apt-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "Fann ikkje pakken %s" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, c-format msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " "neither of them" msgstr "" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, c-format msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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 " @@ -3295,167 +3320,167 @@ msgstr "" "Klarte ikkje lasta ned nokre av indeksfilene. Dei er ignorerte, eller gamle " "filer er brukte i staden." -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, fuzzy, c-format msgid "Installing %s" msgstr " Installert: " -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, fuzzy, c-format msgid "Configuring %s" msgstr "Koplar til %s" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, fuzzy, c-format msgid "Removing %s" msgstr "Opnar %s" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, fuzzy, c-format msgid "Completely removing %s" msgstr "Klarte ikkje fjerna %s" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, fuzzy, c-format msgid "Directory '%s' missing" msgstr "Listekatalogen %spartial manglar." -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: 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-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, fuzzy, c-format msgid "Preparing %s" msgstr "Opnar %s" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, fuzzy, c-format msgid "Unpacking %s" msgstr "Opnar %s" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, fuzzy, c-format msgid "Preparing to configure %s" msgstr "Opnar oppsettsfila %s" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, fuzzy, c-format msgid "Installed %s" msgstr " Installert: " -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, fuzzy, c-format msgid "Removed %s" msgstr "Tilrådingar" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, fuzzy, c-format msgid "Preparing to completely remove %s" msgstr "Opnar oppsettsfila %s" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, fuzzy, c-format msgid "Completely removed %s" msgstr "Klarte ikkje fjerna %s" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "Klarte ikkje skriva til %s" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 msgid "" "No apport report written because the error message indicates an issue on the " "local system" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " "it?" msgstr "" -#: apt-pkg/deb/debsystem.cc:87 +#: apt-pkg/deb/debsystem.cc:94 #, fuzzy, c-format msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Klarte ikkje låsa listekatalogen" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " msgstr "" -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "" @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.7.3\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2012-07-28 21:53+0200\n" "Last-Translator: MichaÅ‚ KuÅ‚ach <michal.kulach@gmail.com>\n" "Language-Team: Polish <debian-l10n-polish@lists.debian.org>\n" @@ -23,154 +23,155 @@ 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:140 +#: 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" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "Liczba nazw pakietów: " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 msgid "Total package structures: " msgstr "Liczba wszystkich typów pakietów: " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " ZwykÅ‚ych pakietów: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " Czysto wirtualnych pakietów: " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " Pojedynczych pakietów wirtualnych: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " Mieszanych pakietów wirtualnych: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " BrakujÄ…cych: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "W sumie różnych wersji: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "W sumie różnych opisów: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "W sumie zależnoÅ›ci: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "W sumie zależnoÅ›ci wersja/plik: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "W sumie zależnoÅ›ci opis/plik: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "W sumie mapowaÅ„ zapewnieÅ„: " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "W sumie dopasowanych napisów: " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "Sumaryczny rozmiar obszaru zależnoÅ›ci od wersji: " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "Sumaryczny rozmiar niewykorzystanego miejsca: " -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "CaÅ‚kowity rozmiar: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format msgid "Package file %s is out of sync." msgstr "Plik pakietu %s jest przestarzaÅ‚y." -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 msgid "You must give at least one search pattern" msgstr "Należy podać przynajmniej jeden wzorzec" -#: cmdline/apt-cache.cc:1411 +#: 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\"." -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "Nie udaÅ‚o siÄ™ odnaleźć pakietu %s" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "Plików pakietów:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: 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." #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "PrzypiÄ™te pakiety:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(nie znaleziono)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " Zainstalowana: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " KandydujÄ…ca: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(brak)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " Sposób przypiÄ™cia: " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " Tabela wersji:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s dla %s skompilowany %s %s\n" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] showpkg pkg1 [pkg2 ...]\n" @@ -241,28 +242,28 @@ msgstr "" "WiÄ™cej informacji można znaleźć na stronach podrÄ™cznika apt-cache(8)\n" "oraz apt.conf(5).\n" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: 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\"" -#: cmdline/apt-cdrom.cc:104 +#: 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" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, c-format msgid "Failed to mount '%s' to '%s'" msgstr "Nie udaÅ‚o siÄ™ zamontować \"%s\" w \"%s\"" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Należy powtórzyć ten proces dla reszty pÅ‚yt." @@ -298,50 +299,50 @@ msgstr "" " -c=? Czyta wskazany plik konfiguracyjny.\n" " -o=? Ustawia dowolnÄ… opcjÄ™ konfiguracji, np. -o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:244 +#: 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\"" -#: cmdline/apt-get.cc:326 +#: 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\"" -#: cmdline/apt-get.cc:329 +#: 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\"" -#: cmdline/apt-get.cc:366 +#: 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" -#: cmdline/apt-get.cc:422 +#: 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\"" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "Nie udaÅ‚o siÄ™ odnaleźć pakietu %s" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "%s zaznaczony jako zainstalowany rÄ™cznie.\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: 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:468 cmdline/apt-mark.cc:116 +#: 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." @@ -349,21 +350,21 @@ msgstr "" "To polecenie jest przestarzaÅ‚e. Prosimy używać \"apt-mark auto\" i \"apt-" "mark manual\"." -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: 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:573 cmdline/apt-get.cc:610 +#: 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:725 +#: 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" -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "Nie udaÅ‚o siÄ™ odnaleźć źródÅ‚a dla pakietu %s" @@ -390,80 +391,80 @@ msgstr "" "by pobrać najnowsze (prawdopodobnie jeszcze niewydane) poprawki tego " "pakietu.\n" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Pomijanie już pobranego pliku \"%s\"\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "Nie udaÅ‚o siÄ™ ustalić iloÅ›ci wolnego miejsca w %s" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "W %s nie ma wystarczajÄ…cej iloÅ›ci wolnego miejsca" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Konieczne pobranie %sB/%sB archiwów źródeÅ‚.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Konieczne pobranie %sB archiwów źródeÅ‚.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "Pobieranie źródeÅ‚ %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "Nie udaÅ‚o siÄ™ pobrać niektórych archiwów." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "UkoÅ„czono pobieranie w trybie samego pobierania" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Pomijanie rozpakowania już rozpakowanego źródÅ‚a w %s\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Polecenie rozpakowania \"%s\" zawiodÅ‚o.\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "ProszÄ™ sprawdzić czy pakiet \"dpkg-dev\" jest zainstalowany.\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "Polecenie budowania \"%s\" zawiodÅ‚o.\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "Proces potomny zawiódÅ‚" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "" "Należy podać przynajmniej jeden pakiet, dla którego majÄ… zostać sprawdzone " "zależnoÅ›ci dla budowania" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -472,17 +473,17 @@ msgstr "" "Nie znaleziono informacji o architekturze dla %s. ProszÄ™ zapoznać siÄ™ z apt." "conf(5) APT::Architectures" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Nie udaÅ‚o siÄ™ pobrać informacji o zależnoÅ›ciach dla budowania %s" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s nie ma zależnoÅ›ci dla budowania.\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -491,7 +492,7 @@ msgstr "" "Zależność %s od %s nie może zostać speÅ‚niona, ponieważ %s nie jest dozwolone " "w pakietach \"%s\"" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -500,14 +501,14 @@ msgstr "" "Zależność %s od %s nie może zostać speÅ‚niona, ponieważ nie znaleziono " "pakietu %s" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Nie udaÅ‚o siÄ™ speÅ‚nić zależnoÅ›ci %s od %s: Zainstalowany pakiet %s jest zbyt " "nowy" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -516,7 +517,7 @@ msgstr "" "Zależność %s od %s nie może zostać speÅ‚niona, ponieważ kandydujÄ…ca wersja " "pakietu %s nie speÅ‚nia wymagaÅ„ wersji" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -525,30 +526,30 @@ msgstr "" "Zależność %s od %s nie może zostać speÅ‚niona, ponieważ pakiet %s nie ma " "wersji kandydujÄ…cej" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Nie udaÅ‚o siÄ™ speÅ‚nić zależnoÅ›ci %s od %s: %s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Nie udaÅ‚o siÄ™ speÅ‚nić zależnoÅ›ci dla budowania %s." -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "Nie udaÅ‚o siÄ™ przetworzyć zależnoÅ›ci dla budowania" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, c-format msgid "Changelog for %s (%s)" msgstr "Dziennik zmian %s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "ObsÅ‚ugiwane moduÅ‚y:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -636,55 +637,79 @@ msgstr "" "apt-get(8), sources.list(5) i apt.conf(5).\n" " Ten APT ma moce Super Krowy.\n" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "" +"Należy podać przynajmniej jeden pakiet, dla którego majÄ… zostać pobrane " +"źródÅ‚a" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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 nie może zostać oznaczony, ponieważ nie jest zainstalowany.\n" -#: cmdline/apt-mark.cc:63 +#: cmdline/apt-mark.cc:74 #, c-format msgid "%s was already set to manually installed.\n" msgstr "%s zostaÅ‚ już ustawiony jako zainstalowany rÄ™cznie.\n" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, c-format msgid "%s was already set to automatically installed.\n" msgstr "%s zostaÅ‚ już ustawiony jako zainstalowany automatycznie.\n" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, c-format msgid "%s was already set on hold.\n" msgstr "%s zostaÅ‚ już zatrzymany.\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, c-format msgid "%s was already not hold.\n" msgstr "%s zostaÅ‚ już odznaczony jako zatrzymany.\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Oczekiwano na proces %s, ale nie byÅ‚o go" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format msgid "%s set on hold.\n" msgstr "%s zostaÅ‚ zatrzymany.\n" -#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format msgid "Canceled hold on %s.\n" msgstr "Odznaczono zatrzymanie %s\n" # Musi pasować do su i sudo. -#: cmdline/apt-mark.cc:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "" "Uruchomienie dpkg nie powiodÅ‚o siÄ™. Czy użyto uprawnieÅ„ administratora?" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 #, fuzzy msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" @@ -733,7 +758,7 @@ msgstr "" "ProszÄ™ zapoznać siÄ™ ze stronami podrÄ™cznika systemowego apt-mark(8)\n" "i apt.conf(5), aby uzyskać wiÄ™cej informacji." -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -781,52 +806,52 @@ msgstr "Nie udaÅ‚o siÄ™ odmontować CD-ROM-u w %s, być może wciąż jest używ msgid "Disk not found." msgstr "Nie odnaleziono dysku." -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: 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" -#: methods/copy.cc:82 methods/gzip.cc:113 methods/rred.cc:606 +#: 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" -#: methods/file.cc:47 +#: methods/file.cc:48 msgid "Invalid URI, local URIS must not start with //" msgstr "NieprawidÅ‚owe URI, lokalne URI nie mogÄ… zaczynać siÄ™ od //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "Logowanie siÄ™" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "Nie można okreÅ›lić nazwy zdalnego systemu" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "Nie udaÅ‚o siÄ™ okreÅ›lić nazwy lokalnego systemu" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format msgid "The server refused the connection and said: %s" msgstr "Serwer odrzuciÅ‚ połączenie, otrzymana odpowiedź: %s" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "Polecenie USER nie powiodÅ‚o siÄ™, odpowiedź serwera: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "Polecenie PASS nie powiodÅ‚o siÄ™, odpowiedź serwera: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -834,123 +859,125 @@ msgstr "" "OkreÅ›lono serwer poÅ›redniczÄ…cy, ale nie okreÅ›lono skryptu rejestrowania, " "Acquire::ftp::ProxyLogin jest puste." -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "" "Polecenie skryptu rejestrowania \"%s\" nie powiodÅ‚o siÄ™, odpowiedź serwera: " "%s" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "Polecenie TYPE nie powiodÅ‚o siÄ™, odpowiedź serwera: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 msgid "Connection timeout" msgstr "Przekroczenie czasu połączenia" -#: methods/ftp.cc:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "Serwer zamknÄ…Å‚ połączenie" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "Błąd odczytu" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "Odpowiedź przepeÅ‚niÅ‚a bufor." -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "Naruszenie zasad protokoÅ‚u" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "Błąd zapisu" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: 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" -#: methods/ftp.cc:707 +#: 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" -#: methods/ftp.cc:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "Nie udaÅ‚o siÄ™" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "Nie udaÅ‚o siÄ™ połączyć pasywnego gniazda." -#: methods/ftp.cc:730 +#: 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" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "Nie udaÅ‚o siÄ™ przyłączyć gniazda" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "Nie udaÅ‚o siÄ™ nasÅ‚uchiwać na gnieździe" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "Nie udaÅ‚o siÄ™ okreÅ›lić nazwy gniazda" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "Nie można wysÅ‚ać polecenia PORT" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Nieznana rodzina adresów %u (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "Polecenie EPRT nie powiodÅ‚o siÄ™, odpowiedź serwera: %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "Przekroczony czas połączenia gniazda danych" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "Nie udaÅ‚o siÄ™ przyjąć połączenia" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: 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" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Nie można pobrać pliku, odpowiedź serwera: %s" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "Przekroczony czas oczekiwania na dane" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Nie udaÅ‚o siÄ™ przesÅ‚ać danych, odpowiedź serwera: %s" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "Info" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "Nie można wywoÅ‚ać " @@ -986,7 +1013,7 @@ msgstr "Nie udaÅ‚o siÄ™ połączyć z %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "ÅÄ…czenie z %s" @@ -1016,39 +1043,39 @@ msgstr "CoÅ› niewÅ‚aÅ›ciwego staÅ‚o siÄ™ przy tÅ‚umaczeniu \"%s:%s\" (%i - %s)" msgid "Unable to connect to %s:%s:" msgstr "Nie udaÅ‚o siÄ™ połączyć z %s:%s:" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Błąd wewnÄ™trzny: PrawidÅ‚owy podpis, ale nie udaÅ‚o siÄ™ ustalić odcisku klucza!" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "Napotkano przynajmniej jeden nieprawidÅ‚owy podpis." -#: methods/gpgv.cc:172 +#: methods/gpgv.cc:174 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "Nie udaÅ‚o siÄ™ uruchomić gpgv by zweryfikować podpis (czy gpgv jest " "zainstalowane?)" #. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "Nieznany błąd podczas uruchamiania gpgv" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: 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:229 +#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@ -1056,149 +1083,149 @@ msgstr "" "NastÄ™pujÄ…ce podpisy nie mogÅ‚y zostać zweryfikowane z powodu braku klucza " "publicznego:\n" -#: methods/gzip.cc:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "Puste pliki nie mogÄ… być prawidÅ‚owymi archiwami" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "Błąd przy pisaniu do pliku" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "Błąd czytania z serwera: Zdalna strona zamknęła połączenie" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "Błąd czytania z serwera" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "Błąd przy pisaniu do pliku" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "Operacja select nie powiodÅ‚a siÄ™" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "Przekroczenie czasu połączenia" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "Błąd przy pisaniu do pliku wyjÅ›ciowego" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "Oczekiwanie na nagłówki" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "NieprawidÅ‚owa linia nagłówka" -#: methods/server.cc:139 methods/server.cc:146 +#: methods/server.cc:134 methods/server.cc:141 msgid "The HTTP server sent an invalid reply header" msgstr "Serwer HTTP przysÅ‚aÅ‚ nieprawidÅ‚owy nagłówek odpowiedzi" -#: methods/server.cc:176 +#: methods/server.cc:171 msgid "The HTTP server sent an invalid Content-Length header" msgstr "Serwer HTTP przysÅ‚aÅ‚ nieprawidÅ‚owy nagłówek Content-Length" -#: methods/server.cc:199 +#: 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" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "Ten serwer HTTP nieprawidÅ‚owo obsÅ‚uguje zakresy (ranges)" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "Nieznany format daty" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "Błędne dane nagłówka" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "Połączenie nie powiodÅ‚o siÄ™" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "Błąd wewnÄ™trzny" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Błąd wewnÄ™trzny, użyto InstallPackages z uszkodzonymi pakietami!" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "Pakiety powinny zostać usuniÄ™te, ale Remove jest wyłączone." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "Błąd wewnÄ™trzny, sortowanie niezakoÅ„czone" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" "WystÄ…piÅ‚ dziwny błąd - rozmiary siÄ™ nie zgadzajÄ…. ProszÄ™ to zgÅ‚osić pod " "apt@packages.debian.org" #. TRANSLATOR: The required 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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Konieczne pobranie %sB/%sB archiwów.\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:171 +#: apt-private/private-install.cc:159 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Konieczne pobranie %sB archiwów.\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:178 +#: apt-private/private-install.cc:166 #, 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" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:183 +#: apt-private/private-install.cc:171 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Po tej operacji zostanie zwolnione %sB miejsca na dysku.\n" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, 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:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 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:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Nakazano wykonywać tylko trywialne operacje, a ta do nich nie należy." # 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Tak, jestem pewien!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1209,19 +1236,19 @@ msgstr "" "Aby kontynuować proszÄ™ napisać zdanie \"%s\"\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "Przerwane." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "Kontynuować?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "Nie udaÅ‚o siÄ™ pobrać niektórych plików" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1229,19 +1256,19 @@ 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:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing i zamiana noÅ›ników nie sÄ… obecnie obsÅ‚ugiwane" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "Nie udaÅ‚o siÄ™ poprawić brakujÄ…cych pakietów." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "Przerywanie instalacji" -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1258,15 +1285,15 @@ msgstr[2] "" "NastÄ™pujÄ…ce pakiety zniknęły z tego systemu, ponieważ wszystkie ich pliki " "zostaÅ‚y nadpisane przez inne pakiety:" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Uwaga: dpkg wykonaÅ‚ to automatycznie i celowo." -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Nic nie powinno być usuwane, AutoRemover nie zostanie uruchomiony" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1284,15 +1311,15 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 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:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "Błąd wewnÄ™trzny spowodowany przez AutoRemover" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1308,7 +1335,7 @@ msgstr[2] "" "NastÄ™pujÄ…ce pakiety zostaÅ‚y zainstalowane automatycznie i nie sÄ… już wiÄ™cej " "wymagane:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1323,19 +1350,19 @@ msgstr[2] "" "%lu pakietów zostaÅ‚o zainstalowanych automatycznie i nie sÄ… już wiÄ™cej " "wymagane.\n" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Aby go usunąć należy użyć \"apt-get autoremove\"." msgstr[1] "Aby je usunąć należy użyć \"apt-get autoremove\"." msgstr[2] "Aby je usunąć należy użyć \"apt-get autoremove\"." -#: apt-private/private-install.cc:624 +#: 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:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1343,7 +1370,7 @@ msgstr "" "NiespeÅ‚nione zależnoÅ›ci. ProszÄ™ spróbować wykonać \"apt-get -f install\" bez " "pakietów (lub podać rozwiÄ…zanie)." -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1355,145 +1382,145 @@ msgstr "" "w której niektóre pakiety nie zostaÅ‚y jeszcze utworzone lub przeniesione\n" "z katalogu Incoming (\"PrzychodzÄ…ce\")." -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "Pakiety sÄ… uszkodzone" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "ZostanÄ… zainstalowane nastÄ™pujÄ…ce dodatkowe pakiety:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "Sugerowane pakiety:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "Polecane pakiety:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "UWAGA: NastÄ™pujÄ…ce pakiety nie mogÄ… zostać zweryfikowane!" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "Zignorowano ostrzeżenie uwierzytelniania.\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "Niektóre pakiety nie mogÅ‚y zostać zweryfikowane" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "Zainstalować te pakiety bez weryfikacji?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Nie udaÅ‚o siÄ™ pobrać %s %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [Zainstalowany]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [Zainstalowany]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [Zainstalowany]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [Zainstalowany]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "NastÄ™pujÄ…ce pakiety majÄ… niespeÅ‚nione zależnoÅ›ci:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "ale %s jest zainstalowany" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "ale %s ma zostać zainstalowany" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "ale nie da siÄ™ go zainstalować" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "ale jest pakietem wirtualnym" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "ale nie jest zainstalowany" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "ale nie zostanie zainstalowany" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " lub" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "ZostanÄ… zainstalowane nastÄ™pujÄ…ce NOWE pakiety:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "NastÄ™pujÄ…ce pakiety zostanÄ… USUNIĘTE:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "NastÄ™pujÄ…ce pakiety zostaÅ‚y zatrzymane:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "NastÄ™pujÄ…ce pakiety zostanÄ… zaktualizowane:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "ZostanÄ… zainstalowane STARE wersje nastÄ™pujÄ…cych pakietów:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "ZostanÄ… zmienione nastÄ™pujÄ…ce zatrzymane pakiety:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (z powodu %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1501,27 +1528,27 @@ 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:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu aktualizowanych, %lu nowo instalowanych, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu ponownie instalowanych, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu cofniÄ™tych wersji, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu usuwanych i %lu nieaktualizowanych.\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu nie w peÅ‚ni zainstalowanych lub usuniÄ™tych.\n" @@ -1530,7 +1557,7 @@ msgstr "%lu nie w peÅ‚ni zainstalowanych lub usuniÄ™tych.\n" #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "[T/n]" @@ -1538,92 +1565,92 @@ msgstr "[T/n]" #. 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:702 +#: apt-private/private-output.cc:708 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:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "T" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "N" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "Błąd kompilacji wyrażenia regularnego - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "Naprawianie zależnoÅ›ci..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " nie udaÅ‚o siÄ™." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "Nie udaÅ‚o siÄ™ naprawić zależnoÅ›ci" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "Nie udaÅ‚o siÄ™ zminimalizować zbioru aktualizacji" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " Gotowe" -#: apt-private/private-cachefile.cc:102 +#: 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-private/private-cachefile.cc:105 +#: 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-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "Polecenie update nie wymaga żadnych argumentów" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "Obliczanie aktualizacji..." -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "Błąd wewnÄ™trzny spowodowany przez AllUpgrade" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "Gotowe" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1635,46 +1662,46 @@ msgstr "" " Aktualnie blokowanie jest wyłączone, wiÄ™c nie należy polegać\n" " na zwiÄ…zku z rzeczywistÄ… sytuacjÄ…!" -#: apt-private/private-sources.cc:45 +#: 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-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" # Ujednolicono z aptitude -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "Stary " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "Pobieranie:" # Wyrównane do Hit i Err. -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "Ign. " # Wyrównane do Hit i Ign. -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Błąd " -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "Pobrano %sB w %s (%sB/s)\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [Pracuje]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1687,19 +1714,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "Nie można czytać %s" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "Nie udaÅ‚o siÄ™ przejść do %s" @@ -1728,11 +1755,11 @@ msgstr "Nie udaÅ‚o siÄ™ otworzyć pliku serwera lustrzanego \"%s\"" msgid "[Mirror: %s]" msgstr "[Serwer lustrzany: %s]" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: 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:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "Połączenie zostaÅ‚o przedwczeÅ›nie zamkniÄ™te" @@ -1799,40 +1826,45 @@ msgstr "" " -c=? Czyta wskazany plik konfiguracyjny.\n" " -o=? Ustawia dowolnÄ… opcjÄ™ konfiguracji, np. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: 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:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "Nie udaÅ‚o siÄ™ pisać do %s" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Nie udaÅ‚o siÄ™ pobrać wersji debconf. Czy debconf jest zainstalowany?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "Lista rozszerzeÅ„ pakietów jest zbyt dÅ‚uga" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "Błąd przetwarzania katalogu %s" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "Lista rozszerzeÅ„ źródeÅ‚ jest zbyt dÅ‚uga" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "Błąd przy zapisywaniu nagłówka do pliku zawartoÅ›ci" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "Błąd podczas przetwarzania zawartoÅ›ci %s" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1915,26 +1947,26 @@ msgstr "" " -c=? Czyta wskazany plik konfiguracyjny\n" " -o=? Ustawia dowolnÄ… opcjÄ™ konfiguracji" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "Nie dopasowano żadnej nazwy" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Brakuje pewnych plików w grupie plików pakietów \"%s\"" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, 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:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "Baza jest przestarzaÅ‚a, próbujÄ™ zaktualizować %s" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -1942,192 +1974,192 @@ msgstr "" "Niepoprawny format bazy. JeÅ›li zaktualizowano ze starszej wersji apt, proszÄ™ " "usunąć i utworzyć ponownie bazÄ™ danych." -#: ftparchive/cachedb.cc:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Nie udaÅ‚o siÄ™ otworzyć pliku bazy %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "Nie udaÅ‚o siÄ™ wykonać operacji stat na %s" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "Archiwum nie posiada rekordu kontrolnego" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "Nie udaÅ‚o siÄ™ pobrać kursora" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: Nie udaÅ‚o siÄ™ odczytać katalogu %s\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: Nie można wykonać operacji stat na %s\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "E: Błędy odnoszÄ… siÄ™ do pliku " -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "Nie udaÅ‚o siÄ™ przetÅ‚umaczyć nazwy %s" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "PrzejÅ›cie po drzewie nie powiodÅ‚o siÄ™" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "Nie udaÅ‚o siÄ™ otworzyć %s" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " Odłączenie %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "Nie udaÅ‚o siÄ™ odczytać dowiÄ…zania %s" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "Nie udaÅ‚o siÄ™ usunąć %s" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Nie udaÅ‚o siÄ™ dowiÄ…zać %s do %s" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " OsiÄ…gniÄ™to ograniczenie odłączania %sB.\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "Archiwum nie posiadaÅ‚o pola pakietu" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %s nie posiada wpisu w pliku override\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " opiekunem %s jest %s, a nie %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr " %s nie posiada wpisu w pliku override źródeÅ‚\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s nie posiada również wpisu w pliku override binariów\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - Nie udaÅ‚o siÄ™ zaalokować pamiÄ™ci" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "Nie można otworzyć %s" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "NieprawidÅ‚owa linia %llu #1 pliku override %s" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "Nie udaÅ‚o siÄ™ czytać pliku override %s" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, c-format msgid "Malformed override %s line %llu #1" msgstr "NieprawidÅ‚owa linia %llu #1 pliku override %s" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, c-format msgid "Malformed override %s line %llu #2" msgstr "NieprawidÅ‚owa linia %llu #2 pliku override %s" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, c-format msgid "Malformed override %s line %llu #3" msgstr "NieprawidÅ‚owa linia %llu #3 pliku override %s" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "Nieznany algorytm kompresji \"%s\"" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "Skompresowany plik wynikowy %s wymaga podania kompresji" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "Nie udaÅ‚o siÄ™ utworzyć obiektu FILE*" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "Nie udaÅ‚o siÄ™ utworzyć procesu potomnego" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "Potomny proces kompresujÄ…cy" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "Błąd wewnÄ™trzny, nie udaÅ‚o siÄ™ utworzyć %s" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "ZawiodÅ‚a operacja IO na pliku/podprocesie" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "Nie udaÅ‚o siÄ™ czytanie w czasie liczenia skrótu MD5" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "Problem przy usuwaniu %s" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "Nie udaÅ‚o siÄ™ zmienić nazwy %s na %s" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -2180,157 +2212,157 @@ msgstr "" " -c=? Czyta wskazany plik konfiguracyjny.\n" " -o=? Ustawia dowolnÄ… opcjÄ™ konfiguracji, np. -o dir::cache=/tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "Nie udaÅ‚o siÄ™ utworzyć potoków" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "Nie udaÅ‚o siÄ™ uruchomić programu gzip " -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "Uszkodzone archiwum" -#: apt-inst/contrib/extracttar.cc:201 +#: 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:306 +#: 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" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "NieprawidÅ‚owy podpis archiwum" -#: apt-inst/contrib/arfile.cc:82 +#: 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:94 +#: apt-inst/contrib/arfile.cc:96 #, c-format msgid "Invalid archive member header %s" msgstr "NieprawidÅ‚owy nagłówek skÅ‚adnika archiwum: %s" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "NieprawidÅ‚owy nagłówek skÅ‚adnika archiwum" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "Archiwum jest za krótkie" -#: apt-inst/contrib/arfile.cc:139 +#: 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/filelist.cc:382 +#: 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:414 +#: 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:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "Nie udaÅ‚o siÄ™ utworzyć ominiÄ™cia" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "Błąd wewnÄ™trzny w AddDiversion" -#: apt-inst/filelist.cc:479 +#: apt-inst/filelist.cc:477 #, c-format msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" msgstr "Próba nadpisania ominiÄ™cia, %s -> %s i %s/%s" -#: apt-inst/filelist.cc:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "Podwójne dodanie ominiÄ™cia %s -> %s" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "Zduplikowany plik konfiguracyjny %s/%s" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format msgid "Failed to write file %s" msgstr "Nie udaÅ‚o siÄ™ zapisać pliku %s" -#: apt-inst/dirstream.cc:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "Nie udaÅ‚o siÄ™ zamknąć pliku %s" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format msgid "The path %s is too long" msgstr "Åšcieżka %s jest zbyt dÅ‚uga" -#: apt-inst/extract.cc:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "Wypakowanie %s wiÄ™cej niż raz" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "OminiÄ™cie katalogu %s" -#: apt-inst/extract.cc:145 +#: 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" -#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 msgid "The diversion path is too long" msgstr "Zbyt dÅ‚uga Å›cieżka ominiÄ™cia" -#: apt-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "Katalog %s zostaÅ‚ zastÄ…piony obiektem nie bÄ™dÄ…cym katalogiem" -#: apt-inst/extract.cc:282 +#: 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:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "Åšcieżka jest zbyt dÅ‚uga" -#: apt-inst/extract.cc:414 +#: 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" -#: apt-inst/extract.cc:431 +#: apt-inst/extract.cc:438 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "Plik %s/%s nadpisuje plik w pakiecie %s" -#: apt-inst/extract.cc:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "Nie można wykonać operacji stat na %s" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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 "To nie jest poprawne archiwum DEB, brakuje skÅ‚adnika \"%s\"" -#: apt-inst/deb/debfile.cc:124 +#: apt-inst/deb/debfile.cc:132 #, 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:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "Plik kontrolny nie może zostać poprawnie zinterpretowany" @@ -2391,210 +2423,205 @@ msgstr "" "zostaÅ‚o wyłączone przez użytkownika." #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lidni %lig %limin %lis" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "%lig %limin %lis" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "%limin %lis" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "%lis" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "Nie odnaleziono wyboru %s" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Nierozpoznany skrót typu: \"%c\"" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "Otwieranie pliku konfiguracyjnego %s" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, 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-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Błąd skÅ‚adniowy %s:%u: Błędny znacznik" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Błąd skÅ‚adniowy %s:%u: Po wartoÅ›ci wystÄ™pujÄ… Å›mieci" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "Błąd skÅ‚adniowy %s:%u: Dyrektywy mogÄ… wystÄ™pować tylko na najwyższym poziomie" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Błąd skÅ‚adniowy %s:%u: Zbyt wiele zagnieżdżonych operacji include" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Błąd skÅ‚adniowy %s:%u: Włączony tutaj" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, 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:884 +#: apt-pkg/contrib/configuration.cc:900 #, c-format msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" "Błąd skÅ‚adniowy %s:%u: czysta dyrektywa wymaga drzewa opcji jako argumentu" -#: apt-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, 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-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... Błąd!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... Gotowe" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s... Gotowe" -#: apt-pkg/contrib/cmndline.cc:116 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format msgid "Command line option '%c' [from %s] is not known." msgstr "Opcja linii poleceÅ„ \"%c\" [z %s] jest nieznana." -#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format msgid "Command line option %s is not boolean" msgstr "Opcja linii poleceÅ„ %s nie jest typu logicznego" -#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "Opcja %s wymaga argumentu." -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "Opcja %s: Specyfikacja elementu konfiguracji musi zawierać =<wartość>." -#: apt-pkg/contrib/cmndline.cc:273 +#: 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-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "Opcja \"%s\" jest zbyt dÅ‚uga" -#: apt-pkg/contrib/cmndline.cc:336 +#: 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-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "NieprawidÅ‚owa operacja %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: 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-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "Nie udaÅ‚o siÄ™ wykonać operacji stat na CDROM-ie" -#: apt-pkg/contrib/fileutl.cc:95 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problem przy zamykaniu pliku gzip %s" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, 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" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "Nie udaÅ‚o siÄ™ otworzyć pliku blokady %s" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "Dla pliku blokady %s montowanego przez NFS nie zostanie użyta blokada" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "Nie udaÅ‚o siÄ™ uzyskać blokady %s" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "" "Lista plików nie może zostać stworzona, ponieważ \"%s\" nie jest katalogiem" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "Ignorowanie \"%s\" w katalogu \"%s\", ponieważ nie jest to zwykÅ‚y plik" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" "Ignorowanie pliku \"%s\" w katalogu \"%s\", ponieważ nie ma on rozszerzenia " "pliku" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" @@ -2602,279 +2629,289 @@ msgstr "" "Ignorowanie pliku \"%s\" w katalogu \"%s\", ponieważ ma on nieprawidÅ‚owe " "rozszerzenie pliku" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Podproces %s spowodowaÅ‚ naruszenie ochrony pamiÄ™ci." -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, c-format msgid "Sub-process %s received signal %u." msgstr "Podproces %s otrzymaÅ‚ sygnaÅ‚ %u." -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 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-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Podproces %s zakoÅ„czyÅ‚ siÄ™ niespodziewanie" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problem przy zamykaniu pliku gzip %s" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "Nie udaÅ‚o siÄ™ otworzyć pliku %s" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, c-format msgid "Could not open file descriptor %d" msgstr "Nie udaÅ‚o siÄ™ otworzyć deskryptora pliku %d" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "Nie udaÅ‚o siÄ™ utworzyć IPC z podprocesem" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "Nie udaÅ‚o siÄ™ uruchomić kompresora " -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, c-format msgid "read, still have %llu to read but none left" msgstr "należaÅ‚o przeczytać jeszcze %llu, ale nic nie zostaÅ‚o" -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, c-format msgid "write, still have %llu to write but couldn't" msgstr "należaÅ‚o zapisać jeszcze %llu, ale nie udaÅ‚o siÄ™ to" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, c-format msgid "Problem closing the file %s" msgstr "Problem przy zamykaniu pliku %s" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, c-format msgid "Problem renaming the file %s to %s" msgstr "Problem przy zapisywaniu pliku %s w %s" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, c-format msgid "Problem unlinking the file %s" msgstr "Problem przy odlinkowywaniu pliku %s" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "Problem przy zapisywaniu pliku na dysk" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "nie udaÅ‚o siÄ™ zmienić nazwy, %s (%s -> %s)" + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, c-format msgid "No keyring installed in %s." msgstr "Brak zainstalowanej bazy kluczy w %s." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "Pusty magazyn podrÄ™czny pakietów" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "Magazyn podrÄ™czny pakietów jest uszkodzony" -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "Magazyn podrÄ™czny pakietów jest w niezgodnej wersji" -#: apt-pkg/pkgcache.cc:162 +#: 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" -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, 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:172 +#: 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:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "Wymaga" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "Wymaga wstÄ™pnie" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "Sugeruje" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "Poleca" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "W konflikcie z" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "ZastÄ™puje" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "Dezaktualizuje" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "Narusza zależnoÅ›ci" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "Rozszerza" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "ważny" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "wymagany" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "standardowy" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "opcjonalny" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "dodatkowy" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "Budowanie drzewa zależnoÅ›ci" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "KandydujÄ…ce wersje" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "Generowanie zależnoÅ›ci" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 msgid "Reading state information" msgstr "Odczyt informacji o stanie" -#: apt-pkg/depcache.cc:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "Nie udaÅ‚o siÄ™ otworzyć pliku stanu %s" -#: apt-pkg/depcache.cc:250 +#: 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-pkg/tagfile.cc:138 +#: 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-pkg/tagfile.cc:235 +#: 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-pkg/sourcelist.cc:118 +#: 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-pkg/sourcelist.cc:161 +#: 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-pkg/sourcelist.cc:164 +#: 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-pkg/sourcelist.cc:175 +#: 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-pkg/sourcelist.cc:181 +#: 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-pkg/sourcelist.cc:184 +#: 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)" -#: apt-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "NieprawidÅ‚owa linia %lu w liÅ›cie źródeÅ‚ %s (URI)" -#: apt-pkg/sourcelist.cc:199 +#: 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)" -#: apt-pkg/sourcelist.cc:202 +#: 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)" -#: apt-pkg/sourcelist.cc:208 +#: apt-pkg/sourcelist.cc:217 #, c-format msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "NieprawidÅ‚owa linia %lu w liÅ›cie źródeÅ‚ %s (bezwzglÄ™dna dystrybucja)" -#: apt-pkg/sourcelist.cc:215 +#: 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)" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "Otwieranie %s" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "Linia %u w liÅ›cie źródeÅ‚ %s jest zbyt dÅ‚uga." -#: apt-pkg/sourcelist.cc:362 +#: 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)" -#: apt-pkg/sourcelist.cc:366 +#: 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" -#: apt-pkg/sourcelist.cc:407 +#: 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-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2884,12 +2921,12 @@ msgstr "" "5 apt.conf\" i zapoznać siÄ™ z wpisem APT::Immediate-Configure aby dowiedzieć " "siÄ™ wiÄ™cej. (%d)" -#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, c-format msgid "Could not configure '%s'. " msgstr "Nie udaÅ‚o siÄ™ skonfigurować \"%s\". " -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2901,12 +2938,12 @@ msgstr "" "rozwiÄ…zanie, ale jeÅ›li jest siÄ™ pewnym swoich dziaÅ‚aÅ„, należy włączyć opcjÄ™ " "APT::Force-LoopBreak." -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "Plik indeksu typu \"%s\" nie jest obsÅ‚ugiwany" -#: apt-pkg/algorithms.cc:266 +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." @@ -2914,7 +2951,7 @@ msgstr "" "Pakiet %s ma zostać ponownie zainstalowany, ale nie można znaleźć jego " "archiwum." -#: apt-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2922,88 +2959,88 @@ msgstr "" "Błąd, pkgProblemResolver::Resolve zwróciÅ‚ błąd, może to być spowodowane " "zatrzymanymi pakietami." -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "Nie udaÅ‚o siÄ™ naprawić problemów, zatrzymano uszkodzone pakiety." -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, c-format msgid "List directory %spartial is missing." msgstr "Brakuje katalogu list %spartial." -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, c-format msgid "Archives directory %spartial is missing." msgstr "Brakuje katalogu archiwów %spartial." -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, c-format msgid "Unable to lock directory %s" msgstr "Nie udaÅ‚o siÄ™ zablokować katalogu %s" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Pobieranie pliku %li z %li (pozostaÅ‚o %s)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "Pobieranie pliku %li z %li" -#: apt-pkg/acquire-worker.cc:113 +#: 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." -#: apt-pkg/acquire-worker.cc:115 +#: 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" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "Metoda %s nie uruchomiÅ‚a siÄ™ poprawnie" -#: apt-pkg/acquire-worker.cc:452 +#: apt-pkg/acquire-worker.cc:455 #, c-format msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "ProszÄ™ wÅ‚ożyć do napÄ™du \"%s\" dysk o nazwie: \"%s\" i nacisnąć enter." -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "System pakietów \"%s\" nie jest obsÅ‚ugiwany" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "Nie udaÅ‚o siÄ™ okreÅ›lić odpowiedniego typu systemu pakietów" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "Nie udaÅ‚o siÄ™ wykonać operacji stat na pliku %s." -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "Należy dopisać jakieÅ› URI pakietów źródÅ‚owych do pliku sources.list" -#: apt-pkg/cachefile.cc:87 +#: 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:91 +#: 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:109 +#: 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/policy.cc:75 +#: apt-pkg/policy.cc:83 #, c-format msgid "" "The value '%s' is invalid for APT::Default-Release as such a release is not " @@ -3012,98 +3049,93 @@ 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:414 +#: 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:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "Nierozpoznany typ przypinania %s" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "Brak (lub zerowy) priorytet przypiÄ™cia" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 msgid "Cache has an incompatible versioning system" msgstr "Magazyn podrÄ™czny ma niezgodny system wersji" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "WystÄ…piÅ‚ błąd podczas przetwarzania %s (%s%d)" -#: apt-pkg/pkgcachegen.cc:251 +#: apt-pkg/pkgcachegen.cc:257 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "Przekroczono liczbÄ™ pakietów, którÄ… ten APT jest w stanie obsÅ‚użyć." -#: apt-pkg/pkgcachegen.cc:254 +#: 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ć." -#: apt-pkg/pkgcachegen.cc:257 +#: 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ć." -#: apt-pkg/pkgcachegen.cc:260 +#: apt-pkg/pkgcachegen.cc:266 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "Przekroczono liczbÄ™ zależnoÅ›ci, którÄ… ten APT jest w stanie obsÅ‚użyć." -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:576 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "Pakiet %s %s nie zostaÅ‚ odnaleziony podczas przetwarzania zależnoÅ›ci plików" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "Nie udaÅ‚o siÄ™ wykonać operacji stat na liÅ›cie pakietów źródÅ‚owych %s" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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" -#: apt-pkg/pkgcachegen.cc:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "Zbieranie zapewnieÅ„ plików" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: 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Å‚" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "nie udaÅ‚o siÄ™ zmienić nazwy, %s (%s -> %s)" - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "Błędna suma kontrolna" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "Błędny rozmiar" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "NieprawidÅ‚owa operacja %s" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, c-format msgid "" "Unable to find expected entry '%s' in Release file (Wrong sources.list entry " @@ -3112,16 +3144,16 @@ msgstr "" "Nie udaÅ‚o siÄ™ znaleźć oczekiwanego wpisu \"%s\" w pliku Release " "(nieprawidÅ‚owy wpis sources.list lub nieprawidÅ‚owy plik)" -#: apt-pkg/acquire-item.cc:1586 +#: apt-pkg/acquire-item.cc:1595 #, c-format msgid "Unable to find hash sum for '%s' in Release file" msgstr "Nie udaÅ‚o siÄ™ znaleźć sumy kontrolnej \"%s\" w pliku Release" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "Dla nastÄ™pujÄ…cych identyfikatorów kluczy brakuje klucza publicznego:\n" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " @@ -3130,12 +3162,12 @@ msgstr "" "Plik Release dla %s wygasnÄ…Å‚ (nieprawidÅ‚owy od %s). Aktualizacje z tego " "repozytorium nie bÄ™dÄ… wykonywane." -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "NieprawidÅ‚owa dystrybucja: %s (oczekiwano %s, a otrzymano %s)" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3145,12 +3177,12 @@ msgstr "" "w dalszym ciÄ…gu bÄ™dÄ… używane poprzednie pliki indeksu. Błąd GPG %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "Błąd GPG: %s: %s" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3159,83 +3191,79 @@ 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)." -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, 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:1980 +#: apt-pkg/acquire-item.cc:1989 #, 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." -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, c-format msgid "Unable to parse Release file %s" msgstr "Nie udaÅ‚o siÄ™ przeanalizować pliku Release %s" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, c-format msgid "No sections in Release file %s" msgstr "Brak sekcji w pliku Release %s" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "Brak wpisu Hash w pliku Release %s" -#: apt-pkg/indexrecords.cc:125 +#: 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-pkg/indexrecords.cc:144 +#: 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-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "Blok producenta %s nie zawiera odcisku" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Użycie %s jako punktu montowania CD-ROM-u\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "Odmontowanie CD-ROM-u\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "Odmontowanie CD-ROM-u...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "Oczekiwanie na pÅ‚ytÄ™...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "Montowanie CD-ROM-u...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " -msgstr "Identyfikacja.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " +msgstr "Identyfikacja... " -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "Etykieta: %s \n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "Odmontowanie CD-ROM-u...\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" -msgstr "Skanowanie pÅ‚yty w poszukiwaniu plików indeksu..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" +msgstr "Skanowanie pÅ‚yty w poszukiwaniu plików indeksu...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3244,7 +3272,7 @@ msgstr "" "Znaleziono %zu indeksów pakietów, %zu indeksów źródÅ‚owych, %zu indeksów " "tÅ‚umaczeÅ„ i %zu podpisów\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" @@ -3252,16 +3280,16 @@ msgstr "" "Nie można odnaleźć żadnych plików pakietów, być może nie jest to dysk " "Debiana lub jest to inna architektura?" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "Znaleziono etykietÄ™ \"%s\"\n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "To nie jest prawidÅ‚owa nazwa, proszÄ™ spróbować ponownie.\n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3270,34 +3298,34 @@ msgstr "" "PÅ‚yta nosi nazwÄ™: \n" "\"%s\"\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "Kopiowanie list pakietów..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "Zapisywanie nowej listy źródeÅ‚\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "ŹródÅ‚a dla tej pÅ‚yty to:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format msgid "Wrote %i records.\n" msgstr "Zapisano %i rekordów.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:777 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Zapisano %i rekordów z %i brakujÄ…cymi plikami.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:780 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Zapisano %i rekordów z %i niepasujÄ…cymi plikami\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "Zapisano %i rekordów z %i brakujÄ…cymi plikami i %i niepasujÄ…cymi\n" @@ -3312,41 +3340,41 @@ msgstr "Nie udaÅ‚o siÄ™ znaleźć wpisu uwierzytelnienia dla: %s" msgid "Hash mismatch for: %s" msgstr "Błędna suma kontrolna dla: %s" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Wydanie \"%s\" dla \"%s\" nie zostaÅ‚o znalezione" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Wersja \"%s\" dla \"%s\" nie zostaÅ‚a znaleziona" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, c-format msgid "Couldn't find task '%s'" msgstr "Nie udaÅ‚o siÄ™ odnaleźć zadania \"%s\"" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, 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:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "" "Nie udaÅ‚o siÄ™ znaleźć żadnego pakietu wedÅ‚ug wyrażenia regularnego \"%s\"" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, 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:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " @@ -3355,59 +3383,59 @@ msgstr "" "Nie udaÅ‚o siÄ™ wybrać zainstalowanej ani kandydujÄ…cej wersji pakietu \"%s\", " "ponieważ nie ma żadnej z nich" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, 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-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, 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" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, 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" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "WysyÅ‚anie scenariusza do mechanizmu rozwiÄ…zywania zależnoÅ›ci" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "WysyÅ‚anie żądania do mechanizmu rozwiÄ…zywania zależnoÅ›ci" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "Przygotowywanie na otrzymanie rozwiÄ…zania" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 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" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "Wykonywanie zewnÄ™trznego mechanizmu rozwiÄ…zywania zależnoÅ›ci" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "Uruchamianie dpkg" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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." @@ -3415,118 +3443,118 @@ msgstr "" "Nie udaÅ‚o siÄ™ pobrać niektórych plików indeksu, zostaÅ‚y one zignorowane lub " "użyto ich starszej wersji." -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "Instalowanie %s" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "Konfigurowanie %s" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "Usuwanie %s" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format msgid "Completely removing %s" msgstr "CaÅ‚kowite usuwanie %s" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "ProszÄ™ odnotować znikniÄ™cie %s" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "Uruchamianie wyzwalacza post-installation %s" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "Brakuje katalogu \"%s\"" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: 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-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "Przygotowywanie %s" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "Rozpakowywanie %s" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "Przygotowywanie do konfiguracji %s" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "Pakiet %s zostaÅ‚ zainstalowany" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "Przygotowywanie do usuniÄ™cia %s" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "Pakiet %s zostaÅ‚ usuniÄ™ty" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "Przygotowywanie do caÅ‚kowitego usuniÄ™cia %s" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "Pakiet %s zostaÅ‚ caÅ‚kowicie usuniÄ™ty" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "Nie udaÅ‚o siÄ™ pisać do %s" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "Operacja zostaÅ‚a przerwana, zanim mogÅ‚a zostać zakoÅ„czona" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 msgid "No apport report written because MaxReports is reached already" msgstr "Brak raportu programu apport, ponieważ osiÄ…gniÄ™to limit MaxReports" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "problemy z zależnoÅ›ciami - pozostawianie nieskonfigurowanego" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3534,7 +3562,7 @@ msgstr "" "Brak raportu programu apport, ponieważ komunikat błędu wskazuje, że " "przyczyna niepowodzenia leży w poprzednim błędzie." -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" @@ -3542,7 +3570,7 @@ msgstr "" "Brak raportu programu apport, ponieważ komunikat błędu wskazuje na " "przepeÅ‚nienie dysku" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3550,7 +3578,7 @@ msgstr "" "Brak raportu programu apport, ponieważ komunikat błędu wskazuje na błąd " "braku wolnej pamiÄ™ci" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 #, fuzzy msgid "" "No apport report written because the error message indicates an issue on the " @@ -3559,14 +3587,14 @@ msgstr "" "Brak raportu programu apport, ponieważ komunikat błędu wskazuje na " "przepeÅ‚nienie dysku" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 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" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " @@ -3576,7 +3604,7 @@ msgstr "" "używa?" # Musi pasować do su i sudo. -#: apt-pkg/deb/debsystem.cc:87 +#: apt-pkg/deb/debsystem.cc:94 #, c-format msgid "Unable to lock the administration directory (%s), are you root?" msgstr "" @@ -3585,14 +3613,14 @@ msgstr "" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: 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." -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "Niezablokowany" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2012-06-29 15:45+0100\n" "Last-Translator: Miguel Figueiredo <elmig@debianpt.org>\n" "Language-Team: Portuguese <traduz@debianpt.org>\n" @@ -18,155 +18,156 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 1.0\n" -#: cmdline/apt-cache.cc:140 +#: 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" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "Total de nomes de pacotes: " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 msgid "Total package structures: " msgstr "Total de estruturas de pacotes: " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " Pacotes normais: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " Pacotes virtuais puros: " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " Pacotes virtuais únicos: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " Pacotes virtuais misturados: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " Faltam: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "Total de versões distintas: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "Total de descrições distintas: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "Total de dependências: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "Total de relações ver/ficheiro: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "Total de relações Desc/Ficheiro: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "Total de Mapeamentos 'Provides': " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "Total de strings globbed: " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "Espaço total de dependência de versão: " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "Espaço total desperdiçado: " -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "Espaço total contabilizado: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format msgid "Package file %s is out of sync." msgstr "O ficheiro do pacote %s está dessincronizado." -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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" -#: cmdline/apt-cache.cc:1245 +#: 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" -#: cmdline/apt-cache.cc:1411 +#: 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'." -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "Não foi possÃvel encontrar o pacote %s" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "Ficheiros de Pacotes :" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 msgid "Cache is out of sync, can't x-ref a package file" msgstr "" "A cache está dessincronizada, não pode x-referenciar um ficheiro de pacote" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "Pacotes Marcados:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(não encontrado)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " Instalado: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " Candidato: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(nenhum)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " Marcação do Pacote: " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " Tabela de Versão:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: 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" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] showpkg pkg1 [pkg2 ...]\n" @@ -237,29 +238,29 @@ msgstr "" "tmp\n" "Para mais informações veja as páginas do manual apt-cache(8) e apt.conf(5).\n" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: 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:104 +#: 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" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, c-format msgid "Failed to mount '%s' to '%s'" msgstr "Falhou ao montar '%s' para '%s'" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Repita este processo para o resto dos CDs no seu conjunto." @@ -296,47 +297,47 @@ msgstr "" " -o=? Definir uma opção arbitrária de configuração, p.e.: -o dir::cache=/" "tmp\n" -#: cmdline/apt-get.cc:244 +#: 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'" -#: cmdline/apt-get.cc:326 +#: 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'" -#: cmdline/apt-get.cc:329 +#: 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'" -#: cmdline/apt-get.cc:366 +#: cmdline/apt-get.cc:367 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "A escolher '%s' como pacote pacote de código fonte em vez de '%s'\n" -#: cmdline/apt-get.cc:422 +#: cmdline/apt-get.cc:423 #, fuzzy, c-format msgid "Can not find version '%s' of package '%s'" msgstr "Ignorar a versão '%s', não disponÃvel, do pacote '%s'" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "ImpossÃvel encontrar o pacote %s" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "%s está definido para ser instalado manualmente.\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: 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:468 cmdline/apt-mark.cc:116 +#: 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." @@ -344,19 +345,19 @@ msgstr "" "Este comando foi depreceado. Em vez disso, por favor utilize 'apt-mark auto' " "e 'apt-mark manual'." -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: 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:573 cmdline/apt-get.cc:610 +#: 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:725 +#: 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" -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, 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" @@ -382,81 +383,81 @@ msgstr "" "bzr branch %s\n" "para obter as últimas actualizações (possivelmente por lançar) ao pacote.\n" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "A saltar o ficheiro '%s', já tinha sido feito download'\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "Não foi possÃvel determinar o espaço livre em %s" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "Você não possui espaço livre suficiente em %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "É necessário obter %sB/%sB de arquivos de código fonte.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "É necessário obter %sB de arquivos de código fonte.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "Obter código fonte %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "Falhou obter alguns arquivos." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "Download completo e em modo de fazer apenas o download" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" "A saltar a descompactação do pacote de código fonte já descompactado em %s\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "O comando de descompactação '%s' falhou.\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Verifique se o pacote 'dpkg-dev' está instalado.\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "O comando de compilação '%s' falhou.\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "O processo filho falhou" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "" "Deve especificar pelo menos um pacote para verificar as dependências de " "compilação" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -465,18 +466,18 @@ msgstr "" "Nenhuma informação de arquitectura disponÃvel para %s. Para configuração " "veja apt.conf(5) APT::Architectures" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" "Não foi possÃvel obter informações de dependências de compilação para %s" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s não tem dependências de compilação.\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -485,7 +486,7 @@ msgstr "" "a dependência de %s por %s não pode ser satisfeita porque %s não é permitido " "em pacotes '%s'" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -494,14 +495,14 @@ msgstr "" "a dependência de %s para %s não pôde ser satisfeita porque o pacote %s não " "pôde ser encontrado" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Falha ao satisfazer a dependência %s para %s: O pacote instalado %s é " "demasiado novo" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -510,7 +511,7 @@ msgstr "" "a dependência de %s para %s não pode ser satisfeita porque a versão " "candidata do pacote %s não pode satisfazer os requisitos de versão" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -519,30 +520,30 @@ msgstr "" "a dependência de %s para %s não pode ser satisfeita porque o pacote %s não " "tem versão candidata" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Falha ao satisfazer a dependência %s para %s: %s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Não foi possÃvel satisfazer as dependências de compilação para %s." -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "Falhou processar as dependências de compilação" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, c-format msgid "Changelog for %s (%s)" msgstr "Changlog para %s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "Módulos Suportados:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -632,53 +633,75 @@ msgstr "" "apt-get(8), sources.list(5) e apt.conf(5)\n" " Este APT tem Poderes de Super Vaca.\n" -#: cmdline/apt-mark.cc:57 +#: 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:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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:63 +#: cmdline/apt-mark.cc:74 #, c-format msgid "%s was already set to manually installed.\n" msgstr "%s já estava definido para ser instalado manualmente.\n" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, c-format msgid "%s was already set to automatically installed.\n" msgstr "%s já estava definido para ser instalado automaticamente.\n" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, c-format msgid "%s was already set on hold.\n" msgstr "%s já estava marcado para manter.\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, c-format msgid "%s was already not hold.\n" msgstr "%s já estava para não manter.\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Esperou por %s mas não estava lá" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format msgid "%s set on hold.\n" msgstr "%s marcado para manter.\n" -#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format msgid "Canceled hold on %s.\n" msgstr "Cancelou manter em %s.\n" -#: cmdline/apt-mark.cc:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "Falhou executar dpkg. É root?" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 #, fuzzy msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" @@ -726,7 +749,7 @@ msgstr "" "tmp\n" "Para mais informações veja as páginas apt-mark(8) e apt.conf(5) do manual." -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -774,52 +797,52 @@ msgstr "ImpossÃvel desmontar o CD-ROM em %s, pode ainda estar a ser utilizado." msgid "Disk not found." msgstr "Disco não encontrado." -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "Ficheiro não encontrado" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 msgid "Failed to stat" msgstr "Falhou o stat" -#: methods/copy.cc:82 methods/gzip.cc:113 methods/rred.cc:606 +#: 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" -#: methods/file.cc:47 +#: 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 //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "A identificar-se no sistema" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "Não foi possÃvel determinar o nome do posto" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "Não foi possÃvel determinar o nome local" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format msgid "The server refused the connection and said: %s" msgstr "O servidor recusou a ligação e respondeu: %s" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "USER falhou, o servidor respondeu: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS falhou, o servidor respondeu: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -827,121 +850,123 @@ msgstr "" "Foi especificado um servidor de proxy mas não um script de login, Acquire::" "ftp::ProxyLogin está vazio." -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "O comando de script de login '%s' falhou, o servidor respondeu: %s" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE falhou, o servidor respondeu: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: 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:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "O servidor fechou a ligação" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "Erro de leitura" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "Uma resposta sobrecarregou o buffer." -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "Corrupção de protocolo" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "Erro de escrita" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: 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:707 +#: 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:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "Falhou" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "Não foi possÃvel ligar socket passivo." -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo não foi capaz de obter um socket de escuta" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "Não foi possÃvel fazer o bind a um socket" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "Não foi possÃvel executar listen no socket" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "Não foi possÃvel determinar o nome do socket" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "Não foi possÃvel enviar o comando PORT" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "FamÃlia de endereços %u desconhecida (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT falhou, o servidor respondeu: %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "Ligação de socket de dados expirou" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "ImpossÃvel aceitar ligação" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "Problema ao calcular o hash do ficheiro" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, 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:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "Expirou o tempo do socket de dados" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "A transferência de dados falhou, o servidor respondeu '%s'" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "Pesquisa" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "Não foi possÃvel invocar " @@ -977,7 +1002,7 @@ msgstr "Não foi possÃvel ligar em %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "A ligar a %s" @@ -1007,40 +1032,40 @@ msgstr "Algo estranho aconteceu ao resolver '%s:%s' (%i - %s)" msgid "Unable to connect to %s:%s:" msgstr "Não foi possÃvel ligar a %s:%s:" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Erro interno: Assinatura válida, mas não foi possÃvel determinar a impressão " "digital da chave?!" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "Pelo menos uma assinatura inválida foi encontrada." -#: methods/gpgv.cc:172 +#: methods/gpgv.cc:174 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "Não foi possÃvel executar 'gpgv' para verificar a assinatura (o gpgv está " "instalado?)" #. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "Erro desconhecido ao executar gpgv" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: 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:229 +#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@ -1048,116 +1073,116 @@ msgstr "" "As seguintes assinaturas não puderam ser verificadas porque a chave pública " "não está disponÃvel:\n" -#: methods/gzip.cc:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "Ficheiros vazios não podem ser arquivos válidos" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "Erro ao escrever para o ficheiro" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "Erro ao ler do servidor. O lado remoto fechou a ligação" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "Erro ao ler do servidor" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "Erro ao escrever para ficheiro" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "A selecção falhou" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "O tempo da ligação expirou" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "Erro ao escrever para o ficheiro de saÃda" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "A aguardar por cabeçalhos" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "Linha de cabeçalho errada" -#: methods/server.cc:139 methods/server.cc:146 +#: 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" -#: methods/server.cc:176 +#: 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" -#: methods/server.cc:199 +#: 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" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "Este servidor HTTP possui suporte de range errado" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "Formato de data desconhecido" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "Dados de cabeçalho errados" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "A ligação falhou" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "Erro interno" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Erro Interno, InstallPackages foi chamado com pacotes estragados!" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "Pacotes precisam de ser removidos mas Remove está desabilitado." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "Erro Interno, Ordering não terminou" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" -"Estranho.. Os tamanhos não coincidiram, escreva para apt@packages.debian.org" +"Estranho... Os tamanhos não coincidiram, escreva para apt@packages.debian.org" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "É necessário obter %sB/%sB de arquivos.\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:171 +#: apt-private/private-install.cc:159 #, c-format msgid "Need to get %sB of archives.\n" msgstr "É necessário obter %sB de arquivos.\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:178 +#: apt-private/private-install.cc:166 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" @@ -1165,31 +1190,31 @@ 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:183 +#: apt-private/private-install.cc:171 #, 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" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "Você não possui espaço livre suficiente em %s." -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "Há problemas e foi utilizado -y sem --force-yes" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Trivial Only especificado mas isto não é uma operação trivial." #. 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Sim, faça como eu digo!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1200,19 +1225,19 @@ msgstr "" "Para continuar escreva a frase '%s'\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "Abortado." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "Deseja continuar?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "Falhou o download de alguns ficheiros" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1220,19 +1245,19 @@ msgstr "" "Não foi possÃvel obter alguns arquivos, tente talvez correr apt-get update " "ou tente com --fix-missing?" -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing e troca de mÃdia não são suportados actualmente" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "Não foi possÃvel corrigir os pacotes em falta." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "A abortar a instalação." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1246,15 +1271,15 @@ msgstr[1] "" "Os seguintes pacotes desapareceram do seu sistema pois\n" "todos os ficheiros foram por outros pacotes:" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Nota: Isto foi feito automaticamente e intencionalmente pelo dpkg." -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Não é suposto nós apagarmos coisas, não pode iniciar o AutoRemover" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1272,15 +1297,15 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 msgid "The following information may help to resolve the situation:" msgstr "A seguinte informação pode ajudar a resolver a situação:" -#: apt-private/private-install.cc:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "Erro Interno, o AutoRemover estragou coisas" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1292,7 +1317,7 @@ msgstr[1] "" "Os seguintes pacotes foram instalados automaticamente e já não são " "necessários:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1301,17 +1326,17 @@ msgstr[0] "O pacote %lu foi instalado automaticamente e já não é necessário. msgstr[1] "" "Os pacotes %lu foram instalados automaticamente e já não são necessários.\n" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Utilize 'apt-get autoremove' para o remover." msgstr[1] "Utilize 'apt-get autoremove' para os remover." -#: apt-private/private-install.cc:624 +#: apt-private/private-install.cc:612 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Você deve querer executar 'apt-get -f install' para corrigir estes:" -#: apt-private/private-install.cc:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1319,7 +1344,7 @@ msgstr "" "Dependências não satisfeitas. Tente 'apt-get -f install' sem nenhum pacote " "(ou especifique uma solução)." -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1331,145 +1356,145 @@ msgstr "" "distribuição unstable em que alguns pacotes pedidos ainda não foram \n" "criados ou foram movidos do Incoming." -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "Pacotes estragados" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "Os seguintes pacotes extra serão instalados:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "Pacotes sugeridos:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "Pacotes recomendados:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "AVISO: Os seguintes pacotes não podem ser autenticados!" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "Aviso de autenticação ultrapassado.\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "Alguns pacotes não puderam ser autenticados" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "Instalar estes pacotes sem verificação?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Falhou obter %s %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [Instalado]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [Instalado]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [Instalado]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [Instalado]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "Os pacotes a seguir têm dependências não satisfeitas:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "mas %s está instalado" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "mas %s está para ser instalado" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "mas não é instalável" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "mas é um pacote virtual" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "mas não está instalado" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "mas não vai ser instalado" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " ou" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "Serão instalados os seguintes NOVOS pacotes:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "Serão REMOVIDOS os seguintes pacotes:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 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:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "Serão actualizados os seguintes pacotes:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "Será feito o DOWNGRADE aos seguintes pacotes:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "Os seguintes pacotes mantidos serão mudados:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (devido a %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1477,27 +1502,27 @@ 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!" -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu pacotes actualizados, %lu pacotes novos instalados, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu reinstalados, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu a que foi feito o downgrade, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu a remover e %lu não actualizados.\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu pacotes não totalmente instalados ou removidos.\n" @@ -1506,7 +1531,7 @@ msgstr "%lu pacotes não totalmente instalados ou removidos.\n" #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "[S/n]" @@ -1514,91 +1539,91 @@ msgstr "[S/n]" #. 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:702 +#: apt-private/private-output.cc:708 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:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "S" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "N" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "Erro de compilação de regex - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "A corrigir dependências..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " falhou." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "Não foi possÃvel corrigir dependências" -#: apt-private/private-cachefile.cc:96 +#: 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-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " Feito" -#: apt-private/private-cachefile.cc:102 +#: 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-private/private-cachefile.cc:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "Dependências não satisfeitas. Tente utilizar -f." -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "O comando update não leva argumentos" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "A calcular a actualização... " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "Erro Interno, AllUpgrade estragou algo" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "Pronto" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1610,43 +1635,43 @@ msgstr "" "\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-sources.cc:45 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format msgid "Failed to parse %s. Edit again? " msgstr "Falha ao baixar %s %s\n" -#: apt-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "Hit " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "Obter:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "Ign " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Err " -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "Obtidos %sB em %s (%sB/s)\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [A trabalhar]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1659,19 +1684,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "Não foi possÃvel ler %s" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "ImpossÃvel mudar para %s" @@ -1700,11 +1725,11 @@ msgstr "Não pode ler ficheiro de mirror '%s'" msgid "[Mirror: %s]" msgstr "[Mirror: %s]" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: 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:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "Ligação encerrada prematuramente" @@ -1773,40 +1798,45 @@ msgstr "" " -o=? Definir uma opção arbitrária de configuração, p.e.: -o dir::cache=/" "tmp\n" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: 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:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "Não conseguiu escrever para %s" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Não pode obter a versão do debconf. O debconf está instalado?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "A lista de extensão de pacotes é demasiado longa" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "Erro ao processar o directório %s" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "Lista de extensão de códigos-fonte é demasiado longa" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "Erro ao escrever o cabeçalho no ficheiro de conteúdo" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "Erro ao processar o conteúdo %s" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1887,26 +1917,26 @@ msgstr "" " -c=? Ler este ficheiro de configuração\n" " -o=? Definir uma opção de configuração arbitrária" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "Nenhuma selecção coincidiu" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format 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:47 +#: ftparchive/cachedb.cc:51 #, 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:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "A base de dados é antiga, a tentar actualizar %s" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -1914,192 +1944,192 @@ 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:81 +#: ftparchive/cachedb.cc:85 #, 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:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "Falha stat %s" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "O arquivo não tem registo de controlo" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "Não foi possÃvel obter um cursor" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, 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:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: Não foi possÃvel fazer stat %s\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "E: Os erros aplicam-se ao ficheiro " -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "Falhou resolver %s" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "Falhou ao percorrer a árvore" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "Falhou abrir %s" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "Falhou o readlink %s" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "Falhou o unlink %s" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Falhou ligar %s a %s" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Limite DeLink de %sB atingido.\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "Arquivo não possuÃa campo package" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %s não possui entrada override\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " o maintainer de %s é %s, não %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr " %s não possui fonte de entrada de 'override'\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s também não possui entrada binária de 'override'\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - Falhou alocar memória" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "Não foi possÃvel abrir %s" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "Override %s malformado linha %llu #1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "Falhou ler o ficheiro override %s" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, c-format msgid "Malformed override %s line %llu #1" msgstr "Override %s malformado linha %llu #1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, c-format msgid "Malformed override %s line %llu #2" msgstr "Override %s malformado linha %llu #2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, c-format msgid "Malformed override %s line %llu #3" msgstr "Override %s malformado linha %llu #3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "Algoritmo de compressão desconhecido '%s'" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "SaÃda compactada %s precisa de um conjunto de compressão" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "Falhou criar FILE*" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "Falhou o fork" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "Compactar filho" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "Erro Interno, falhou criar %s" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "Falhou o IO para subprocesso/arquivo" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "Falhou ler durante o cálculo de MD5" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "Problema ao executar unlinking %s" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "Falhou renomear %s para %s" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -2152,157 +2182,157 @@ msgstr "" " -o=? Definir uma opção arbitrária de configuração, p.e.: -o dir::cache=/" "tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "Falhou a criação de pipes" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "Falhou executar gzip " -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "Arquivo corrompido" -#: apt-inst/contrib/extracttar.cc:201 +#: 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:306 +#: apt-inst/contrib/extracttar.cc:308 #, c-format msgid "Unknown TAR header type %u, member %s" msgstr "Tipo de cabeçalho TAR %u desconhecido, membro %s" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "Assinatura de arquivo inválida" -#: apt-inst/contrib/arfile.cc:82 +#: 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:94 +#: apt-inst/contrib/arfile.cc:96 #, c-format msgid "Invalid archive member header %s" msgstr "Cabeçalho membro de arquivo inválido %s" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "Cabeçalho membro de arquivo inválido" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "Arquivo é demasiado pequeno" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "Falha ao ler os cabeçalhos do arquivo" -#: apt-inst/filelist.cc:382 +#: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" msgstr "DropNode chamado em nó ainda linkado" -#: apt-inst/filelist.cc:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "Falha ao localizar o elemento de hash!" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "Falha ao alocar desvio (diversion)" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "Erro Interno em AddDiversion" -#: apt-inst/filelist.cc:479 +#: 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-inst/filelist.cc:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "Adição dupla de desvio %s -> %s" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "Arquivo de configuração duplicado %s/%s" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format msgid "Failed to write file %s" msgstr "Falhou escrever o ficheiro %s" -#: apt-inst/dirstream.cc:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "Falhou fechar o ficheiro %s" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format msgid "The path %s is too long" msgstr "O caminho %s é demasiado longo" -#: apt-inst/extract.cc:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "A descompactar %s mais de uma vez" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "O directório %s é desviado" -#: apt-inst/extract.cc:145 +#: apt-inst/extract.cc:152 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "O pacote está a tentar escrever no alvo de desvio %s/%s" -#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 +#: 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-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "O directório %s está a ser substituÃdo por um não-directório" -#: apt-inst/extract.cc:282 +#: apt-inst/extract.cc:289 msgid "Failed to locate node in its hash bucket" msgstr "Falhou localizar o nó no seu hash bucket" -#: apt-inst/extract.cc:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "O caminho é demasiado longo" -#: apt-inst/extract.cc:414 +#: 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" -#: apt-inst/extract.cc:431 +#: apt-inst/extract.cc:438 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "O ficheiro %s/%s substitui o que está no pacote %s" -#: apt-inst/extract.cc:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "Não foi possÃvel fazer stat %s" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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, falta o membro '%s'" -#: apt-inst/deb/debfile.cc:124 +#: apt-inst/deb/debfile.cc:132 #, 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:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "Ficheiro de controle não interpretável" @@ -2363,214 +2393,209 @@ msgstr "" "está desabilitado pelo utilizador." #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lid %lih %limin %lis" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "%lih %limin %lis" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "%limin %lis" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "%lis" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "A selecção %s não foi encontrada" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Abreviatura de tipo desconhecida: '%c'" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "A abrir o ficheiro de configuração %s" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Erro de sintaxe %s:%u: O bloco começa sem nome." -#: apt-pkg/contrib/configuration.cc:804 +#: 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-pkg/contrib/configuration.cc:821 +#: 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-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "Erro de sintaxe %s:%u: Directivas só podem ser feitas no nÃvel mais alto" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Erro de sintaxe %s:%u: Demasiados includes encadeados" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Erro de sintaxe %s:%u: IncluÃdo a partir deste ponto" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Erro de sintaxe %s:%u: Directiva '%s' não suportada" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-pkg/contrib/configuration.cc:900 #, c-format msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" "Erro de sintaxe %s:%u: directiva clara necessita de uma árvore de opções " "como argumento" -#: apt-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Erro de sintaxe %s:%u: Lixo extra no final do ficheiro" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... Erro !" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... Pronto" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s... Pronto" -#: apt-pkg/contrib/cmndline.cc:116 +#: 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-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: 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-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "A opção %s necessita de um argumento." -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "Opção %s: Especificação de item de configuração tem de ter um =<val>." -#: apt-pkg/contrib/cmndline.cc:273 +#: 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-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "Opção '%s' é demasiado longa" -#: apt-pkg/contrib/cmndline.cc:336 +#: 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-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "Operação %s inválida" -#: apt-pkg/contrib/cdromutl.cc:56 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format msgid "Unable to stat the mount point %s" msgstr "ImpossÃvel executar stat ao ponto de montagem %s" -#: apt-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "ImpossÃvel executar stat ao cdrom" -#: apt-pkg/contrib/fileutl.cc:95 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problema ao fechar o ficheiro gzip %s" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, 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" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "Não foi possÃvel abrir ficheiro de lock %s" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "" "Não está a ser utilizado o acesso exclusivo para o ficheiro %s, montado via " "nfs" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "Não foi possÃvel obter acesso exclusivo a %s" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, 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-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, 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-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, 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-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" @@ -2578,280 +2603,290 @@ 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:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "O sub-processo %s recebeu uma falha de segmentação." -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, c-format msgid "Sub-process %s received signal %u." msgstr "O sub-processo %s recebeu o sinal %u." -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 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-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "O sub-processo %s terminou inesperadamente" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problema ao fechar o ficheiro gzip %s" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "Não foi possÃvel abrir ficheiro o %s" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, c-format msgid "Could not open file descriptor %d" msgstr "Não foi possÃvel abrir o descritor de ficheiro %d" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "Falhou criar subprocesso IPC" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "Falhou executar compactador " -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, 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-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, c-format msgid "write, still have %llu to write but couldn't" msgstr "escritos, ainda restam %llu para escrever mas não foi possÃvel" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, c-format msgid "Problem closing the file %s" msgstr "Problema ao fechar o ficheiro %s" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, c-format msgid "Problem renaming the file %s to %s" msgstr "Problema ao renomear o ficheiro %s para %s" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, c-format msgid "Problem unlinking the file %s" msgstr "Problema ao remover o link do ficheiro %s" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "Problema sincronizando o ficheiro" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "falhou renomear, %s (%s -> %s)." + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, c-format msgid "No keyring installed in %s." msgstr "Nenhum keyring instalado em %s." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "Cache de pacotes vazia" -#: apt-pkg/pkgcache.cc:154 +#: 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:159 +#: 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:162 +#: 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:167 +#: 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'" -#: apt-pkg/pkgcache.cc:172 +#: 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:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "Depende" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "Pré-Depende" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "Sugere" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "Recomenda" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "Em Conflito" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "Substitui" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "Obsoleta" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "Estraga" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "Aumenta" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "importante" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "necessário" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "padrão" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "opcional" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "extra" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: 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:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "Versões candidatas" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "Geração de dependências" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: 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:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "Falhou abrir o StateFile %s" -#: apt-pkg/depcache.cc:250 +#: apt-pkg/depcache.cc:256 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Falha escrever ficheiro temporário StateFile %s" -#: apt-pkg/tagfile.cc:138 +#: 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-pkg/tagfile.cc:235 +#: 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-pkg/sourcelist.cc:118 +#: 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-pkg/sourcelist.cc:161 +#: 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-pkg/sourcelist.cc:164 +#: 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-pkg/sourcelist.cc:175 +#: 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-pkg/sourcelist.cc:181 +#: 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-pkg/sourcelist.cc:184 +#: apt-pkg/sourcelist.cc:193 #, c-format 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)" -#: apt-pkg/sourcelist.cc:197 +#: 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)" -#: apt-pkg/sourcelist.cc:199 +#: 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)" -#: apt-pkg/sourcelist.cc:202 +#: 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)" -#: apt-pkg/sourcelist.cc:208 +#: 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)" -#: apt-pkg/sourcelist.cc:215 +#: apt-pkg/sourcelist.cc:224 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" msgstr "Linha mal formada %lu na lista de fontes %s (dist parse)" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "A abrir %s" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "Linha %u é demasiado longa na lista de fontes %s." -#: apt-pkg/sourcelist.cc:362 +#: 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)" -#: apt-pkg/sourcelist.cc:366 +#: 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" -#: apt-pkg/sourcelist.cc:407 +#: 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-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2860,12 +2895,12 @@ msgstr "" "Não foi possÃvel proceder à configuração imediata em '%s'. Para detalhes, " "por favor veja man 5 apt.conf em APT::Immediate-Configure. (%d)" -#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, c-format msgid "Could not configure '%s'. " msgstr "Não pode configurar '%s'. " -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2877,12 +2912,12 @@ msgstr "" "normalmente é mau, mas se você quer realmente fazer isso, active a opção " "APT::Force-LoopBreak." -#: apt-pkg/pkgrecords.cc:34 +#: 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" -#: apt-pkg/algorithms.cc:266 +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." @@ -2890,7 +2925,7 @@ msgstr "" "O pacote %s necessita ser reinstalado, mas não foi possÃvel encontrar um " "repositório para o mesmo." -#: apt-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2898,94 +2933,94 @@ msgstr "" "Erro, pkgProblemResolver::Resolve gerou falhas, isto pode ser causado por " "pacotes mantidos (hold)." -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 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/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, c-format msgid "List directory %spartial is missing." msgstr "Falta directório de listas %spartial." -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, c-format msgid "Archives directory %spartial is missing." msgstr "Falta o directório de arquivos %spartial." -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, c-format msgid "Unable to lock directory %s" msgstr "ImpossÃvel criar acesso exclusivo ao directório %s" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "A obter o ficheiro %li de %li (%s restantes)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "A obter o ficheiro %li de %li" -#: apt-pkg/acquire-worker.cc:113 +#: 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." -#: apt-pkg/acquire-worker.cc:115 +#: 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" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "Método %s não iniciou correctamente" -#: apt-pkg/acquire-worker.cc:452 +#: apt-pkg/acquire-worker.cc:455 #, c-format msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "" "Por favor insira o disco denominado: '%s' no leitor '%s' e pressione enter." -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Sistema de empacotamento '%s' não é suportado" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "" "Não foi possÃvel determinar um tipo de sistema de empacotamento adequado" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "Não foi possÃvel fazer stat %s." -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "Você deve colocar alguns URIs 'source' no seu sources.list" -#: apt-pkg/cachefile.cc:87 +#: 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." -#: apt-pkg/cachefile.cc:91 +#: 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:109 +#: 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/policy.cc:75 +#: apt-pkg/policy.cc:83 #, c-format msgid "" "The value '%s' is invalid for APT::Default-Release as such a release is not " @@ -2994,103 +3029,98 @@ 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:414 +#: 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:436 +#: 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:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "Nenhuma prioridade (ou zero) especificada para marcação (pin)" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 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:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Ocorreu um erro ao processar %s (%s%d)" -#: apt-pkg/pkgcachegen.cc:251 +#: apt-pkg/pkgcachegen.cc:257 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "Uau, você excedeu o número de nomes de pacotes que este APT é capaz de " "suportar." -#: apt-pkg/pkgcachegen.cc:254 +#: 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." -#: apt-pkg/pkgcachegen.cc:257 +#: 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." -#: apt-pkg/pkgcachegen.cc:260 +#: 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." -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:576 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "O pacote %s %s não foi encontrado ao processar as dependências de ficheiros" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "Não foi possÃvel executar stat à lista de pacotes de código fonte %s" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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" -#: apt-pkg/pkgcachegen.cc:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "A obter File Provides" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: 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" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "falhou renomear, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "Código de verificação hash não coincide" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "Tamanho incorrecto" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "Operação %s inválida" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, c-format msgid "" "Unable to find expected entry '%s' in Release file (Wrong sources.list entry " @@ -3099,18 +3129,18 @@ msgstr "" "Incapaz de encontrar a entrada '%s' esperada no ficheiro Release (entrada " "errada em sources.list ou ficheiro malformado)" -#: apt-pkg/acquire-item.cc:1586 +#: apt-pkg/acquire-item.cc:1595 #, 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" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "" "Não existe qualquer chave pública disponÃvel para as seguintes IDs de " "chave:\n" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " @@ -3119,12 +3149,12 @@ msgstr "" "O ficheiro Release para %s está expirado (inválido desde %s). Não serão " "aplicadas as actualizações para este repositório." -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Distribuição em conflito: %s (esperado %s mas obtido %s)" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3135,12 +3165,12 @@ msgstr "" "GPG: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "Erro GPG: %s: %s" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3150,12 +3180,12 @@ msgstr "" "significar que você precisa corrigir manualmente este pacote. (devido a " "arquitectura em falta)" -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, 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:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -3163,71 +3193,67 @@ msgstr "" "Os arquivos de Ãndice de pacotes estão corrompidos. Nenhum campo Filename: " "para o pacote %s." -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, c-format msgid "Unable to parse Release file %s" msgstr "Não foi possÃvel fazer parse ao ficheiro Release %s" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, c-format msgid "No sections in Release file %s" msgstr "Nenhuma secção, no ficheiro Release %s" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "Nenhuma entrada hash no ficheiro Release %s" -#: apt-pkg/indexrecords.cc:125 +#: 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-pkg/indexrecords.cc:144 +#: 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-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "O bloco de fabricante %s não contém a impressão digital" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "A utilizar o ponto de montagem do CD-ROM %s\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "A desmontar o CD-ROM\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "A desmontar o CD-ROM...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "A aguardar pelo disco...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "A montar o CD-ROM...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " -msgstr "A identificar.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " +msgstr "A identificar... " -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "Label Guardada: %s \n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "A desmontar o CD-ROM...\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" -msgstr "A pesquisar os ficheiros de Ãndice do disco..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" +msgstr "A pesquisar os ficheiros de Ãndice do disco...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3236,7 +3262,7 @@ msgstr "" "Foram encontrados %zu Ãndices de pacotes, %zu Ãndices de código-fonte, %zu " "Ãndices de tradução e %zu assinaturas\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" @@ -3244,16 +3270,16 @@ msgstr "" "Não foi possÃvel localizar quaisquer ficheiros de pacote, talvez este não " "seja um disco Debian ou seja a arquitectura errada?" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "Encontrada a etiqueta '%s'\n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "Isso não é um nome válido, tente novamente.\n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3262,34 +3288,34 @@ msgstr "" "Este disco tem o nome: \n" "'%s'\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "A copiar listas de pacotes..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "A escrever lista de novas source\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "As entradas de listas de Source para este Disco são:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format msgid "Wrote %i records.\n" msgstr "Escreveu %i registos.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:777 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Escreveu %i registos com %i ficheiros em falta.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:780 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Escreveu %i registos com %i ficheiros não coincidentes\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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 "" @@ -3306,38 +3332,38 @@ msgstr "Não foi possÃvel encontrar registo de autenticação para: %s" msgid "Hash mismatch for: %s" msgstr "Hash não coincide para: %s" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Não foi encontrado o Release '%s' para '%s'" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Não foi encontrada a versão '%s' para '%s'" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, c-format msgid "Couldn't find task '%s'" msgstr "Não foi possÃvel encontrar a tarefa '%s'" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, 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-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "Não foi possÃvel encontrar o pacote através da expressão regular '%s'" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, c-format msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" "Não foi possÃvel seleccionar versões do pacote '%s' pois é puramente virtual" -#: apt-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " @@ -3346,57 +3372,57 @@ 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:637 +#: apt-pkg/cacheset.cc:645 #, 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-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" "Não é possÃvel seleccionar a versão candidata do pacote %s já que não tem " "candidato" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, c-format 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" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "Enviar cenário a resolver" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "Enviar pedido para resolvedor" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "Preparar para receber solução" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "O resolvedor externo falhou sem uma mensagem de erro adequada" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "Executar resolvedor externo" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "A correr o dpkg" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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." @@ -3404,118 +3430,118 @@ msgstr "" "Falhou o download de alguns ficheiros de Ãndice. Foram ignorados ou os " "antigos foram usados em seu lugar." -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "A instalar %s" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "A configurar %s" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "A remover %s" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format msgid "Completely removing %s" msgstr "A remover completamente %s" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "A notar o desaparecimento de %s" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "A correr o 'trigger' de pós-instalação %s" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "Falta o directório '%s'" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format msgid "Could not open file '%s'" msgstr "Não foi possÃvel abrir ficheiro o '%s'" -#: apt-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "A preparar %s" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "A desempacotar %s" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "A preparar para configurar %s" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "%s instalado" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "A preparar a remoção de %s" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "%s removido" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "A preparar para remover completamente %s" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "Remoção completa de %s" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "Não conseguiu escrever para %s" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "A operação foi interrompida antes de poder terminar" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 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:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "problemas de dependências - deixando por configurar" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3523,7 +3549,7 @@ msgstr "" "Nenhum relatório apport escrito pois a mensagem de erro indica que é um erro " "de seguimento de um erro anterior." -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" @@ -3531,7 +3557,7 @@ msgstr "" "Nenhum relatório apport escrito pois a mensagem de erro indica erro de disco " "cheio" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3539,7 +3565,7 @@ msgstr "" "Nenhum relatório apport escrito pois a mensagem de erro indica um erro de " "memória esgotada" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 #, fuzzy msgid "" "No apport report written because the error message indicates an issue on the " @@ -3548,14 +3574,14 @@ msgstr "" "Nenhum relatório apport escrito pois a mensagem de erro indica erro de disco " "cheio" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 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" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " @@ -3564,7 +3590,7 @@ msgstr "" "Não foi possÃvel obter acesso exclusivo ao directório de administração (%s), " "outro processo está a utilizá-lo?" -#: apt-pkg/deb/debsystem.cc:87 +#: apt-pkg/deb/debsystem.cc:94 #, c-format msgid "Unable to lock the administration directory (%s), are you root?" msgstr "" @@ -3573,7 +3599,7 @@ msgstr "" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " @@ -3581,7 +3607,7 @@ msgstr "" "O dpkg foi interrompido, para corrigir o problema tem de correr manualmente " "'%s'" -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "Sem acesso exclusivo" diff --git a/po/pt_BR.po b/po/pt_BR.po index 746f78de6..b52558a89 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2008-11-17 02:33-0200\n" "Last-Translator: Felipe Augusto van de Wiel (faw) <faw@debian.org>\n" "Language-Team: Brazilian Portuguese <debian-l10n-portuguese@lists.debian." @@ -17,156 +17,157 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: cmdline/apt-cache.cc:140 +#: cmdline/apt-cache.cc:149 #, c-format msgid "Package %s version %s has an unmet dep:\n" msgstr "O pacote %s versão %s tem uma dependência desencontrada:\n" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "Total de Nomes de Pacotes: " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 #, fuzzy msgid "Total package structures: " msgstr "Total de Nomes de Pacotes: " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " Pacotes normais: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " Pacotes puramente virtuais: " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " Pacotes virtuais únicos: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " Pacotes virtuais misturados: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " Faltando: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "Total de versões distintas: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "Total de descrições distintas: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "Total de dependências: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "Total de relações ver/arquivo: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "Total de relações Desc/Arquivo: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "Total de mapeamentos \"Provides\": " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "Total de strings \"globbed\": " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "Total de espaço de dependência de versão: " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "Total de espaço frouxo: " -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "Total de espaço contabilizado para: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: 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." -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 #, fuzzy msgid "You must give at least one search pattern" msgstr "Você deve passar exatamente um padrão" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "ImpossÃvel encontrar o pacote %s" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "Arquivos de pacote:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 msgid "Cache is out of sync, can't x-ref a package file" msgstr "" "O cache está fora de sincronia, não foi possÃvel fazer a referência cruzada " "de um arquivo de pacote" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "Pacotes alfinetados (\"pinned\"):" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(não encontrado)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " Instalado: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " Candidato: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(nenhum)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " Pacote alfinetado (\"pin\"): " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " Tabela de versão:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: 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" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -241,30 +242,30 @@ msgstr "" "tmp\n" "Veja as páginas de manual apt-cache(8) e apt.conf(5) para mais informações.\n" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: 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'" -#: cmdline/apt-cdrom.cc:104 +#: 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:141 +#: cmdline/apt-cdrom.cc:139 #, fuzzy, c-format msgid "Failed to mount '%s' to '%s'" msgstr "Falhou ao renomear %s para %s" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Repita este processo para o restante dos CDs em seu conjunto." @@ -302,65 +303,65 @@ msgstr "" " -o=? Define uma opção de configuração arbitrária, e.g.: -o dir::cache=/" "tmp\n" -#: cmdline/apt-get.cc:244 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format msgid "Can not find a package for architecture '%s'" msgstr "ImpossÃvel achar pacote %s" -#: cmdline/apt-get.cc:326 +#: cmdline/apt-get.cc:327 #, fuzzy, c-format msgid "Can not find a package '%s' with version '%s'" msgstr "ImpossÃvel achar pacote %s" -#: cmdline/apt-get.cc:329 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format msgid "Can not find a package '%s' with release '%s'" msgstr "ImpossÃvel achar pacote %s" -#: cmdline/apt-get.cc:366 +#: 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" -#: cmdline/apt-get.cc:422 +#: cmdline/apt-get.cc:423 #, c-format msgid "Can not find version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "ImpossÃvel achar pacote %s" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "%s configurado para instalar manualmente.\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: 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:468 cmdline/apt-mark.cc:116 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: 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:573 cmdline/apt-get.cc:610 +#: 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:725 +#: 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:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "ImpossÃvel encontrar um pacote fonte para %s" @@ -380,97 +381,97 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Pulando arquivo já baixado '%s'\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "Não foi possÃvel determinar o espaço livre em %s" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "Você não possui espaço livre suficiente em %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, 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:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Preciso obter %sB de arquivos fonte.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "Obter fonte %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "Falhou ao buscar alguns arquivos." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "Baixar completo e no modo somente baixar (\"download only\")" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Pulando o desempacotamento de fontes já desempacotados em %s\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Comando de desempacotamento '%s' falhou.\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Confira se o pacote 'dpkg-dev' está instalado.\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "Comando de construção '%s' falhou.\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "Processo filho falhou" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 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" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, 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" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s não tem dependências de construção.\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -479,7 +480,7 @@ 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:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -488,14 +489,14 @@ 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:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Falhou ao satisfazer a dependência de %s por %s: Pacote instalado %s é muito " "novo" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -504,7 +505,7 @@ msgstr "" "a dependência de %s por %s não pode ser satisfeita porque nenhuma versão " "disponÃvel do pacote %s pode satisfazer os requerimentos de versão" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -513,30 +514,30 @@ 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:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Falhou ao satisfazer a dependência de %s por %s: %s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Não foi possÃvel satisfazer as dependências de compilação para %s." -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "Falhou ao processar as dependências de construção" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "Conectando em %s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "Módulos para os quais há suporte:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -624,53 +625,75 @@ msgstr "" "para mais informações e opções.\n" " Este APT tem Poderes de Super Vaca.\n" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Deve-se especificar pelo menos um pacote para que se busque o fonte" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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 "mas não está instalado" -#: cmdline/apt-mark.cc:63 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format msgid "%s was already set to manually installed.\n" msgstr "%s configurado para instalar manualmente.\n" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, fuzzy, c-format msgid "%s was already set to automatically installed.\n" msgstr "%s configurado para instalar manualmente.\n" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format msgid "%s was already set on hold.\n" msgstr "%s já é a versão mais nova.\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, fuzzy, c-format msgid "%s was already not hold.\n" msgstr "%s já é a versão mais nova.\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Esperado %s mas este não estava lá" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, fuzzy, c-format msgid "%s set on hold.\n" msgstr "%s configurado para instalar manualmente.\n" -#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, fuzzy, c-format msgid "Canceled hold on %s.\n" msgstr "Falhou ao abrir %s" -#: cmdline/apt-mark.cc:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" "\n" @@ -697,7 +720,7 @@ msgid "" "See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -745,52 +768,52 @@ msgstr "ImpossÃvel desmontar o CD-ROM em %s, o mesmo ainda pode estar em uso." msgid "Disk not found." msgstr "Disco não encontrado." -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "Arquivo não encontrado" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: 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:82 methods/gzip.cc:113 methods/rred.cc:606 +#: 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:47 +#: 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:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "Efetuando login" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "ImpossÃvel determinar o nome do ponto" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "ImpossÃvel determinar o nome local" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format msgid "The server refused the connection and said: %s" msgstr "O servidor recusou a conexão e disse: %s" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "USER falhou, servidor disse: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS falhou, servidor disse: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -798,121 +821,123 @@ msgstr "" "Um servidor proxy foi especificado mas não um script de login, Acquire::ftp::" "ProxyLogin está vazio." -#: methods/ftp.cc:275 +#: 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" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE falhou, servidor disse: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 msgid "Connection timeout" msgstr "Conexão expirou" -#: methods/ftp.cc:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "Servidor fechou a conexão" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "Erro de leitura" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "Uma resposta sobrecarregou o buffer" -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "Corrupção de protocolo" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "Erro de escrita" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: 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:707 +#: 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" -#: methods/ftp.cc:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "Falhou" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "Não foi possÃvel conectar um socket passivo." -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo não foi capaz de obter um socket de escuta" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "Não foi possÃvel fazer \"bind\" de um socket" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "Não foi possÃvel ouvir no socket" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "Não foi possÃvel determinar o nome do socket" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "ImpossÃvel enviar o comando PORT" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "FamÃlia de endereços %u desconhecida (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT falhou, servidor disse: %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "Conexão do socket de dados expirou" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "ImpossÃvel aceitar conexão" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "Problema criando o hash do arquivo" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "ImpossÃvel obter arquivo, servidor disse '%s'" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "Socket de dados expirou" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, 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:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "Pesquisa" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "ImpossÃvel invocar " @@ -948,7 +973,7 @@ msgstr "Não foi possÃvel conectar em %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "Conectando a %s" @@ -978,18 +1003,18 @@ msgstr "Algo estranho aconteceu resolvendo '%s:%s' (%i)" msgid "Unable to connect to %s:%s:" msgstr "ImpossÃvel conectar em %s %s:" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Erro interno: Assinatura boa, mas não foi possÃvel determinar a impressão " "digital da chave?!" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "Ao menos uma assinatura inválida foi encontrada." -#: methods/gpgv.cc:172 +#: methods/gpgv.cc:174 #, fuzzy msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" @@ -997,22 +1022,22 @@ msgstr "" "instalado?)" #. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "Erro desconhecido executando gpgv" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: 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:229 +#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@ -1020,117 +1045,117 @@ msgstr "" "As assinaturas a seguir não puderam ser verificadas devido à chave pública " "não estar disponÃvel:\n" -#: methods/gzip.cc:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "Erro escrevendo para o arquivo" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "Erro lendo do servidor. Ponto remoto fechou a conexão" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "Erro lendo do servidor" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "Erro escrevendo para arquivo" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "Seleção falhou" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "Conexão expirou" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "Erro escrevendo para arquivo de saÃda" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "Aguardando por cabeçalhos" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "Linha de cabeçalho ruim" -#: methods/server.cc:139 methods/server.cc:146 +#: 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" -#: methods/server.cc:176 +#: 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" -#: methods/server.cc:199 +#: 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" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "Este servidor HTTP possui suporte a \"range\" quebrado" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "Formato de data desconhecido" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "Dados de cabeçalho ruins" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "Conexão falhou" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "Erro interno" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Erro interno, InstallPackages foi chamado com pacotes quebrados!" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "Pacotes precisam ser removidos mas a remoção está desabilitada." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "Erro interno, Ordenação não finalizou" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +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." +"Que estranho... Os tamanhos não batem, mande e-mail para apt@packages.debian." "org" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "É preciso baixar %sB/%sB de arquivos.\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:171 +#: apt-private/private-install.cc:159 #, c-format msgid "Need to get %sB of archives.\n" msgstr "É preciso baixar %sB de arquivos.\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:178 +#: apt-private/private-install.cc:166 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" @@ -1138,31 +1163,31 @@ 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:183 +#: apt-private/private-install.cc:171 #, 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" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "Você não possui espaço suficiente em %s." -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "Há problemas e -y foi usado sem --force-yes" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 msgid "Trivial Only specified but this is not a trivial operation." msgstr "\"Trivial Only\" especificado mas esta não é uma operação trivial." #. 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Sim, faça o que eu digo!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1173,19 +1198,19 @@ msgstr "" "Para continuar digite a frase '%s'\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "Abortar." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "Você quer continuar?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "Alguns arquivos falharam ao baixar" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1193,19 +1218,19 @@ msgstr "" "ImpossÃvel buscar alguns arquivos, talvez executar apt-get update ou tentar " "com --fix-missing?" -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing e troca de mÃdia não são suportados atualmente" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "ImpossÃvel corrigir pacotes faltantes." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "Abortando instalação." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1215,15 +1240,15 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Nós não deverÃamos apagar coisas, impossÃvel iniciar AutoRemover" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1241,15 +1266,15 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 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:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "Erro Interno, o AutoRemover quebrou coisas" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1263,7 +1288,7 @@ msgstr[1] "" "Os seguintes pacotes foram automaticamente instalados e não são mais " "requeridos:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1275,18 +1300,18 @@ msgstr[1] "" "Os seguintes pacotes foram automaticamente instalados e não são mais " "requeridos:" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 #, fuzzy msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Use 'apt-get autoremove' para removê-los." msgstr[1] "Use 'apt-get autoremove' para removê-los." -#: apt-private/private-install.cc:624 +#: apt-private/private-install.cc:612 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Você deve querer executar 'apt-get -f install' para corrigÃ-los:" -#: apt-private/private-install.cc:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1294,7 +1319,7 @@ msgstr "" "Dependências desencontradas. Tente 'apt-get -f install' sem nenhum pacote " "(ou especifique uma solução)." -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1306,145 +1331,145 @@ msgstr "" "distribuição instável, que alguns pacotes requeridos não foram\n" "criados ainda ou foram retirados da \"Incoming\"." -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "Pacotes quebrados" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "Os pacotes extra a seguir serão instalados:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "Pacotes sugeridos:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "Pacotes recomendados:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "AVISO: Os pacotes a seguir não podem ser autenticados!" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "Aviso de autenticação sobreposto.\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "Alguns pacotes não puderam ser autenticados" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "Instalar estes pacotes sem verificação?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Falhou ao buscar %s %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [Instalado]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [Instalado]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [Instalado]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [Instalado]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "Os pacotes a seguir têm dependências desencontradas:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "mas %s está instalado" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "mas %s está para ser instalado" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "mas não é instalável" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "mas é um pacote virtual" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "mas não está instalado" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "mas não será instalado" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " ou" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "Os NOVOS pacotes a seguir serão instalados:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "Os pacotes a seguir serão REMOVIDOS:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "Os pacotes a seguir serão mantidos em suas versões atuais:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "Os pacotes a seguir serão atualizados:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "Os pacotes a seguir serão REVERTIDOS:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "Os seguintes pacotes mantidos serão mudados:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (por causa de %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1453,27 +1478,27 @@ msgstr "" "Isso NÃO deveria ser feito a menos que você saiba exatamente o que você está " "fazendo!" -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu pacotes atualizados, %lu pacotes novos instalados, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu reinstalados, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu revertidos, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu a serem removidos e %lu não atualizados.\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu pacotes não totalmente instalados ou removidos.\n" @@ -1482,7 +1507,7 @@ msgstr "%lu pacotes não totalmente instalados ou removidos.\n" #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "[S/n]" @@ -1490,91 +1515,91 @@ msgstr "[S/n]" #. 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:702 +#: apt-private/private-output.cc:708 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:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "S" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "Erro de compilação de regex - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "Corrigindo dependências..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " falhou." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "ImpossÃvel corrigir dependências" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "ImpossÃvel minimizar o conjunto de atualizações" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " Pronto" -#: apt-private/private-cachefile.cc:102 +#: 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-private/private-cachefile.cc:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "Dependências desencontradas. Tente usar -f." -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "O comando update não leva argumentos" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "Calculando atualização... " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "Erro interno, AllUpgrade quebrou coisas" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "Pronto" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1582,43 +1607,43 @@ msgid "" " so don't depend on the relevance to the real current situation!" msgstr "" -#: apt-private/private-sources.cc:45 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format msgid "Failed to parse %s. Edit again? " msgstr "Falha ao baixar %s %s\n" -#: apt-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "Atingido " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "Obter:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "Ign " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Err " -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "Baixados %sB em %s (%sB/s)\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [Trabalhando]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1631,19 +1656,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "ImpossÃvel ler %s" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "ImpossÃvel mudar para %s" @@ -1672,11 +1697,11 @@ msgstr "Não foi possÃvel abrir arquivo %s" msgid "[Mirror: %s]" msgstr "" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: 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:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "Conexão encerrada prematuramente" @@ -1747,40 +1772,45 @@ msgstr "" " -o=? Define uma opção de configuração arbitrária, e.g.: -o dir::cache=/" "tmp\n" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "ImpossÃvel executar \"stat\" em %s" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "ImpossÃvel escrever para %s" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Não foi possÃvel obter a versão do debconf. O debconf está instalado?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "Lista de extensão de pacotes é muito extensa" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "Erro processando o diretório %s" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "Lista de extensão de fontes é muito extensa" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "Erro ao gravar cabeçalho no arquivo de conteúdo" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "Erro processando conteúdo %s" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1862,26 +1892,26 @@ msgstr "" " -c=? Lê o arquivo de configuração especificado.\n" " -o=? Define uma opção de configuração arbitrária" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "Nenhuma seleção combinou" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format 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:47 +#: ftparchive/cachedb.cc:51 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "BD estava corrompido, arquivo renomeado para %s.old" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "BD é antigo, tentando atualizar %s" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 #, fuzzy msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " @@ -1890,192 +1920,192 @@ 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:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "ImpossÃvel abrir o arquivo BD %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "Falhou ao executar \"stat\" %s" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "Repositório não possui registro de controle" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "ImpossÃvel obter um cursor" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: ImpossÃvel ler o diretório %s\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: ImpossÃvel executar \"stat\" em %s\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "E: Erros que se aplicam ao arquivo " -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "Falhou ao resolver %s" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "Falhou ao percorrer a árvore" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "Falhou ao abrir %s" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "Falhou ao executar \"readlink\" %s" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "Falhou ao executar \"unlink\" %s" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Falhou ao ligar %s a %s" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Limite DeLink de %sB atingido.\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "Repositório não possuÃa campo pacote" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %s não possui entrada override\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " mantenedor de %s é %s, não %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr " %s não possui entrada override fonte\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s também não possui entrada override binária\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - Falha ao alocar memória" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "ImpossÃvel abrir %s" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "Override malformado %s linha %lu #1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "Falha ao ler o arquivo override %s" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, fuzzy, c-format msgid "Malformed override %s line %llu #1" msgstr "Override malformado %s linha %lu #1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, fuzzy, c-format msgid "Malformed override %s line %llu #2" msgstr "Override malformado %s linha %lu #2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, fuzzy, c-format msgid "Malformed override %s line %llu #3" msgstr "Override malformado %s linha %lu #3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "Algoritmo de compactação desconhecido '%s'" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "SaÃda compactada %s precisa de um conjunto de compactação" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "Falhou ao criar FILE*" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "Falhou ao executar \"fork\"" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "Compactar filho" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "Erro interno, falhou ao criar %s" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "E/S para sub-processo/arquivo falhou" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "Falhou ao ler durante o cálculo MD5" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "Problema removendo %s" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "Falhou ao renomear %s para %s" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -2130,157 +2160,157 @@ msgstr "" " -o=? Define uma opção de configuração arbitrária, e.g.: -o dir::cache=/" "tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "Falhou ao criar \"pipes\"" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "Falhou ao executar gzip " -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "Arquivo corrompido" -#: apt-inst/contrib/extracttar.cc:201 +#: 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:306 +#: apt-inst/contrib/extracttar.cc:308 #, c-format msgid "Unknown TAR header type %u, member %s" msgstr "Tipo de cabeçalho TAR %u desconhecido, membro %s" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "Assinatura de arquivo inválida" -#: apt-inst/contrib/arfile.cc:82 +#: 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:94 +#: 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:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "Cabeçalho membro de arquivo inválido" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "Arquivo é muito pequeno" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "Falhou ao ler os cabeçalhos do arquivo" -#: apt-inst/filelist.cc:382 +#: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" msgstr "\"DropNode\" chamado em nó ainda ligado (\"linked\")" -#: apt-inst/filelist.cc:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "Falhou ao localizar o elemento hash!" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "Falhou ao alocar desvio (\"diversion\")" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "Erro interno em \"AddDiversion\"" -#: apt-inst/filelist.cc:479 +#: apt-inst/filelist.cc:477 #, c-format msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" msgstr "Tentando sobrescrever um desvio, %s -> %s e %s/%s" -#: apt-inst/filelist.cc:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "Adição dupla de desvio %s -> %s" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "Arquivo de configuração duplicado %s/%s" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format msgid "Failed to write file %s" msgstr "Falhou ao escrever arquivo %s" -#: apt-inst/dirstream.cc:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "Falhou ao fechar arquivo %s" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format msgid "The path %s is too long" msgstr "O caminho %s é muito longo" -#: apt-inst/extract.cc:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "Desempacotando %s mais de uma vez" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "O diretório %s é desviado (\"diverted\")" -#: apt-inst/extract.cc:145 +#: apt-inst/extract.cc:152 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "O pacote está tentando escrever no alvo do desvio %s/%s" -#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 +#: 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-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, 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:282 +#: 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:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "O caminho é muito longo" -#: apt-inst/extract.cc:414 +#: apt-inst/extract.cc:421 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Sobrescrita de pacote não combina com nenhuma versão para %s" -#: apt-inst/extract.cc:431 +#: 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" -#: apt-inst/extract.cc:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "ImpossÃvel executar \"stat\" em %s" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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" -#: apt-inst/deb/debfile.cc:124 +#: apt-inst/deb/debfile.cc:132 #, 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:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "Arquivo de controle não interpretável" @@ -2337,502 +2367,507 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "Seleção %s não encontrada" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Abreviação de tipo desconhecida: '%c'" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "Abrindo arquivo de configuração %s" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Erro de sintaxe %s:%u: Bloco inicia sem nome." -#: apt-pkg/contrib/configuration.cc:804 +#: 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-pkg/contrib/configuration.cc:821 +#: 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-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "Erro de sintaxe %s:%u: Diretivas podem ser feitas somente no nÃvel mais alto" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Erro de sintaxe %s:%u: Muitos \"includes\" aninhados" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Erro de sintaxe %s:%u: IncluÃdo a partir deste ponto" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Erro de sintaxe %s:%u: Não há suporte para a diretiva '%s'" -#: apt-pkg/contrib/configuration.cc:884 +#: 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-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Erro de sintaxe %s:%u: Lixo extra no final do arquivo" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... Erro!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... Pronto" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s... Pronto" -#: apt-pkg/contrib/cmndline.cc:116 +#: 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-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: 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-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "Opção %s requer um argumento." -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "" "Opção %s: Especificação de item de configuração deve possuir um =<val>." -#: apt-pkg/contrib/cmndline.cc:273 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format msgid "Option %s requires an integer argument, not '%s'" msgstr "Opção %s requer um argumento inteiro, não '%s'" -#: apt-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "Opção '%s' é muito longa" -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "Sentido %s não é compreendido, tente verdadeiro ou falso." -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "Operação %s inválida" -#: apt-pkg/contrib/cdromutl.cc:56 +#: 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-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "ImpossÃvel executar \"stat\" no cdrom" -#: apt-pkg/contrib/fileutl.cc:95 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problema fechando o arquivo" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, 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-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "Não foi possÃvel abrir arquivo de trava %s" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "Não usando travamento para arquivo de trava montado via nfs %s" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "Não foi possÃvel obter trava %s" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Sub-processo %s recebeu uma falha de segmentação." -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "Sub-processo %s recebeu uma falha de segmentação." -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 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-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Sub-processo %s finalizou inesperadamente" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problema fechando o arquivo" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "Não foi possÃvel abrir arquivo %s" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, 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:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "Falhou ao criar sub-processo IPC" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "Falhou ao executar compactador " -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, 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-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, 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-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "Problema fechando o arquivo" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "Problema sincronizando o arquivo" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "Problema removendo o arquivo" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "Problema sincronizando o arquivo" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "renomeação falhou, %s (%s -> %s)." + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, fuzzy, c-format msgid "No keyring installed in %s." msgstr "Abortando instalação." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "Cache de pacotes vazio" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "O arquivo de cache de pacotes está corrompido" -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "O arquivo de cache de pacotes é uma versão incompatÃvel" -#: apt-pkg/pkgcache.cc:162 +#: apt-pkg/pkgcache.cc:169 #, fuzzy msgid "The package cache file is corrupted, it is too small" msgstr "O arquivo de cache de pacotes está corrompido" -#: apt-pkg/pkgcache.cc:167 +#: 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'" -#: apt-pkg/pkgcache.cc:172 +#: 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" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "Depende" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "Pré-Depende" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "Sugere" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "Recomenda" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "Conflita" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "Substitui" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "Obsoleta" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "Quebra" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "importante" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "requerido" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "padrão" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "opcional" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "extra" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "Construindo árvore de dependências" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "Versões candidatas" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "Geração de dependência" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: 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-pkg/depcache.cc:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "Falha ao abrir Arquivo de Estado (\"StateFile\") %s" -#: apt-pkg/depcache.cc:250 +#: 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-pkg/tagfile.cc:138 +#: 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-pkg/tagfile.cc:235 +#: 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-pkg/sourcelist.cc:118 +#: 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:161 +#: 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:164 +#: apt-pkg/sourcelist.cc:173 #, fuzzy, c-format msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "Linha mal formada %lu no arquivo de fontes %s (distribuição)" -#: apt-pkg/sourcelist.cc:175 +#: 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-pkg/sourcelist.cc:181 +#: apt-pkg/sourcelist.cc:190 #, fuzzy, c-format msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "" "Linha mal formada %lu no arquivo de fontes %s (análise de distribuição)" -#: apt-pkg/sourcelist.cc:184 +#: apt-pkg/sourcelist.cc:193 #, fuzzy, c-format msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" "Linha mal formada %lu no arquivo de fontes %s (análise de distribuição)" -#: apt-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "Linha mal formada %lu no arquivo de fontes %s (URI)" -#: apt-pkg/sourcelist.cc:199 +#: 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)" -#: apt-pkg/sourcelist.cc:202 +#: 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-pkg/sourcelist.cc:208 +#: apt-pkg/sourcelist.cc:217 #, 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)" -#: apt-pkg/sourcelist.cc:215 +#: 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)" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "Abrindo %s" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "Linha %u muito longa na lista de fontes %s." -#: apt-pkg/sourcelist.cc:362 +#: 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-pkg/sourcelist.cc:366 +#: 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-pkg/sourcelist.cc:407 +#: 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-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, 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:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "Não foi possÃvel abrir arquivo %s" -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2844,12 +2879,12 @@ msgstr "" "é ruim, mas se você realmente quer fazer isso, ative a opção APT::Force-" "LoopBreak." -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "Tipo de arquivo de Ãndice '%s' não é suportado" -#: apt-pkg/algorithms.cc:266 +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." @@ -2857,7 +2892,7 @@ msgstr "" "O pacote %s precisa ser reinstalado, mas não foi possÃvel encontrar um " "arquivo para o mesmo." -#: apt-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2865,222 +2900,217 @@ msgstr "" "Erro, pkgProblemResolver::Resolve gerou falhas, isto pode ser causado por " "pacotes mantidos (hold)." -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "ImpossÃvel corrigir problemas, você manteve (hold) pacotes quebrados." -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, fuzzy, c-format msgid "List directory %spartial is missing." msgstr "Diretório de listas %spartial está faltando." -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, fuzzy, c-format msgid "Archives directory %spartial is missing." msgstr "Diretório de arquivos %spartial está faltando." -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, fuzzy, c-format msgid "Unable to lock directory %s" msgstr "ImpossÃvel criar trava no diretório de listas" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Obtendo o arquivo %li de %li (%s restantes)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "Obtendo arquivo %li de %li" -#: apt-pkg/acquire-worker.cc:113 +#: 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." -#: apt-pkg/acquire-worker.cc:115 +#: 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" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "Método %s não iniciou corretamente" -#: apt-pkg/acquire-worker.cc:452 +#: apt-pkg/acquire-worker.cc:455 #, c-format msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "" "Por favor, insira o disco nomeado: '%s' na unidade '%s' e pressione enter." -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Sistema de empacotamento '%s' não é suportado" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "ImpossÃvel determinar um tipo de sistema de empacotamento aplicável." -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "ImpossÃvel executar \"stat\" %s." -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "Você deve colocar algumas URIs 'source' em seu sources.list" -#: apt-pkg/cachefile.cc:87 +#: 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." -#: apt-pkg/cachefile.cc:91 +#: 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:109 +#: 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/policy.cc:75 +#: 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 "" -#: apt-pkg/policy.cc:414 +#: apt-pkg/policy.cc:422 #, fuzzy, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "Registro inválido no arquivo de preferências, sem cabeçalho Package" -#: apt-pkg/policy.cc:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "Não foi possÃvel entender o tipo de \"pin\" %s" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "Nenhuma prioridade (ou zero) especificada para \"pin\"" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 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:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: 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)" -#: apt-pkg/pkgcachegen.cc:251 +#: apt-pkg/pkgcachegen.cc:257 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "Uau, você excedeu o número de nomes de pacotes que este APT é capaz de " "suportar." -#: apt-pkg/pkgcachegen.cc:254 +#: 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." -#: apt-pkg/pkgcachegen.cc:257 +#: 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." -#: apt-pkg/pkgcachegen.cc:260 +#: 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." -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:576 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "Pacote %s %s não foi encontrado enquanto processando dependências de arquivo" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "Não foi possÃvel executar \"stat\" na lista de pacotes fonte %s" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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" -#: apt-pkg/pkgcachegen.cc:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "Coletando Arquivo \"Provides\"" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: 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" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "renomeação falhou, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "Hash Sum incorreto" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "Tamanho incorreto" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "Operação %s inválida" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, 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:1586 +#: apt-pkg/acquire-item.cc:1595 #, fuzzy, c-format msgid "Unable to find hash sum for '%s' in Release file" msgstr "ImpossÃvel analisar arquivo de pacote %s (1)" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 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" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " "repository will not be applied." msgstr "" -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3088,12 +3118,12 @@ msgid "" msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3103,12 +3133,12 @@ msgstr "" "que você precisa consertar manualmente este pacote. (devido a arquitetura " "não especificada)." -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -3116,71 +3146,67 @@ msgstr "" "Os arquivos de Ãndice de pacotes estão corrompidos. Nenhum campo \"Filename:" "\" para o pacote %s." -#: apt-pkg/indexrecords.cc:73 +#: 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:81 +#: apt-pkg/indexrecords.cc:86 #, fuzzy, c-format msgid "No sections in Release file %s" msgstr "Nota, selecionando %s ao invés de %s\n" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "" -#: apt-pkg/indexrecords.cc:125 +#: 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:144 +#: 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/vendorlist.cc:78 +#: 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\")" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Usando ponto de montagem de CD-ROM %s\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "Desmontando CD-ROM\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "Desmontando CD-ROM...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "Aguardando por disco...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "Montando CD-ROM...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " -msgstr "Identificando.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " +msgstr "Identificando... " -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "Rótulo armazenado: %s \n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "Desmontando CD-ROM...\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" -msgstr "Procurando por arquivos de Ãndice no disco..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" +msgstr "Procurando por arquivos de Ãndice no disco...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3189,22 +3215,22 @@ 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-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "Rótulo encontrado: '%s'\n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 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:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3213,34 +3239,34 @@ msgstr "" "Esse disco é chamado: \n" "'%s'\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "Copiando lista de pacotes..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "Gravando nova lista de fontes\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "Entradas na lista de fontes para este disco são:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format msgid "Wrote %i records.\n" msgstr "Gravados %i registros.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:777 +#: 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" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:780 +#: 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" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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 "" @@ -3257,88 +3283,88 @@ msgstr "" msgid "Hash mismatch for: %s" msgstr "Hash Sum incorreto" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Release '%s' para '%s' não foi encontrada" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Versão '%s' para '%s' não foi encontrada" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, fuzzy, c-format msgid "Couldn't find task '%s'" msgstr "ImpossÃvel achar tarefa %s" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, fuzzy, c-format msgid "Couldn't find any package by regex '%s'" msgstr "ImpossÃvel achar pacote %s" -#: apt-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "ImpossÃvel achar pacote %s" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, c-format msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " "neither of them" msgstr "" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, c-format msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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 " @@ -3347,167 +3373,167 @@ msgstr "" "Alguns arquivos de Ãndice falharam para baixar, eles foram ignorados ou os " "antigos foram usados no lugar." -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "Instalando %s" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "Configurando %s" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "Removendo %s" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, fuzzy, c-format msgid "Completely removing %s" msgstr "%s completamente removido" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "Executando gatilho pós-instalação %s" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "Diretório '%s' está faltando" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, fuzzy, c-format msgid "Could not open file '%s'" msgstr "Não foi possÃvel abrir arquivo %s" -#: apt-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "Preparando %s" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "Desempacotando %s" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "Preparando para configurar %s" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "%s instalado" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "Preparando para a remoção de %s" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "%s removido" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "Preparando para remover completamente %s" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "%s completamente removido" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "ImpossÃvel escrever para %s" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 msgid "" "No apport report written because the error message indicates an issue on the " "local system" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " "it?" msgstr "" -#: apt-pkg/deb/debsystem.cc:87 +#: 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" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " msgstr "" -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ro\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2008-11-15 02:21+0200\n" "Last-Translator: Eddy PetriÈ™or <eddy.petrisor@gmail.com>\n" "Language-Team: Romanian <debian-l10n-romanian@lists.debian.org>\n" @@ -19,155 +19,156 @@ msgstr "" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" -#: cmdline/apt-cache.cc:140 +#: 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" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "Total nume pachete : " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 #, fuzzy msgid "Total package structures: " msgstr "Total nume pachete : " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " Pachete normale: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " Pachete virtuale pure: " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " Pachete virtuale singulare: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " Pachete virtuale mixte: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " Lipsă: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "Total versiuni distincte: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "Numărul total de descrieri distincte: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "Total dependenÈ›e: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "Total relaÈ›ii versiune/fiÈ™ier: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "Total relaÈ›ii desc/fiÈ™ier: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "Total cartări Furnizează: " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "Total È™iruri înglobate: " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "Total spaÈ›iu versiuni ale dependenÈ›elor: " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "Total spaÈ›iu intern: " -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "Total spaÈ›iu contorizat pentru: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: 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." -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 #, fuzzy msgid "You must give at least one search pattern" msgstr "Trebuie să daÈ›i exact un È™ablon" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "Nu s-a putut localiza pachetul %s" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "FiÈ™iere pachet: " -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 msgid "Cache is out of sync, can't x-ref a package file" msgstr "" "Cache-ul este desincronizat, nu se poate executa x-ref pe un fiÈ™ier pachet" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "Pachete alese special:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(negăsit)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " Instalat: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " Candidează: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(niciunul)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " Pachet ales special: " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " Tabela de versiuni:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s pentru %s compilat la %s %s\n" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -240,29 +241,29 @@ msgstr "" " -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:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: 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â€" -#: cmdline/apt-cdrom.cc:104 +#: 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" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, fuzzy, c-format msgid "Failed to mount '%s' to '%s'" msgstr "EÈ™ec la redenumirea lui %s în %s" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "RepetaÈ›i această procedură pentru restul CD-urilor din set." @@ -299,66 +300,66 @@ 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-get.cc:244 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format msgid "Can not find a package for architecture '%s'" msgstr "Nu pot găsi pachetul %s" -#: cmdline/apt-get.cc:326 +#: 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:329 +#: 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:366 +#: 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:422 +#: cmdline/apt-get.cc:423 #, c-format msgid "Can not find version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "Nu pot găsi pachetul %s" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "%s este marcat ca fiind instalat manual.\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: 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:468 cmdline/apt-mark.cc:116 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: 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" -#: cmdline/apt-get.cc:573 cmdline/apt-get.cc:610 +#: 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:725 +#: 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:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "Nu s-a putut găsi o sursă pachet pentru %s" @@ -378,97 +379,97 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Sar peste fiÈ™ierul deja descărcat '%s'\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "N-am putut determina spaÈ›iul disponibil în %s" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "Nu aveÈ›i suficient spaÈ›iu în %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Este nevoie să descărcaÈ›i %sB/%sB din arhivele surselor.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Este nevoie să descărcaÈ›i %sB din arhivele surselor.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "Aducere sursa %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "EÈ™ec la aducerea unor arhive." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "Descărcare completă È™i în modul doar descărcare" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Sar peste despachetarea sursei deja despachetate în %s\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Comanda de despachetare '%s' eÈ™uată.\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "VerificaÈ›i dacă pachetul 'dpkg-dev' este instalat.\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "Comanda de construire '%s' eÈ™uată.\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "Procesul copil a eÈ™uat" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "" "Trebuie specificat cel puÈ›in un pachet pentru a-i verifica dependenÈ›ele " "înglobate" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Nu pot prelua informaÈ›iile despre dependenÈ›ele înglobate ale lui %s" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s nu are dependenÈ›e înglobate.\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -477,7 +478,7 @@ msgstr "" "DependenÈ›a lui %s de %s nu poate fi satisfăcută deoarece pachetul %s nu " "poate fi găsit" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -486,14 +487,14 @@ msgstr "" "DependenÈ›a lui %s de %s nu poate fi satisfăcută deoarece pachetul %s nu " "poate fi găsit" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "EÈ™ec la satisfacerea dependenÈ›ei %s pentru %s: Pachetul instalat %s este " "prea nou" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -502,7 +503,7 @@ msgstr "" "DependenÈ›a lui %s de %s nu poate fi satisfăcută deoarece nici o versiune " "disponibilă a pachetului %s nu poate satisface versiunile cerute" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -511,30 +512,30 @@ msgstr "" "DependenÈ›a lui %s de %s nu poate fi satisfăcută deoarece pachetul %s nu " "poate fi găsit" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "EÈ™ec la satisfacerea dependenÈ›ei %s pentru %s: %s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "DependenÈ›ele înglobate pentru %s nu pot fi satisfăcute." -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "EÈ™ec la prelucrarea dependenÈ›elor de compilare" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "Conectare la %s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "Module suportate:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -623,53 +624,75 @@ msgstr "" "pentru mai multe informaÈ›ii È™i opÈ›iuni.\n" " Acest APT are puterile unei Super Vaci.\n" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Trebuie specificat cel puÈ›in un pachet pentru a-i aduce sursa" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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 "dar nu este instalat" -#: cmdline/apt-mark.cc:63 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format msgid "%s was already set to manually installed.\n" msgstr "%s este marcat ca fiind instalat manual.\n" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, fuzzy, c-format msgid "%s was already set to automatically installed.\n" msgstr "%s este marcat ca fiind instalat manual.\n" -#: cmdline/apt-mark.cc:230 +#: 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" -#: cmdline/apt-mark.cc:232 +#: 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" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "AÈ™teptat %s, dar n-a fost acolo" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: 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" -#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316 +#: 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" -#: cmdline/apt-mark.cc:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" "\n" @@ -696,7 +719,7 @@ msgid "" "See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -744,52 +767,52 @@ msgstr "Nu se poate demonta CD-ul din %s, poate este încă utilizat." msgid "Disk not found." msgstr "Disc negăsit." -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "FiÈ™ier negăsit" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: 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â€" -#: methods/copy.cc:82 methods/gzip.cc:113 methods/rred.cc:606 +#: 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" -#: methods/file.cc:47 +#: methods/file.cc:48 msgid "Invalid URI, local URIS must not start with //" msgstr "URI invalid, URI-uile locale trebuie să nu înceapă cu //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "Se autentifică" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "Nu se poate detecta numele perechii" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "Nu s-a putut detecta numele local" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: 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" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "„USER†a eÈ™uat, serverul a spus: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "„PASS†a eÈ™uat, serverul a spus: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -797,123 +820,125 @@ msgstr "" "Un server proxy a fost precizat, dar nu există nici un script de conectare, " "Acquire::ftp::ProxyLogin este gol." -#: methods/ftp.cc:275 +#: 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" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "„TYPE†a eÈ™uat, serverul a spus: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: 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" -#: methods/ftp.cc:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "Serverul a închis conexiunea" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "Eroare de citire" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "Un răspuns a depășit zona de tampon." -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "Protocol corupt" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "Eroare de scriere" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: 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" -#: methods/ftp.cc:707 +#: methods/ftp.cc:712 msgid "Could not connect data socket, connection timed out" msgstr "" "Nu s-a putut realiza conectarea la socket-ul de date, timpul de conectare a " "expirat" -#: methods/ftp.cc:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "EÈ™ec" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "Nu s-a putut realiza conectarea la un socket pasiv" -#: methods/ftp.cc:730 +#: 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" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "Nu s-a putut realiza asocierea la un socket" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "Nu s-a putut asculta pe socket" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "Nu s-a putut detecta numele socket-ului" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "Nu s-a putut trimite comanda PORT" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Familie de adrese necunoscută %u (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "„EPRT†a eÈ™uat, serverul a spus: %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "Timpul de conectare la socket-ul de date expirat" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "Nu s-a putut accepta conexiune" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "Problemă la calcularea dispersiei pentru fiÈ™ierul" -#: methods/ftp.cc:885 +#: 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â€" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "Timp expirat pentru socket-ul de date" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Transferul de date a eÈ™uat, serverul a spus: '%s'" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "Interogare" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "Nu s-a putut invoca" @@ -950,7 +975,7 @@ msgstr "Nu s-a putut realiza conexiunea cu %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "Conectare la %s" @@ -980,40 +1005,40 @@ msgstr "S-a întâmplat ceva „necurat†la rezolvarea lui „%s:%s†(%i)" msgid "Unable to connect to %s:%s:" msgstr "Nu s-a putut realiza conexiunea cu %s %s:" -#: methods/gpgv.cc:166 +#: 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?!" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "Cel puÈ›in o semnătură nevalidă a fost întâlnită." -#: methods/gpgv.cc:172 +#: 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?)" #. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "Eroare necunoscută în timp ce se execută gpgv" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: 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" -#: methods/gpgv.cc:229 +#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@ -1021,149 +1046,149 @@ msgstr "" "Următoarele semnături n-au putut fi verificate, deoarece cheia publică nu " "este disponibilă:\n" -#: methods/gzip.cc:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "Eroare la scrierea în fiÈ™ierul" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "" "Eroare la citirea de la server. Conexiunea a fost închisă de la distanță" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "Eroare la citirea de la server" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "Eroare la scrierea în fiÈ™ier" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "SelecÈ›ia a eÈ™uat" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "Timp de conectare expirat" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "Eroare la scrierea fiÈ™ierului de rezultat" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "ÃŽn aÈ™teptarea antetelor" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "Linie de antet necorespunzătoare" -#: methods/server.cc:139 methods/server.cc:146 +#: methods/server.cc:134 methods/server.cc:141 msgid "The HTTP server sent an invalid reply header" msgstr "Serverul HTTP a trimis un antet de răspuns necorespunzător" -#: methods/server.cc:176 +#: methods/server.cc:171 msgid "The HTTP server sent an invalid Content-Length header" msgstr "Serverul HTTP a trimis un antet Content-Length necorespunzător" -#: methods/server.cc:199 +#: methods/server.cc:194 msgid "The HTTP server sent an invalid Content-Range header" msgstr "Serverul HTTP a trimis un antet zonă de conÈ›inut necorespunzător" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "Acest server HTTP are un suport defect de intervale" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "Format dată necunoscut" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "Antet de date necorespunzător" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "Conectare eÈ™uată" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "Eroare internă" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Eroare internă, InstallPackages a fost apelat cu pachete deteriorate!" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "Pachete trebuiesc È™terse dar È™tergerea este dezactivată." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "Eroare internă, Ordering nu s-a terminat" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" -"Ce ciudat.. Dimensiunile nu se potrivesc, scrieÈ›i la apt@packages.debian.org" +"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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Este nevoie să descărcaÈ›i %sB/%sB de arhive.\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:171 +#: apt-private/private-install.cc:159 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Este nevoie să descărcaÈ›i %sB de arhive.\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:178 +#: apt-private/private-install.cc:166 #, 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" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:183 +#: apt-private/private-install.cc:171 #, 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" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, 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:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 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:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "A 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Da, fă cum îți spun!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1174,19 +1199,19 @@ msgstr "" "Pentru a continua tastaÈ›i fraza '%s'\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "RenunÈ›are." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "VreÈ›i să continuaÈ›i?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "Descărcarea unor fiÈ™iere a eÈ™uat" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1194,19 +1219,19 @@ msgstr "" "Nu s-au putut aduce unele arhive, poate ar fi o idee bună să rulaÈ›i 'apt-get " "update' sau încercaÈ›i cu --fix-missing?" -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing È™i schimbul de mediu nu este deocamdată suportat" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "Nu pot corecta pachetele lipsă." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "Abandonez instalarea." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1217,16 +1242,16 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" # XXX: orice sugestie este bine-venită -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Nu este voie să se È™teargă lucruri, nu se poate porni AutoRemover" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1245,15 +1270,15 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 msgid "The following information may help to resolve the situation:" msgstr "Următoarele informaÈ›ii ar putea să vă ajute la rezolvarea situaÈ›iei:" -#: apt-private/private-install.cc:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "Eroare internă, AutoRemover a deteriorat diverse chestiuni" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1267,7 +1292,7 @@ msgstr[1] "" msgstr[2] "" "Următoarele pachete au fost instalate automat È™i nu mai sunt necesare:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1279,7 +1304,7 @@ msgstr[1] "" msgstr[2] "" "Următoarele pachete au fost instalate automat È™i nu mai sunt necesare:" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 #, fuzzy msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." @@ -1287,11 +1312,11 @@ msgstr[0] "FolosiÈ›i 'apt-get autoremove' pentru a le È™terge." msgstr[1] "FolosiÈ›i 'apt-get autoremove' pentru a le È™terge." msgstr[2] "FolosiÈ›i 'apt-get autoremove' pentru a le È™terge." -#: apt-private/private-install.cc:624 +#: apt-private/private-install.cc:612 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "AÈ›i putea porni 'apt-get -f install' pentru a corecta acestea:" -#: apt-private/private-install.cc:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1299,7 +1324,7 @@ 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:639 +#: apt-private/private-install.cc:627 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" @@ -1312,145 +1337,145 @@ msgstr "" "pachete\n" "cerute n-au fost create încă sau au fost mutate din Incoming." -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "Pachete deteriorate" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "Următoarele extra pachete vor fi instalate:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "Pachete sugerate:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "Pachete recomandate:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "AVERTISMENT: Următoarele pachete nu pot fi autentificate!" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "Avertisment de autentificare înlocuit.\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "Unele pachete n-au putut fi autentificate" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "InstalaÈ›i aceste pachete fără verificare?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "EÈ™ec la aducerea lui %s %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [Instalat]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [Instalat]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [Instalat]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [Instalat]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "Următoarele pachete au dependenÈ›e neîndeplinite:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "dar %s este instalat" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "dar %s este pe cale de a fi instalat" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "dar nu este instalabil" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "dar este un pachet virtual" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "dar nu este instalat" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "dar nu este pe cale să fie instalat" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " sau" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "Următoarele pachete NOI vor fi instalate:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "Următoarele pachete vor fi ȘTERSE:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "Următoarele pachete au fost reÈ›inute:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "Următoarele pachete vor fi ÃŽNNOITE:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "Următoarele pachete vor fi DE-GRADATE:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "Următoarele pachete È›inute vor fi schimbate:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (datorită %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1458,27 +1483,27 @@ 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-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu înnoite, %lu nou instalate, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu reinstalate, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu de-gradate, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu de È™ters È™i %lu neînnoite.\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu instalate sau È™terse incomplet.\n" @@ -1487,7 +1512,7 @@ msgstr "%lu instalate sau È™terse incomplet.\n" #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "" @@ -1495,92 +1520,92 @@ msgstr "" #. 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:702 +#: apt-private/private-output.cc:708 msgid "[y/N]" msgstr "" #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "Y" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "Eroare de compilare expresie regulată - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "Corectez dependenÈ›ele..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " eÈ™ec." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "Nu s-au putut corecta dependenÈ›ele" -#: apt-private/private-cachefile.cc:96 +#: 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-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " Terminat" -#: apt-private/private-cachefile.cc:102 +#: 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-private/private-cachefile.cc:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "DependenÈ›e neîndeplinite. ÃŽncercaÈ›i să folosiÈ›i -f." -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "Comanda de actualizare nu are argumente" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "Calculez înnoirea... " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "Eroare internă, înnoire totală a defectat diverse chestiuni" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "Terminat" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1588,43 +1613,43 @@ msgid "" " so don't depend on the relevance to the real current situation!" msgstr "" -#: apt-private/private-sources.cc:45 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format msgid "Failed to parse %s. Edit again? " msgstr "EÈ™ec la redenumirea lui %s în %s" -#: apt-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "Atins " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "Luat:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "Ignorat " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Eroare" -#: apt-private/acqprogress.cc:143 +#: 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:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [ÃŽn lucru]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1637,19 +1662,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "Nu s-a putut citi %s" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "Nu pot schimba la %s" @@ -1678,11 +1703,11 @@ msgstr "Nu s-a putut deschide fiÈ™ierul %s" msgid "[Mirror: %s]" msgstr "" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 msgid "Failed to create IPC pipe to subprocess" msgstr "EÈ™ec la crearea conexiunii IPC către subproces" -#: methods/rsh.cc:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "Conexiune închisă prematur" @@ -1749,40 +1774,45 @@ 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:256 apt-pkg/pkgcachegen.cc:1388 +#: 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:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "Nu s-a putut scrie în %s" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Nu s-a putut citi versiunea debconf. Este instalat debconf?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "Lista de extensii pentru pachet este prea lungă" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "Eroare la prelucrarea directorului %s" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "Lista de extensii pentru sursă este prea lungă" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "Eroare la scrierea antetului în fiÈ™ierul index" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "Eroare la prelucrarea conÈ›inutului %s" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1870,26 +1900,26 @@ msgstr "" " -c=? CiteÈ™te acest fiÈ™ier de configurare\n" " -o=? Ajustează o opÈ›iune de configurare arbitrară" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "Nu s-a potrivit nici o selecÈ›ie" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format 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:47 +#: ftparchive/cachedb.cc:51 #, 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:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "DB este vechi, se încearcă înnoirea %s" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 #, fuzzy msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " @@ -1898,192 +1928,192 @@ 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:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Nu s-a putut deschide fiÈ™ierul DB %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "EÈ™ec la „stat†pentru %s" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "Arhiva nu are înregistrare de control" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "Nu s-a putut obÈ›ine un cursor" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "A: Nu s-a putut citi directorul %s\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "A: Nu s-a putut efectua „stat†pentru %s\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "A: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "E: Erori la fiÈ™ierul " -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "EÈ™ec la „resolve†pentru %s" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "Parcurgerea arborelui a eÈ™uat" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "EÈ™ec la „open†pentru %s" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " Dezlegare %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "EÈ™ec la „readlink†pentru %s" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "EÈ™ec la „unlink†pentru %s" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** EÈ™ec la „link†între %s È™i %s" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Limita de %sB a dezlegării a fost atinsă.\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "Arhiva nu are câmp de pachet" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %s nu are intrare de înlocuire\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s responsabil este %s nu %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr " %s nu are nici o intrare sursă de înlocuire\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s nu are nici intrare binară de înlocuire\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - EÈ™ec la alocarea memoriei" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "Nu s-a putut deschide %s" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "ÃŽnlocuire greÈ™ită %s linia %lu #1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "EÈ™ec la citirea fiÈ™ierului de înlocuire a permisiunilor %s" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, fuzzy, c-format msgid "Malformed override %s line %llu #1" msgstr "ÃŽnlocuire greÈ™ită %s linia %lu #1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, fuzzy, c-format msgid "Malformed override %s line %llu #2" msgstr "ÃŽnlocuire greÈ™ită %s linia %lu #2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, fuzzy, c-format msgid "Malformed override %s line %llu #3" msgstr "ÃŽnlocuire greÈ™ită %s linia %lu #3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "Algoritm de compresie necunoscut '%s'" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "Rezultatul comprimat %s are nevoie de o ajustare a compresiei" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "EÈ™ec la crearea FIȘIERULUI*" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "EÈ™ec la „forkâ€" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "Comprimare copil" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "Eroare internă, eÈ™ec la crearea lui %s" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "IE către subproces/fiÈ™ier eÈ™uat" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "EÈ™ec la citire în timpul calculului sumei MD5" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "Problemă la desfacerea %s" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "EÈ™ec la redenumirea lui %s în %s" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -2137,160 +2167,160 @@ msgstr "" " -o=? Ajustează o opÈ›iune de configurare arbitrară, ex.: -o dir::cache=/" "tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "EÈ™ec la crearea conexiunilor" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "EÈ™ec la executarea lui gzip " -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "Arhivă deteriorată" -#: apt-inst/contrib/extracttar.cc:201 +#: 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:306 +#: 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-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "Semnătură de arhivă necorespunzătoare" -#: apt-inst/contrib/arfile.cc:82 +#: apt-inst/contrib/arfile.cc:84 msgid "Error reading archive member header" msgstr "Eroare la citirea antetului membrului arhivei" -#: apt-inst/contrib/arfile.cc:94 +#: 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:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "Antet de membru de arhivă necorespunzător" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "Arhiva este prea scurtă" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "EÈ™ec la citirea antetelor arhivei" -#: apt-inst/filelist.cc:382 +#: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" msgstr "S-a chemat DropNode pe un nod încă „legatâ€" # XXX: nu-mi place, fie e hash, fie „element de dispersie†-#: apt-inst/filelist.cc:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "EÈ™ec la localizarea elementului de dispersie!" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "EÈ™ec la alocarea redirectării" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "Eroare internă în „AddDiversionâ€" -#: apt-inst/filelist.cc:479 +#: 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:508 +#: 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:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "FiÈ™ier „conf†duplicat %s/%s" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: 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:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "EÈ™ec la închiderea fiÈ™ierului %s" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: 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:125 +#: 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:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "Directorul %s este redirectat" -#: apt-inst/extract.cc:145 +#: 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:155 apt-inst/extract.cc:299 +#: 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:242 +#: 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:282 +#: 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:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "Calea este prea lungă" -#: apt-inst/extract.cc:414 +#: 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:431 +#: 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:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "Nu se poate executa „stat†pe %s" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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:124 +#: 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:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "FiÈ™ier de control neanalizabil" @@ -2347,497 +2377,502 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "SelecÈ›ia %s nu a fost găsită" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Abreviere de tip nerecunoscut: „%câ€" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "Se deschide fiÈ™ierul de configurare %s" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Eroare de sintaxă %s:%u: Blocul începe fără nume" -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Eroare de sintaxă %s:%u: etichetă greÈ™ită" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Eroare de sintaxă %s:%u: mizerii suplimentare după valoare" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, 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-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Eroare de sintaxă %s:%u: prea multe imbricări incluse" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Eroare de sintaxă %s:%u: incluse de aici" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Eroare de sintaxă %s:%u: directivă nesuportată '%s'" -#: apt-pkg/contrib/configuration.cc:884 +#: 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-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Eroare de sintaxă %s:%u: mizerii suplimentare la sfârÈ™itul fiÈ™ierului" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... Eroare!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... Terminat" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s... Terminat" -#: apt-pkg/contrib/cmndline.cc:116 +#: 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-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format msgid "Command line option %s is not boolean" msgstr "OpÈ›iunea linie de comandă %s nu este booleană" -#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "OpÈ›iunea %s necesită un argument" -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "" "OpÈ›iunea %s: SpecificaÈ›ia configurării articolului trebuie să aibă o =<val>." -#: apt-pkg/contrib/cmndline.cc:273 +#: 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-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "OpÈ›iunea '%s' este prea lungă" -#: apt-pkg/contrib/cmndline.cc:336 +#: 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-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "OperaÈ›iune invalidă %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format msgid "Unable to stat the mount point %s" msgstr "Nu pot determina starea punctului de montare %s" -#: apt-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "EÈ™ec la „stat†pentru CD" -#: apt-pkg/contrib/fileutl.cc:95 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problemă la închiderea fiÈ™ierului" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, 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-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "Nu pot deschide fiÈ™ierul blocat %s" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "Nu este folosit blocajul pentru fiÈ™ierul montat nfs %s" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "Nu pot determina blocajul %s" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Subprocesul %s a primit o eroare de segmentare." -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "Subprocesul %s a primit o eroare de segmentare." -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 apt-pkg/contrib/gpgv.cc:239 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Subprocesul %s a întors un cod de eroare (%u)" -#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Subprocesul %s s-a terminat brusc" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problemă la închiderea fiÈ™ierului" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "Nu s-a putut deschide fiÈ™ierul %s" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "Nu s-a putut deschide conexiunea pentru %s" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "EÈ™ec la crearea IPC-ului pentru subproces" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "EÈ™ec la executarea compresorului" -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, 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-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, 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-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "Problemă la închiderea fiÈ™ierului" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "Problemă în timpul sincronizării fiÈ™ierului" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "Problemă la dezlegarea fiÈ™ierului" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "Problemă în timpul sincronizării fiÈ™ierului" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "redenumire eÈ™uată, %s (%s -> %s)." + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, fuzzy, c-format msgid "No keyring installed in %s." msgstr "Abandonez instalarea." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "Cache gol de pachet" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "Cache-ul fiÈ™ierului pachet este deteriorat" -#: apt-pkg/pkgcache.cc:159 +#: 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:162 +#: apt-pkg/pkgcache.cc:169 #, fuzzy msgid "The package cache file is corrupted, it is too small" msgstr "Cache-ul fiÈ™ierului pachet este deteriorat" -#: apt-pkg/pkgcache.cc:167 +#: 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'" -#: apt-pkg/pkgcache.cc:172 +#: 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ă" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "Depinde" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "Pre-depinde" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "Sugerează" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "Recomandă" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "Este în conflict" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "ÃŽnlocuieÈ™te" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "ÃŽnvechit" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "Corupe" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "important" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "cerut" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "standard" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "opÈ›ional" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "extra" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: 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:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "Versiuni candidat" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "Generare dependenÈ›e" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: 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:244 +#: 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:250 +#: 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:138 +#: 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-pkg/tagfile.cc:235 +#: 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-pkg/sourcelist.cc:118 +#: 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-pkg/sourcelist.cc:161 +#: 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-pkg/sourcelist.cc:164 +#: 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-pkg/sourcelist.cc:175 +#: 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-pkg/sourcelist.cc:181 +#: 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-pkg/sourcelist.cc:184 +#: 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-pkg/sourcelist.cc:197 +#: 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-pkg/sourcelist.cc:199 +#: 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-pkg/sourcelist.cc:202 +#: 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-pkg/sourcelist.cc:208 +#: 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-pkg/sourcelist.cc:215 +#: 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.)" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "Deschidere %s" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "Linia %u prea lungă în lista sursă %s." -#: apt-pkg/sourcelist.cc:362 +#: 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)" -#: apt-pkg/sourcelist.cc:366 +#: 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" -#: apt-pkg/sourcelist.cc:407 +#: 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-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, 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:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "Nu s-a putut deschide fiÈ™ierul %s" -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2849,19 +2884,19 @@ msgstr "" "nu-i de bine, dar dacă vreÈ›i întradevăr s-o faceÈ›i, activaÈ›i opÈ›iunea APT::" "Force-LoopBreak." -#: apt-pkg/pkgrecords.cc:34 +#: 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" -#: apt-pkg/algorithms.cc:266 +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" "Pachetul %s are nevoie să fie reinstalat, dar nu pot găsi o arhivă pentru el." -#: apt-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2869,225 +2904,220 @@ msgstr "" "Eroare, pkgProblemResolver::Resolve a generat întreruperi, aceasta poate fi " "cauzată de pachete È›inute." -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "Nu pot corecta problema, aÈ›i È›inut pachete deteriorate." -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, fuzzy, c-format msgid "List directory %spartial is missing." msgstr "Directorul de liste %spartial lipseÈ™te." -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, fuzzy, c-format msgid "Archives directory %spartial is missing." msgstr "Directorul de arhive %spartial lipseÈ™te." -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, fuzzy, c-format msgid "Unable to lock directory %s" msgstr "Nu pot încuia directorul cu lista" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: 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)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "Se descarcă fiÈ™ierul %li din %li" -#: apt-pkg/acquire-worker.cc:113 +#: 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:115 +#: 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:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "Metoda %s nu s-a lansat corect" -#: apt-pkg/acquire-worker.cc:452 +#: apt-pkg/acquire-worker.cc:455 #, c-format msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "" "Vă rog introduceÈ›i discul numit: '%s' în unitatea '%s' È™i apăsaÈ›i Enter." -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Sistemul de pachete '%s' nu este suportat" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "Nu s-a putut determina un tip de sistem de împachetare potrivit" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "Nu pot determina starea %s." -#: apt-pkg/srcrecords.cc:47 +#: 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/cachefile.cc:87 +#: 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:91 +#: 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:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "Lista surselor nu poate fi citită." -#: apt-pkg/policy.cc:75 +#: 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 "" -#: apt-pkg/policy.cc:414 +#: 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:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "Nu s-a înÈ›eles tipul de pin %s" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "Fără prioritate (sau zero) specificată pentru pin" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 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:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: 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)" -#: apt-pkg/pkgcachegen.cc:251 +#: apt-pkg/pkgcachegen.cc:257 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "Mamăăă, aÈ›i depășit numărul de nume de pachete de care este capabil acest " "APT." -#: apt-pkg/pkgcachegen.cc:254 +#: 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." -#: apt-pkg/pkgcachegen.cc:257 +#: 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." -#: apt-pkg/pkgcachegen.cc:260 +#: apt-pkg/pkgcachegen.cc:266 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" "Mamăăă, aÈ›i depășit numărul de dependenÈ›e de care este capabil acest APT." -#: apt-pkg/pkgcachegen.cc:570 +#: 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" -#: apt-pkg/pkgcachegen.cc:1199 +#: 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" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 msgid "Reading package lists" msgstr "Citire liste de pachete" -#: apt-pkg/pkgcachegen.cc:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "Colectare furnizori fiÈ™ier" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: 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" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "redenumire eÈ™uată, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "Nepotrivire la suma de căutare" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "Nepotrivire dimensiune" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "OperaÈ›iune invalidă %s" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, 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:1586 +#: apt-pkg/acquire-item.cc:1595 #, 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:1628 +#: apt-pkg/acquire-item.cc:1637 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" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " "repository will not be applied." msgstr "" -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3095,12 +3125,12 @@ msgid "" msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3109,12 +3139,12 @@ 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ă)" -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -3122,72 +3152,68 @@ msgstr "" "FiÈ™ierele index de pachete sunt deteriorate. Fără câmpul 'nume fiÈ™ier:' la " "pachetul %s." -#: apt-pkg/indexrecords.cc:73 +#: 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-pkg/indexrecords.cc:81 +#: 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-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "" -#: apt-pkg/indexrecords.cc:125 +#: 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-pkg/indexrecords.cc:144 +#: 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-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "Blocul vânzător %s nu conÈ›ine amprentă" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Utilizare punct de montare CD-ROM %s\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "Demontare CD-ROM\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "Se demontează CD-ul...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "AÈ™tept discul...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "Montez CD-ROM...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " -msgstr "Identificare.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " +msgstr "Identificare... " -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "Etichetă memorată: %s \n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "Se demontează CD-ul...\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" -msgstr "Scanez discul de fiÈ™ierele index..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" +msgstr "Scanez discul de fiÈ™ierele index...\n" # DEVELOPERS: please consider using somehow plural forms -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3196,22 +3222,22 @@ msgstr "" "Au fost găsite %zu indexuri de pachete, %zu indexuri de surse, %zu indexuri " "de traduceri È™i %zu semnături\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "A fost găsită eticheta „%sâ€\n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "Acesta nu este un nume valid, mai încercaÈ›i.\n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3220,34 +3246,34 @@ msgstr "" "Acest disc este numit: \n" "'%s'\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "Copiez listele de pachete.." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "Scriere noua listă sursă\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "Intrările listei surselor pentru acest disc sunt:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: 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:777 +#: 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:780 +#: 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:783 +#: 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 "" @@ -3263,88 +3289,88 @@ msgstr "" msgid "Hash mismatch for: %s" msgstr "Nepotrivire la suma de căutare" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Release '%s' pentru '%s' n-a fost găsită" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Versiunea '%s' pentru '%s' n-a fost găsită" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, fuzzy, c-format msgid "Couldn't find task '%s'" msgstr "Nu s-a putut găsi sarcina %s" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, fuzzy, c-format msgid "Couldn't find any package by regex '%s'" msgstr "Nu pot găsi pachetul %s" -#: apt-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "Nu pot găsi pachetul %s" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, c-format msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " "neither of them" msgstr "" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, c-format msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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 " @@ -3353,167 +3379,167 @@ 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/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "Se instalează %s" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "Se configurează %s" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "Se È™terge %s" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, fuzzy, c-format msgid "Completely removing %s" msgstr "Șters complet %s" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "Se rulează declanÈ™atorul post-instalare %s" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "Directorul „%s†lipseÈ™te." -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: 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:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "Se pregăteÈ™te %s" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "Se despachetează %s" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "Se pregăteÈ™te configurarea %s" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "Instalat %s" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "Se pregăteÈ™te È™tergerea lui %s" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "Șters %s" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "Se pregăteÈ™te È™tergerea completă a %s" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "Șters complet %s" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "Nu s-a putut scrie în %s" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 msgid "" "No apport report written because the error message indicates an issue on the " "local system" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " "it?" msgstr "" -#: apt-pkg/deb/debsystem.cc:87 +#: 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" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " msgstr "" -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "" @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: apt rev2227.1.3\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2012-06-30 08:47+0400\n" "Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n" "Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n" @@ -26,152 +26,153 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: cmdline/apt-cache.cc:140 +#: cmdline/apt-cache.cc:149 #, c-format msgid "Package %s version %s has an unmet dep:\n" msgstr "Пакет %s верÑии %s имеет неудовлетворённую завиÑимоÑть:\n" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "Ð’Ñего имён пакетов: " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 msgid "Total package structures: " msgstr "Ð’Ñего Ñтруктур пакетов: " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " Обычных пакетов: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " ПолноÑтью виртуальных пакетов: " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " Одиночных виртуальных пакетов: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " Смешанных виртуальных пакетов: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " ОтÑутÑтвует: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "Ð’Ñего уникальных верÑий: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "Ð’Ñего уникальных опиÑаний: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "Ð’Ñего завиÑимоÑтей: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "Ð’Ñего отношений ВерÑиÑ/Файл: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "Ð’Ñего отношений ОпиÑание/Файл: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "Ð’Ñего отношений Provides: " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "Ð’Ñего развёрнутых Ñтрок: " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "Ð’Ñего информации о завиÑимоÑÑ‚ÑÑ…: " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "ПуÑтого меÑта в кÑше: " -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "Полное учтённое проÑтранÑтво: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: 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 раÑÑинхронизирован." -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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 "Ðе найдено ни одного пакета" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 msgid "You must give at least one search pattern" msgstr "Ð’Ñ‹ должны задать не менее одно шаблона поиÑка" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "Ðта команда уÑтарела. ИÑпользуйте вмеÑто неё «apt-mark showauto»." -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "Ðе удалоÑÑŒ найти пакет %s" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "СпиÑки пакетов:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 msgid "Cache is out of sync, can't x-ref a package file" msgstr "КÑш раÑÑинхронизирован, невозможно обнаружить ÑÑылку на ÑпиÑок пакетов" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "ЗафикÑированные пакеты:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(не найдено)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " УÑтановлен: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " Кандидат: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(отÑутÑтвует)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " ФикÑатор пакета: " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " Таблица верÑий:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: 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:1740 +#: cmdline/apt-cache.cc:1749 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] showpkg pkg1 [pkg2 ...]\n" @@ -241,28 +242,28 @@ msgstr "" " -o=? Задать значение произвольной наÑтройки, например, -o dir::cache=/tmp\n" "ПодробноÑти в Ñправочных Ñтраницах apt-cache(8) и apt.conf(5).\n" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: 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:104 +#: cmdline/apt-cdrom.cc:91 msgid "Please insert a Disc in the drive and press enter" msgstr "Ð’Ñтавьте диÑк в уÑтройÑтво и нажмите ввод" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, c-format msgid "Failed to mount '%s' to '%s'" msgstr "Ðе удалоÑÑŒ примонтировать «%s» к «%s»" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Повторите Ñтот процеÑÑ Ð´Ð»Ñ Ð²Ñех имеющихÑÑ CD." @@ -299,47 +300,47 @@ msgstr "" " -o=? Задать значение произвольной наÑтройке, например, -o dir::cache=/" "tmp\n" -#: cmdline/apt-get.cc:244 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format msgid "Can not find a package for architecture '%s'" msgstr "Ðе удалоÑÑŒ найти пакет по регулÑрному выражению «%s»" -#: cmdline/apt-get.cc:326 +#: cmdline/apt-get.cc:327 #, fuzzy, c-format msgid "Can not find a package '%s' with version '%s'" msgstr "Ðе удалоÑÑŒ найти пакет по регулÑрному выражению «%s»" -#: cmdline/apt-get.cc:329 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format msgid "Can not find a package '%s' with release '%s'" msgstr "Ðе удалоÑÑŒ найти пакет по регулÑрному выражению «%s»" -#: cmdline/apt-get.cc:366 +#: 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:422 +#: cmdline/apt-get.cc:423 #, fuzzy, c-format msgid "Can not find version '%s' of package '%s'" msgstr "ИгнорируетÑÑ Ð½ÐµÐ´Ð¾ÑÑ‚ÑƒÐ¿Ð½Ð°Ñ Ð²ÐµÑ€ÑÐ¸Ñ Â«%s» пакета «%s»" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "Ðе удалоÑÑŒ найти пакет %s" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "%s уÑтановлен вручную.\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: 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:468 cmdline/apt-mark.cc:116 +#: 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." @@ -347,20 +348,20 @@ msgstr "" "Ðта команда уÑтарела. ИÑпользуйте вмеÑто неё «apt-mark auto» и «apt-mark " "manual»." -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 msgid "Internal error, problem resolver broke stuff" msgstr "ВнутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°, решатель проблем вÑÑ‘ поломал" -#: cmdline/apt-get.cc:573 cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 msgid "Unable to lock the download directory" msgstr "Ðевозможно заблокировать каталог, куда ÑкладываютÑÑ Ñкачиваемые файлы" -#: cmdline/apt-get.cc:725 +#: cmdline/apt-get.cc:726 msgid "Must specify at least one package to fetch source for" msgstr "" "Укажите как минимум один пакет, иÑходный код которого необходимо получить" -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "Ðевозможно найти пакет Ñ Ð¸Ñходным кодом Ð´Ð»Ñ %s" @@ -385,80 +386,80 @@ msgstr "" "bzr branch %s\n" "Ð´Ð»Ñ Ð¿Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð¸Ñ Ð¿Ð¾Ñледних (возможно не выпущенных) обновлений пакета.\n" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "ПропуÑкаем уже Ñкачанный файл «%s»\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "Ðе удалоÑÑŒ определить количеÑтво Ñвободного меÑта в %s" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "ÐедоÑтаточно меÑта в %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Ðеобходимо получить %sб/%sб архивов иÑходного кода.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Ðеобходимо получить %sб архивов иÑходного кода.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "Получение иÑходного кода %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "Ðекоторые архивы не удалоÑÑŒ получить." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "Указан режим «только Ñкачивание», и Ñкачивание завершено" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "ПропуÑкаетÑÑ Ñ€Ð°Ñпаковка уже раÑпакованного иÑходного кода в %s\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Команда раÑпаковки «%s» завершилаÑÑŒ неудачно.\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Проверьте, уÑтановлен ли пакет «dpkg-dev».\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "Команда Ñборки «%s» завершилаÑÑŒ неудачно.\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "Порождённый процеÑÑ Ð·Ð°Ð²ÐµÑ€ÑˆÐ¸Ð»ÑÑ Ð½ÐµÑƒÐ´Ð°Ñ‡Ð½Ð¾" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "" "Ð”Ð»Ñ Ð¿Ñ€Ð¾Ð²ÐµÑ€ÐºÐ¸ завиÑимоÑтей Ð´Ð»Ñ Ñборки необходимо указать как минимум один " "пакет" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -467,17 +468,17 @@ msgstr "" "У %s отÑутÑтвует Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾Ð± архитектуре. Ð”Ð»Ñ ÐµÑ‘ наÑтройки Ñмотрите apt." "conf(5) APT::Architectures" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Ðевозможно получить информацию о завиÑимоÑÑ‚ÑÑ… Ð´Ð»Ñ Ñборки %s" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s не имеет завиÑимоÑтей Ð´Ð»Ñ Ñборки.\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -486,7 +487,7 @@ msgstr "" "ЗавиÑимоÑть типа %s Ð´Ð»Ñ %s не может быть удовлетворена, так как %s не " "разрешён Ð´Ð»Ñ Ð¿Ð°ÐºÐµÑ‚Ð¾Ð² «%s»" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -495,14 +496,14 @@ msgstr "" "ЗавиÑимоÑть типа %s Ð´Ð»Ñ %s не может быть удовлетворена, так как пакет %s не " "найден" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Ðе удалоÑÑŒ удовлетворить завиÑимоÑть типа %s Ð´Ð»Ñ Ð¿Ð°ÐºÐµÑ‚Ð° %s: УÑтановленный " "пакет %s новее, чем надо" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -511,7 +512,7 @@ msgstr "" "ЗавиÑимоÑть типа %s Ð´Ð»Ñ %s не может быть удовлетворена, так как верÑиÑ-" "кандидат пакета %s не может удовлетворить требованиÑм по верÑии" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -520,30 +521,30 @@ msgstr "" "ЗавиÑимоÑть типа %s Ð´Ð»Ñ %s не может быть удовлетворена, так как пакет %s не " "имеет верÑии-кандидата" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Ðевозможно удовлетворить завиÑимоÑть типа %s Ð´Ð»Ñ Ð¿Ð°ÐºÐµÑ‚Ð° %s: %s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "ЗавиÑимоÑти Ð´Ð»Ñ Ñборки %s не могут быть удовлетворены." -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "Обработка завиÑимоÑтей Ð´Ð»Ñ Ñборки завершилаÑÑŒ неудачно" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, c-format msgid "Changelog for %s (%s)" msgstr "Changelog Ð´Ð»Ñ %s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "Поддерживаемые модули:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -635,54 +636,77 @@ msgstr "" "ÑодержитÑÑ Ð¿Ð¾Ð´Ñ€Ð¾Ð±Ð½Ð°Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¸ опиÑание параметров.\n" " Ð’ APT еÑть ÐºÐ¾Ñ€Ð¾Ð²ÑŒÑ Ð¡Ð£ÐŸÐ•Ð Ð¡Ð˜Ð›Ð.\n" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "" +"Укажите как минимум один пакет, иÑходный код которого необходимо получить" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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" -#: cmdline/apt-mark.cc:63 +#: cmdline/apt-mark.cc:74 #, c-format msgid "%s was already set to manually installed.\n" msgstr "%s уже помечен как уÑтановленный вручную.\n" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, c-format msgid "%s was already set to automatically installed.\n" msgstr "%s уже помечен как уÑтановленный автоматичеÑки.\n" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, c-format msgid "%s was already set on hold.\n" msgstr "%s уже помечен как зафикÑированный.\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, c-format msgid "%s was already not hold.\n" msgstr "%s уже помечен как не зафикÑированный.\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "ОжидалоÑÑŒ завершение процеÑÑа %s, но он не был запущен" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format msgid "%s set on hold.\n" msgstr "%s помечен как зафикÑированный.\n" -#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format msgid "Canceled hold on %s.\n" msgstr "Отмена фикÑации Ð´Ð»Ñ %s.\n" -#: cmdline/apt-mark.cc:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "" "Выполнение dpkg завершилоÑÑŒ Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ¾Ð¹. У Ð²Ð°Ñ ÐµÑть права ÑуперпользователÑ?" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 #, fuzzy msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" @@ -731,7 +755,7 @@ msgstr "" "Ð’ Ñправочных Ñтраницах apt-mark(8) и apt.conf(5)\n" "ÑодержитÑÑ Ð¿Ð¾Ð´Ñ€Ð¾Ð±Ð½Ð°Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¸ опиÑание параметров." -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -779,52 +803,52 @@ msgstr "Ðевозможно размонтировать CD-ROM в %s, возм msgid "Disk not found." msgstr "ДиÑк не найден." -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "Файл не найден" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 msgid "Failed to stat" msgstr "Ðе удалоÑÑŒ получить атрибуты" -#: methods/copy.cc:82 methods/gzip.cc:113 methods/rred.cc:606 +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 msgid "Failed to set modification time" msgstr "Ðе удалоÑÑŒ уÑтановить Ð²Ñ€ÐµÐ¼Ñ Ð¼Ð¾Ð´Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ð¸" -#: methods/file.cc:47 +#: 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:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "Вход в ÑиÑтему" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "Ðевозможно определить Ð¸Ð¼Ñ ÑƒÐ´Ð°Ð»Ñ‘Ð½Ð½Ð¾Ð³Ð¾ Ñервера" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "Ðевозможно определить локальное имÑ" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format msgid "The server refused the connection and said: %s" msgstr "Сервер разорвал Ñоединение и Ñообщил: %s" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "Команда USER не выполнена, Ñервер Ñообщил: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "Команда PASS не выполнена, Ñервер Ñообщил: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -832,125 +856,127 @@ msgstr "" "Proxy-Ñервер указан, однако нет ÑÑ†ÐµÐ½Ð°Ñ€Ð¸Ñ Ð²Ñ…Ð¾Ð´Ð° в ÑиÑтему, Acquire::ftp::" "ProxyLogin пуÑÑ‚." -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "" "Команда «%s» ÑÑ†ÐµÐ½Ð°Ñ€Ð¸Ñ Ð²Ñ…Ð¾Ð´Ð° в ÑиÑтему завершилаÑÑŒ неудачно, Ñервер Ñообщил: " "%s" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "Команда TYPE не выполнена, Ñервер Ñообщил: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 msgid "Connection timeout" msgstr "ДопуÑтимое Ð²Ñ€ÐµÐ¼Ñ Ð¾Ð¶Ð¸Ð´Ð°Ð½Ð¸Ñ Ð´Ð»Ñ ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ Ð¸Ñтекло" -#: methods/ftp.cc:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "Сервер прервал Ñоединение" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "Ошибка чтениÑ" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "Ответ переполнил буфер." -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "ИÑкажение протокола" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "Ошибка запиÑи" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 msgid "Could not create a socket" msgstr "Ðе удалоÑÑŒ Ñоздать Ñокет" -#: methods/ftp.cc:707 +#: methods/ftp.cc:712 msgid "Could not connect data socket, connection timed out" msgstr "" "Ðе удалоÑÑŒ приÑоединитьÑÑ Ðº Ñокету данных, Ð²Ñ€ÐµÐ¼Ñ Ð½Ð° уÑтановление ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ " "иÑтекло" -#: methods/ftp.cc:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "Ðеудачно" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "Ðевозможно приÑоединить паÑÑивный Ñокет" -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "Вызов getaddrinfo не Ñмог получить Ñокет" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "Ðевозможно приÑоединитьÑÑ Ðº Ñокету" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "Ðе удалоÑÑŒ принимать ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ Ð½Ð° Ñокете" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "Ðе удалоÑÑŒ определить Ð¸Ð¼Ñ Ñокета" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "Ðевозможно поÑлать команду PORT" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "ÐеизвеÑтное ÑемейÑтво адреÑов %u (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "Команда EPRT не выполнена, Ñервер Ñообщил: %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "Ð’Ñ€ÐµÐ¼Ñ ÑƒÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ Ð´Ð»Ñ Ñокета данных иÑтекло" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "Ðевозможно принÑть Ñоединение" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "Проблема при хешировании файла" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Ðевозможно получить файл, Ñервер Ñообщил: «%s»" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "Ð’Ñ€ÐµÐ¼Ñ Ð¾Ð¶Ð¸Ð´Ð°Ð½Ð¸Ñ ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ Ð´Ð»Ñ Ñокета данных иÑтекло" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Передача данных завершилаÑÑŒ неудачно, Ñервер Ñообщил: «%s»" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "ЗапроÑ" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "Ðевозможно вызвать " @@ -986,7 +1012,7 @@ msgstr "Ðе удаётÑÑ ÑоединитьÑÑ Ñ %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "Соединение Ñ %s" @@ -1016,38 +1042,38 @@ msgstr "Что-то Ñтранное произошло при определеРmsgid "Unable to connect to %s:%s:" msgstr "Ðевозможно ÑоединитьÑÑ Ñ %s: %s:" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "ВнутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°: ÐŸÑ€Ð°Ð²Ð¸Ð»ÑŒÐ½Ð°Ñ Ð¿Ð¾Ð´Ð¿Ð¸ÑÑŒ, но не удалоÑÑŒ определить отпечаток " "ключа?!" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "Ðайдена как минимум одна Ð½ÐµÐ¿Ñ€Ð°Ð²Ð¸Ð»ÑŒÐ½Ð°Ñ Ð¿Ð¾Ð´Ð¿Ð¸ÑÑŒ." -#: methods/gpgv.cc:172 +#: 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:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "ÐеизвеÑÑ‚Ð½Ð°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ° при выполнении gpgv" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Следующие подпиÑи неверные:\n" -#: methods/gpgv.cc:229 +#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@ -1055,117 +1081,117 @@ msgstr "" "Следующие подпиÑи не могут быть проверены, так как недоÑтупен открытый " "ключ:\n" -#: methods/gzip.cc:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "ПуÑтые файлы не могут быть допуÑтимыми архивами" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "Ошибка запиÑи в файл" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "Ошибка чтениÑ, удалённый Ñервер прервал Ñоединение" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "Ошибка Ñ‡Ñ‚ÐµÐ½Ð¸Ñ Ñ Ñервера" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "Ошибка запиÑи в файл" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "Ошибка в select" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "Ð’Ñ€ÐµÐ¼Ñ Ð¾Ð¶Ð¸Ð´Ð°Ð½Ð¸Ñ Ð´Ð»Ñ ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ Ð¸Ñтекло" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "Ошибка запиÑи в выходной файл" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "Ожидание заголовков" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "Ðеверный заголовок" -#: methods/server.cc:139 methods/server.cc:146 +#: methods/server.cc:134 methods/server.cc:141 msgid "The HTTP server sent an invalid reply header" msgstr "Http-Ñервер поÑлал неверный заголовок" -#: methods/server.cc:176 +#: methods/server.cc:171 msgid "The HTTP server sent an invalid Content-Length header" msgstr "Http Ñервер поÑлал неверный заголовок Content-Length" -#: methods/server.cc:199 +#: methods/server.cc:194 msgid "The HTTP server sent an invalid Content-Range header" msgstr "Http-Ñервер поÑлал неверный заголовок Content-Range" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "Ðтот HTTP-Ñервер не поддерживает Ñкачивание фрагментов файлов" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "ÐеизвеÑтный формат данных" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "Ðеверный заголовок данных" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "Соединение разорвано" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "ВнутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" "ВнутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°, InstallPackages была вызвана Ñ Ð½ÐµÑ€Ð°Ð±Ð¾Ñ‚Ð¾ÑпоÑобными " "пакетами!" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "Пакеты необходимо удалить, но удаление запрещено." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "ВнутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°, Ordering не завершилаÑÑŒ" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "Странно. ÐеÑовпадение размеров, напишите на apt@packages.debian.org" #. TRANSLATOR: The required 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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Ðеобходимо Ñкачать %sB/%sB архивов.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:171 +#: apt-private/private-install.cc:159 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Ðеобходимо Ñкачать %sБ архивов.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:178 +#: apt-private/private-install.cc:166 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" @@ -1174,23 +1200,23 @@ 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:183 +#: apt-private/private-install.cc:171 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "" "ПоÑле данной операции, объём занÑтого диÑкового проÑтранÑтва уменьшитÑÑ Ð½Ð° " "%sB.\n" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "ÐедоÑтаточно Ñвободного меÑта в %s." -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "СущеÑтвуют проблемы, а параметр -y указан без --force-yes" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "Запрошено выполнение только тривиальных операций, но Ñто не Ñ‚Ñ€Ð¸Ð²Ð¸Ð°Ð»ÑŒÐ½Ð°Ñ " @@ -1198,11 +1224,11 @@ 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Да, делать, как Ñ Ñкажу!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1213,19 +1239,19 @@ msgstr "" "Чтобы продолжить, введите фразу: «%s»\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "Ðварийное завершение." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "Хотите продолжить?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "Ðекоторые файлы Ñкачать не удалоÑÑŒ" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1233,19 +1259,19 @@ msgstr "" "Ðевозможно получить некоторые архивы, вероÑтно надо запуÑтить apt-get update " "или попытатьÑÑ Ð¿Ð¾Ð²Ñ‚Ð¾Ñ€Ð¸Ñ‚ÑŒ запуÑк Ñ ÐºÐ»ÑŽÑ‡Ð¾Ð¼ --fix-missing" -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing и Ñмена ноÑÐ¸Ñ‚ÐµÐ»Ñ Ð² данный момент не поддерживаютÑÑ" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "Ðевозможно иÑправить Ñитуацию Ñ Ð¿Ñ€Ð¾Ð¿ÑƒÑ‰ÐµÐ½Ð½Ñ‹Ð¼Ð¸ пакетами." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "Ðварийное завершение уÑтановки." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1262,15 +1288,15 @@ msgstr[2] "" "Следующие пакеты иÑчез из ÑиÑтемы, так как вÑе их файлы\n" "теперь берутÑÑ Ð¸Ð· других пакетов:" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Замечание: Ñто Ñделано автоматичеÑки и Ñпециально программой dpkg." -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Ðе предполагалоÑÑŒ удалÑть stuff, невозможно запуÑтить AutoRemover" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1288,15 +1314,15 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 msgid "The following information may help to resolve the situation:" msgstr "Ð¡Ð»ÐµÐ´ÑƒÑŽÑ‰Ð°Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ, возможно, поможет вам:" -#: apt-private/private-install.cc:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "ВнутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°, AutoRemover вÑÑ‘ поломал" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1308,7 +1334,7 @@ msgstr[1] "" msgstr[2] "" "Следующие пакеты уÑтанавливалиÑÑŒ автоматичеÑки и больше не требуютÑÑ:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1317,20 +1343,20 @@ msgstr[0] "%lu пакет был уÑтановлен автоматичеÑки msgstr[1] "%lu пакета было уÑтановлено автоматичеÑки и больше не требуетÑÑ.\n" msgstr[2] "%lu пакетов было уÑтановлены автоматичеÑки и больше не требуютÑÑ.\n" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Ð”Ð»Ñ ÐµÐ³Ð¾ ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ð¸Ñпользуйте «apt-get autoremove»." msgstr[1] "Ð”Ð»Ñ Ð¸Ñ… ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ð¸Ñпользуйте «apt-get autoremove»." msgstr[2] "Ð”Ð»Ñ Ð¸Ñ… ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ð¸Ñпользуйте «apt-get autoremove»." -#: apt-private/private-install.cc:624 +#: 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:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1338,7 +1364,7 @@ msgstr "" "Ðеудовлетворённые завиÑимоÑти. ПопытайтеÑÑŒ выполнить «apt-get -f install», " "не ÑƒÐºÐ°Ð·Ñ‹Ð²Ð°Ñ Ð¸Ð¼ÐµÐ½Ð¸ пакета, (или найдите другое решение)." -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1349,146 +1375,146 @@ msgstr "" "или же иÑпользуете неÑтабильную верÑию диÑтрибутива, где запрошенные вами\n" "пакеты ещё не Ñозданы или были удалены из Incoming." -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "Сломанные пакеты" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "Будут уÑтановлены Ñледующие дополнительные пакеты:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "Предлагаемые пакеты:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "Рекомендуемые пакеты:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "Ð’ÐИМÐÐИЕ: Следующие пакеты невозможно аутентифицировать!" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "Предупреждение об аутентификации не принÑто в внимание.\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "Ðекоторые пакеты невозможно аутентифицировать" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "УÑтановить Ñти пакеты без проверки?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Ðе удалоÑÑŒ получить %s %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [УÑтановлен]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [УÑтановлен]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [УÑтановлен]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [УÑтановлен]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "Пакеты, имеющие неудовлетворённые завиÑимоÑти:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "но %s уже уÑтановлен" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "но %s будет уÑтановлен" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "но он не может быть уÑтановлен" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "но Ñто виртуальный пакет" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "но он не уÑтановлен" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "но он не будет уÑтановлен" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " или" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "ÐОВЫЕ пакеты, которые будут уÑтановлены:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "Пакеты, которые будут УДÐЛЕÐЫ:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "Пакеты, которые будут оÑтавлены в неизменном виде:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "Пакеты, которые будут обновлены:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "Пакеты, будут заменены на более СТÐРЫЕ верÑии:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "" "Пакеты, которые должны были бы оÑтатьÑÑ Ð±ÐµÐ· изменений, но будут заменены:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (вÑледÑтвие %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1496,27 +1522,27 @@ msgstr "" "Ð’ÐИМÐÐИЕ: Ðти ÑущеÑтвенно важные пакеты будут удалены.\n" "ÐЕ ДЕЛÐЙТЕ Ñтого, еÑли вы ÐЕ предÑтавлÑете Ñебе вÑе возможные поÑледÑтвиÑ!" -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "обновлено %lu, уÑтановлено %lu новых пакетов, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "переуÑтановлено %lu переуÑтановлено, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu пакетов заменены на Ñтарые верÑии, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "Ð´Ð»Ñ ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ð¾Ñ‚Ð¼ÐµÑ‡ÐµÐ½Ð¾ %lu пакетов, и %lu пакетов не обновлено.\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "не уÑтановлено до конца или удалено %lu пакетов.\n" @@ -1525,7 +1551,7 @@ msgstr "не уÑтановлено до конца или удалено %lu п #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "[Д/н]" @@ -1533,94 +1559,94 @@ msgstr "[Д/н]" #. 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:702 +#: apt-private/private-output.cc:708 msgid "[y/N]" msgstr "" #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "д" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "н" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "Ошибка компилÑции регулÑрного Ð²Ñ‹Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ â€” %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "ИÑправление завиÑимоÑтей…" -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " не удалоÑÑŒ." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "Ðевозможно Ñкорректировать завиÑимоÑти" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "Ðевозможно минимизировать набор обновлений" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " Готово" -#: apt-private/private-cachefile.cc:102 +#: 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:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "Ðеудовлетворённые завиÑимоÑти. ПопытайтеÑÑŒ иÑпользовать -f." -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "Команде update не нужны аргументы" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "РаÑчёт обновлений…" -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "ВнутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°, AllUpgrade вÑÑ‘ поломал" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "Готово" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1632,43 +1658,43 @@ msgstr "" " Учтите, что блокировка не иÑпользуетÑÑ,\n" " поÑтому нет полного ÑоответÑÑ‚Ð²Ð¸Ñ Ñ Ñ‚ÐµÐºÑƒÑ‰ÐµÐ¹ реальной Ñитуацией!" -#: apt-private/private-sources.cc:45 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format msgid "Failed to parse %s. Edit again? " msgstr "Ðе удалоÑÑŒ переименовать %s в %s" -#: apt-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "Ð’ кÑше " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "Получено:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "Игн " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Ош " -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "Получено %sБ за %s (%sБ/c)\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [Обработка]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1681,19 +1707,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "Ðевозможно прочитать %s" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "Ðевозможно Ñменить текущий каталог на %s" @@ -1722,11 +1748,11 @@ msgstr "Ðевозможно прочитать файл на зеркале «% msgid "[Mirror: %s]" msgstr "[Зеркало: %s]" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 msgid "Failed to create IPC pipe to subprocess" msgstr "Ðе удалоÑÑŒ Ñоздать IPC-канал Ð´Ð»Ñ Ð¿Ð¾Ñ€Ð¾Ð¶Ð´Ñ‘Ð½Ð½Ð¾Ð³Ð¾ процеÑÑа" -#: methods/rsh.cc:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "Соединение закрыто преждевременно" @@ -1791,41 +1817,46 @@ msgstr "" " -c=? Читать указанный файл наÑтройки\n" " -o=? Задать значение произвольной наÑтройке, например, -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Ðевозможно получить атрибуты %s" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "Ðевозможно запиÑать в %s" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Ðевозможно определить верÑию debconf. Он уÑтановлен?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "СпиÑок раÑширений, допуÑтимых Ð´Ð»Ñ Ð¿Ð°ÐºÐµÑ‚Ð¾Ð², Ñлишком длинен" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "Ошибка обработки каталога %s" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "СпиÑок раÑширений иÑточников Ñлишком длинен" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "" "Ошибка запиÑи заголовка в полный перечень Ñодержимого пакетов (Contents)" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "ошибка обработки полного Ð¿ÐµÑ€ÐµÑ‡Ð½Ñ Ñодержимого пакетов (Contents) %s" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1911,26 +1942,26 @@ msgstr "" " -c=? ИÑпользовать указанный файл наÑтройки\n" " -o=? Задать значение произвольному параметру наÑтройки" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "Совпадений не обнаружено" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Ð’ группе пакетов «%s» отÑутÑтвуют некоторые файлы" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "БД была повреждена, файл переименован в %s.old" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "DB уÑтарела, попытка обновить %s" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -1938,193 +1969,193 @@ msgstr "" "Ðекорректный формат базы данных (DB). ЕÑли вы обновлÑли верÑию apt, удалите " "и Ñоздайте базу данных заново." -#: ftparchive/cachedb.cc:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Ðе удалоÑÑŒ открыть DB файл %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "Ðе удалоÑÑŒ получить атрибуты %s" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "Ð’ архиве нет Ð¿Ð¾Ð»Ñ control" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "Ðевозможно получить курÑор" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: Ðе удалоÑÑŒ прочитать каталог %s\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: Ðе удалоÑÑŒ прочитать атрибуты %s\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "E: Ошибки отноÑÑÑ‚ÑÑ Ðº файлу " -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "Ðе удалоÑÑŒ проÑледовать по ÑÑылке %s" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "Ðе удалоÑÑŒ Ñовершить обход дерева" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "Ðе удалоÑÑŒ открыть %s" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr "DeLink %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "Ðе удалоÑÑŒ прочеÑть ÑÑылку %s" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "Ðе удалоÑÑŒ удалить %s" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Ðе удалоÑÑŒ Ñоздать ÑÑылку %s на %s" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Превышен лимит в %sB в DeLink.\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "Ð’ архиве нет Ð¿Ð¾Ð»Ñ package" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " Ðет запиÑи о переназначении (override) Ð´Ð»Ñ %s\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " пакет %s Ñопровождает %s, а не %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr " Ðет запиÑи source override Ð´Ð»Ñ %s\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr " Ðет запиÑи binary override Ð´Ð»Ñ %s\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc — не удалоÑÑŒ выделить памÑть" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "Ðе удалоÑÑŒ открыть %s" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "ÐÐµÐ¿Ñ€Ð°Ð²Ð¸Ð»ÑŒÐ½Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ о переназначении (override) %s в Ñтроке %llu #1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "Ðе удалоÑÑŒ прочеÑть файл переназначений (override) %s" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, c-format msgid "Malformed override %s line %llu #1" msgstr "ÐÐµÐ¿Ñ€Ð°Ð²Ð¸Ð»ÑŒÐ½Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ о переназначении (override) %s в Ñтроке %llu #1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, c-format msgid "Malformed override %s line %llu #2" msgstr "ÐÐµÐ¿Ñ€Ð°Ð²Ð¸Ð»ÑŒÐ½Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ о переназначении (override) %s в Ñтроке %llu #2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, c-format msgid "Malformed override %s line %llu #3" msgstr "ÐÐµÐ¿Ñ€Ð°Ð²Ð¸Ð»ÑŒÐ½Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ о переназначении (override) %s в Ñтроке %llu #3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "ÐеизвеÑтный алгоритм ÑÐ¶Ð°Ñ‚Ð¸Ñ Â«%s»" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "" "Ð”Ð»Ñ Ð¿Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð¸Ñ Ñжатого вывода %s необходимо включить иÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ ÑжатиÑ" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "Ðе удалоÑÑŒ Ñоздать FILE*" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "Ðе удалоÑÑŒ запуÑтить порождённый процеÑÑ" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "ПроцеÑÑ-потомок, производÑщий Ñжатие" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "ВнутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°, не удалоÑÑŒ Ñоздать %s" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "Ошибка ввода/вывода в подпроцеÑÑ/файл" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "Ошибка Ñ‡Ñ‚ÐµÐ½Ð¸Ñ Ð²Ð¾ Ð²Ñ€ÐµÐ¼Ñ Ð²Ñ‹Ñ‡Ð¸ÑÐ»ÐµÐ½Ð¸Ñ MD5" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "Ðе удалоÑÑŒ удалить %s" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "Ðе удалоÑÑŒ переименовать %s в %s" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -2177,157 +2208,157 @@ msgstr "" " -c=? читать указанный файл наÑтройки\n" " -o=? Задать значение произвольной наÑтройке, например, -o dir::cache=/tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "Ðе удалоÑÑŒ Ñоздать каналы" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "Ðе удалоÑÑŒ выполнить gzip " -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "Повреждённый архив" -#: apt-inst/contrib/extracttar.cc:201 +#: apt-inst/contrib/extracttar.cc:203 msgid "Tar checksum failed, archive corrupted" msgstr "ÐÐµÐ¿Ñ€Ð°Ð²Ð¸Ð»ÑŒÐ½Ð°Ñ ÐºÐ¾Ð½Ñ‚Ñ€Ð¾Ð»ÑŒÐ½Ð°Ñ Ñумма Tar, архив повреждён" -#: apt-inst/contrib/extracttar.cc:306 +#: apt-inst/contrib/extracttar.cc:308 #, c-format msgid "Unknown TAR header type %u, member %s" msgstr "ÐеизвеÑтный заголовок в архиве TAR. Тип %u, Ñлемент %s" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "ÐÐµÐ²ÐµÑ€Ð½Ð°Ñ Ñигнатура архива" -#: apt-inst/contrib/arfile.cc:82 +#: apt-inst/contrib/arfile.cc:84 msgid "Error reading archive member header" msgstr "Ошибка Ñ‡Ñ‚ÐµÐ½Ð¸Ñ Ð·Ð°Ð³Ð¾Ð»Ð¾Ð²ÐºÐ° Ñлемента архива" -#: apt-inst/contrib/arfile.cc:94 +#: apt-inst/contrib/arfile.cc:96 #, c-format msgid "Invalid archive member header %s" msgstr "Ðеправильный заголовок Ñлемента архива %s" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "Ðеправильный заголовок Ñлемента архива" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "Слишком короткий архив" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "Ðе удалоÑÑŒ прочитать заголовки архива" -#: apt-inst/filelist.cc:382 +#: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" msgstr "DropNode вызван Ð´Ð»Ñ ÑƒÐ·Ð»Ð°, который ещё иÑпользуетÑÑ" -#: apt-inst/filelist.cc:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "Ðе удалоÑÑŒ найти Ñлемент хеша!" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "Ðе удалоÑÑŒ Ñоздать diversion" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "ВнутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ° в AddDiversion" -#: apt-inst/filelist.cc:479 +#: apt-inst/filelist.cc:477 #, c-format msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" msgstr "Попытка Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ diversion, %s -> %s и %s/%s" -#: apt-inst/filelist.cc:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "Двойное добавление diversion %s -> %s" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "Повторно указан файл наÑтройки %s/%s" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: 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:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "Ðе удалоÑÑŒ закрыть файл %s" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: 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:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "ÐŸÐ¾Ð²Ñ‚Ð¾Ñ€Ð½Ð°Ñ Ñ€Ð°Ñпаковка %s" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "Каталог %s входит в ÑпиÑок diverted" -#: apt-inst/extract.cc:145 +#: apt-inst/extract.cc:152 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "Пакет пытаетÑÑ Ð¿Ð¸Ñать в diversion %s/%s" -#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 msgid "The diversion path is too long" msgstr "Путь diversion Ñлишком длинен" -#: apt-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "Каталог %s был заменён не-каталогом" -#: apt-inst/extract.cc:282 +#: apt-inst/extract.cc:289 msgid "Failed to locate node in its hash bucket" msgstr "Ðе удалоÑÑŒ размеÑтить узел в хеше" -#: apt-inst/extract.cc:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "Путь Ñлишком длинен" -#: apt-inst/extract.cc:414 +#: apt-inst/extract.cc:421 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Файлы заменÑÑŽÑ‚ÑÑ Ñодержимым пакета %s без верÑии" -#: apt-inst/extract.cc:431 +#: 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:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "Ðевозможно получить атрибуты %s" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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:124 +#: apt-inst/deb/debfile.cc:132 #, c-format msgid "Internal error, could not locate member %s" msgstr "ВнутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°, не удалоÑÑŒ найти ÑоÑтавную чаÑть %s" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "Ðе удалоÑÑŒ прочеÑть Ñодержимое control-файла" @@ -2387,213 +2418,208 @@ msgstr "" "отключено пользователем." #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "%liд %liч %liмин %liÑ" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "%liч %liмин %liÑ" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "%liмин %liÑ" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "%liÑ" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "Ðе найдено: %s" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "ÐеизвеÑÑ‚Ð½Ð°Ñ Ð°Ð±Ð±Ñ€ÐµÐ²Ð¸Ð°Ñ‚ÑƒÑ€Ð° типа: «%c»" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "Открытие файла наÑтройки %s" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "СинтакÑичеÑÐºÐ°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ° %s:%u: в начале блока нет имени." -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "СинтакÑичеÑÐºÐ°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ° %s:%u: иÑкажённый тег" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "СинтакÑичеÑÐºÐ°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ° %s:%u: лишние Ñимволы поÑле значениÑ" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "СинтакÑичеÑÐºÐ°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ° %s:%u: директивы могут задаватьÑÑ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ на верхнем " "уровне" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "СинтакÑичеÑÐºÐ°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ° %s:%u: Ñлишком много вложенных include" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "СинтакÑичеÑÐºÐ°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ° %s:%u вызвана include из Ñтого меÑта" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "СинтакÑичеÑÐºÐ°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ° %s:%u: не Ð¿Ð¾Ð´Ð´ÐµÑ€Ð¶Ð¸Ð²Ð°ÐµÐ¼Ð°Ñ Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¸Ð²Ð° «%s»" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-pkg/contrib/configuration.cc:900 #, c-format msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" "СинтакÑичеÑÐºÐ°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ° %s:%u: Ð´Ð»Ñ Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¸Ð²Ñ‹ clear требуетÑÑ Ñ‚Ñ€ÐµÑ‚Ð¸Ð¹ параметр в " "качеÑтве аргумента" -#: apt-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "СинтакÑичеÑÐºÐ°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ° %s:%u: лишние Ñимволы в конце файла" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s… Ошибка!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s… Готово" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "…" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, c-format msgid "%c%s... %u%%" msgstr "%c%s… %u%%" -#: apt-pkg/contrib/cmndline.cc:116 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format msgid "Command line option '%c' [from %s] is not known." msgstr "ÐеизвеÑтный параметр командной Ñтроки «%c» [из %s]." -#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format msgid "Command line option %s is not boolean" msgstr "Параметр командной Ñтроки %s — не логичеÑкий переключатель \"да/нет\"" -#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "Ð”Ð»Ñ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ð° %s требуетÑÑ Ð°Ñ€Ð³ÑƒÐ¼ÐµÐ½Ñ‚." -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "Значение параметра %s должно иметь вид =<val>." -#: apt-pkg/contrib/cmndline.cc:273 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format msgid "Option %s requires an integer argument, not '%s'" msgstr "Ð”Ð»Ñ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ð° %s требуетÑÑ Ð°Ñ€Ð³ÑƒÐ¼ÐµÐ½Ñ‚ в виде целого чиÑла, а не «%s»" -#: apt-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "Параметр «%s» Ñлишком длинный" -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "СмыÑл %s не ÑÑен, иÑпользуйте true или false." -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "ÐÐµÐ²ÐµÑ€Ð½Ð°Ñ Ð¾Ð¿ÐµÑ€Ð°Ñ†Ð¸Ñ %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format msgid "Unable to stat the mount point %s" msgstr "Ðевозможно прочитать атрибуты точки Ð¼Ð¾Ð½Ñ‚Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ %s" -#: apt-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "Ðевозможно получить атрибуты cdrom" -#: apt-pkg/contrib/fileutl.cc:95 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Проблема Ð·Ð°ÐºÑ€Ñ‹Ñ‚Ð¸Ñ gzip-файла %s" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "" "Блокировка не иÑпользуетÑÑ, так как файл блокировки %s доÑтупен только Ð´Ð»Ñ " "чтениÑ" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "Ðе удалоÑÑŒ открыть файл блокировки %s" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "" "Блокировка не иÑпользуетÑÑ, так как файл блокировки %s находитÑÑ Ð½Ð° файловой " "ÑиÑтеме nfs" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "Ðе удалоÑÑŒ получить доÑтуп к файлу блокировки %s" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "СпиÑок файлов не может быть Ñоздан, так как «%s» не ÑвлÑетÑÑ ÐºÐ°Ñ‚Ð°Ð»Ð¾Ð³Ð¾Ð¼" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "Файл «%s» в каталоге «%s» игнорируетÑÑ, так как Ñто необычный файл" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "Файл «%s» в каталоге «%s» игнорируетÑÑ, так как он не имеет раÑширениÑ" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" @@ -2601,283 +2627,293 @@ msgstr "" "Файл «%s» в каталоге «%s» игнорируетÑÑ, так как он не имеет неправильное " "раÑширение" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "" "Ðарушение защиты памÑти (segmentation fault) в порождённом процеÑÑе %s." -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, c-format msgid "Sub-process %s received signal %u." msgstr "Порождённый процеÑÑ %s получил Ñигнал %u." -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 apt-pkg/contrib/gpgv.cc:239 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Порождённый процеÑÑ %s вернул код ошибки (%u)" -#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Порождённый процеÑÑ %s неожиданно завершилÑÑ" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Проблема Ð·Ð°ÐºÑ€Ñ‹Ñ‚Ð¸Ñ gzip-файла %s" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "Ðе удалоÑÑŒ открыть файл %s" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, c-format msgid "Could not open file descriptor %d" msgstr "Ðе удалоÑÑŒ открыть файловый деÑкриптор %d" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "Ðе удалоÑÑŒ Ñоздать IPC Ñ Ð¿Ð¾Ñ€Ð¾Ð¶Ð´Ñ‘Ð½Ð½Ñ‹Ð¼ процеÑÑом" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "Ðе удалоÑÑŒ выполнить компреÑÑор " -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, c-format msgid "read, still have %llu to read but none left" msgstr "" "ошибка при чтении; ÑобиралиÑÑŒ прочеÑть ещё %llu байт, но ничего больше нет" -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, c-format msgid "write, still have %llu to write but couldn't" msgstr "ошибка при запиÑи; ÑобиралиÑÑŒ запиÑать ещё %llu байт, но не Ñмогли" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, c-format msgid "Problem closing the file %s" msgstr "Проблема Ð·Ð°ÐºÑ€Ñ‹Ñ‚Ð¸Ñ Ñ„Ð°Ð¹Ð»Ð° %s" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, c-format msgid "Problem renaming the file %s to %s" msgstr "Проблема при переименовании файла %s в %s" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, c-format msgid "Problem unlinking the file %s" msgstr "Проблема при удалении файла %s" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "Проблема при Ñинхронизации файла" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "переименовать не удалоÑÑŒ, %s (%s -> %s)." + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, c-format msgid "No keyring installed in %s." msgstr "СвÑзка ключей в %s не уÑтановлена." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "КÑш пакетов пуÑÑ‚" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "КÑш пакетов повреждён" -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "Ðе Ð¿Ð¾Ð´Ð´ÐµÑ€Ð¶Ð¸Ð²Ð°ÐµÐ¼Ð°Ñ Ð²ÐµÑ€ÑÐ¸Ñ ÐºÑша пакетов" -#: apt-pkg/pkgcache.cc:162 +#: apt-pkg/pkgcache.cc:169 msgid "The package cache file is corrupted, it is too small" msgstr "КÑш пакетов повреждён, он Ñлишком мал" -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "Ðта верÑÐ¸Ñ APT не поддерживает ÑиÑтему верÑий «%s»" -#: apt-pkg/pkgcache.cc:172 +#: apt-pkg/pkgcache.cc:179 msgid "The package cache was built for a different architecture" msgstr "КÑш пакетов был Ñобран Ð´Ð»Ñ Ð´Ñ€ÑƒÐ³Ð¾Ð¹ архитектуры" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "ЗавиÑит" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "ПредЗавиÑит" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "Предлагает" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "Рекомендует" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "Конфликтует" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "ЗаменÑет" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "Замещает" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "Ломает" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "Улучшает" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "важный" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "необходимый" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "Ñтандартный" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "необÑзательный" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "дополнительный" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "ПоÑтроение дерева завиÑимоÑтей" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "ВерÑии-кандидаты" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "Генерирование завиÑимоÑтей" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 msgid "Reading state information" msgstr "Чтение информации о ÑоÑтоÑнии" -#: apt-pkg/depcache.cc:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "Ðе удалоÑÑŒ открыть StateFile %s" -#: apt-pkg/depcache.cc:250 +#: apt-pkg/depcache.cc:256 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Ðе удалоÑÑŒ запиÑать временный StateFile %s" -#: apt-pkg/tagfile.cc:138 +#: apt-pkg/tagfile.cc:140 #, c-format msgid "Unable to parse package file %s (1)" msgstr "Ðевозможно разобрать Ñодержимое пакета %s (1)" -#: apt-pkg/tagfile.cc:235 +#: apt-pkg/tagfile.cc:237 #, c-format msgid "Unable to parse package file %s (2)" msgstr "Ðевозможно разобрать Ñодержимое пакета %s (2)" -#: apt-pkg/sourcelist.cc:118 +#: apt-pkg/sourcelist.cc:127 #, fuzzy, c-format msgid "Malformed stanza %u in source list %s (URI parse)" msgstr "ИÑÐºÐ°Ð¶Ñ‘Ð½Ð½Ð°Ñ Ñтрока %lu в ÑпиÑке иÑточников %s (анализ URI)" -#: apt-pkg/sourcelist.cc:161 +#: apt-pkg/sourcelist.cc:170 #, c-format msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "ИÑÐºÐ°Ð¶Ñ‘Ð½Ð½Ð°Ñ Ñтрока %lu в ÑпиÑке иÑточников %s ([параметр] неразбираем)" -#: apt-pkg/sourcelist.cc:164 +#: apt-pkg/sourcelist.cc:173 #, c-format msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "" "ИÑÐºÐ°Ð¶Ñ‘Ð½Ð½Ð°Ñ Ñтрока %lu в ÑпиÑке иÑточников %s ([параметр] Ñлишком короткий)" -#: apt-pkg/sourcelist.cc:175 +#: 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-pkg/sourcelist.cc:181 +#: apt-pkg/sourcelist.cc:190 #, c-format msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "ИÑÐºÐ°Ð¶Ñ‘Ð½Ð½Ð°Ñ Ñтрока %lu в ÑпиÑке иÑточников %s ([%s] не имеет ключа)" -#: apt-pkg/sourcelist.cc:184 +#: 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-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "ИÑÐºÐ°Ð¶Ñ‘Ð½Ð½Ð°Ñ Ñтрока %lu в ÑпиÑке иÑточников %s (проблема в URI)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "" "ИÑÐºÐ°Ð¶Ñ‘Ð½Ð½Ð°Ñ Ñтрока %lu в ÑпиÑке иÑточников %s (проблема в имени диÑтрибутива)" -#: apt-pkg/sourcelist.cc:202 +#: apt-pkg/sourcelist.cc:211 #, c-format msgid "Malformed line %lu in source list %s (URI parse)" msgstr "ИÑÐºÐ°Ð¶Ñ‘Ð½Ð½Ð°Ñ Ñтрока %lu в ÑпиÑке иÑточников %s (анализ URI)" -#: apt-pkg/sourcelist.cc:208 +#: apt-pkg/sourcelist.cc:217 #, c-format msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "ИÑÐºÐ°Ð¶Ñ‘Ð½Ð½Ð°Ñ Ñтрока %lu в ÑпиÑке иÑточников %s (absolute dist)" -#: apt-pkg/sourcelist.cc:215 +#: apt-pkg/sourcelist.cc:224 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" msgstr "ИÑÐºÐ°Ð¶Ñ‘Ð½Ð½Ð°Ñ Ñтрока %lu в ÑпиÑке иÑточников %s (dist parse)" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "Открытие %s" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "Строка %u в ÑпиÑке иÑточников %s Ñлишком длинна." -#: apt-pkg/sourcelist.cc:362 +#: apt-pkg/sourcelist.cc:371 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "ИÑÐºÐ°Ð¶Ñ‘Ð½Ð½Ð°Ñ Ñтрока %u в ÑпиÑке иÑточников %s (тип)" -#: apt-pkg/sourcelist.cc:366 +#: apt-pkg/sourcelist.cc:375 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "ÐеизвеÑтный тип «%s» в Ñтроке %u в ÑпиÑке иÑточников %s" -#: apt-pkg/sourcelist.cc:407 +#: 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/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2886,12 +2922,12 @@ msgstr "" "Ðе удалоÑÑŒ выполнить оперативную наÑтройку «%s». Подробней, Ñмотрите в man 5 " "apt.conf о APT::Immediate-Configure. (%d)" -#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, c-format msgid "Could not configure '%s'. " msgstr "Ðе удалоÑÑŒ наÑтроить «%s»." -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2904,19 +2940,19 @@ msgstr "" "ЕÑли вы дейÑтвительно хотите продолжить, уÑтановите параметр APT::Force-" "LoopBreak." -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "Ðе поддерживаетÑÑ Ð¸Ð½Ð´ÐµÐºÑный файл типа «%s»" -#: apt-pkg/algorithms.cc:266 +#: 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:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2924,88 +2960,88 @@ msgstr "" "Ошибка, pkgProblemResolver::Resolve Ñгенерировал повреждённые пакеты. Ðто " "может быть вызвано отложенными (held) пакетами." -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "Ðевозможно иÑправить ошибки, у Ð²Ð°Ñ Ð¾Ñ‚Ð»Ð¾Ð¶ÐµÐ½Ñ‹ (held) битые пакеты." -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, c-format msgid "List directory %spartial is missing." msgstr "Каталог ÑпиÑка %spartial отÑутÑтвует." -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, c-format msgid "Archives directory %spartial is missing." msgstr "Ðрхивный каталог %spartial отÑутÑтвует." -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, c-format msgid "Unable to lock directory %s" msgstr "Ðевозможно заблокировать каталог %s" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "СкачиваетÑÑ Ñ„Ð°Ð¹Ð» %li из %li (оÑталоÑÑŒ %s)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "СкачиваетÑÑ Ñ„Ð°Ð¹Ð» %li из %li" -#: apt-pkg/acquire-worker.cc:113 +#: apt-pkg/acquire-worker.cc:116 #, c-format msgid "The method driver %s could not be found." msgstr "Драйвер Ð´Ð»Ñ Ð¼ÐµÑ‚Ð¾Ð´Ð° %s не найден." -#: apt-pkg/acquire-worker.cc:115 +#: apt-pkg/acquire-worker.cc:118 #, fuzzy, c-format msgid "Is the package %s installed?" msgstr "Проверьте, уÑтановлен ли пакет «dpkg-dev».\n" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "Метод %s запуÑтилÑÑ Ð½Ðµ корректно" -#: apt-pkg/acquire-worker.cc:452 +#: apt-pkg/acquire-worker.cc:455 #, c-format msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "Ð’Ñтавьте диÑк Ñ Ð¼ÐµÑ‚ÐºÐ¾Ð¹ «%s» в уÑтройÑтво «%s» и нажмите ввод." -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "СиÑтема Ð¿Ð°ÐºÐµÑ‚Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Â«%s» не поддерживаетÑÑ" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "Ðевозможно определить подходÑщий тип ÑиÑтемы пакетированиÑ" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "Ðевозможно получить атрибуты %s." -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "Ð’Ñ‹ должны заполнить sources.list, помеÑтив туда URI иÑточников пакетов" -#: apt-pkg/cachefile.cc:87 +#: apt-pkg/cachefile.cc:94 msgid "The package lists or status file could not be parsed or opened." msgstr "СпиÑки пакетов или файл ÑоÑтоÑÐ½Ð¸Ñ Ð½Ðµ могут быть открыты или прочитаны." -#: apt-pkg/cachefile.cc:91 +#: 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:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "Ðе читаетÑÑ Ð¿ÐµÑ€ÐµÑ‡ÐµÐ½ÑŒ иÑточников." -#: apt-pkg/policy.cc:75 +#: apt-pkg/policy.cc:83 #, c-format msgid "" "The value '%s' is invalid for APT::Default-Release as such a release is not " @@ -3014,103 +3050,98 @@ msgstr "" "Значение «%s» недопуÑтимо Ð´Ð»Ñ APT::Default-Release, так как выпуÑк " "недоÑтупен в иÑточниках" -#: apt-pkg/policy.cc:414 +#: 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:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "ÐеизвеÑтный тип фикÑации %s" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "Ð”Ð»Ñ Ñ„Ð¸ÐºÑации не указан приоритет (или указан нулевой)" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 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:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Произошла ошибка во Ð²Ñ€ÐµÐ¼Ñ Ð¾Ð±Ñ€Ð°Ð±Ð¾Ñ‚ÐºÐ¸ %s (%s%d)" -#: apt-pkg/pkgcachegen.cc:251 +#: apt-pkg/pkgcachegen.cc:257 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "Превышено допуÑтимое количеÑтво имён пакетов, которое ÑпоÑобен обработать " "APT." -#: apt-pkg/pkgcachegen.cc:254 +#: apt-pkg/pkgcachegen.cc:260 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" "Превышено допуÑтимое количеÑтво верÑий, которое ÑпоÑобен обработать APT." -#: apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:263 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" "Превышено допуÑтимое количеÑтво опиÑаний, которое ÑпоÑобен обработать APT." -#: apt-pkg/pkgcachegen.cc:260 +#: apt-pkg/pkgcachegen.cc:266 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" "Превышено допуÑтимое количеÑтво завиÑимоÑтей, которое ÑпоÑобен обработать " "APT." -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:576 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Во Ð²Ñ€ÐµÐ¼Ñ Ð¾Ð±Ñ€Ð°Ð±Ð¾Ñ‚ÐºÐ¸ файла завиÑимоÑтей не найден пакет %s %s" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "Ðе удалоÑÑŒ получить атрибуты ÑпиÑка пакетов иÑходного кода %s" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "Сбор информации о Provides" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 msgid "IO Error saving source cache" msgstr "Ошибка ввода/вывода при попытке Ñохранить кÑш иÑточников" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "переименовать не удалоÑÑŒ, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "Хеш Ñумма не Ñовпадает" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "Ðе Ñовпадает размер" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "ÐÐµÐ²ÐµÑ€Ð½Ð°Ñ Ð¾Ð¿ÐµÑ€Ð°Ñ†Ð¸Ñ %s" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, c-format msgid "" "Unable to find expected entry '%s' in Release file (Wrong sources.list entry " @@ -3119,16 +3150,16 @@ msgstr "" "Ðевозможно найти ожидаемый Ñлемент «%s» в файле Release (Ð½ÐµÐºÐ¾Ñ€Ñ€ÐµÐºÑ‚Ð½Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ " "в sources.list или файл)" -#: apt-pkg/acquire-item.cc:1586 +#: apt-pkg/acquire-item.cc:1595 #, c-format msgid "Unable to find hash sum for '%s' in Release file" msgstr "Ðевозможно найти хеш-Ñумму «%s» в файле Release" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "ÐедоÑтупен открытый ключ Ð´Ð»Ñ Ñледующих ID ключей:\n" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " @@ -3137,12 +3168,12 @@ msgstr "" "Файл Release Ð´Ð»Ñ %s проÑрочен (недоÑтоверный Ð½Ð°Ñ‡Ð¸Ð½Ð°Ñ Ñ %s). Обновление Ñтого " "Ñ€ÐµÐ¿Ð¾Ð·Ð¸Ñ‚Ð¾Ñ€Ð¸Ñ Ð¿Ñ€Ð¾Ð¸Ð·Ð²Ð¾Ð´Ð¸Ñ‚ÑŒÑÑ Ð½Ðµ будет." -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Конфликт раÑпроÑтранениÑ: %s (ожидалÑÑ %s, но получен %s)" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3152,12 +3183,12 @@ msgstr "" "иÑпользованы предыдущие индекÑные файлы. Ошибка GPG: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "Ошибка GPG: %s: %s" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3166,82 +3197,78 @@ msgstr "" "Ðе удалоÑÑŒ обнаружить файл пакета %s. Ðто может означать, что вам придётÑÑ " "вручную иÑправить Ñтот пакет (возможно, пропущен arch)" -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "Ðевозможно найти иÑточник Ð´Ð»Ñ Ð·Ð°Ð³Ñ€ÑƒÐ·ÐºÐ¸ «%2$s» верÑии «%1$s»" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "Ðекорректный перечень пакетов. Ðет Ð¿Ð¾Ð»Ñ Filename: Ð´Ð»Ñ Ð¿Ð°ÐºÐµÑ‚Ð° %s." -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, c-format msgid "Unable to parse Release file %s" msgstr "Ðевозможно разобрать Ñодержимое файла Release (%s)" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, c-format msgid "No sections in Release file %s" msgstr "ОтÑутÑтвуют разделы в файле Release (%s)" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "ОтÑутÑтвуют Ñлементы Hash в файле Release (%s)" -#: apt-pkg/indexrecords.cc:125 +#: apt-pkg/indexrecords.cc:130 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Ðеправильный Ñлемент «Valid-Until» в файле Release %s" -#: apt-pkg/indexrecords.cc:144 +#: apt-pkg/indexrecords.cc:149 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Ðеправильный Ñлемент «Date» в файле Release %s" -#: apt-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "Блок поÑтавщика %s не Ñодержит отпечатка (fingerprint)" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "ИÑпользование %s в качеÑтве точки Ð¼Ð¾Ð½Ñ‚Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ CD-ROM\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "Размонтирование CD-ROM\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "Размонтирование CD-ROM…\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "Ожидание операции работы Ñ Ð´Ð¸Ñком…\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "Монтирование CD-ROM…\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " -msgstr "ИдентификациÑ.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " +msgstr "ИдентификациÑ... " -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "Ðайдена метка: %s \n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "Размонтирование CD-ROM…\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" -msgstr "ПоиÑк на диÑке индекÑных файлов..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" +msgstr "ПоиÑк на диÑке индекÑных файлов...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3250,7 +3277,7 @@ msgstr "" "Ðайдено индекÑов: %zu Ð´Ð»Ñ Ð¿Ð°ÐºÐµÑ‚Ð¾Ð², %zu Ð´Ð»Ñ Ð¸Ñточников, %zu Ð´Ð»Ñ Ð¿ÐµÑ€ÐµÐ²Ð¾Ð´Ð¾Ð² и " "%zu Ð´Ð»Ñ Ñигнатур\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" @@ -3258,16 +3285,16 @@ msgstr "" "Ðе удалоÑÑŒ найти ни одного файла пакетов; возможно Ñто не диÑк Debian или Ñ " "не той архитектурой?" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "Ðайден Ñрлык «%s»\n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "Ðто неправильное имÑ, попробуйте ещё раз.\n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3276,34 +3303,34 @@ msgstr "" "Ðазвание диÑка: \n" "«%s»\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "Копирование ÑпиÑков пакетов…" -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "ЗапиÑÑŒ нового ÑпиÑка иÑточников\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "ЗапиÑи в ÑпиÑке иÑточников Ð´Ð»Ñ Ñтого диÑка:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: 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:777 +#: 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:780 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Сохранено %i запиÑей Ñ %i неÑовпадающими файлами\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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 "" @@ -3320,38 +3347,38 @@ msgstr "Ðе удалоÑÑŒ найти аутентификационную за msgid "Hash mismatch for: %s" msgstr "Ðе Ñовпадает хеш Ñумма длÑ: %s" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "ВыпуÑк «%s» Ð´Ð»Ñ Â«%s» не найден" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "ВерÑÐ¸Ñ Â«%s» Ð´Ð»Ñ Â«%s» не найдена" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, c-format msgid "Couldn't find task '%s'" msgstr "Ðе удалоÑÑŒ найти задачу «%s»" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, c-format msgid "Couldn't find any package by regex '%s'" msgstr "Ðе удалоÑÑŒ найти пакет по регулÑрному выражению «%s»" -#: apt-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "Ðе удалоÑÑŒ найти пакет по регулÑрному выражению «%s»" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, c-format msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" "Ðе удалоÑÑŒ выбрать верÑии из пакета «%s», так как он полноÑтью виртуальный" -#: apt-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " @@ -3360,57 +3387,57 @@ msgstr "" "Ðе удалоÑÑŒ выбрать ни уÑтановленную, ни верÑию кандидата из пакета «%s», так " "как в нём нет ни той, ни другой" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, c-format msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" "Ðе удалоÑÑŒ выбрать Ñамую новую верÑию из пакета «%s», так как он полноÑтью " "виртуальный" -#: apt-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" "Ðе удалоÑÑŒ выбрать Ñамую верÑию кандидата из пакета %s, так как у него нет " "кандидатов" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "" "Ðе удалоÑÑŒ выбрать уÑтановленную верÑию из пакета %s, так как он не " "уÑтановлен" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "Отправка ÑÑ†ÐµÐ½Ð°Ñ€Ð¸Ñ Ñ€ÐµÑˆÐ°Ñ‚ÐµÐ»ÑŽ" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "Отправка запроÑа решателю" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "Подготовка к приёму решениÑ" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "Внешний решатель завершилÑÑ Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ¾Ð¹ не передав ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð¾Ð± ошибке" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "ЗапуÑтить внешний решатель" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "ЗапуÑкаетÑÑ dpkg" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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." @@ -3418,118 +3445,118 @@ msgstr "" "Ðекоторые индекÑные файлы не ÑкачалиÑÑŒ. Они были проигнорированы или вмеÑто " "них были иÑпользованы Ñтарые верÑии." -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "УÑтанавливаетÑÑ %s" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "ÐаÑтраиваетÑÑ %s" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "УдалÑетÑÑ %s" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format msgid "Completely removing %s" msgstr "ВыполнÑетÑÑ Ð¿Ð¾Ð»Ð½Ð¾Ðµ удаление %s" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "Уведомление об иÑчезновении %s" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "ВыполнÑетÑÑ Ð¿Ð¾ÑлеуÑтановочный триггер %s" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "ОтÑутÑтвует каталог «%s»" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format msgid "Could not open file '%s'" msgstr "Ðе удалоÑÑŒ открыть файл «%s»" -#: apt-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "ПодготавливаетÑÑ %s" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "РаÑпаковываетÑÑ %s" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "ПодготавливаетÑÑ Ð´Ð»Ñ Ð½Ð°Ñтройки %s" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "УÑтановлен %s" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "ПодготавливаетÑÑ Ð´Ð»Ñ ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ %s" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "Удалён %s" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "Подготовка к полному удалению %s" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "%s полноÑтью удалён" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "Ðевозможно запиÑать в %s" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "ДейÑтвие прервано до его завершениÑ" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 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:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "проблемы Ñ Ð·Ð°Ð²Ð¸ÑимоÑÑ‚Ñми — оÑтавлÑем ненаÑтроенным" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3537,7 +3564,7 @@ msgstr "" "Отчёты apport не запиÑаны, так как Ñообщение об ошибке указывает на " "повторную ошибку от предыдущего отказа." -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" @@ -3545,7 +3572,7 @@ msgstr "" "Отчёты apport не запиÑаны, так как получено Ñообщение об ошибке о нехватке " "меÑта на диÑке" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3553,7 +3580,7 @@ msgstr "" "Отчёты apport не запиÑаны, так как получено Ñообщение об ошибке о нехватке " "памÑти" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 #, fuzzy msgid "" "No apport report written because the error message indicates an issue on the " @@ -3562,14 +3589,14 @@ msgstr "" "Отчёты apport не запиÑаны, так как получено Ñообщение об ошибке о нехватке " "меÑта на диÑке" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" "Отчёты apport не запиÑаны, так как получено Ñообщение об ошибке об ошибке " "ввода-выводы dpkg" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " @@ -3578,7 +3605,7 @@ msgstr "" "Ðе удалоÑÑŒ выполнить блокировку управлÑющего каталога (%s); он уже " "иÑпользуетÑÑ Ð´Ñ€ÑƒÐ³Ð¸Ð¼ процеÑÑом?" -#: apt-pkg/deb/debsystem.cc:87 +#: apt-pkg/deb/debsystem.cc:94 #, c-format msgid "Unable to lock the administration directory (%s), are you root?" msgstr "" @@ -3587,7 +3614,7 @@ msgstr "" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " @@ -3595,7 +3622,7 @@ msgstr "" "Работа dpkg прервана, вы должны вручную запуÑтить «%s» Ð´Ð»Ñ ÑƒÑÑ‚Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ " "проблемы. " -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "Ðе заблокирован" @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2012-06-28 20:49+0100\n" "Last-Translator: Ivan Masár <helix84@centrum.sk>\n" "Language-Team: Slovak <sk-i18n@lists.linux.sk>\n" @@ -20,154 +20,155 @@ 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:140 +#: cmdline/apt-cache.cc:149 #, c-format msgid "Package %s version %s has an unmet dep:\n" msgstr "BalÃk %s verzie %s má nesplnené závislosti:\n" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "Celkom názvov balÃkov: " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 msgid "Total package structures: " msgstr "Celkom Å¡truktúr balÃkov: " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " Normálnych balÃkov: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " ÄŒisto virtuálnych balÃkov: " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " Jednoduchých virtuálnych balÃkov: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " ZmieÅ¡aných virtuálnych balÃkov: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " Chýbajúcich: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "Celkom rôznych verziÃ: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "Celkom rôznych popisov: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "Celkom závislostÃ: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "Celkom vzÅ¥ahov ver/súbor: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "Celkom vzÅ¥ahov popis/súbor: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "Celkom poskytnutých mapovanÃ: " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "Celkom globovaných reÅ¥azcov: " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "Celkom miesta závislých verziÃ: " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "Celkom jalového miesta: " -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "Celkom priradeného miesta: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: 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." -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 msgid "You must give at least one search pattern" msgstr "MusÃte zadaÅ¥ aspoň jeden vyhľadávacà vzor" -#: cmdline/apt-cache.cc:1411 +#: 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“." -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "Nedá sa nájsÅ¥ balÃk %s" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "Súbory balÃka:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: 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" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "Pripevnené balÃky:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(nenájdené)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " NainÅ¡talovaná verzia: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " Kandidát: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(žiadna)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " Pripevnený balÃk:" #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " Tabuľka verziÃ:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s pre %s skompilovaný %s %s\n" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] showpkg pkg1 [pkg2 ...]\n" @@ -238,28 +239,28 @@ msgstr "" "ÄŽ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:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: 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:104 +#: 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" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, c-format msgid "Failed to mount '%s' to '%s'" msgstr "Pripojenie „%s“ na „%s“ zlyhalo" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Zopakujte tento postup pre vÅ¡etky CD v sade diskov." @@ -295,47 +296,47 @@ msgstr "" " -c=? NaÄÃta tento konfiguraÄný súbor\n" " -o=? Nastavà ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:244 +#: 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:326 +#: 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:329 +#: 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“" -#: cmdline/apt-get.cc:366 +#: 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" -#: cmdline/apt-get.cc:422 +#: 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“" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "BalÃk %s sa nedá nájsÅ¥" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "%s je oznaÄený ako manuálne nainÅ¡talovaný.\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: 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" -#: cmdline/apt-get.cc:468 cmdline/apt-mark.cc:116 +#: 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." @@ -343,19 +344,19 @@ msgstr "" "Tento prÃkaz je zavrhovaný. ProsÃm, použite namiesto neho „apt-mark auto“ a " "„apt-mark manual“." -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: 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" -#: cmdline/apt-get.cc:573 cmdline/apt-get.cc:610 +#: 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:725 +#: 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" -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "Nedá sa nájsÅ¥ zdrojový balÃk pre %s" @@ -382,80 +383,80 @@ msgstr "" "ak chcete zÃskaÅ¥ najnovÅ¡ie (a pravdepodobne zatiaľ nevydané) aktualizácie " "balÃka.\n" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Preskakuje sa už stiahnutý súbor „%s“\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "Na %s sa nedá zistiÅ¥ veľkosÅ¥ voľného miesta" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "Na %s nemáte dostatok voľného miesta" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Je potrebné stiahnuÅ¥ %sB/%sB zdrojových archÃvov.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Je potrebné stiahnuÅ¥ %sB zdrojových archÃvov.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "StiahnuÅ¥ zdroj %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "Zlyhalo stiahnutie niektorých archÃvov." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "SÅ¥ahovanie ukonÄené v režime „iba stiahnuť“" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, 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:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "PrÃkaz na rozbalenie „%s“ zlyhal.\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Skontrolujte, Äi je nainÅ¡talovaný balÃk „dpkg-dev“.\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "PrÃkaz na zostavenie „%s“ zlyhal.\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "Proces potomka zlyhal" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "" "MusÃte zadaÅ¥ aspoň jeden balÃk, pre ktorý sa budú overovaÅ¥ závislosti na " "zostavenie" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -464,17 +465,17 @@ msgstr "" "Informácie o architektúre nie sú dostupné pre %s. Informácie o nastavenà " "nájdete v apt.conf(5) APT::Architectures" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Nedajú sa zÃskaÅ¥ závislosti na zostavenie %s" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s nemá žiadne závislosti na zostavenie.\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -483,20 +484,20 @@ msgstr "" "%s závislosÅ¥ pre %s nemožno splniÅ¥, pretože %s nie je povolené na balÃkoch " "„%s“" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, 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:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Zlyhalo splnenie %s závislosti pre %s: InÅ¡talovaný balÃk %s je prÃliÅ¡ nový" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -505,7 +506,7 @@ msgstr "" "%s závislosÅ¥ pre %s nemožno splniÅ¥, pretože kandidátska verzia balÃka %s, " "nedokáže splniÅ¥ požiadavky na verziu" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -513,30 +514,30 @@ msgid "" msgstr "" "%s závislosÅ¥ pre %s nemožno splniÅ¥, pretože balÃk %s nemá kandidátsku verziu" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Zlyhalo splnenie %s závislosti pre %s: %s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Závislosti na zostavenie %s nemožno splniÅ¥." -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "Spracovanie závislostà na zostavenie zlyhalo" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, c-format msgid "Changelog for %s (%s)" msgstr "Záznam zmien %s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "Podporované moduly:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -624,53 +625,75 @@ msgstr "" "a apt.conf(5).\n" " Tento APT má schopnosti posvätnej kravy.\n" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "MusÃte zadaÅ¥ aspoň jeden balÃk, pre ktorý sa stiahnu zdrojové texty" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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 nemožno oznaÄiÅ¥, pretože nie je nainÅ¡talovaný.\n" -#: cmdline/apt-mark.cc:63 +#: cmdline/apt-mark.cc:74 #, c-format msgid "%s was already set to manually installed.\n" msgstr "%s už bol oznaÄený ako manuálne nainÅ¡talovaný.\n" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, c-format msgid "%s was already set to automatically installed.\n" msgstr "%s už bol oznaÄený ako automaticky nainÅ¡talovaný.\n" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, c-format msgid "%s was already set on hold.\n" msgstr "%s bol už nastavený na podržanie.\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, c-format msgid "%s was already not hold.\n" msgstr "%s bol už nastavený na nepodržanie.\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "ÄŒakalo sa na %s, ale nebolo to tam" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format msgid "%s set on hold.\n" msgstr "%s je oznaÄený na podržanie.\n" -#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format msgid "Canceled hold on %s.\n" msgstr "ZruÅ¡ené podržanie %s.\n" -#: cmdline/apt-mark.cc:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "Vykonanie dpkg zlyhalo. Ste root?" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 #, fuzzy msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" @@ -717,7 +740,7 @@ msgstr "" " -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)." -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -765,52 +788,52 @@ msgstr "Nedá sa odpojiÅ¥ CD-ROM v %s - možno sa eÅ¡te použÃva." msgid "Disk not found." msgstr "Disk sa nenaÅ¡iel." -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "Súbor sa nenaÅ¡iel" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 msgid "Failed to stat" msgstr "Vyhodnotenie zlyhalo" -#: methods/copy.cc:82 methods/gzip.cc:113 methods/rred.cc:606 +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 msgid "Failed to set modification time" msgstr "Zlyhalo nastavenie Äasu zmeny" -#: methods/file.cc:47 +#: methods/file.cc:48 msgid "Invalid URI, local URIS must not start with //" msgstr "Neplatné URI, lokálne URI nesmie zaÄÃnaÅ¥ s //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "Prihlasovanie" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "Nedá sa zistiÅ¥ názov druhej strany" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "Nedá sa zistiÅ¥ lokálny názov" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format msgid "The server refused the connection and said: %s" msgstr "Server zamietol naÅ¡e spojenie s chybou: %s" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "Zlyhalo zadanie použÃvateľa, server odpovedal: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "Zlyhalo zadanie hesla, server odpovedal: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -818,121 +841,123 @@ msgstr "" "Bol zadaný proxy server, ale nie prihlasovacà skript. Acquire::ftp::" "ProxyLogin je prázdny." -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "PrÃkaz „%s“ prihlasovacieho skriptu zlyhal, server odpovedal: %s" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "Zlyhalo zadanie typu, server odpovedal: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 msgid "Connection timeout" msgstr "Uplynul Äas spojenia" -#: methods/ftp.cc:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "Server ukonÄil spojenie" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "Chyba pri ÄÃtanÃ" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "OdpoveÄ preplnila zásobnÃk." -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "NaruÅ¡enie protokolu" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "Chyba pri zápise" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 msgid "Could not create a socket" msgstr "Nedá sa vytvoriÅ¥ socket" -#: methods/ftp.cc:707 +#: methods/ftp.cc:712 msgid "Could not connect data socket, connection timed out" msgstr "Nedá sa pripojiÅ¥ dátový socket, uplynul Äas spojenia" -#: methods/ftp.cc:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "Chyba" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "Nedá sa pripojiÅ¥ pasÃvny socket." -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo nezÃskal poÄúvajúci socket" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "Nedá sa nadviazaÅ¥ socket" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "Na sockete sa nedá poÄúvaÅ¥" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "Názov socketu sa nedá zistiÅ¥" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "PrÃkaz PORT sa nedá odoslaÅ¥" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Neznáma rodina adries %u (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "Zlyhalo zadanie EPRT, server odpovedal: %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "Uplynulo spojenie dátového socketu" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "Spojenie sa nedá prijaÅ¥" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: 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" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Súbor sa nedá stiahnuÅ¥, server odpovedal „%s“" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "Uplynula doba dátového socketu" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Prenos dát zlyhal, server odpovedal „%s“" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "Dotaz" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "Nedá sa vyvolaÅ¥ " @@ -968,7 +993,7 @@ msgstr "Nedá sa pripojiÅ¥ k %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "Pripája sa k %s" @@ -998,36 +1023,36 @@ msgstr "NieÄo veľmi zlé sa prihodilo pri preklade „%s:%s“ (%i - %s)" msgid "Unable to connect to %s:%s:" msgstr "Nedá sa pripojiÅ¥ k %s:%s:" -#: methods/gpgv.cc:166 +#: 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?!" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "Bola zistená aspoň jedna nesprávna signatúra." -#: methods/gpgv.cc:172 +#: methods/gpgv.cc:174 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "Nedá sa spustiÅ¥ „gpgv“ kvôli overeniu podpisu (je nainÅ¡talované gpgv?)" #. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "Neznáma chyba pri spustenà gpgv" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: 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:229 +#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@ -1035,148 +1060,148 @@ msgstr "" "Nasledovné signatúry sa nedajú overiÅ¥, pretože nie je dostupný verejný " "kľúÄ:\n" -#: methods/gzip.cc:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "Prázdne súbory nemôžu byÅ¥ platné archÃvy" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "Chyba zápisu do tohto súboru" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "Chyba pri ÄÃtanà zo servera. Druhá strana ukonÄila spojenie" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "Chyba pri ÄÃtanà zo servera" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "Chyba zápisu do súboru" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "Výber zlyhal" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "Uplynul Äas spojenia" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "Chyba zápisu do výstupného súboru" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "ÄŒaká sa na hlaviÄky" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "Chybná hlaviÄka" -#: methods/server.cc:139 methods/server.cc:146 +#: 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" -#: methods/server.cc:176 +#: methods/server.cc:171 msgid "The HTTP server sent an invalid Content-Length header" msgstr "HTTP server poslal neplatnú hlaviÄku Content-Length" -#: methods/server.cc:199 +#: methods/server.cc:194 msgid "The HTTP server sent an invalid Content-Range header" msgstr "HTTP server poslal neplatnú hlaviÄku Content-Range" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "Tento HTTP server má poÅ¡kodenú podporu rozsahov" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "Neznámy formát dátumu" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "Zlé dátové záhlavie" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "Spojenie zlyhalo" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "Vnútorná chyba" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Vnútorná chyba, InstallPackages bolo volané s poÅ¡kodenými balÃkmi!" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "Je potrebné odstránenie balÃka, ale funkcia OdstrániÅ¥ je vypnutá." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "Vnútorná chyba, Triedenie sa neukonÄilo" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +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" #. TRANSLATOR: The required 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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Je potrebné stiahnuÅ¥ %sB/%sB archÃvov.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:171 +#: apt-private/private-install.cc:159 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Je potrebné stiahnuÅ¥ %sB archÃvov.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:178 +#: apt-private/private-install.cc:166 #, 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" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:183 +#: apt-private/private-install.cc:171 #, 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" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "Na %s nemáte dostatok voľného miesta." -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "Nastali problémy a -y bolo použité bez --force-yes" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Zadané „iba triviálne“, ale toto nie je triviálna operácia." #. 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Ãno, urob to, Äo vravÃm!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1187,19 +1212,19 @@ msgstr "" "Ak chcete pokraÄovaÅ¥, opÃÅ¡te frázu „%s“\n" " ?]" -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "PreruÅ¡ené." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "Chcete pokraÄovaÅ¥?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "Niektoré súbory sa nedajú stiahnuÅ¥" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1207,19 +1232,19 @@ msgstr "" "Niektoré archÃvy sa nedajú stiahnuÅ¥. Skúste spustiÅ¥ apt-get update alebo --" "fix-missing" -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing a výmena nosiÄa nie sú momentálne podporované" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "Chýbajúce balÃky sa nedajú opraviÅ¥." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "InÅ¡talácia sa preruÅ¡uje." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1236,15 +1261,15 @@ 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-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Pozn.: Toto robà dpkg automaticky a zámerne." -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Nemajú sa odstraňovaÅ¥ veci, nespustà sa AutoRemover" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1262,15 +1287,15 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 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:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "Vnútorná chyba, AutoRemover nieÄo pokazil" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1283,7 +1308,7 @@ msgstr[1] "" msgstr[2] "" "Nasledovné balÃky boli nainÅ¡talované automaticky a už viac nie sú potrebné:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1295,18 +1320,18 @@ msgstr[1] "" msgstr[2] "" "%lu balÃkov bolo nainÅ¡talovaných automaticky a už viac nie sú potrebné.\n" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Na jeho odstránenie použite „apt-get autoremove“." msgstr[1] "Na ich odstránenie použite „apt-get autoremove“." msgstr[2] "Na ich odstránenie použite „apt-get autoremove“." -#: apt-private/private-install.cc:624 +#: apt-private/private-install.cc:612 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Možno to budete chcieÅ¥ napraviÅ¥ spustenÃm „apt-get -f install“:" -#: apt-private/private-install.cc:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1314,7 +1339,7 @@ msgstr "" "Nesplnené závislosti. Skúste spustiÅ¥ „apt-get -f install“ bez balÃkov (alebo " "navrhnite rieÅ¡enie)." -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1326,145 +1351,145 @@ msgstr "" "požadované balÃky eÅ¡te neboli vytvorené alebo presunuté z fronty\n" "Novoprichádzajúcich (Incoming) balÃkov." -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "PoÅ¡kodené balÃky" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "NainÅ¡talujú sa nasledovné extra balÃky:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "Navrhované balÃky:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "OdporúÄané balÃky:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "UPOZORNENIE: Pri nasledovných balÃkoch sa nedá overiÅ¥ vierohodnosÅ¥!" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "Upozornenie o vierohodnosti bolo potlaÄené.\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "Nedala sa zistiÅ¥ vierohodnosÅ¥ niektorých balÃkov" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "NainÅ¡talovaÅ¥ tieto nekontrolované balÃky?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Zlyhalo stiahnutie %s %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [NainÅ¡talovaný]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [NainÅ¡talovaný]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [NainÅ¡talovaný]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [NainÅ¡talovaný]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "Nasledovné balÃky majú nesplnené závislosti:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "ale nainÅ¡talovaný je %s" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "ale inÅ¡talovaÅ¥ sa bude %s" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "ale sa nedá nainÅ¡talovaÅ¥" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "ale je to virtuálny balÃk" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "ale nie je nainÅ¡talovaný" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "ale sa nebude inÅ¡talovaÅ¥" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " alebo" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "NainÅ¡talujú sa nasledovné NOVÉ balÃky:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "Nasledovné balÃky sa ODSTRÃNIA:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "Nasledovné balÃky sa ponechajú v súÄasnej verzii:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "Nasledovné balÃky sa aktualizujú:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "Nasledovné balÃky sa DEGRADUJÚ:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "Nasledovné pridržané balÃky sa zmenia:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (kvôli %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1472,27 +1497,27 @@ msgstr "" "UPOZORNENIE: Nasledovné dôležité balÃky sa odstránia.\n" "Ak presne neviete, Äo robÃte, tak to NEROBTE!" -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu aktualizovaných, %lu nových nainÅ¡talovaných, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu reinÅ¡talovaných, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu degradovaných, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu na odstránenie a %lu neaktualizovaných.\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu iba ÄiastoÄne nainÅ¡talovaných alebo odstránených.\n" @@ -1501,7 +1526,7 @@ msgstr "%lu iba ÄiastoÄne nainÅ¡talovaných alebo odstránených.\n" #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "" @@ -1509,92 +1534,92 @@ msgstr "" #. 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:702 +#: apt-private/private-output.cc:708 msgid "[y/N]" msgstr "" #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "Chyba pri preklade regulárneho výrazu - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "Opravujú sa závislosti..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " zlyhalo." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "Závislosti sa nedajú opraviÅ¥" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "Sada na aktualizáciu sa nedá minimalizovaÅ¥" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " Hotovo" -#: apt-private/private-cachefile.cc:102 +#: 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-private/private-cachefile.cc:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "Nesplnené závislosti. Skúste použiÅ¥ -f." -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "PrÃkaz update neprijÃma žiadne argumenty" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "PrepoÄÃtava sa aktualizácia... " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "Vnútorná chyba, AllUpgrade pokazil veci" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "Hotovo" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1606,43 +1631,43 @@ msgstr "" " 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-sources.cc:45 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format msgid "Failed to parse %s. Edit again? " msgstr "Premenovanie %s na %s zlyhalo" -#: apt-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "Už existuje " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "ZÃskava sa:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "Ign " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Chyba " -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "%sB sa stiahlo za %s (%sB/s)\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [Prebieha spracovanie]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1655,19 +1680,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "Nedá sa naÄÃtaÅ¥ %s" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "Nedá sa prejsÅ¥ do %s" @@ -1696,11 +1721,11 @@ msgstr "Nepodarilo sa preÄÃtaÅ¥ súbor „%s“ na zrkadle" msgid "[Mirror: %s]" msgstr "[Zrkadlo: %s]" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: 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:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "Spojenie bolo predÄasne ukonÄené" @@ -1764,40 +1789,45 @@ 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:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Nedá sa vyhodnotiÅ¥ %s" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "Do %s sa nedá zapisovaÅ¥" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Nedá sa urÄiÅ¥ verzia programu debconf. Je debconf nainÅ¡talovaný?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "Zoznam rozÅ¡Ãrenà balÃka je prÃliÅ¡ dlhý" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "Chyba pri spracovávanà adresára %s" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "Zoznam zdrojových rozÅ¡Ãrenà je prÃliÅ¡ dlhý" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "Chyba pri zapisovanà hlaviÄky do súboru" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "Chyba pri spracovávanà obsahu %s" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1877,26 +1907,26 @@ msgstr "" " -c=? NaÄÃta tento konfiguraÄný súbor\n" " -o=? Nastavà ľubovoľnú voľbu" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "Nevyhovel žiaden výber" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "V súbore balÃka skupiny „%s“ chýbajú niektoré súbory" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, 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:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "DB je neaktuálna, prebieha pokus o aktualizáciu %s" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -1904,192 +1934,192 @@ 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:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Nedá sa otvoriÅ¥ DB súbor %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "%s sa nedá vyhodnotiÅ¥" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "ArchÃv nemá riadiaci záznam" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "Nedá sa zÃskaÅ¥ kurzor" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: Adresár %s sa nedá ÄÃtaÅ¥\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: %s sa nedá vyhodnotiÅ¥\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "E: Chyby sa týkajú súboru " -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "Chyba pri preklade %s" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "Prechod stromom zlyhal" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "%s sa nedá otvoriÅ¥" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " Odlinkovanie %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "Nie je možné vykonaÅ¥ readlink %s" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "Nie je možné vykonaÅ¥ unlink %s" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Nepodarilo sa zlinkovaÅ¥ %s s %s" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Bol dosiahnutý odlinkovacà limit %sB.\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "ArchÃv neobsahuje pole „package“" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %s nemá žiadnu položku override\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " správcom %s je %s, nie %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr " %s nemá žiadnu položku „source override“\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s nemá žiadnu položku „binary override“\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - Zlyhal pokus o pridelenie pamäti" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "Nedá sa otvoriÅ¥ %s" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "Skomolený „override“ %s riadok %llu #1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "Nepodarilo sa preÄÃtaÅ¥ „override“ súbor %s" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, c-format msgid "Malformed override %s line %llu #1" msgstr "Skomolený „override“ %s riadok %llu #1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, c-format msgid "Malformed override %s line %llu #2" msgstr "Skomolený „override“ %s riadok %llu #2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, c-format msgid "Malformed override %s line %llu #3" msgstr "Skomolený „override“ %s riadok %llu #3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "Neznámy kompresný algoritmus „%s“" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "Komprimovaný výstup %s potrebuje kompresnú sadu" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "Zlyhalo vytvorenie FILE*" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "Volanie fork() zlyhalo" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "KomprimovaÅ¥ potomka" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "Vnútorná chyba, nepodarilo sa vytvoriÅ¥ %s" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "V/V operácia s podprocesom/súborom zlyhala" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "Chyba ÄÃtania pri výpoÄte MD5" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "Problém s odlinkovanÃm %s" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "Premenovanie %s na %s zlyhalo" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -2141,157 +2171,157 @@ msgstr "" " -c=? NaÄÃta tento konfiguraÄný súbor\n" " -o=? Nastavà ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "Vytvorenie rúry zlyhalo" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "Spustenie gzip zlyhalo " -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: 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:201 +#: 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:306 +#: 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-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "Neplatný podpis archÃvu" -#: apt-inst/contrib/arfile.cc:82 +#: 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:94 +#: apt-inst/contrib/arfile.cc:96 #, c-format msgid "Invalid archive member header %s" msgstr "Neplatná hlaviÄka prvku archÃvu %s" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "Neplatné záhlavie prvku archÃvu" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "ArchÃv je prÃliÅ¡ krátky" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "Chyba pri ÄÃtanà hlaviÄiek archÃvu" -#: apt-inst/filelist.cc:382 +#: 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:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "HaÅ¡ovacà prvok sa nedá nájsÅ¥!" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "Nedá sa alokovaÅ¥ diverzia" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "Vnútorná chyba pri AddDiversion" -#: apt-inst/filelist.cc:479 +#: apt-inst/filelist.cc:477 #, c-format msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" msgstr "Pokus o prepÃsanie diverzie, %s -> %s a %s/%s" -#: apt-inst/filelist.cc:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "Dvojité pridanie diverzie %s -> %s" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "Duplicitný konfiguraÄný súbor %s/%s" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format msgid "Failed to write file %s" msgstr "Zápis súboru %s zlyhal" -#: apt-inst/dirstream.cc:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "Zatvorenie súboru %s zlyhalo" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format msgid "The path %s is too long" msgstr "Cesta %s je prÃliÅ¡ dlhá" -#: apt-inst/extract.cc:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "%s sa rozbaľuje viackrát" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "Adresár %s je divertovaný" -#: apt-inst/extract.cc:145 +#: apt-inst/extract.cc:152 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "BalÃk sa pokúša zapisovaÅ¥ do diverzného cieľa %s/%s" -#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 +#: 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-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, 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:282 +#: 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:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "Cesta je prÃliÅ¡ dlhá" -#: apt-inst/extract.cc:414 +#: apt-inst/extract.cc:421 #, c-format msgid "Overwrite package match with no version for %s" msgstr "PrepÃsaÅ¥ zodpovedajúci balÃk bez udania verzie pre %s" -#: apt-inst/extract.cc:431 +#: apt-inst/extract.cc:438 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "Súbor %s/%s prepisuje ten z balÃka %s" -#: apt-inst/extract.cc:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "Nedá sa vyhodnotiÅ¥ %s" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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 "Toto nie je platný DEB archÃv, chýba ÄasÅ¥ „%s“" -#: apt-inst/deb/debfile.cc:124 +#: apt-inst/deb/debfile.cc:132 #, 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:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "Nespracovateľný riadiaci súbor" @@ -2351,485 +2381,490 @@ msgstr "" "použÃvateľ." #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "%li d %li h %li min %li s" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "%li h %li min %li s" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "%li min %li s" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "%li s" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "Voľba %s nenájdená" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Nerozpoznaná skratka typu: „%c“" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "Otvára sa konfiguraÄný súbor %s" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Syntaktická chyba %s:%u: Blok zaÄÃna bez názvu." -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Syntaktická chyba %s:%u: Skomolená znaÄka" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Syntaktická chyba %s:%u: Za hodnotou nasledujú chybné údaje" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "Syntaktická chyba %s:%u: DirektÃvy sa dajú vykonaÅ¥ len na najvyššej úrovni" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Syntaktická chyba %s:%u: PrÃliÅ¡ mnoho vnorených prepojenà (include)" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Syntaktická chyba %s:%u: Zahrnuté odtiaľ" -#: apt-pkg/contrib/configuration.cc:881 +#: 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-pkg/contrib/configuration.cc:884 +#: apt-pkg/contrib/configuration.cc:900 #, 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-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Syntaktická chyba %s:%u: Na konci súboru sú chybné údaje" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... Chyba!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... Hotovo" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s... Hotovo" -#: apt-pkg/contrib/cmndline.cc:116 +#: 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-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 #, c-format msgid "Command line option %s is not understood" msgstr "Nezrozumiteľný parameter %s na prÃkazovom riadku" -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format msgid "Command line option %s is not boolean" msgstr "Parameter prÃkazového riadku %s nie je pravdivostná hodnota" -#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "Voľba %s vyžaduje argument." -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "Parameter %s: Zadanie konfiguraÄnej položky musà obsahovaÅ¥ =<hodn>." -#: apt-pkg/contrib/cmndline.cc:273 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format msgid "Option %s requires an integer argument, not '%s'" msgstr "Voľba %s vyžaduje ako argument celé ÄÃslo (integer), nie „%s“" -#: apt-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "Voľba „%s“ je prÃliÅ¡ dlhá" -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "Nezrozumiteľný význam %s, skúste true alebo false. " -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "Neplatná operácia %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: 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-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "Nedá sa vykonaÅ¥ stat() CD-ROM" -#: apt-pkg/contrib/fileutl.cc:95 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problém pri zatváranà gzip súboru %s" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "Zamykanie pre súbor zámku %s, ktorý je iba na ÄÃtanie, sa nepoužÃva" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "Súbor zámku %s sa nedá otvoriÅ¥" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "Zamykanie pre súbor zámku %s pripojený cez NFS sa nepoužÃva" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "Zámok %s sa nedá zÃskaÅ¥" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, 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-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, 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-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, 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-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, 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-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Podproces %s obdržal chybu segmentácie." -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, c-format msgid "Sub-process %s received signal %u." msgstr "Podproces %s dostal signál %u." -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 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-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Podproces %s neoÄakávane skonÄil" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problém pri zatváranà gzip súboru %s" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "Nedá sa otvoriÅ¥ súbor %s" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, c-format msgid "Could not open file descriptor %d" msgstr "Nedá sa otvoriÅ¥ popisovaÄ súboru %d" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "Nedá sa vytvoriÅ¥ podproces IPC" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "Nepodarilo sa spustiÅ¥ kompresor " -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, 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-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, 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-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, c-format msgid "Problem closing the file %s" msgstr "Problém pri zatváranà súboru %s" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, c-format msgid "Problem renaming the file %s to %s" msgstr "Problém pri synchronizovanà súboru %s na %s" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, c-format msgid "Problem unlinking the file %s" msgstr "Problém pri odstraňovanà súboru %s" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "Problém pri synchronizovanà súboru" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "premenovanie zlyhalo, %s (%s -> %s)." + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: 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-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "Vyrovnávacia pamäť balÃkov je prázdna" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "Súbor vyrovnávacej pamäti balÃkov je poÅ¡kodený" -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "Súbor vyrovnávacej pamäti balÃkov je nezluÄiteľnej verzie" -#: apt-pkg/pkgcache.cc:162 +#: 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ý" -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, 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:172 +#: 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:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "Závisà na" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "Predzávisà na" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "Navrhuje" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "OdporúÄa" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "Koliduje s" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "Nahrádza" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "Zneplatňuje" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "KazÃ" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "RozÅ¡iruje" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "dôležitý" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "požadovaný" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "Å¡tandardný" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "voliteľný" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "extra" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "Vytvára sa strom závislostÃ" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "Kandidátske verzie" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "Generovanie závislostÃ" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: 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-pkg/depcache.cc:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "Nie je možné otvoriÅ¥ StateFile %s" -#: apt-pkg/depcache.cc:250 +#: 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-pkg/tagfile.cc:138 +#: apt-pkg/tagfile.cc:140 #, c-format msgid "Unable to parse package file %s (1)" msgstr "Súbor %s sa nedá spracovaÅ¥ (1)" -#: apt-pkg/tagfile.cc:235 +#: apt-pkg/tagfile.cc:237 #, c-format msgid "Unable to parse package file %s (2)" msgstr "Súbor %s sa nedá spracovaÅ¥ (2)" -#: apt-pkg/sourcelist.cc:118 +#: 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-pkg/sourcelist.cc:161 +#: apt-pkg/sourcelist.cc:170 #, c-format msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" "Skomolený riadok %lu v zozname zdrojov %s (nie je možné spracovaÅ¥ [option])" -#: apt-pkg/sourcelist.cc:164 +#: apt-pkg/sourcelist.cc:173 #, c-format msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "Skomolený riadok %lu v zozname zdrojov %s ([option] je prÃliÅ¡ krátke)" -#: apt-pkg/sourcelist.cc:175 +#: apt-pkg/sourcelist.cc:184 #, c-format msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" msgstr "Skomolený riadok %lu v zozname zdrojov %s ([%s] nie je priradenie)" -#: apt-pkg/sourcelist.cc:181 +#: apt-pkg/sourcelist.cc:190 #, c-format msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "Skomolený riadok %lu v zozname zdrojov %s ([%s] nemá kľúÄ)" -#: apt-pkg/sourcelist.cc:184 +#: apt-pkg/sourcelist.cc:193 #, c-format msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "Skomolený riadok %lu v zozname zdrojov %s ([%s] kÄ¾ÃºÄ %s nemá hodnotu)" -#: apt-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "Skomolený riadok %lu v zozname zdrojov %s (URI)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "Skomolený riadok %lu v zozname zdrojov %s (dist)" -#: apt-pkg/sourcelist.cc:202 +#: 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)" -#: apt-pkg/sourcelist.cc:208 +#: 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)" -#: apt-pkg/sourcelist.cc:215 +#: 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-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "Otvára sa %s" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "Riadok %u v zozname zdrojov %s je prÃliÅ¡ dlhý." -#: apt-pkg/sourcelist.cc:362 +#: apt-pkg/sourcelist.cc:371 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Skomolený riadok %u v zozname zdrojov %s (typ)" -#: apt-pkg/sourcelist.cc:366 +#: apt-pkg/sourcelist.cc:375 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Typ „%s“ je neznámy na riadku %u v zozname zdrojov %s" -#: apt-pkg/sourcelist.cc:407 +#: 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-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2838,12 +2873,12 @@ msgstr "" "Nebolo možné vykonaÅ¥ okamžitú konfiguráciu „%s“. Pozri prosÃm podrobnosti v " "man 5 apt.conf pod APT::Immediate-Configure (%d)" -#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, c-format msgid "Could not configure '%s'. " msgstr "Nedá sa nakonfigurovaÅ¥ „%s“." -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2854,18 +2889,18 @@ msgstr "" "kvôli sluÄke v Conflicts/Pre-Depends. ÄŒasto je to nevhodné, ale ak to chcete " "naozaj urobiÅ¥, aktivujte možnosÅ¥ APT::Force-LoopBreak." -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "Indexový súbor typu „%s“ nie je podporovaný" -#: apt-pkg/algorithms.cc:266 +#: 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." -#: apt-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2873,88 +2908,88 @@ msgstr "" "Chyba, pkgProblemResolver::Resolve vytvára poruchy, Äo môže být spôsobené " "pridržanými balÃkmi." -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "Problémy sa nedajú opraviÅ¥, niektoré balÃky držÃte v poÅ¡kodenom stave." -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, c-format msgid "List directory %spartial is missing." msgstr "Adresár zoznamov %spartial chýba." -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, c-format msgid "Archives directory %spartial is missing." msgstr "ArchÃvny adresár %spartial chýba." -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, c-format msgid "Unable to lock directory %s" msgstr "Adresár %s sa nedá zamknúť" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "SÅ¥ahuje sa %li. súbor z %li (zostáva %s)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "SÅ¥ahuje sa %li. súbor z %li" -#: apt-pkg/acquire-worker.cc:113 +#: 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." -#: apt-pkg/acquire-worker.cc:115 +#: 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" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "Spôsob %s nebol správne spustený" -#: apt-pkg/acquire-worker.cc:452 +#: apt-pkg/acquire-worker.cc:455 #, c-format msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "Vložte disk nazvaný „%s“ do mechaniky „%s“ a stlaÄte Enter." -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Systém balÃkov „%s“ nie je podporovaný" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "Nedá sa urÄiÅ¥ vhodný typ systému balÃkov" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "Nie je možné vykonaÅ¥ stat %s." -#: apt-pkg/srcrecords.cc:47 +#: 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" -#: apt-pkg/cachefile.cc:87 +#: 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:91 +#: 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:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "Nedá sa naÄÃtaÅ¥ zoznam zdrojov." -#: apt-pkg/policy.cc:75 +#: apt-pkg/policy.cc:83 #, c-format msgid "" "The value '%s' is invalid for APT::Default-Release as such a release is not " @@ -2963,99 +2998,94 @@ msgstr "" "„%s“ nie je platná hodnota pre APT::Default-Release, pretože také vydanie " "nie je dostupné v zdrojoch" -#: apt-pkg/policy.cc:414 +#: apt-pkg/policy.cc:422 #, 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" -#: apt-pkg/policy.cc:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "Nezrozumiteľné pridržanie typu %s" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "Nebola zadaná žiadna (alebo nulová) priorita na pridržanie" -#: apt-pkg/pkgcachegen.cc:87 +#: 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Ã" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Vyskytla sa chyba pri spracovávanà %s (%s%d)" -#: apt-pkg/pkgcachegen.cc:251 +#: 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:254 +#: 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Å¥." -#: apt-pkg/pkgcachegen.cc:257 +#: 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Å¥." -#: apt-pkg/pkgcachegen.cc:260 +#: apt-pkg/pkgcachegen.cc:266 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" "FÃha, prekroÄili ste poÄet závislostÃ, ktoré toto APT zvládne spracovaÅ¥." -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:576 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Pri spracovanà závislostà nebol nájdený balÃk %s %s" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "Nedá sa vyhodnotiÅ¥ zoznam zdrojových balÃkov %s" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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" -#: apt-pkg/pkgcachegen.cc:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "Collecting File poskytuje" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: 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" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "premenovanie zlyhalo, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "Nezhoda kontrolných haÅ¡ súÄtov" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "Veľkosti sa nezhodujú" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "Neplatná operácia %s" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, c-format msgid "" "Unable to find expected entry '%s' in Release file (Wrong sources.list entry " @@ -3064,16 +3094,16 @@ msgstr "" "Nepodarilo sa nájsÅ¥ oÄakávanú položku „%s“ v súbore Release (Nesprávna " "položka sources.list alebo chybný formát súboru)" -#: apt-pkg/acquire-item.cc:1586 +#: apt-pkg/acquire-item.cc:1595 #, c-format msgid "Unable to find hash sum for '%s' in Release file" msgstr "Nepodarilo sa nájsÅ¥ haÅ¡ „%s“ v súbore Release" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "Nie sú dostupné žiadne verejné kľúÄe ku kľúÄom s nasledovnými ID:\n" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " @@ -3082,12 +3112,12 @@ msgstr "" "Súbor Release pre %s vyprÅ¡al (neplatný od %s). Aktualizácie tohto zdroja " "softvéru sa nepoužijú." -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, 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)" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3097,12 +3127,12 @@ msgstr "" "použijú sa predoÅ¡lé indexové súbory. Chyba GPG: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "Chyba GPG: %s: %s" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3111,82 +3141,78 @@ 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)." -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, 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“" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, 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." -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, c-format msgid "Unable to parse Release file %s" msgstr "Nedá spracovaÅ¥ súbor Release %s" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, c-format msgid "No sections in Release file %s" msgstr "Žiadne sekcie v Release súbore %s" -#: apt-pkg/indexrecords.cc:112 +#: 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-pkg/indexrecords.cc:125 +#: 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-pkg/indexrecords.cc:144 +#: 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-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "Blok výrobcu %s neobsahuje otlaÄok (fingerprint)" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Použije sa prÃpojný bod CD-ROM %s\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "CD-ROM sa odpája\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "CD-ROM sa odpája...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "ÄŒaká sa na disk...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "Pripája sa CD-ROM...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " -msgstr "Identifikuje sa.." +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " +msgstr "Identifikuje sa..." -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "Uložená menovka: %s \n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "CD-ROM sa odpája...\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" -msgstr "Na disku sa hľadajú indexové súbory..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" +msgstr "Na disku sa hľadajú indexové súbory...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3195,7 +3221,7 @@ msgstr "" "Nájdených %zu indexov balÃkov, %zu indexov zdrojových balÃkov, %zu indexov " "prekladov a %zu signatúr\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" @@ -3203,16 +3229,16 @@ 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?" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "Nájdená menovka: „%s“\n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "Neplatný názov, skúste znova.\n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3221,34 +3247,34 @@ msgstr "" "Názov tohto disku je: \n" "„%s“\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "KopÃrujú sa zoznamy balÃkov..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "Zapisuje sa nový zoznam zdrojov\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "Položky zoznamu zdrojov pre tento disk sú:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: 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" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:777 +#: 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" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:780 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "ZapÃsaných %i záznamov s %i chybnými súbormi\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "ZapÃsaných %i záznamov s %i chýbajúcimi a %i chybnými súbormi\n" @@ -3263,37 +3289,37 @@ msgstr "Nebolo možné nájsÅ¥ autentifikaÄný záznam pre: %s" msgid "Hash mismatch for: %s" msgstr "Nezhoda kontrolných haÅ¡ súÄtov: %s" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Nebolo nájdené vydanie „%s“ pre „%s“" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Nebola nájdená verzia „%s“ pre „%s“" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, c-format msgid "Couldn't find task '%s'" msgstr "Nebolo možné nájsÅ¥ úlohu „%s“" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, 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-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, 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:616 +#: apt-pkg/cacheset.cc:624 #, 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-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " @@ -3302,56 +3328,56 @@ 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:637 +#: apt-pkg/cacheset.cc:645 #, 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-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format 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" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, 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ý" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "PoslaÅ¥ scénár rieÅ¡iteľovi" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "PoslaÅ¥ požiadavku rieÅ¡iteľovi" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "PripraviÅ¥ sa na prijatie rieÅ¡enia" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "Externý rieÅ¡iteľ zlyhal bez uvedenia chybovej správy" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "SpustiÅ¥ externého rieÅ¡iteľa" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "Spúšťa sa dpkg" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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." @@ -3359,118 +3385,118 @@ msgstr "" "Niektoré indexové súbory sa nepodarilo stiahnuÅ¥. Boli ignorované alebo sa " "použili starÅ¡ie verzie." -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "InÅ¡taluje sa %s" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "Nastavuje sa %s" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "Odstraňuje sa %s" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format msgid "Completely removing %s" msgstr "Úplne sa odstraňuje %s" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "Zaznamenali sme zmiznutie %s" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "Vykonáva sa spúšťaÄ post-installation %s" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "Adresár „%s“ chýba" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format msgid "Could not open file '%s'" msgstr "Nedá sa otvoriÅ¥ súbor „%s“" -#: apt-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "Pripravuje sa %s" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "Rozbaľuje sa %s" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "Pripravuje sa nastavenie %s" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "NainÅ¡talovaný balÃk %s" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "Pripravuje sa odstránenie %s" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "Odstránený balÃk %s" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "Pripravuje sa úplné odstránenie %s" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "BalÃk „%s“ je úplne odstránený" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "Do %s sa nedá zapisovaÅ¥" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 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:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 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:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "problém so závislosÅ¥ami - ponecháva sa nenakonfigurované" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3478,7 +3504,7 @@ msgstr "" "NezapÃÅ¡e sa správa apport, pretože chybová správa indikuje, že je to chyba v " "nadväznosti na predoÅ¡lé zlyhanie." -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" @@ -3486,7 +3512,7 @@ msgstr "" "NezapÃÅ¡e sa správa apport, pretože chybová správa indikuje, že je disk " "zaplnený" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3494,7 +3520,7 @@ msgstr "" "NezapÃÅ¡e sa správa apport, pretože chybová správa indikuje chybu nedostatku " "pamäte" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 #, fuzzy msgid "" "No apport report written because the error message indicates an issue on the " @@ -3503,33 +3529,33 @@ msgstr "" "NezapÃÅ¡e sa správa apport, pretože chybová správa indikuje, že je disk " "zaplnený" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" "NezapÃÅ¡e sa správa apport, pretože chybová správa indikuje V/V chybu dpkg" -#: apt-pkg/deb/debsystem.cc:84 +#: 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:87 +#: 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:103 +#: 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:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "Nie je zamknuté" @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.5.5\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2012-06-27 21:29+0000\n" "Last-Translator: Andrej Znidarsic <andrej.znidarsic@gmail.com>\n" "Language-Team: Slovenian <sl@li.org>\n" @@ -20,152 +20,153 @@ msgstr "" "X-Poedit-Language: Slovenian\n" "X-Poedit-SourceCharset: utf-8\n" -#: cmdline/apt-cache.cc:140 +#: 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" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "Vseh imen paketov: " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 msgid "Total package structures: " msgstr "Skupno struktur paketov : " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " ObiÄajni paketi: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " ÄŒisti navidezni paketi: " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " Posamezni navidezni paketi: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " MeÅ¡ani navidezni paketi: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " Manjka: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "Vseh razliÄic: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "Skupno razliÄnih opisov: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "Vseh odvisnosti: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "Vseh povezav Raz/Dat: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "Skupno razmerij opisov/datotek: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "Vseh dobljenih preslikav: " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "Vseh razÅ¡irjenih nizov: " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "Celotna velikost z odvisnostmi razliÄice: " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "Celotna ohlapna velikost: " -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "Celotna velikost, izraÄunana za: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format msgid "Package file %s is out of sync." msgstr "Datoteka paketa %s ni usklajena." -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 msgid "You must give at least one search pattern" msgstr "Podati morate vsaj en iskalni vzorec" -#: cmdline/apt-cache.cc:1411 +#: 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'." -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "Ni mogoÄe najti paketa %s" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "Datoteke paketa:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: 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Ä" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "Pripeti paketi:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(ni najdeno)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " NameÅ¡Äen: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " Kandidat: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(brez)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " Bucika paketa: " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " Preglednica razliÄic:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s za %s kodno preveden na %s %s\n" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] showpkg pkg1 [pkg2 ...]\n" @@ -236,28 +237,28 @@ msgstr "" "Za veÄ podrobnosti si oglejte strani priroÄnikov apt-cache(8) in apt." "conf(5).\n" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: 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:104 +#: 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" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, c-format msgid "Failed to mount '%s' to '%s'" msgstr "Priklapljanje '%s' na '%s' je spodletelo" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Ponovi to opravilo za preostanek CD-jev v vaÅ¡i zbirki." @@ -293,47 +294,47 @@ msgstr "" " -c=? Prebere podano datoteko z nastavitvami\n" " -o=? Nastavi poljubno nastavitveno možnost, na primer. -o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:244 +#: 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" -#: cmdline/apt-get.cc:326 +#: 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" -#: cmdline/apt-get.cc:329 +#: 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" -#: cmdline/apt-get.cc:366 +#: cmdline/apt-get.cc:367 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Izbiranje '%s' kot vir paketa namesto '%s'\n" -#: cmdline/apt-get.cc:422 +#: 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'" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "Ni mogoÄe najti paketa %s" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "%s je bil nastavljen na roÄno nameÅ¡Äen.\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: 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:468 cmdline/apt-mark.cc:116 +#: 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." @@ -341,20 +342,20 @@ msgstr "" "Ta ukaz je zastarel. Namesto njega uporabite 'apt-mark auto' in 'apt-mark " "manual'." -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: 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" -#: cmdline/apt-get.cc:573 cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 msgid "Unable to lock the download directory" msgstr "Ni mogoÄe zakleniti mape prejemov" -#: cmdline/apt-get.cc:725 +#: 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" -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "Izvornega paketa za %s ni mogoÄe najti" @@ -379,80 +380,80 @@ msgstr "" "bzr branch %s\n" "za pridobitev zadnjih (morda Å¡e neizdanih) posodobitev paketa.\n" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Preskok že prejete datoteke '%s'\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "Ni mogoÄe doloÄiti prostega prostora v %s" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "Nimate dovolj prostora na %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Potrebno je dobiti %sB/%sB izvornih arhivov.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Potrebno je dobiti %sB izvornih arhivov.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "Dobi vir %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "Nekaterih arhivov ni mogoÄe pridobiti." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "Prejem je dokonÄan in uporabljen je naÄin samo prejema" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Odpakiranje že odpakiranih izvornih paketov v %s je bilo preskoÄeno\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Ukaz odpakiranja '%s' ni uspel.\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Izberite, Äe je paket 'dpkg-dev' nameÅ¡Äen.\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "Ukaz gradnje '%s' ni uspel.\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "Podrejeno opravilo ni uspelo" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "" "Potrebno je navesti vsaj en paket, za katerega želite preveriti odvisnosti " "za gradnjo" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -461,17 +462,17 @@ msgstr "" "Za %s ni bilo mogoÄe najti podatkov o arhitekturi. Za nastavitev si oglejte " "apt.conf(5) APT::Architectures" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Ni mogoÄe dobiti podrobnosti o odvisnostih za gradnjo za %s" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s nima odvisnosti za gradnjo.\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -479,20 +480,20 @@ msgid "" msgstr "" "odvisnosti %s za %s ni mogoÄe zadovoljiti, ker %s ni dovoljen na paketih '%s'" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "%s odvisnosti za %s ni mogoÄe zadostiti, ker ni mogoÄe najti paketa %s" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Ni mogoÄe zadostiti %s odvisnosti za %s. NameÅ¡Äen paket %s je preveÄ nov" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -501,7 +502,7 @@ msgstr "" "odvisnosti %s za %s ni mogoÄe zadovoljiti, ker je razliÄica kandidata paketa " "%s ne more zadostiti zahtev razliÄice" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -510,30 +511,30 @@ msgstr "" "odvisnosti %s za %s ni mogoÄe zadovoljiti, ker je razliÄica kandidata paketa " "%s nima razliÄice kandidata" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Ni mogoÄe zadostiti %s odvisnosti za %s: %s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Odvisnosti za gradnjo %s ni bilo mogoÄe zadostiti." -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "Obdelava odvisnosti za gradnjo je spodletela" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, c-format msgid "Changelog for %s (%s)" msgstr "Dnevnik sprememb za %s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "Podprti moduli:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -620,53 +621,76 @@ msgstr "" " sources.list(5) in apt.conf(5). \n" " Ta APT ima moÄi super krav.\n" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "" +"Potrebno je navesti vsaj en paket, za katerega želite dobiti izvorno kodo" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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 "paket %s ne more biti oznaÄen, ker ni nameÅ¡Äen.\n" -#: cmdline/apt-mark.cc:63 +#: cmdline/apt-mark.cc:74 #, c-format msgid "%s was already set to manually installed.\n" msgstr "paket %s je bil že nastavljen na roÄno nameÅ¡Äen.\n" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, c-format msgid "%s was already set to automatically installed.\n" msgstr "paket %s je bil že nastavljen kot samodejno nameÅ¡Äen.\n" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, c-format msgid "%s was already set on hold.\n" msgstr "paket %s je bil že nastavljen kot na Äakanju.\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, c-format msgid "%s was already not hold.\n" msgstr "paket %s je bil že nastavljen kot ne na Äakanju.\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Program je Äakal na %s a ga ni bilo tam" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format msgid "%s set on hold.\n" msgstr "paket %s je nastavljen kot na Äakanju.\n" -#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format msgid "Canceled hold on %s.\n" msgstr "ÄŒakanje za %s je bilo preklicano.\n" -#: cmdline/apt-mark.cc:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "Izvajanje dpkg je spodletelo. Ali ste skrbnik?" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 #, fuzzy msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" @@ -712,7 +736,7 @@ msgstr "" " -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)." -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -760,52 +784,52 @@ msgstr "Ni mogoÄe odklopiti CD-ROM-a v %s, ker je morda Å¡e v uporabi." msgid "Disk not found." msgstr "Diska ni mogoÄe najti." -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: 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:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: 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:82 methods/gzip.cc:113 methods/rred.cc:606 +#: 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:47 +#: 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:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "Prijavljanje" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "Ni mogoÄe ugotoviti imena gostitelja" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "Ni mogoÄe doloÄiti krajevnega imena" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: 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:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "USER je spodletel, strežnik je odgovoril: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS je spodletel, strežnik je odgovoril: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -813,121 +837,123 @@ msgstr "" "Naveden je bil posredniÅ¡ki strežnik, ne pa tudi prijavni skript. Acquire::" "ftp::ProxyLogin je prazen." -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Ukaz prijavne skripte '%s' ni uspel, strežnik je odgovoril: %s" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE je spodletel, strežnik je odgovoril: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: 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:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "Strežnik je zaprl povezavo" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "Napaka branja" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "Odgovor je prekoraÄil predpomnilnik." -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "Okvara protokola" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "Napaka pisanja" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: 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:707 +#: 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:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "Spodletelo" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "Ni mogoÄe povezat pasivnega vtiÄa." -#: methods/ftp.cc:730 +#: 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:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "Ni mogoÄe povezati vtiÄa" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "Ni mogoÄe posluÅ¡ati na vtiÄu" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "Ni mogoÄe doloÄiti imena vtiÄa" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "Ni mogoÄe poslati ukaza PORT" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Neznan naslov družine %u (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT ni uspel, strežnik je odgovoril: %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "Povezava podatkovne vtiÄnice je zakasnela" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "Ni mogoÄe sprejeti povezave" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "Težava med razprÅ¡evanjem datoteke" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Ni mogoÄe pridobiti datoteke, strežnik je odgovoril '%s'" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "Podatkovna vtiÄ je potekel" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Prenos podatkov ni uspel, strežnik je odgovoril '%s'" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "Poizvedba" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "Ni mogoÄe klicati " @@ -963,7 +989,7 @@ msgstr "Ni se mogoÄe povezati z %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "Povezovanje z %s" @@ -993,185 +1019,185 @@ msgstr "Nekaj Äudnega se je zgodilo med razreÅ¡evanjem '%s:%s' (%i - %s)" msgid "Unable to connect to %s:%s:" msgstr "Ni se mogoÄe povezati z %s:%s:" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Notranja napaka: Dober podpis, toda ni mogoÄe doloÄiti podpisa kljuÄa?!" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "Najden je bil vsaj en neveljaven podpis." -#: methods/gpgv.cc:172 +#: 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:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "Neznana napaka med izvajanjem gpgv" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Naslednji podpisi so bili neveljavni:\n" -#: methods/gpgv.cc:229 +#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" msgstr "" "Naslednjih podpisov ni mogoÄe preveriti, ker javni kljuÄ ni na voljo:\n" -#: methods/gzip.cc:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "Prazne datoteke ne morejo biti veljavni arhivi" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "Napaka med pisanjem v datoteko" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "Napaka med branjem s strežnika. Oddaljeni del je zaprl povezavo" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "Napaka med branjem s strežnika" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "Napaka med pisanjem v datoteko" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "Izbira ni uspela" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "Povezava je zakasnela" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "Napaka med pisanjem v izhodno datoteko" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "ÄŒakanje na glave" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "Neveljavna vrstica glave" -#: methods/server.cc:139 methods/server.cc:146 +#: 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:176 +#: 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:199 +#: 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:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "Ta strežnik HTTP ima pokvarjen obseg podpore" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "Neznana oblika datuma" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "NapaÄni podatki glave" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "Povezava ni uspela" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "Notranja napaka" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Notranja napaka, NamestiPakete je bil klican z pokvarjenimi paketi!" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "Odstraniti je treba pakete, a je odstranjevanje onemogoÄeno." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "Notranja napaka, Urejanje se ni konÄalo" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" -"Kako Äudno .. Velikosti se ne ujemata, poÅ¡ljite sporoÄilo na apt@packages." +"Kako Äudno ... Velikosti se ne ujemata, poÅ¡ljite sporoÄilo na apt@packages." "debian.org" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Potrebno je dobiti %sB/%sB arhivov.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:171 +#: apt-private/private-install.cc:159 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Potrebno je dobiti %sB arhivov.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:178 +#: apt-private/private-install.cc:166 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "Po tem opravilu bo porabljenega %sB dodatnega prostora.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:183 +#: apt-private/private-install.cc:171 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Po tem opravilu bo sproÅ¡Äenega %sB prostora na disku.\n" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "Na %s je premalo prostora." -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "PriÅ¡lo je do težav in -y je bil uporabljen brez --force-yes" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Navedena je možnost Samo preprosto, a to opravilo ni preprosto." #. 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Da, naredi tako kot pravim!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1182,19 +1208,19 @@ msgstr "" "Za nadaljevanje vtipkajte frazo '%s'\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "Prekini." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "Ali želite nadaljevati?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "Prejem nekaterih datotek ni uspel" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1202,19 +1228,19 @@ msgstr "" "Nekaterih arhivov ni mogoÄe dobiti. Poskusite uporabiti apt-get update ali --" "fix-missing." -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing in izmenjava medija trenutno nista podprta" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "Ni mogoÄe popraviti manjkajoÄih paketov." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "Prekinjanje namestitve." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1234,17 +1260,17 @@ msgstr[3] "" "Naslednji paketi so izginili z vaÅ¡ega sistema, ker so vse\n" "datoteke prepisali drugi paketi:" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Opomba: To je dpkg storil samodejno in namenoma." -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "Program ne bi smel brisati stvari, ni mogoÄe zagnati " "SamodejnegaOdstranjevalnika" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1263,15 +1289,15 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 msgid "The following information may help to resolve the situation:" msgstr "Naslednji podatki vam bodo morda pomagali reÅ¡iti težavo:" -#: apt-private/private-install.cc:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "Notranja napaka, SamodejniOdstranjevalnik je pokvaril stvari" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1283,7 +1309,7 @@ msgstr[2] "" "Naslednja paketa sta bila samodejno nameÅ¡Äena in nista veÄ zahtevana:" msgstr[3] "Naslednji paketi so bili samodejno nameÅ¡Äeni in niso veÄ zahtevani:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1293,7 +1319,7 @@ msgstr[1] "%lu paket je bil samodejno nameÅ¡Äen in ni bil veÄ zahtevan.\n" msgstr[2] "%lu paketa sta bila samodejno nameÅ¡Äena in nista veÄ zahtevana.\n" msgstr[3] "%lu paketi so bili samodejno nameÅ¡Äeni in niso veÄ zahtevani.\n" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Uporabite 'apt-get autoremove' za njihovo odstranitev." @@ -1301,11 +1327,11 @@ msgstr[1] "Uporabite 'apt-get autoremove' za njegovo odstranitev." msgstr[2] "Uporabite 'apt-get autoremove' za njuno odstranitev." msgstr[3] "Uporabite 'apt-get autoremove' za njihovo odstranitev." -#: apt-private/private-install.cc:624 +#: apt-private/private-install.cc:612 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Poskusite zagnati 'apt-get -f install', Äe želite popraviti naslednje:" -#: apt-private/private-install.cc:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1313,7 +1339,7 @@ msgstr "" "NereÅ¡ene odvisnosti. Poskusite 'apt-get -f install' brez paketov (ali " "navedite reÅ¡itev)." -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1325,145 +1351,145 @@ msgstr "" ", da nekateri zahtevani paketi Å¡e niso ustvarjeni ali premaknjeni\n" " iz PrihajajoÄega." -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "Pokvarjeni paketi" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "Naslednji dodatni paketi bodo nameÅ¡Äeni:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "Predlagani paketi:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "PriporoÄeni paketi:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "POZOR: Naslednjih paketov ni bilo mogoÄe overiti!" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "Opozorilo overitve je bilo prepisano.\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "Nekaterih paketkov bi bilo mogoÄe overiti" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "Ali želite te pakete namestiti brez preverjanja?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Ni mogoÄe dobiti %s %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [NameÅ¡Äeno]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [NameÅ¡Äeno]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [NameÅ¡Äeno]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [NameÅ¡Äeno]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "Naslednji paketi imajo nereÅ¡ene odvisnosti:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "vendar je paket %s nameÅ¡Äen" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "vendar bo paket %s nameÅ¡Äen" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "vendar se ga ne da namestiti" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "vendar je navidezen paket" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "vendar ni nameÅ¡Äen" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "vendar ne bo nameÅ¡Äen" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " ali" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "Naslednji NOVI paketi bodo nameÅ¡Äeni:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "Naslednji novi paketi bodo ODSTRANJENI:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "Naslednji paketi so bili zadržani:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "Naslednji paketi bodo nadgrajeni:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "Naslednji paketi bodo POSTARANI:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "Naslednji zadržani paketi bodo spremenjeni:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (zaradi %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1471,27 +1497,27 @@ msgstr "" "OPOZORILO: Naslednji nujni paketi bodo odstranjeni.\n" "Tega NE storite, razen Äe ne veste natanko kaj poÄenjate!" -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu nadgrajenih, %lu na novo nameÅ¡Äenih, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu posodobljenih, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu postaranih, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu bo odstranjenih in %lu ne nadgrajenih.\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu ne popolnoma nameÅ¡Äenih ali odstranjenih.\n" @@ -1500,7 +1526,7 @@ msgstr "%lu ne popolnoma nameÅ¡Äenih ali odstranjenih.\n" #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "" @@ -1508,93 +1534,93 @@ msgstr "" #. 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:702 +#: apt-private/private-output.cc:708 msgid "[y/N]" msgstr "" #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "Napaka med prevajanjem logiÄnega izraza - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "Popravljanje odvisnosti ..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " spodletelo." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "Ni mogoÄe popraviti odvisnosti" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "Ni mogoÄe pomanjÅ¡ati zbirke za nadgradnjo" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " Opravljeno" -#: apt-private/private-cachefile.cc:102 +#: 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:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "NereÅ¡ene odvisnosti. Poskusite uporabiti -f." -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "Ukaz update ne sprejema argumentov" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "PreraÄunavanje nadgradnje ... " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "Notranja napaka zaradi AllUpgrade." -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "Opravljeno" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"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:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1606,43 +1632,43 @@ msgstr "" " Zaklepanje je onemogoÄeno, zato se ne zanaÅ¡ajte\n" " na pomembnost trenutnega pravega stanja!" -#: apt-private/private-sources.cc:45 +#: 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-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "Zadetek " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "Dobi:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "Prezr " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Nap " -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "Pridobljenih %sB v %s (%sB/s)\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [Delo]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1655,19 +1681,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "Ni mogoÄe brati %s" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "Ni mogoÄe spremeniti v %s" @@ -1696,11 +1722,11 @@ msgstr "Datoteke zrcalnega strežnika '%s' ni mogoÄe prebrati" msgid "[Mirror: %s]" msgstr "[Zrcalni strežnik: %s]" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: 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:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "Povezava se je prezgodaj zaprla" @@ -1765,40 +1791,45 @@ 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:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Ni mogoÄe doloÄiti %s" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "Ni mogoÄe pisati na %s" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Ni mogoÄe ugotoviti razliÄice debconfa. Je sploh nameÅ¡Äen?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "Seznam razÅ¡iritev paketov je predolg" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "Napaka med obdelavo mape %s" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "Seznam razÅ¡iritev virov je predolg" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "Napaka med pisanjem glave v datoteko vsebine" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "Napaka med obdelavo vsebine %s" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1878,26 +1909,26 @@ msgstr "" " -c=? prebere to nastavitveno datoteko\n" " -o=? nastavi poljubno možnost nastavitve" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "Nobena izbira se ne ujema" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Nekatere datoteke manjkajo v skupini datotek paketov `%s'" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, 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:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "PZ je star, poskuÅ¡anje nadgradnje %s" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -1905,192 +1936,192 @@ 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:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Ni mogoÄe odprti datoteke PZ %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "Napaka med doloÄitvijo %s" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "Arhiv nima nadzornega zapisa" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "Ni mogoÄe najti kazalke" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "O: ni mogoÄe brati mape %s\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "O: Ni mogoÄe doloÄiti %s\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "O: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "N: Napake se sklicujejo na datoteko " -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "Ni mogoÄe razreÅ¡iti %s" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "Hoja drevesa je spodletela" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "Ni mogoÄe odprti %s" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " RazVeži %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "Napaka med branjem povezave %s" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "Napaka med odvezovanjem %s" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Napaka med povezovanjem %s in %s" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Dosežena meja RazVezovanja %sB.\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "Arhiv ni imel polja s paketom" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %s nima prepisanega vnosa\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " Vzdrževalec %s je %s in ne %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr " %s nima izvornega vnosa prepisa\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s nima tudi binarnega vnosa prepisa\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - Napaka med dodeljevanjem pomnilnika" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "Ni mogoÄe odpreti %s" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "Slabo oblikovan prepis %s v vrstici %llu Å¡t. 1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "Napaka med branjem prepisane datoteke %s" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, c-format msgid "Malformed override %s line %llu #1" msgstr "Slabo oblikovan prepis %s v vrstici %llu Å¡t. 1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, c-format msgid "Malformed override %s line %llu #2" msgstr "Slabo oblikovan prepis %s v vrstici %llu Å¡t. 1" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, c-format msgid "Malformed override %s line %llu #3" msgstr "Slabo oblikovan prepis %s v vrstici %llu Å¡t. 3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "Neznan algoritem stiskanja '%s'" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "Stisnjen izhod %s potrebuje niz stiskanja" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "Ustvarjanje DATOTEKE* ni uspelo" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "Vejitev ni uspela" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "Podrejeni predmet stiskanja" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "Notranja napaka. Ni mogoÄe ustvariti %s" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "VI podopravila/datoteke je spodletel" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "Med raÄunanjem MD5 ni mogoÄe brati" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "Napaka med odvezovanjem %s" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "Ni mogoÄe preimenovati %s v %s" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -2144,157 +2175,157 @@ msgstr "" " -c=? Prebere podano datoteko z nastavitvami\n" " -o=? Nastavi poljubno nastavitveno možnost, npr. -o dir::cache=/tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "Ni mogoÄe ustvariti pip" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "Ni mogoÄe izvesti gzip " -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "Pokvarjen arhiv" -#: apt-inst/contrib/extracttar.cc:201 +#: 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:306 +#: apt-inst/contrib/extracttar.cc:308 #, c-format msgid "Unknown TAR header type %u, member %s" msgstr "Neznana vrsta glave TAR %u, Älan %s" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "Neveljaven podpis arhiva" -#: apt-inst/contrib/arfile.cc:82 +#: apt-inst/contrib/arfile.cc:84 msgid "Error reading archive member header" msgstr "Napaka med branjem glave Älana arhiva" -#: apt-inst/contrib/arfile.cc:94 +#: apt-inst/contrib/arfile.cc:96 #, c-format msgid "Invalid archive member header %s" msgstr "Neveljavna glava arhiva Älana %s" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "Neveljavna glava Älana arhiva" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "Arhiv je prekratek" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "Glav arhiva ni mogoÄe brati" -#: apt-inst/filelist.cc:382 +#: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" msgstr "DropNode je poklical stabilno povezano vozliÅ¡Äe" -#: apt-inst/filelist.cc:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "Ni mogoÄe najti razprÅ¡enega elementa!" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "Ni mogoÄe dodeliti odklona" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "Notranja napaka v AddDiversion" -#: apt-inst/filelist.cc:479 +#: apt-inst/filelist.cc:477 #, c-format msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" msgstr "Poskus prepisovanja odklona, %s -> %s in %s/%s" -#: apt-inst/filelist.cc:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "Dvojni seÅ¡tevek odklona %s -> %s" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "Dvojnik datoteke z nastavitvami %s/%s" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format msgid "Failed to write file %s" msgstr "Zapisovanje datoteke %s je spodletelo" -#: apt-inst/dirstream.cc:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "Napaka med zapiranjem datoteke %s" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format msgid "The path %s is too long" msgstr "Pot %s je predolga" -#: apt-inst/extract.cc:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "Odpakiranje %s veÄ kot enkrat" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "Mapa %s je odklonjena" -#: apt-inst/extract.cc:145 +#: apt-inst/extract.cc:152 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "Paket poskuÅ¡a pisati v tarÄo odklona %s/%s" -#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 msgid "The diversion path is too long" msgstr "Pot odklona je predloga" -#: apt-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, 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:282 +#: apt-inst/extract.cc:289 msgid "Failed to locate node in its hash bucket" msgstr "Iskanje vozliÅ¡Äa v njegovem razprÅ¡enem vedru ni uspelo" -#: apt-inst/extract.cc:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "Pot je predolga" -#: apt-inst/extract.cc:414 +#: apt-inst/extract.cc:421 #, c-format msgid "Overwrite package match with no version for %s" msgstr "PrepiÅ¡i zadetek paketa brez vnosa razliÄice za %s" -#: apt-inst/extract.cc:431 +#: apt-inst/extract.cc:438 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "Datoteka %s/%s prepisuje datoteko v paketu %s" -#: apt-inst/extract.cc:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "Ni mogoÄe doloÄiti %s" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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 "To ni veljaven arhiv DEB. Manjka Älan '%s'." -#: apt-inst/deb/debfile.cc:124 +#: apt-inst/deb/debfile.cc:132 #, c-format msgid "Internal error, could not locate member %s" msgstr "Notranja napaka. Ni mogoÄe najti Älana %s." -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "Nadzorne datoteke ni mogoÄe razÄleniti" @@ -2353,490 +2384,495 @@ msgstr "" "Ni mogoÄe poveÄati velikosti MMap, ker je samodejno poveÄevanje onemogoÄeno." #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lid %lih %limin %lis" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "%lih %limin %lis" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "%limin %lis" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "%lis" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "Izbire %s ni mogoÄe najti" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Neprepoznana vrsta okrajÅ¡ave: '%c'" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "Odpiranje nastavitvene datoteke %s" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Skladenjska napaka %s:%u: Blok se zaÄne brez imena." -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Skladenjska napaka %s:%u: Slabo oblikovana oznaka." -#: apt-pkg/contrib/configuration.cc:821 +#: 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-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "Skladenjska napaka %s:%u: Napotki se lahko izvedejo le na vrhnji ravni." -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Skladenjska napaka %s:%u: PreveÄ vgnezdenih vkljuÄitev" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Skladenjska napaka %s:%u: VkljuÄeno od tu" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Skladenjska napaka %s:%u: Nepodprt napotek '%s'" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-pkg/contrib/configuration.cc:900 #, 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-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Skladenjska napaka %s:%u: Dodatna krama na koncu datoteke" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s ... Napaka!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s ... Narejeno" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s ... Narejeno" -#: apt-pkg/contrib/cmndline.cc:116 +#: 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-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: 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-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: 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." -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "Možnost %s: DoloÄilo predmeta nastavitve zahtevajo =<val>." -#: apt-pkg/contrib/cmndline.cc:273 +#: 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-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "Možnost '%s' je predolga" -#: apt-pkg/contrib/cmndline.cc:336 +#: 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-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "Neveljavno opravilo %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format msgid "Unable to stat the mount point %s" msgstr "Ni mogoÄe doloÄiti priklopne toÄke %s" -#: apt-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "Ni mogoÄe doloÄiti CD-ROM-a" -#: apt-pkg/contrib/fileutl.cc:95 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Težava med zapiranjem gzip datoteke %s" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "Brez uporabe zaklepanja za zaklenjeno datoteko le za branje %s" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "Ni mogoÄe odprti zaklenjene datoteke %s" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "Brez uporabe zaklepanja za datoteko %s, priklopljeno z NTFS" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "Ni mogoÄe zakleniti datoteke %s" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, 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-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, 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-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, 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-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, 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" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Pod-opravilo %s je prejelo segmentacijsko napako." -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, c-format msgid "Sub-process %s received signal %u." msgstr "Pod-opravilo %s je prejelo signal %u." -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 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-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 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-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Težava med zapiranjem gzip datoteke %s" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "Ni mogoÄe odpreti datoteke %s" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, c-format msgid "Could not open file descriptor %d" msgstr "Ni mogoÄe odpreti opisnika datotek %d" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "Ni mogoÄe ustvariti podopravila IPD" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "Ni mogoÄe izvesti stiskanja " -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, 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-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, 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-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, c-format msgid "Problem closing the file %s" msgstr "Težava med zapiranjem datoteke %s" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, c-format msgid "Problem renaming the file %s to %s" msgstr "Težava med preimenovanje datoteke %s v %s" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, c-format msgid "Problem unlinking the file %s" msgstr "Težava med razvezovanjem datoteke %s" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "Težava med usklajevanjem datoteke" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "preimenovanje je spodletelo, %s (%s -> %s)." + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, c-format msgid "No keyring installed in %s." msgstr "V %s ni nameÅ¡Äenih zbirk kljuÄev." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "Prazen predpomnilnik paketov" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "Datoteka s predpomnilnikom paketov je pokvarjena" -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "RazliÄica datoteke s predpomnilnikom paketov ni združljiva" -#: apt-pkg/pkgcache.cc:162 +#: apt-pkg/pkgcache.cc:169 msgid "The package cache file is corrupted, it is too small" msgstr "Datoteka predpomnilnika paketa je okvarjena. Je premajhna" -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, 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:172 +#: 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:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "Odvisen od" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "Predodvisen od" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "PriporoÄa" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "PriporoÄa" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "V sporu z" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "Zamenja" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "Zastara" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "Pokvari" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "IzboljÅ¡a" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "pomembno" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "obvezno" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "obiÄajni" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "izbirno" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "dodatno" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "Gradnja drevesa odvisnosti" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "RazliÄice kandidatov" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "Ustvarjanje odvisnosti" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 msgid "Reading state information" msgstr "Branje podatkov o stanju" -#: apt-pkg/depcache.cc:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "Odpiranje DatotekeStanja %s je spodletelo" -#: apt-pkg/depcache.cc:250 +#: apt-pkg/depcache.cc:256 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Pisanje zaÄasne DatotekeStanja %s je spodletelo" -#: apt-pkg/tagfile.cc:138 +#: apt-pkg/tagfile.cc:140 #, c-format msgid "Unable to parse package file %s (1)" msgstr "Ni mogoÄe razÄleniti datoteke paketa %s (1)" -#: apt-pkg/tagfile.cc:235 +#: apt-pkg/tagfile.cc:237 #, c-format msgid "Unable to parse package file %s (2)" msgstr "Ni mogoÄe razÄleniti datoteke paketa %s (2)" -#: apt-pkg/sourcelist.cc:118 +#: 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:161 +#: apt-pkg/sourcelist.cc:170 #, c-format msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" "Slabo oblikovana vrstica %lu na seznamu virov %s ([možnosti] ni mogoÄe " "razÄleniti)" -#: apt-pkg/sourcelist.cc:164 +#: apt-pkg/sourcelist.cc:173 #, c-format msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "Slabo oblikovana vrstica %lu na seznamu virov %s ([možnost] prekratka)" -#: apt-pkg/sourcelist.cc:175 +#: apt-pkg/sourcelist.cc:184 #, c-format msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" msgstr "Slabo oblikovana vrstica %lu na seznamu vrstic %s ([%s] ni dodelitev)" -#: apt-pkg/sourcelist.cc:181 +#: apt-pkg/sourcelist.cc:190 #, c-format msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "Slabo oblikovana vrstica %lu na seznamu virov %s ([%s] nima kljuÄa)" -#: apt-pkg/sourcelist.cc:184 +#: apt-pkg/sourcelist.cc:193 #, c-format msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" "Slabo oblikovana vrstica %lu na seznamu virov %s ([%s] kljuÄ %s nima " "vrednosti)" -#: apt-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "Slabo oblikovana vrstica %lu v seznamu virov %s (URI)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "Slabo oblikovana vrstica %lu v seznamu virov %s (distribucija)" -#: apt-pkg/sourcelist.cc:202 +#: apt-pkg/sourcelist.cc:211 #, c-format msgid "Malformed line %lu in source list %s (URI parse)" msgstr "Slabo oblikovana vrstica %lu v seznamu virov %s (razÄlenitev URI)" -#: apt-pkg/sourcelist.cc:208 +#: apt-pkg/sourcelist.cc:217 #, c-format msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "" "Slabo oblikovana vrstica %lu v seznamu virov %s (absolutna distribucija)" -#: apt-pkg/sourcelist.cc:215 +#: apt-pkg/sourcelist.cc:224 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" msgstr "" "Slabo oblikovana vrstica %lu v seznamu virov %s (razÄlenitev distribucije)" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "Odpiranje %s" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "Vrstica %u v seznamu virov %s je predolga." -#: apt-pkg/sourcelist.cc:362 +#: 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-pkg/sourcelist.cc:366 +#: 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-pkg/sourcelist.cc:407 +#: 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-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2845,12 +2881,12 @@ msgstr "" "Ni mogoÄe izvesti takojÄ…nje nastavitve na '%s'. Oglejte si man5 apt.conf pod " "APT::Immediate-Configure za podrobnosti. (%d)" -#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, c-format msgid "Could not configure '%s'. " msgstr "Ni mogoÄe nastaviti '%s' " -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2861,18 +2897,18 @@ msgstr "" "zanke spora/predodvisnosti. To je ponavadi slabo, toda Äe zares želite " "nadaljevati, vkljuÄite možnost APT::Force-LoopBreak." -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "Vrsta datoteke s kazalom '%s' ni podprta" -#: apt-pkg/algorithms.cc:266 +#: 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-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2880,88 +2916,88 @@ msgstr "" "Napaka. pkgProblemResolver::Resolve pri razreÅ¡itvi, ki so jih morda " "povzroÄili zadržani paketi." -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "Ni mogoÄe popraviti težav. Imate pokvarjene pakete." -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, c-format msgid "List directory %spartial is missing." msgstr "Mapa seznama %spartial manjka." -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, c-format msgid "Archives directory %spartial is missing." msgstr "Mapa arhivov %spartial manjka." -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, c-format msgid "Unable to lock directory %s" msgstr "Mape %s ni mogoÄe zakleniti" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Pridobivanje datoteke %li od %li (%s preostalo)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "Pridobivanje datoteke %li od %li" -#: apt-pkg/acquire-worker.cc:113 +#: 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." -#: apt-pkg/acquire-worker.cc:115 +#: 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" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "NaÄin %s se ni zaÄel pravilno" -#: apt-pkg/acquire-worker.cc:452 +#: apt-pkg/acquire-worker.cc:455 #, c-format msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "Vstavite disk z oznako '%s' v pogon '%s' in pritisnite vnosno tipko." -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Paketni sistem '%s' ni podprt" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "Ni mogoÄe doloÄiti ustrezne vrste paketnega sistema" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "Ni mogoÄe doloÄiti %s." -#: apt-pkg/srcrecords.cc:47 +#: 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" -#: apt-pkg/cachefile.cc:87 +#: 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:91 +#: 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:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "Seznama virov ni mogoÄe brati." -#: apt-pkg/policy.cc:75 +#: apt-pkg/policy.cc:83 #, c-format msgid "" "The value '%s' is invalid for APT::Default-Release as such a release is not " @@ -2970,97 +3006,92 @@ msgstr "" "Vrednost '%s' je neveljavna za APT::Default-Release in zato takÅ¡na izdaja ni " "na voljo v virih" -#: apt-pkg/policy.cc:414 +#: 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:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "Ni mogoÄe razumeti vrste bucike %s" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "Prednost bucike ni navedena ali pa je niÄ." -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 msgid "Cache has an incompatible versioning system" msgstr "Predpomnilnik ima neustrezen sistem razliÄic" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Med obdelovanjem %s je priÅ¡lo do napake (%s%d)" -#: apt-pkg/pkgcachegen.cc:251 +#: 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." -#: apt-pkg/pkgcachegen.cc:254 +#: 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." -#: apt-pkg/pkgcachegen.cc:257 +#: 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." -#: apt-pkg/pkgcachegen.cc:260 +#: 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." -#: apt-pkg/pkgcachegen.cc:570 +#: 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" -#: apt-pkg/pkgcachegen.cc:1199 +#: 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" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 msgid "Reading package lists" msgstr "Branje seznama paketov" -#: apt-pkg/pkgcachegen.cc:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "Zbiranje dobaviteljev datotek" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 msgid "IO Error saving source cache" msgstr "Napaka VI med shranjevanjem predpomnilnika virov" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "preimenovanje je spodletelo, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "Neujemanje vsote razprÅ¡il" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "Neujemanje velikosti" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "Neveljavno opravilo %s" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, c-format msgid "" "Unable to find expected entry '%s' in Release file (Wrong sources.list entry " @@ -3069,16 +3100,16 @@ msgstr "" "Ni mogoÄe najti priÄakovanega vnosa '%s' v datoteki Release (napaÄen vnos " "sources.list ali slabo oblikovana datoteka)" -#: apt-pkg/acquire-item.cc:1586 +#: apt-pkg/acquire-item.cc:1595 #, 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" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "Za naslednje ID-je kljuÄa ni na voljo javnih kljuÄev:\n" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " @@ -3087,12 +3118,12 @@ msgstr "" "Datoteka Release za %s je potekla (neveljavna od %s). Posodobitev za to " "skladiÅ¡Äe ne bo uveljavljena." -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Distribucija v sporu: %s (priÄakovana %s, toda dobljena %s)" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3102,12 +3133,12 @@ msgstr "" "zato bodo uporabljene predhodne datoteke kazal. Napaka GPG: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "Napaka GPG: %s: %s" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3116,12 +3147,12 @@ msgstr "" "Ni bilo mogoÄe najti datoteke za paket %s. Morda boste morali roÄno " "popraviti ta paket (zaradi manjkajoÄega arhiva)." -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, 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'" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -3129,71 +3160,67 @@ msgstr "" "Datoteke s kazali paketov so pokvarjene. Brez imena datotek: polje za paket " "%s." -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, c-format msgid "Unable to parse Release file %s" msgstr "Ni mogoÄe razÄleniti Release datoteke %s" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, c-format msgid "No sections in Release file %s" msgstr "Ni izbir v Release datoteki %s" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "Ni vnosa razprÅ¡ila v Release datoteki %s" -#: apt-pkg/indexrecords.cc:125 +#: 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-pkg/indexrecords.cc:144 +#: apt-pkg/indexrecords.cc:149 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Neveljavne vnos 'Datum' v Release datoteki %s" -#: apt-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "Ponudnikov blok %s ne vsebuje prstnega podpisa" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Uporabljanje CD-ROM-ove priklopne toÄke %s\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "Odklapljanje CD-ROM-a\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "Odklapljanje CD-ROM-a ...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "ÄŒakanje na disk ...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "Priklapljanje CD-ROM-a ...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " msgstr "Identificiranje ... " -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "Shranjena oznaka: %s\n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "Odklapljanje CD-ROM-a ...\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" -msgstr "Preiskovanje diska za datoteke kazala ..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" +msgstr "Preiskovanje diska za datoteke kazala ...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3202,7 +3229,7 @@ msgstr "" "Najdenih je bilo %zu kazal paketov, %zu kazal virov, %zu kazalov prevodov in " "%zu podpisov\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" @@ -3210,16 +3237,16 @@ msgstr "" "Nobenih datotek paketov ni mogoÄe najti, morda to ni disk Debian ali pa je " "arhitektura napaÄna?" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "Najdena je bila oznaka '%s'\n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "To ni veljavno ime, poskusite znova.\n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3228,34 +3255,34 @@ msgstr "" "Ta disk se imenuje: \n" "'%s'\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "Kopiranje seznama paketov ..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "Pisanje novega seznama virov\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "Izvorni vnosi za ta disk so:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format msgid "Wrote %i records.\n" msgstr "Zapisanih je bilo %i zapisov.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:777 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Zapisanih je bilo %i zapisov z %i manjkajoÄimi datotekami.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:780 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Zapisanih je bilo %i zapisov z %i neujemajoÄimi datotekami.\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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 "" @@ -3272,37 +3299,37 @@ msgstr "Ni mogoÄe najti zapisa overitve za: %s" msgid "Hash mismatch for: %s" msgstr "Neujemanje razprÅ¡ila za: %s" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Izdaje '%s' za '%s' ni mogoÄe najti" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "RazliÄice '%s' za '%s' ni mogoÄe najti" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, c-format msgid "Couldn't find task '%s'" msgstr "Ni mogoÄe najti naloge '%s'" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, 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:605 +#: apt-pkg/cacheset.cc:613 #, 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:616 +#: apt-pkg/cacheset.cc:624 #, c-format msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "Ni mogoÄe izbrati razliÄic in paketa '%s', saj je popolnoma navidezen" -#: apt-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " @@ -3311,53 +3338,53 @@ msgstr "" "Ni mogoÄe izbrati nameÅ¡Äene razliÄice ali razliÄice kandidata iz paketa " "'%s', saj nima nobenega od njiju" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, 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-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, 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-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, 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-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "PoÅ¡lji scenarij reÅ¡evalniku" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "PoÅ¡lji zahtevo reÅ¡evalniku" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "Priprava za reÅ¡itev prejemanja" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "Zunanji reÅ¡evalnik je spodletel brez pravega sporoÄila o napakah" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "Izvedi zunanji reÅ¡evalnik" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "Poganjanje dpkg" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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." @@ -3365,119 +3392,119 @@ msgstr "" "Prejem nekaterih datotek kazala je spodletel. Bile so prezrte ali pa so bile " "namesto njih uporabljene stare." -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "NameÅ¡Äanje %s" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "Nastavljanje %s" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "Odstranjevanje %s" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format msgid "Completely removing %s" msgstr "%s je bil popolnoma odstranjen" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "%s je izginil" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "Poganjanje sprožilca po namestitvi %s" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "Mapa '%s' manjka" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format msgid "Could not open file '%s'" msgstr "Ni mogoÄe odpreti datoteke '%s'" -#: apt-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "Pripravljanje %s" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "RazÅ¡irjanje %s" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "Pripravljanje na nastavljanje %s" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "%s je bil nameÅ¡Äen" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "Pripravljanje na odstranitev %s" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "%s je bil odstranjen" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "Pripravljanje na popolno odstranitev %s" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "%s je bil popolnoma odstranjen" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "Ni mogoÄe pisati na %s" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "Opravilo je bilo prekinjeno preden se je lahko konÄalo" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 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" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "težave odvisnosti - puÅ¡Äanje nenastavljenega" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3485,7 +3512,7 @@ msgstr "" "PoroÄilo apport ni bilo napisano, ker sporoÄilo o napaki nakazuje na " "navezujoÄo napako iz predhodne napake." -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" @@ -3493,7 +3520,7 @@ msgstr "" "PoroÄilo apport ni bilo napisano, ker sporoÄilo o napaki nakazuje na napako " "polnega diska" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3501,7 +3528,7 @@ msgstr "" "PoroÄilo apport ni bilo napisano, ker sporoÄilo o napaki nakazuje na napako " "zaradi pomanjkanja pomnilnika" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 msgid "" "No apport report written because the error message indicates an issue on the " "local system" @@ -3509,14 +3536,14 @@ msgstr "" "PoroÄilo apport je bilo napisano, ker sporoÄilo o napaki nakazuje na težavo " "na krajevnem sistemu" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" "PoroÄilo apport ni bilo napisano, ker sporoÄilo o napaki nakazuje na napako " "dpkg V/I" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " @@ -3524,20 +3551,20 @@ msgid "" msgstr "" "SkrbniÅ¡ke mape (%s) ni mogoÄe zakleniti. Jo morda uporablja drugo opravilo?" -#: apt-pkg/deb/debsystem.cc:87 +#: 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?" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: 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-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "Ni zaklenjeno" @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2010-08-24 21:18+0100\n" "Last-Translator: Daniel Nylander <po@danielnylander.se>\n" "Language-Team: Swedish <debian-l10n-swedish@debian.org>\n" @@ -19,153 +19,154 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: cmdline/apt-cache.cc:140 +#: cmdline/apt-cache.cc:149 #, c-format msgid "Package %s version %s has an unmet dep:\n" msgstr "" "Paketet %s med version %s har ett beroende som inte kan tillfredsställas:\n" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "Totalt antal paketnamn: " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 msgid "Total package structures: " msgstr "Totala paketstrukturer: " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " Vanliga paket: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " Helt virtuella paket: " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " Enstaka virtuella paket: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " Blandade virtuella paket: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " Saknade: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "Totalt antal olika versioner: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "Totalt antal olika beskrivningar: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "Totalt antal beroenden: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "Totalt antal version/filrelationer: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "Totalt antal beskrivning/filrelationer: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "Totalt antal tillhandahÃ¥llningsmarkeringar: " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "Totalt antal sökmönstersträngar: " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "Totalt utrymme för versionsberoenden: " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "Totalt bortkastat utrymme: " -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "Totalt utrymme som kan redogöras för: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: 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 "Paketfilen %s är inte synkroniserad." -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 msgid "No packages found" msgstr "Inga paket hittades" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 msgid "You must give at least one search pattern" msgstr "Du mÃ¥ste ange minst ett sökmönster" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "Kunde inte hitta paketet %s" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "\"Package\"-filer:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: 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" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "FastnÃ¥lade paket:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(hittades inte)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " Installerad: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " Kandidat: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(ingen)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " PaketnÃ¥lning: " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " Versionstabell:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s för %s kompilerad den %s %s\n" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -239,28 +240,28 @@ msgstr "" " -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:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: 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:104 +#: 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:141 +#: cmdline/apt-cdrom.cc:139 #, c-format msgid "Failed to mount '%s' to '%s'" msgstr "Misslyckades med att montera \"%s\" till \"%s\"" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Upprepa proceduren för resten av cd-skivorna i din uppsättning." @@ -296,65 +297,65 @@ msgstr "" " -c=? Läs denna konfigurationsfil.\n" " -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:244 +#: 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\"" -#: cmdline/apt-get.cc:326 +#: 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\"" -#: cmdline/apt-get.cc:329 +#: 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\"" -#: cmdline/apt-get.cc:366 +#: 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" -#: cmdline/apt-get.cc:422 +#: 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\"" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "Kunde inte hitta paketet %s" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "%s är satt till manuellt installerad.\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s är satt till automatiskt installerad.\n" -#: cmdline/apt-get.cc:468 cmdline/apt-mark.cc:116 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: 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" -#: cmdline/apt-get.cc:573 cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 msgid "Unable to lock the download directory" msgstr "Kunde inte lÃ¥sa hämtningskatalogen" -#: cmdline/apt-get.cc:725 +#: 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" -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "Kunde inte hitta nÃ¥got källkodspaket för %s" @@ -380,95 +381,95 @@ msgstr "" "bzr get %s\n" "för att hämta senaste (möjligen inte utgivna) uppdateringar av paketet.\n" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Hoppar över redan hämtade filen \"%s\"\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "Kunde inte fastställa ledigt utrymme i %s" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "Du har inte tillräckligt mycket ledigt utrymme i %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Behöver hämta %sB/%sB källkodsarkiv.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Behöver hämta %sB källkodsarkiv.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "Hämtar källkoden %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "Misslyckades med att hämta vissa arkiv." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "Hämtningen färdig i \"endast-hämta\"-läge" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Packar inte upp redan uppackad källkod i %s\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Uppackningskommandot \"%s\" misslyckades.\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Försäkra dig om att paketet \"dpkg-dev\" är installerat.\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "Byggkommandot \"%s\" misslyckades.\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "Barnprocessen misslyckades" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "Du mÃ¥ste ange minst ett paket att kontrollera byggberoenden för" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Kunde inte hämta information om byggberoenden för %s" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s har inga byggberoenden.\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -477,7 +478,7 @@ msgstr "" "%s-beroendet pÃ¥ %s kan inte tillfredsställas eftersom paketet %s inte kan " "hittas" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -486,14 +487,14 @@ msgstr "" "%s-beroendet pÃ¥ %s kan inte tillfredsställas eftersom paketet %s inte kan " "hittas" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Misslyckades med att tillfredsställa %s-beroendet för %s: Det installerade " "paketet %s är för nytt" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -502,7 +503,7 @@ msgstr "" "%s-beroendet pÃ¥ %s kan inte tillfredsställas eftersom inga tillgängliga " "versioner av paketet %s tillfredsställer versionskraven" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -511,31 +512,31 @@ msgstr "" "%s-beroendet pÃ¥ %s kan inte tillfredsställas eftersom paketet %s inte kan " "hittas" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Misslyckades med att tillfredsställa %s-beroendet för %s: %s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Byggberoenden för %s kunde inte tillfredsställas." -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "Misslyckades med att behandla byggberoenden" # Felmeddelande för misslyckad chdir -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "Ansluter till %s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "Moduler som stöds:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -623,53 +624,75 @@ msgstr "" "för mer information och flaggor.\n" " Denna APT har Speciella Ko-Krafter.\n" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Du mÃ¥ste ange minst ett paket att hämta källkod för" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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 "men det är inte installerat" -#: cmdline/apt-mark.cc:63 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format msgid "%s was already set to manually installed.\n" msgstr "%s är satt till manuellt installerad.\n" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, fuzzy, c-format msgid "%s was already set to automatically installed.\n" msgstr "%s är satt till automatiskt installerad.\n" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format msgid "%s was already set on hold.\n" msgstr "%s är redan den senaste versionen.\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, fuzzy, c-format msgid "%s was already not hold.\n" msgstr "%s är redan den senaste versionen.\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Väntade pÃ¥ %s men den fanns inte där" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, fuzzy, c-format msgid "%s set on hold.\n" msgstr "%s är satt till manuellt installerad.\n" -#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, fuzzy, c-format msgid "Canceled hold on %s.\n" msgstr "Misslyckades med att öppna %s" -#: cmdline/apt-mark.cc:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" "\n" @@ -696,7 +719,7 @@ msgid "" "See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -744,52 +767,52 @@ msgstr "Kunde inte avmontera cd-rom:en i %s, den kanske fortfarande används." msgid "Disk not found." msgstr "Skivan hittades inte." -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "Filen hittades inte" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 msgid "Failed to stat" msgstr "Kunde inte ta status" -#: methods/copy.cc:82 methods/gzip.cc:113 methods/rred.cc:606 +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 msgid "Failed to set modification time" msgstr "Misslyckades ställa in ändringstid" -#: methods/file.cc:47 +#: methods/file.cc:48 msgid "Invalid URI, local URIS must not start with //" msgstr "Ogiltig URI, lokala URI:er fÃ¥r inte börja med //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "Loggar in" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "Kunde inte fastställa namnet pÃ¥ partnern" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "Kunde inte fastställa det lokala namnet" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: 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" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "USER misslyckades, servern sade: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS misslyckades, servern sade: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -797,122 +820,124 @@ msgstr "" "En mellanserver (proxy) angavs men inget inloggningsskript, Acquire::ftp::" "ProxyLogin är tom." -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Kommandot \"%s\" i inloggningsskriptet misslyckades, servern sade: %s" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE misslyckades, servern sade: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 msgid "Connection timeout" msgstr "Tidsgränsen för anslutningen överskreds" -#: methods/ftp.cc:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "Servern stängde anslutningen" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "Läsfel" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "Ett svar spillde bufferten." -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "Protokollet skadat" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "Skrivfel" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 msgid "Could not create a socket" msgstr "Kunde inte skapa ett uttag (socket)" -#: methods/ftp.cc:707 +#: methods/ftp.cc:712 msgid "Could not connect data socket, connection timed out" msgstr "Kunde inte ansluta datauttaget (socket), inget svar inom tidsgräns" -#: methods/ftp.cc:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "Misslyckades" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "Kunde inte ansluta passivt uttag (socket)." -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo kunde inte fÃ¥ tag i ett lyssnande uttag (socket)" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "Kunde inte binda ett uttag (socket)" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "Kunde inte lyssna pÃ¥ uttaget (socket)" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "Kunde inte fastställa uttagets namn (socket)" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "Kunde inte sända PORT-kommando" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Okänd adressfamilj %u (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT misslyckades, servern sade: %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "Anslutet datauttag (socket) fick inte svar inom tidsgränsen" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "Kunde inte ta emot anslutningen" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "Problem med att lägga filen till hashtabellen" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Kunde inte hämta filen, servern sade \"%s\"" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "Datauttag (socket) fick inte svar inom tidsgränsen" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, 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:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "FrÃ¥gar" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "Kunde inte starta " @@ -950,7 +975,7 @@ msgstr "Kunde inte ansluta till %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "Ansluter till %s" @@ -982,39 +1007,39 @@ msgstr "NÃ¥got konstigt hände när \"%s:%s\" slogs upp (%i - %s)" msgid "Unable to connect to %s:%s:" msgstr "Kunde inte ansluta till %s:%s:" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Internt fel: Korrekt signatur men kunde inte fastställa nyckelns " "fingeravtryck?!" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "Minst en ogiltig signatur träffades pÃ¥." -#: methods/gpgv.cc:172 +#: 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?)" #. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "Okänt fel vid körning av gpgv" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: 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:229 +#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@ -1022,117 +1047,117 @@ msgstr "" "Följande signaturer kunde inte verifieras för att den öppna nyckeln inte är " "tillgänglig:\n" -#: methods/gzip.cc:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "Fel vid skrivning till filen" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "Fel vid läsning frÃ¥n server: Andra änden stängde förbindelsen" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "Fel vid läsning frÃ¥n server" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "Fel vid skrivning till fil" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "\"Select\" misslyckades" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "Anslutningen överskred tidsgränsen" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "Fel vid skrivning till utdatafil" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "Väntar pÃ¥ rubriker" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "Felaktig rubrikrad" -#: methods/server.cc:139 methods/server.cc:146 +#: 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" -#: methods/server.cc:176 +#: methods/server.cc:171 msgid "The HTTP server sent an invalid Content-Length header" msgstr "Http-servern sände ett ogiltigt Content-Length-rubrik" -#: methods/server.cc:199 +#: methods/server.cc:194 msgid "The HTTP server sent an invalid Content-Range header" msgstr "Http-servern sände ett ogiltigt Content-Range-rubrik" -#: methods/server.cc:201 +#: 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" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "Okänt datumformat" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "Felaktiga data i huvud" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "Anslutningen misslyckades" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "Internt fel" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Internt fel. InstallPackages anropades med trasiga paket!" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "Paketen mÃ¥ste tas bort men \"Remove\" är inaktiverat." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "Internt fel. Sorteringen färdigställdes inte" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +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." +"Konstigt... storlekarna stämde inte överens, skicka e-post till apt@packages." "debian.org" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Behöver hämta %sB/%sB arkiv.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:171 +#: apt-private/private-install.cc:159 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Behöver hämta %sB 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:178 +#: apt-private/private-install.cc:166 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" @@ -1140,31 +1165,31 @@ 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:183 +#: apt-private/private-install.cc:171 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Efter denna Ã¥tgärd kommer %sB att frigöras pÃ¥ disken.\n" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "Du har inte tillräckligt mycket ledigt utrymme i %s" -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "Problem har uppstÃ¥tt och -y användes utan --force-yes" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 msgid "Trivial Only specified but this is not a trivial operation." msgstr "\"Trivial Only\" angavs, men detta är inte en trivial handling." #. 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Ja, gör som jag säger!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1176,19 +1201,19 @@ msgstr "" " ?] " # Visas dÃ¥ man svarar nej -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "Avbryter." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "Vill du fortsätta?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "Misslyckades med att hämta vissa filer" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1196,19 +1221,19 @@ msgstr "" "Vissa arkiv kunte inte hämtas. Prova att köra \"apt-get update\" eller med --" "fix-missing." -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing och mediabyte stöds inte för tillfället" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "Kunde inte korrigera saknade paket." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "Avbryter installationen." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1222,16 +1247,16 @@ 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:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Observera: Detta sker med automatik och vid behov av dpkg." -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "Det är inte meningen att vi ska ta bort nÃ¥got, kan inte starta AutoRemover" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1249,15 +1274,15 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 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:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "Internt fel, AutoRemover förstörde nÃ¥got" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1268,7 +1293,7 @@ msgstr[0] "" msgstr[1] "" "Följande paket har installerats automatiskt och är inte längre nödvändiga:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1278,18 +1303,18 @@ msgstr[0] "" msgstr[1] "" "%lu paket blev installerade automatiskt och är inte längre nödvändiga.\n" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 #, fuzzy msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Använd \"apt-get autoremove\" för att ta bort dem." msgstr[1] "Använd \"apt-get autoremove\" för att ta bort dem." -#: apt-private/private-install.cc:624 +#: 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:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1297,7 +1322,7 @@ msgstr "" "Otillfredsställda beroenden. Prova med \"apt-get -f install\" utan paket " "(eller ange en lösning)." -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1309,145 +1334,145 @@ msgstr "" "att nÃ¥gra nödvändiga paket ännu inte har skapats eller flyttats\n" "ut frÃ¥n \"Incoming\"." -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "Trasiga paket" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "Följande ytterligare paket kommer att installeras:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "Föreslagna paket:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "Rekommenderade paket:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "VARNING: Följande paket kunde inte autentiseras!" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "Autentiseringsvarning Ã¥sidosatt.\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "NÃ¥gra av paketen kunde inte autentiseras" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "Installera dessa paket utan verifiering?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Misslyckades med att hämta %s %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [Installerat]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [Installerat]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [Installerat]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [Installerat]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "Följande paket har beroenden som inte kan tillfredsställas:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "men %s är installerat" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "men %s kommer att installeras" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "men det kan inte installeras" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "men det är ett virtuellt paket" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "men det är inte installerat" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "men det kommer inte att installeras" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " eller" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "Följande NYA paket kommer att installeras:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "Följande paket kommer att TAS BORT:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "Följande paket har hÃ¥llits tillbaka:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "Följande paket kommer att uppgraderas:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "Följande paket kommer att NEDGRADERAS:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "Följande tillbakahÃ¥llna paket kommer att ändras:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (pÃ¥ grund av %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1455,27 +1480,27 @@ 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:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu att uppgradera, %lu att nyinstallera, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu att installera om, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu att nedgradera, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu att ta bort och %lu att inte uppgradera.\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu är inte helt installerade eller borttagna.\n" @@ -1484,7 +1509,7 @@ msgstr "%lu är inte helt installerade eller borttagna.\n" #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "[J/n]" @@ -1492,91 +1517,91 @@ msgstr "[J/n]" #. 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:702 +#: apt-private/private-output.cc:708 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:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "J" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "Fel vid kompilering av reguljärt uttryck - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." -msgstr "Korrigerar beroenden...." +msgstr "Korrigerar beroenden..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " misslyckades." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "Kunde inte korrigera beroenden" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "Kunde inte minimera uppgraderingsuppsättningen" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " Färdig" -#: apt-private/private-cachefile.cc:102 +#: 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-private/private-cachefile.cc:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "Otillfredsställda beroenden. Prova med -f." -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "Uppdateringskommandot tar inga argument" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "Beräknar uppgradering... " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "Internt fel, AllUpgrade förstörde nÃ¥got" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "Färdig" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1588,48 +1613,48 @@ msgstr "" " Tänk ocksÃ¥ pÃ¥ att lÃ¥sningen är inaktiverad, sÃ¥\n" " förlita dig inte pÃ¥ relevansen till den verkliga situationen!" -#: apt-private/private-sources.cc:45 +#: 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-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" # MÃ¥ste vara tre bokstäver(?) # "Hit" = aktuell version är fortfarande giltig -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "Bra " # "Get:" = hämtar ny version -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "Läs:" # "Ign" = hoppar över -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "Ign " # "Err" = fel vid hämtning -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Fel " -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "Hämtade %sB pÃ¥ %s (%sB/s)\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [Arbetar]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1642,20 +1667,20 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "Kunde inte läsa %s" # Felmeddelande för misslyckad chdir -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "Kunde inte byta till %s" @@ -1684,11 +1709,11 @@ msgstr "Ingen spegelfil \"%s\" hittades " msgid "[Mirror: %s]" msgstr "[Spegel: %s]" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: 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:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "Anslutningen stängdes i förtid" @@ -1754,40 +1779,45 @@ 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:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Kunde inte ta status pÃ¥ %s" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "Kunde inte skriva till %s" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Kan inte ta reda pÃ¥ debconf-version. Är debconf installerat?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "Listan över filtillägg för Packages är för lÃ¥ng" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "Fel vid behandling av katalogen %s" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "Listan över filtillägg för Sources är för lÃ¥ng" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "Fel vid skrivning av rubrik till innehÃ¥llsfil" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "Fel vid behandling av innehÃ¥llet %s" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1868,26 +1898,26 @@ msgstr "" " -c=? Läs denna konfigurationsfil\n" " -o=? Ställ in en godtycklig konfigurationsflagga" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "Inga val träffades" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "NÃ¥gra filer saknas i paketfilsgruppen \"%s\"" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "DB var skadad, filen omdöpt till %s.old" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "DB är gammal, försöker uppgradera %s" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -1895,118 +1925,118 @@ msgstr "" "DB-formatet är ogiltigt. Ta bort och Ã¥terskapa databasen om du uppgraderar " "frÃ¥n en äldre version av apt." -#: ftparchive/cachedb.cc:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Kunde inte öppna DB-filen %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "Misslyckades med att ta status pÃ¥ %s" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "Arkivet har ingen styrpost" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "Kunde inte fÃ¥ tag i nÃ¥gon markör" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "V: Kunde inte läsa katalogen %s\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "V: Kunde inte ta status pÃ¥ %s\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "F: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "V: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "F: Felen gäller filen " -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "Misslyckades med att slÃ¥ upp %s" # ??? -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "Trädvandring misslyckades" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "Misslyckades med att öppna %s" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " Avlänka %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "Misslyckades med att läsa länken %s" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "Misslyckades med att länka ut %s" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Misslyckades med att länka %s till %s" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, 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:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "Arkivet har inget package-fält" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, 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:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " ansvarig för paketet %s är %s ej %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr " %s har ingen källÃ¥sidosättningspost\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s har heller ingen binär Ã¥sidosättningspost\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - Misslyckades med att allokera minne" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "Kunde inte öppna %s" @@ -2014,79 +2044,79 @@ msgstr "Kunde inte öppna %s" # parametrar: filnamn, radnummer #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "Felaktig override %s rad %lu #1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "Misslyckades med att läsa Ã¥sidosättningsfilen %s" # parametrar: filnamn, radnummer -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, fuzzy, c-format msgid "Malformed override %s line %llu #1" msgstr "Felaktig override %s rad %lu #1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, fuzzy, c-format msgid "Malformed override %s line %llu #2" msgstr "Felaktig override %s rad %lu #2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, fuzzy, c-format msgid "Malformed override %s line %llu #3" msgstr "Felaktig override %s rad %lu #3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "Okänd komprimeringsalgoritm \"%s\"" # ??? -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "Komprimerade utdata %s behöver en komprimeringsuppsättning" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "Misslyckades med att skapa FILE*" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "Misslyckades med att grena process" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "Barnprocess för komprimering" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "Internt fel, misslyckades med att skapa %s" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "In/ut för underprocess/fil misslyckades" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "Misslyckades med att läsa vid beräkning av MD5" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "Problem med att länka ut %s" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "Misslyckades med att byta namn pÃ¥ %s till %s" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -2139,157 +2169,157 @@ msgstr "" " -c=? Läs denna konfigurationsfil.\n" " -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "Misslyckades med att skapa rör" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "Misslyckades med att köra gzip" -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "Skadat arkiv" -#: apt-inst/contrib/extracttar.cc:201 +#: apt-inst/contrib/extracttar.cc:203 msgid "Tar checksum failed, archive corrupted" msgstr "Tar-kontrollsumma misslyckades, arkivet skadat" -#: apt-inst/contrib/extracttar.cc:306 +#: 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-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "Ogiltig arkivsignatur" -#: apt-inst/contrib/arfile.cc:82 +#: 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:94 +#: apt-inst/contrib/arfile.cc:96 #, c-format msgid "Invalid archive member header %s" msgstr "Ogiltig arkivdelsrubrik %s" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "Ogiltigt arkivdelsrubrik" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "Arkivet är för kort" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "Misslyckades med att läsa arkivrubriker" -#: apt-inst/filelist.cc:382 +#: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" msgstr "DropNode anropat pÃ¥ fortfarande länkad nod" -#: apt-inst/filelist.cc:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "Misslyckades med att hitta hash-elementet!" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "Misslyckades med att allokera omdirigering" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "Internt fel i AddDiversion" -#: apt-inst/filelist.cc:479 +#: apt-inst/filelist.cc:477 #, c-format msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" msgstr "Försöker att skriva över en omdirigering, %s -> %s och %s/%s" -#: apt-inst/filelist.cc:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "Omdirigeringen %s -> %s inlagd tvÃ¥ gÃ¥nger" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "Duplicerad konfigurationsfil %s/%s" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: 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" -#: apt-inst/dirstream.cc:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "Misslyckades med att stänga filen %s" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format msgid "The path %s is too long" msgstr "Sökvägen %s är för lÃ¥ng" -#: apt-inst/extract.cc:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "Packar upp %s flera gÃ¥nger" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "Katalogen %s är omdirigerad" -#: apt-inst/extract.cc:145 +#: apt-inst/extract.cc:152 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "Paketet försöker att skriva till omdirigeringsmÃ¥let %s/%s" -#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 msgid "The diversion path is too long" msgstr "Omdirigeringssökvägen är för lÃ¥ng" -#: apt-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "Katalogen %s ersätts av en icke-katalog" -#: apt-inst/extract.cc:282 +#: apt-inst/extract.cc:289 msgid "Failed to locate node in its hash bucket" msgstr "Misslyckades med att hitta noden i sin hashkorg" -#: apt-inst/extract.cc:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "Sökvägen är för lÃ¥ng" -#: apt-inst/extract.cc:414 +#: apt-inst/extract.cc:421 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Skriv över paketträff utan version för %s" -#: apt-inst/extract.cc:431 +#: apt-inst/extract.cc:438 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "Filen %s/%s skriver över den i paketet %s" -#: apt-inst/extract.cc:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "Kunde inte ta status pÃ¥ %s" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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:124 +#: 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:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "Kunde inte tolka control-filen" @@ -2350,486 +2380,491 @@ msgstr "" "av användaren." #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lid %lih %limin %lis" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "%lih %limin %lis" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "%limin %lis" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "%lis" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "Valet %s hittades inte" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Okänd typförkortning: \"%c\"" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "Öppnar konfigurationsfilen %s" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Syntaxfel %s:%u: Block börjar utan namn." -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Syntaxfel %s:%u: Felformat märke" -#: apt-pkg/contrib/configuration.cc:821 +#: 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-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "Syntaxfel %s:%u: Direktiv kan endast utföras pÃ¥ toppnivÃ¥n" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Syntaxfel %s:%u: För mÃ¥nga nästlade inkluderingar" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Syntaxfel %s:%u: Inkluderad härifrÃ¥n" -#: apt-pkg/contrib/configuration.cc:881 +#: 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-pkg/contrib/configuration.cc:884 +#: 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-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Syntaxfel %s:%u: Överflödigt skräp vid filens slut" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... Fel!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... Färdig" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s... Färdig" -#: apt-pkg/contrib/cmndline.cc:116 +#: 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-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format msgid "Command line option %s is not boolean" msgstr "Kommandoradsflaggan %s är inte boolsk" -#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "Flaggan %s kräver ett argument." -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "" "Flaggan %s: Den angivna konfigurationsposten mÃ¥ste innehÃ¥lla ett =<värde>." -#: apt-pkg/contrib/cmndline.cc:273 +#: 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-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "Flaggan \"%s\" är för lÃ¥ng" -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "FörstÃ¥r inte %s, prova med \"true\" eller \"false\"." -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "Felaktig Ã¥tgärd %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: 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-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "Kunde inte ta status pÃ¥ cd-romen." -#: apt-pkg/contrib/fileutl.cc:95 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problem med att stänga gzip-filen %s" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "Använder inte lÃ¥sning för skrivskyddade lÃ¥sfilen %s" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "Kunde inte öppna lÃ¥sfilen %s" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "Använder inte lÃ¥sning för nfs-monterade lÃ¥sfilen %s" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "Kunde inte erhÃ¥lla lÃ¥set %s" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Underprocessen %s rÃ¥kade ut för ett segmenteringsfel." -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, c-format msgid "Sub-process %s received signal %u." msgstr "Underprocessen %s tog emot signal %u." -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 apt-pkg/contrib/gpgv.cc:239 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Underprocessen %s svarade med en felkod (%u)" -#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Underprocessen %s avslutades oväntat" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problem med att stänga gzip-filen %s" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "Kunde inte öppna filen %s" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, c-format msgid "Could not open file descriptor %d" msgstr "Kunde inte öppna filhandtag %d" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "Misslyckades med att skapa underprocess-IPC" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "Misslyckades med att starta komprimerare " -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, fuzzy, c-format msgid "read, still have %llu to read but none left" msgstr "läsning, har fortfarande %lu att läsa men ingenting finns kvar" -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, fuzzy, c-format msgid "write, still have %llu to write but couldn't" msgstr "skrivning, har fortfarande %lu att skriva men kunde inte" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, c-format msgid "Problem closing the file %s" msgstr "Problem med att stänga filen %s" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, c-format msgid "Problem renaming the file %s to %s" msgstr "Problem med att byta namn pÃ¥ filen %s till %s" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, c-format msgid "Problem unlinking the file %s" msgstr "Problem med att avlänka filen %s" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "Problem med att synkronisera filen" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "namnbyte misslyckades, %s (%s -> %s)." + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, c-format msgid "No keyring installed in %s." msgstr "Ingen nyckelring installerad i %s." # Felmeddelande -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "Paketcachen är tom" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "Paketcachefilen är skadad" -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "Paketcachefilens version är inkompatibel" -#: apt-pkg/pkgcache.cc:162 +#: apt-pkg/pkgcache.cc:169 #, fuzzy msgid "The package cache file is corrupted, it is too small" msgstr "Paketcachefilen är skadad" -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "Denna APT saknar stöd för versionssystemet \"%s\"" -#: apt-pkg/pkgcache.cc:172 +#: 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:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "Beroende av" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "Förberoende av" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "FöreslÃ¥r" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "Rekommenderar" # "Konfliktar"? -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "StÃ¥r i konflikt med" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "Ersätter" # "FörÃ¥ldrar"? -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "FörÃ¥ldrar" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "Gör sönder" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "Utökar" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "viktigt" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "nödvändigt" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "standard" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "valfri" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "extra" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "Bygger beroendeträd" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "Kandiderande versioner" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "Beroendegenerering" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: 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-pkg/depcache.cc:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "Misslyckades med att öppna StateFile %s" -#: apt-pkg/depcache.cc:250 +#: apt-pkg/depcache.cc:256 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Misslyckades med att skriva temporär StateFile %s" -#: apt-pkg/tagfile.cc:138 +#: apt-pkg/tagfile.cc:140 #, c-format msgid "Unable to parse package file %s (1)" msgstr "Kunde inte tolka paketfilen %s (1)" -#: apt-pkg/tagfile.cc:235 +#: apt-pkg/tagfile.cc:237 #, c-format msgid "Unable to parse package file %s (2)" msgstr "Kunde inte tolka paketfilen %s (2)" -#: apt-pkg/sourcelist.cc:118 +#: 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-pkg/sourcelist.cc:161 +#: 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-pkg/sourcelist.cc:164 +#: 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-pkg/sourcelist.cc:175 +#: 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-pkg/sourcelist.cc:181 +#: 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-pkg/sourcelist.cc:184 +#: 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-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "Rad %lu i källistan %s har (URI)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "Rad %lu i källistan %s har fel format (dist)" -#: apt-pkg/sourcelist.cc:202 +#: 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)" -#: apt-pkg/sourcelist.cc:208 +#: 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)" -#: apt-pkg/sourcelist.cc:215 +#: 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)" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "Öppnar %s" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "Rad %u är för lÃ¥ng i källistan %s." -#: apt-pkg/sourcelist.cc:362 +#: 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)" -#: apt-pkg/sourcelist.cc:366 +#: 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" -#: apt-pkg/sourcelist.cc:407 +#: apt-pkg/sourcelist.cc:416 #, fuzzy, c-format msgid "Type '%s' is not known on stanza %u in source list %s" msgstr "Typ \"%s\" är inte känd pÃ¥ rad %u i listan över källor %s" -#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2838,12 +2873,12 @@ msgstr "" "Kunde inte genomföra omedelbar konfiguration pÃ¥ \"%s\". Se man 5 apt.conf " "under APT::Immediate-Configure för information. (%d)" -#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "Kunde inte öppna filen \"%s\"" -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2855,19 +2890,19 @@ msgstr "" "Detta är oftast en dÃ¥lig idé, men om du verkligen vill göra det kan du " "aktivera flaggan \"APT::Force-LoopBreak\"." -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "Indexfiler av typ \"%s\" stöds inte" -#: apt-pkg/algorithms.cc:266 +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" "Paketet %s mÃ¥ste installeras om, men jag kan inte hitta nÃ¥got arkiv för det." -#: apt-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2875,90 +2910,90 @@ msgstr "" "Fel, pkgProblemResolver::Resolve genererade avbrott; detta kan bero pÃ¥ " "tillbakahÃ¥llna paket." -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "Kunde inte korrigera problemen, du har hÃ¥llit tillbaka trasiga paket." -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, c-format msgid "List directory %spartial is missing." msgstr "Listkatalogen %spartial saknas." -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, c-format msgid "Archives directory %spartial is missing." msgstr "Arkivkatalogen %spartial saknas." -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, c-format msgid "Unable to lock directory %s" msgstr "Kunde inte lÃ¥sa katalogen %s" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Hämtar fil %li av %li (%s Ã¥terstÃ¥r)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "Hämtar fil %li av %li" -#: apt-pkg/acquire-worker.cc:113 +#: apt-pkg/acquire-worker.cc:116 #, c-format msgid "The method driver %s could not be found." msgstr "Metoddrivrutinen %s kunde inte hittas." -#: apt-pkg/acquire-worker.cc:115 +#: 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" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "Metoden %s startade inte korrekt" -#: apt-pkg/acquire-worker.cc:452 +#: apt-pkg/acquire-worker.cc:455 #, c-format msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "" "Mata in skivan med etiketten \"%s\" i enheten \"%s\" och tryck pÃ¥ Enter." -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Paketsystemet \"%s\" stöds inte" # -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "Kunde inte fastställa en lämplig paketsystemstyp" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "Kunde inte ta status pÃ¥ %s." -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "Du mÃ¥ste lägga till nÃ¥gra \"source\"-URI:er i din sources.list" -#: apt-pkg/cachefile.cc:87 +#: 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:91 +#: 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:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "Listan över källor kunde inte läsas." -#: apt-pkg/policy.cc:75 +#: apt-pkg/policy.cc:83 #, c-format msgid "" "The value '%s' is invalid for APT::Default-Release as such a release is not " @@ -2966,127 +3001,122 @@ msgid "" msgstr "" # "Package" är en sträng i konfigurationsfilen -#: apt-pkg/policy.cc:414 +#: apt-pkg/policy.cc:422 #, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "Ogiltig post i konfigurationsfilen %s, \"Package\"-rubriken saknas" -#: apt-pkg/policy.cc:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "Förstod inte nÃ¥ltypen %s" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "Prioritet ej angiven (eller noll) för nÃ¥l" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 msgid "Cache has an incompatible versioning system" msgstr "Cachen har ett inkompatibelt versionssystem" # 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:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: 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)" -#: apt-pkg/pkgcachegen.cc:251 +#: 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." -#: apt-pkg/pkgcachegen.cc:254 +#: 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." -#: apt-pkg/pkgcachegen.cc:257 +#: 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." -#: apt-pkg/pkgcachegen.cc:260 +#: 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." -#: apt-pkg/pkgcachegen.cc:570 +#: 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" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "Kunde inte ta status pÃ¥ källkodspaketlistan %s" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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" # Bättre ord? -#: apt-pkg/pkgcachegen.cc:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "Samlar filtillhandahÃ¥llningar" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 msgid "IO Error saving source cache" msgstr "In-/utfel vid lagring av källcache" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "namnbyte misslyckades, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "Hash-kontrollsumman stämmer inte" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "Storleken stämmer inte" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "Felaktig Ã¥tgärd %s" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, 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:1586 +#: apt-pkg/acquire-item.cc:1595 #, fuzzy, c-format msgid "Unable to find hash sum for '%s' in Release file" msgstr "Kunde inte tolka \"Release\"-filen %s" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "Det finns ingen öppen nyckel tillgänglig för följande nyckel-id:n:\n" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " "repository will not be applied." msgstr "" -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Konflikt i distribution: %s (förväntade %s men fick %s)" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3097,12 +3127,12 @@ msgstr "" "%s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "GPG-fel: %s: %s" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3111,82 +3141,78 @@ 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)." -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, 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." -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, c-format msgid "Unable to parse Release file %s" msgstr "Kunde inte tolka \"Release\"-filen %s" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, c-format msgid "No sections in Release file %s" msgstr "Inga sektioner i Release-filen %s" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "Ingen Hash-post i Release-filen %s" -#: apt-pkg/indexrecords.cc:125 +#: 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-pkg/indexrecords.cc:144 +#: apt-pkg/indexrecords.cc:149 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Ogiltig \"Date\"-post i Release-filen %s" -#: apt-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "Leverantörsblocket %s saknar fingeravtryck" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Använder cd-rom-monteringspunkten %s\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "Avmonterar cd-rom\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "Avmonterar CD-ROM...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "Väntar pÃ¥ skiva...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "Monterar cd-rom...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " -msgstr "Identifierar.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " +msgstr "Identifierar... " -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "Lagrad etikett: %s \n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "Avmonterar cd-rom...\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" msgstr "Söker efter indexfiler pÃ¥ skivan...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3195,7 +3221,7 @@ msgstr "" "Hittade %zu paketindex, %zu källkodsindex, %zu översättningsindex och %zu " "signaturer\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" @@ -3203,16 +3229,16 @@ msgstr "" "Kunde inte hitta nÃ¥gra paketfiler. Detta är kanske inte en Debian-skiva " "eller felaktig arkitektur?" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "Hittade etiketten \"%s\"\n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "Namnet är ogiltigt, försök igen.\n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3221,34 +3247,34 @@ msgstr "" "Denna skiva heter: \n" "\"%s\"\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "Kopierar paketlistor..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "Skriver ny källista\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "Poster i källistan för denna skiva:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: 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:777 +#: 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" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:780 +#: 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" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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" @@ -3263,38 +3289,38 @@ msgstr "Kan inte hitta autentiseringspost för: %s" msgid "Hash mismatch for: %s" msgstr "Hash-kontrollsumman stämmer inte för: %s" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "UtgÃ¥van \"%s\" för \"%s\" hittades inte" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Version \"%s\" för \"%s\" hittades inte" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, c-format msgid "Couldn't find task '%s'" msgstr "Kunde inte hitta funktionen \"%s\"" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, 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:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "Kunde inte hitta nÃ¥got paket enligt reguljära uttrycket \"%s\"" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, 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-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " @@ -3303,57 +3329,57 @@ 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:637 +#: apt-pkg/cacheset.cc:645 #, 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-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, 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" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, 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" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "Kör dpkg" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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 " @@ -3362,118 +3388,118 @@ msgstr "" "Vissa indexfiler kunde inte hämtas, de har ignorerats eller sÃ¥ har de gamla " "använts istället." -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "Installerar %s" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "Konfigurerar %s" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "Tar bort %s" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format msgid "Completely removing %s" msgstr "Tar bort hela %s" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "Uppmärksammar försvinnandet av %s" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "Kör efterinstallationsutlösare %s" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "Katalogen \"%s\" saknas" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: 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-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "Förbereder %s" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "Packar upp %s" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "Förbereder konfigurering av %s" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "Installerade %s" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "Förbereder borttagning av %s" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "Tog bort %s" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "Förbereder borttagning av hela %s" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "Tog bort hela %s" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "Kunde inte skriva till %s" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 msgid "No apport report written because MaxReports is reached already" msgstr "Ingen apport-rapport skrevs därför att MaxReports redan har uppnÃ¥tts" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "beroendeproblem - lämnar okonfigurerad" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3481,7 +3507,7 @@ msgstr "" "Ingen apport-rapport skrevs därför att felmeddelandet indikerar att det är " "ett efterföljande fel frÃ¥n ett tidigare problem." -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" @@ -3489,7 +3515,7 @@ msgstr "" "Ingen apport-rapport skrevs därför att felmeddelandet indikerar att " "diskutrymmet är slut" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3497,7 +3523,7 @@ msgstr "" "Ingen apport-rapport skrevs därför att felmeddelandet indikerar att minnet " "är slut" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 #, fuzzy msgid "" "No apport report written because the error message indicates an issue on the " @@ -3506,14 +3532,14 @@ msgstr "" "Ingen apport-rapport skrevs därför att felmeddelandet indikerar att " "diskutrymmet är slut" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" "Ingen apport-rapport skrevs därför att felmeddelandet indikerar ett in-/ut-" "fel för dpkg" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " @@ -3521,21 +3547,21 @@ msgid "" msgstr "" "Kunde inte lÃ¥sa administrationskatalogen (%s). Använder en annan process den?" -#: apt-pkg/deb/debsystem.cc:87 +#: apt-pkg/deb/debsystem.cc:94 #, c-format msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Kunde inte lÃ¥sa administrationskatalogen (%s). Är du root?" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: 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-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "Inte lÃ¥st" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2012-10-27 22:44+0700\n" "Last-Translator: Theppitak Karoonboonyanan <thep@linux.thai.net>\n" "Language-Team: Thai <thai-l10n@googlegroups.com>\n" @@ -18,152 +18,153 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: cmdline/apt-cache.cc:140 +#: cmdline/apt-cache.cc:149 #, c-format msgid "Package %s version %s has an unmet dep:\n" msgstr "à¹à¸žà¸à¹€à¸à¸ˆ %s รุ่น %s ขาดà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ต้à¸à¸‡à¹ƒà¸Šà¹‰:\n" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "จำนวนชื่à¸à¹à¸žà¸à¹€à¸à¸ˆà¸—ั้งหมด: " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 msgid "Total package structures: " msgstr "จำนวนโครงสร้างà¹à¸žà¸à¹€à¸à¸ˆà¸—ั้งหมด: " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " à¹à¸žà¸à¹€à¸à¸ˆà¸›à¸à¸•ิ: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " à¹à¸žà¸à¹€à¸à¸ˆà¹€à¸ªà¸¡à¸·à¸à¸™à¹à¸—้ๆ: " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " à¹à¸žà¸à¹€à¸à¸ˆà¹€à¸ªà¸¡à¸·à¸à¸™à¸—ี่มีà¹à¸žà¸à¹€à¸à¸ˆà¸ˆà¸£à¸´à¸‡à¹€à¸”ียว: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " à¹à¸žà¸à¹€à¸à¸ˆà¹€à¸ªà¸¡à¸·à¸à¸™à¸œà¸ªà¸¡: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ขาดหาย: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "จำนวนรุ่นที่à¹à¸•à¸à¸•่างà¸à¸±à¸™à¸—ั้งหมด: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "จำนวนคำบรรยายà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่à¹à¸•à¸à¸•่างà¸à¸±à¸™à¸—ั้งหมด: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "จำนวนà¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸à¸¡à¹‚ยงระหว่างà¹à¸žà¸à¹€à¸à¸ˆà¸—ั้งหมด: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "จำนวนความสัมพันธ์ รุ่น/à¹à¸Ÿà¹‰à¸¡ ทั้งหมด: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "จำนวนความสัมพันธ์ คำบรรยาย/à¹à¸Ÿà¹‰à¸¡ ทั้งหมด: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "จำนวนผังà¸à¸²à¸£à¸•ระเตรียมทั้งหมด: " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "จำนวนสตริงทั้งหมด: " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "ขนาดขà¸à¸‡à¸žà¸·à¹‰à¸™à¸—ี่ความเชื่à¸à¸¡à¹‚ยงระหว่างà¹à¸žà¸à¹€à¸à¸ˆà¸—ั้งหมด: " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "พื้นที่สำรà¸à¸‡à¸—ั้งหมด: " -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "พื้นที่ที่นับรวมทั้งหมด: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: 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 ไม่ตรงà¸à¸±à¸šà¸„วามเป็นจริง" -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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 "ไม่พบà¹à¸žà¸à¹€à¸à¸ˆ" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 msgid "You must give at least one search pattern" msgstr "คุณต้à¸à¸‡à¸£à¸°à¸šà¸¸à¹à¸žà¸•เทิร์นสำหรับค้นหาà¸à¸¢à¹ˆà¸²à¸‡à¸™à¹‰à¸à¸¢à¸«à¸™à¸¶à¹ˆà¸‡à¹à¸žà¸•เทิร์น" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "คำสั่งนี้ไม่à¹à¸™à¸°à¸™à¸³à¹ƒà¸«à¹‰à¹ƒà¸Šà¹‰à¹à¸¥à¹‰à¸§ à¸à¸£à¸¸à¸“าใช้ 'apt-mark showauto' à¹à¸—น" -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "ไม่พบà¹à¸žà¸à¹€à¸à¸ˆ %s" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "à¹à¸Ÿà¹‰à¸¡à¹à¸žà¸à¹€à¸à¸ˆ:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 msgid "Cache is out of sync, can't x-ref a package file" msgstr "ข้à¸à¸¡à¸¹à¸¥à¹à¸„ชไม่ตรงà¸à¸±à¸šà¸„วามเป็นจริงà¹à¸¥à¹‰à¸§ ไม่สามารถà¸à¹‰à¸²à¸‡à¸à¸´à¸‡à¹„ขว้ระหว่างà¹à¸Ÿà¹‰à¸¡à¹à¸žà¸à¹€à¸à¸ˆ" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ถูà¸à¸•รึง:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(ไม่พบ)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " ที่ติดตั้งà¸à¸¢à¸¹à¹ˆ: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " รุ่นที่ติดตั้งได้: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(ไม่มี)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " à¸à¸²à¸£à¸•รึงà¹à¸žà¸à¹€à¸à¸ˆ: " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " ตารางรุ่น:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: 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:1740 +#: cmdline/apt-cache.cc:1749 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] showpkg pkg1 [pkg2 ...]\n" @@ -233,28 +234,28 @@ msgstr "" " -o=? à¸à¸³à¸«à¸™à¸”ตัวเลืà¸à¸à¸„่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n" "à¸à¸£à¸¸à¸“าà¸à¹ˆà¸²à¸™à¸‚้à¸à¸¡à¸¹à¸¥à¹€à¸žà¸´à¹ˆà¸¡à¹€à¸•ิมจาภmanual page apt-cache(8) à¹à¸¥à¸° apt.conf(5)\n" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: 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:104 +#: cmdline/apt-cdrom.cc:91 msgid "Please insert a Disc in the drive and press enter" msgstr "à¸à¸£à¸¸à¸“าใส่à¹à¸œà¹ˆà¸™à¸¥à¸‡à¹ƒà¸™à¹„ดรว์à¹à¸¥à¹‰à¸§à¸à¸” enter" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, c-format msgid "Failed to mount '%s' to '%s'" msgstr "ไม่สามารถเมานท์ '%s' ที่ '%s'" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "ทำเช่นนี้ต่à¸à¹„ปà¸à¸±à¸šà¹à¸œà¹ˆà¸™à¸‹à¸µà¸”ีที่เหลืà¸à¹ƒà¸™à¸Šà¸¸à¸”" @@ -290,65 +291,65 @@ msgstr "" " -c=? à¸à¹ˆà¸²à¸™à¹à¸Ÿà¹‰à¸¡à¸„่าตั้งที่à¸à¸³à¸«à¸™à¸”\n" " -o=? à¸à¸³à¸«à¸™à¸”ตัวเลืà¸à¸à¸„่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:244 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format msgid "Can not find a package for architecture '%s'" msgstr "ไม่พบà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ตรงà¸à¸±à¸šà¸™à¸´à¸žà¸ˆà¸™à¹Œà¹€à¸£à¸à¸´à¸§à¸¥à¸²à¸£à¹Œ '%s'" -#: cmdline/apt-get.cc:326 +#: cmdline/apt-get.cc:327 #, fuzzy, c-format msgid "Can not find a package '%s' with version '%s'" msgstr "ไม่พบà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ตรงà¸à¸±à¸šà¸™à¸´à¸žà¸ˆà¸™à¹Œà¹€à¸£à¸à¸´à¸§à¸¥à¸²à¸£à¹Œ '%s'" -#: cmdline/apt-get.cc:329 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format msgid "Can not find a package '%s' with release '%s'" msgstr "ไม่พบà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ตรงà¸à¸±à¸šà¸™à¸´à¸žà¸ˆà¸™à¹Œà¹€à¸£à¸à¸´à¸§à¸¥à¸²à¸£à¹Œ '%s'" -#: cmdline/apt-get.cc:366 +#: 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:422 +#: cmdline/apt-get.cc:423 #, fuzzy, c-format msgid "Can not find version '%s' of package '%s'" msgstr "จะละเลยรุ่น '%s' ที่ไม่มีà¸à¸¢à¸¹à¹ˆà¸‚à¸à¸‡à¹à¸žà¸à¹€à¸à¸ˆ '%s'" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "ไม่พบà¹à¸žà¸à¹€à¸à¸ˆ %s" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "à¸à¸³à¸«à¸™à¸” %s ให้เป็นà¸à¸²à¸£à¸•ิดตั้งà¹à¸šà¸šà¹€à¸¥à¸·à¸à¸à¹€à¸à¸‡à¹à¸¥à¹‰à¸§\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: 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:468 cmdline/apt-mark.cc:116 +#: 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:537 cmdline/apt-get.cc:545 +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 msgid "Internal error, problem resolver broke stuff" msgstr "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดภายใน: à¸à¸¥à¹„à¸à¸à¸²à¸£à¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¸—ำความเสียหาย" -#: cmdline/apt-get.cc:573 cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 msgid "Unable to lock the download directory" msgstr "ไม่สามารถล็à¸à¸„ไดเรà¸à¸—à¸à¸£à¸µà¸”าวน์โหลด" -#: cmdline/apt-get.cc:725 +#: cmdline/apt-get.cc:726 msgid "Must specify at least one package to fetch source for" msgstr "ต้à¸à¸‡à¸£à¸°à¸šà¸¸à¹à¸žà¸à¹€à¸à¸ˆà¸à¸¢à¹ˆà¸²à¸‡à¸™à¹‰à¸à¸¢à¸«à¸™à¸¶à¹ˆà¸‡à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่จะดาวน์โหลดซà¸à¸£à¹Œà¸ªà¹‚ค้ด" -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "ไม่พบà¹à¸žà¸à¹€à¸à¸ˆà¸‹à¸à¸£à¹Œà¸ªà¹‚ค้ดสำหรับ %s" @@ -373,78 +374,78 @@ msgstr "" "bzr branch %s\n" "เพื่à¸à¸”ึงรุ่นล่าสุด (ที่à¸à¸²à¸ˆà¸¢à¸±à¸‡à¹„ม่ปล่à¸à¸¢à¸à¸à¸à¸¡à¸²) ขà¸à¸‡à¸•ัวà¹à¸žà¸à¹€à¸à¸ˆ\n" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "จะข้ามà¹à¸Ÿà¹‰à¸¡ '%s' ที่ดาวน์โหลดไว้à¹à¸¥à¹‰à¸§\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "ไม่สามารถคำนวณพื้นที่ว่างใน %s" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "คุณมีพื้นที่ว่างเหลืà¸à¹„ม่พà¸à¹ƒà¸™ %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "ต้à¸à¸‡à¸”าวน์โหลดซà¸à¸£à¹Œà¸ªà¹‚ค้ด %sB/%sB\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "ต้à¸à¸‡à¸”าวน์โหลดซà¸à¸£à¹Œà¸ªà¹‚ค้ด %sB\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "ดาวน์โหลดซà¸à¸£à¹Œà¸ª %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "ไม่สามารถดาวน์โหลดบางà¹à¸Ÿà¹‰à¸¡" -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "ดาวน์โหลดสำเร็จà¹à¸¥à¹‰à¸§ à¹à¸¥à¸°à¸à¸¢à¸¹à¹ˆà¹ƒà¸™à¹‚หมดดาวน์โหลดà¸à¸¢à¹ˆà¸²à¸‡à¹€à¸”ียว" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "จะข้ามà¸à¸²à¸£à¹à¸•à¸à¸‹à¸à¸£à¹Œà¸ªà¸‚à¸à¸‡à¸‹à¸à¸£à¹Œà¸ªà¸—ี่à¹à¸•à¸à¹„ว้à¹à¸¥à¹‰à¸§à¹ƒà¸™ %s\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "คำสั่งà¹à¸•à¸à¹à¸Ÿà¹‰à¸¡ '%s' ล้มเหลว\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "à¸à¸£à¸¸à¸“าตรวจสà¸à¸šà¸§à¹ˆà¸²à¹„ด้ติดตั้งà¹à¸žà¸à¹€à¸à¸ˆ 'dpkg-dev' à¹à¸¥à¹‰à¸§\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "คำสั่ง build '%s' ล้มเหลว\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "โพรเซสลูà¸à¸¥à¹‰à¸¡à¹€à¸«à¸¥à¸§" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "ต้à¸à¸‡à¸£à¸°à¸šà¸¸à¹à¸žà¸à¹€à¸à¸ˆà¸à¸¢à¹ˆà¸²à¸‡à¸™à¹‰à¸à¸¢à¸«à¸™à¸¶à¹ˆà¸‡à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่จะตรวจสà¸à¸šà¸ªà¸´à¹ˆà¸‡à¸—ี่ต้à¸à¸‡à¸à¸²à¸£à¸ªà¸³à¸«à¸£à¸±à¸šà¸à¸²à¸£ build" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -452,17 +453,17 @@ msgid "" msgstr "" "ไม่มีข้à¸à¸¡à¸¹à¸¥à¸ªà¸–าปัตยà¸à¸£à¸£à¸¡à¸ªà¸³à¸«à¸£à¸±à¸š %s ดูวิธีตั้งค่าที่หัวข้ภAPT::Architectures ขà¸à¸‡ apt.conf(5)" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "ไม่สามารถà¸à¹ˆà¸²à¸™à¸‚้à¸à¸¡à¸¹à¸¥à¸ªà¸´à¹ˆà¸‡à¸—ี่ต้à¸à¸‡à¸à¸²à¸£à¸ªà¸³à¸«à¸£à¸±à¸šà¸à¸²à¸£ build ขà¸à¸‡ %s" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s ไม่ต้à¸à¸‡à¸à¸²à¸£à¸ªà¸´à¹ˆà¸‡à¹ƒà¸”สำหรับ build\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -470,19 +471,19 @@ msgid "" msgstr "" "ไม่สามารถติดตั้งสิ่งเชื่à¸à¸¡à¹‚ยง %s สำหรับ %s ได้ เพราะไม่สามารถใช้ %s à¸à¸±à¸šà¹à¸žà¸à¹€à¸à¸ˆ '%s' ได้" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, 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:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "ไม่สามารถติดตั้งสิ่งเชื่à¸à¸¡à¹‚ยง %s สำหรับ %s ได้: à¹à¸žà¸à¹€à¸à¸ˆ %s ที่ติดตั้งไว้ใหม่เà¸à¸´à¸™à¹„ป" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -491,37 +492,37 @@ msgstr "" "ไม่สามารถติดตั้งสิ่งเชื่à¸à¸¡à¹‚ยง %s สำหรับ %s ได้ เพราะไม่มีà¹à¸žà¸à¹€à¸à¸ˆ %s " "รุ่นที่จะสà¸à¸”คล้à¸à¸‡à¸à¸±à¸šà¸„วามต้à¸à¸‡à¸à¸²à¸£à¸£à¸¸à¹ˆà¸™à¸‚à¸à¸‡à¹à¸žà¸à¹€à¸à¸ˆà¹„ด้" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " "version" msgstr "ไม่สามารถติดตั้งสิ่งเชื่à¸à¸¡à¹‚ยง %s สำหรับ %s ได้ เพราะ %s ไม่มีรุ่นที่ติดตั้งได้" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "ไม่สามารถติดตั้งสิ่งเชื่à¸à¸¡à¹‚ยง %s สำหรับ %s ได้: %s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "ไม่สามารถติดตั้งสิ่งที่จำเป็นสำหรับà¸à¸²à¸£ build ขà¸à¸‡ %s ได้" -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "ติดตั้งสิ่งที่จำเป็นสำหรับà¸à¸²à¸£ build ไม่สำเร็จ" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, c-format msgid "Changelog for %s (%s)" msgstr "ปูมà¸à¸²à¸£à¹à¸à¹‰à¹„ขสำหรับ %s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "มà¸à¸”ูลที่รà¸à¸‡à¸£à¸±à¸š:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -608,53 +609,75 @@ msgstr "" "à¹à¸¥à¸° apt.conf(5)\n" " APT นี้มีพลังขà¸à¸‡ Super Cow\n" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "ต้à¸à¸‡à¸£à¸°à¸šà¸¸à¹à¸žà¸à¹€à¸à¸ˆà¸à¸¢à¹ˆà¸²à¸‡à¸™à¹‰à¸à¸¢à¸«à¸™à¸¶à¹ˆà¸‡à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่จะดาวน์โหลดซà¸à¸£à¹Œà¸ªà¹‚ค้ด" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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" -#: cmdline/apt-mark.cc:63 +#: cmdline/apt-mark.cc:74 #, c-format msgid "%s was already set to manually installed.\n" msgstr "%s ถูà¸à¸à¸³à¸«à¸™à¸”ให้เป็นà¸à¸²à¸£à¸•ิดตั้งà¹à¸šà¸šà¹€à¸¥à¸·à¸à¸à¹€à¸à¸‡à¸à¸¢à¸¹à¹ˆà¸à¹ˆà¸à¸™à¹à¸¥à¹‰à¸§\n" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, c-format msgid "%s was already set to automatically installed.\n" msgstr "%s ถูà¸à¸à¸³à¸«à¸™à¸”ให้เป็นà¸à¸²à¸£à¸•ิดตั้งà¹à¸šà¸šà¸à¸±à¸•โนมัติà¸à¸¢à¸¹à¹ˆà¸à¹ˆà¸à¸™à¹à¸¥à¹‰à¸§\n" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, c-format msgid "%s was already set on hold.\n" msgstr "%s ถูà¸à¸à¸³à¸«à¸™à¸”ให้คงรุ่นà¸à¸¢à¸¹à¹ˆà¸à¹ˆà¸à¸™à¹à¸¥à¹‰à¸§\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, c-format msgid "%s was already not hold.\n" msgstr "%s ไม่ได้คงรุ่นà¸à¸¢à¸¹à¹ˆà¸à¹ˆà¸à¸™à¹à¸¥à¹‰à¸§\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "รà¸à¹‚พรเซส %s à¹à¸•่ตัวโพรเซสไม่à¸à¸¢à¸¹à¹ˆ" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format msgid "%s set on hold.\n" msgstr "à¸à¸³à¸«à¸™à¸” %s ให้คงรุ่นà¹à¸¥à¹‰à¸§\n" -#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format msgid "Canceled hold on %s.\n" msgstr "ยà¸à¹€à¸¥à¸´à¸à¸à¸²à¸£à¸„งรุ่นขà¸à¸‡ %s à¹à¸¥à¹‰à¸§\n" -#: cmdline/apt-mark.cc:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "เรียà¸à¸—ำงาน dpkg ไม่สำเร็จ คุณเป็น root หรืà¸à¹€à¸›à¸¥à¹ˆà¸²?" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 #, fuzzy msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" @@ -699,7 +722,7 @@ msgstr "" " -o=? à¸à¸³à¸«à¸™à¸”ตัวเลืà¸à¸à¸„่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n" "à¸à¸£à¸¸à¸“าà¸à¹ˆà¸²à¸™à¸‚้à¸à¸¡à¸¹à¸¥à¹€à¸žà¸´à¹ˆà¸¡à¹€à¸•ิมจาภmanual page apt-mark(8) à¹à¸¥à¸° apt.conf(5)" -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -746,172 +769,174 @@ msgstr "ไม่สามารถเลิà¸à¹€à¸¡à¸²à¸™à¸—์ซีดีร msgid "Disk not found." msgstr "ไม่พบà¹à¸œà¹ˆà¸™" -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "ไม่พบà¹à¸Ÿà¹‰à¸¡" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: 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:82 methods/gzip.cc:113 methods/rred.cc:606 +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 msgid "Failed to set modification time" msgstr "à¸à¸³à¸«à¸™à¸”เวลาà¹à¸à¹‰à¹„ขไม่สำเร็จ" -#: methods/file.cc:47 +#: 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:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "เข้าระบบ" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "ไม่สามารถà¸à¹ˆà¸²à¸™à¸Šà¸·à¹ˆà¸à¸‚à¸à¸‡à¸à¸µà¸à¸à¹ˆà¸²à¸¢à¹„ด้" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "ไม่สามารถà¸à¹ˆà¸²à¸™à¸Šà¸·à¹ˆà¸à¸‚à¸à¸‡à¹€à¸„รื่à¸à¸‡à¸™à¸µà¹‰à¹„ด้" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format msgid "The server refused the connection and said: %s" msgstr "เซิร์ฟเวà¸à¸£à¹Œà¸›à¸à¸´à¹€à¸ªà¸˜à¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸à¸¡à¸•่à¸à¹‚ดยรายงานว่า: %s" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "USER ล้มเหลว เซิร์ฟเวà¸à¸£à¹Œà¸•à¸à¸šà¸§à¹ˆà¸²: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS ล้มเหลว เซิร์ฟเวà¸à¸£à¹Œà¸•à¸à¸šà¸§à¹ˆà¸²: %s" -#: methods/ftp.cc:247 +#: 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:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "คำสั่งสคริปต์เข้าระบบ '%s' ล้มเหลว เซิร์ฟเวà¸à¸£à¹Œà¸•à¸à¸šà¸§à¹ˆà¸²: %s" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE ล้มเหลว เซิร์ฟเวà¸à¸£à¹Œà¸•à¸à¸šà¸§à¹ˆà¸²: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 msgid "Connection timeout" msgstr "หมดเวลารà¸à¹€à¸Šà¸·à¹ˆà¸à¸¡à¸•่à¸" -#: methods/ftp.cc:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "เซิร์ฟเวà¸à¸£à¹Œà¸›à¸´à¸”à¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸à¸¡à¸•่à¸" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "à¸à¸²à¸£à¸à¹ˆà¸²à¸™à¸‚้à¸à¸¡à¸¹à¸¥à¸œà¸´à¸”พลาด" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "คำตà¸à¸šà¸—่วมบัฟเฟà¸à¸£à¹Œ" -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "มีความเสียหายขà¸à¸‡à¹‚พรโทคà¸à¸¥" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "à¸à¸²à¸£à¹€à¸‚ียนข้à¸à¸¡à¸¹à¸¥à¸œà¸´à¸”พลาด" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 msgid "Could not create a socket" msgstr "ไม่สามารถสร้างซ็à¸à¸à¹€à¸à¹‡à¸•" -#: methods/ftp.cc:707 +#: methods/ftp.cc:712 msgid "Could not connect data socket, connection timed out" msgstr "ไม่สามารถเชื่à¸à¸¡à¸•่à¸à¸‹à¹‡à¸à¸à¹€à¸à¹‡à¸•ข้à¸à¸¡à¸¹à¸¥ เนื่à¸à¸‡à¸ˆà¸²à¸à¸«à¸¡à¸”เวลาคà¸à¸¢" -#: methods/ftp.cc:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "ล้มเหลว" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "ไม่สามารถเชื่à¸à¸¡à¸•่à¸à¸‹à¹‡à¸à¸à¹€à¸à¸•à¹à¸šà¸š passive" -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo ไม่สามารถนำซ็à¸à¸à¹€à¸à¹‡à¸•ที่รà¸à¸£à¸±à¸šà¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸à¸¡à¸•่à¸à¸¡à¸²à¹ƒà¸Šà¹‰" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "ไม่สามารถ bind ซ็à¸à¸à¹€à¸à¹‡à¸•" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "ไม่สามารถ listen ที่ซ็à¸à¸à¹€à¸à¹‡à¸•" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "ไม่สามารถระบุชื่à¸à¸‹à¹‡à¸à¸à¹€à¸à¹‡à¸•" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "ไม่สามารถส่งคำสั่ง PORT" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "ไม่รู้จัà¸à¸•ระà¸à¸¹à¸¥à¸—ี่à¸à¸¢à¸¹à¹ˆ %u (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT ล้มเหลว เซิร์ฟเวà¸à¸£à¹Œà¸•à¸à¸šà¸§à¹ˆà¸²: %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "หมดเวลารà¸à¹€à¸Šà¸·à¹ˆà¸à¸¡à¸•่à¸à¸‹à¹‡à¸à¸à¹€à¸à¹‡à¸•ข้à¸à¸¡à¸¹à¸¥" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "ไม่สามารถรับà¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸à¸¡à¸•่à¸" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "เà¸à¸´à¸”ปัà¸à¸«à¸²à¸‚ณะคำนวณค่าà¹à¸®à¸Šà¸‚à¸à¸‡à¹à¸Ÿà¹‰à¸¡" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "ไม่สามารถดาวน์โหลดà¹à¸Ÿà¹‰à¸¡ เซิร์ฟเวà¸à¸£à¹Œà¸•à¸à¸šà¸§à¹ˆà¸²: '%s'" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "หมดเวลาคà¸à¸¢à¸—ี่ซ็à¸à¸à¹€à¸à¹‡à¸•ข้à¸à¸¡à¸¹à¸¥" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "ถ่ายโà¸à¸™à¸‚้à¸à¸¡à¸¹à¸¥à¹„ม่สำเร็จ เซิร์ฟเวà¸à¸£à¹Œà¸•à¸à¸šà¸§à¹ˆà¸² '%s'" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "สà¸à¸šà¸–าม" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "ไม่สามารถเรียภ" @@ -947,7 +972,7 @@ 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:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "เชื่à¸à¸¡à¸•่à¸à¹„ปยัง %s" @@ -977,181 +1002,181 @@ msgstr "เà¸à¸´à¸”ปัà¸à¸«à¸²à¸£à¹‰à¸²à¸¢à¹à¸£à¸‡à¸šà¸²à¸‡à¸à¸¢à¹ˆà¸²à¸‡ msgid "Unable to connect to %s:%s:" msgstr "ไม่สามารถเชื่à¸à¸¡à¸•่à¸à¹„ปยัง %s:%s:" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "ข้à¸à¸œà¸´à¸”พลาดภายใน: ลายเซ็นใช้à¸à¸²à¸£à¹„ด้ à¹à¸•่ไม่สามารถระบุลายนิ้วมืà¸à¸‚à¸à¸‡à¸à¸¸à¸à¹à¸ˆ?!" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "พบลายเซ็นที่ใช้à¸à¸²à¸£à¹„ม่ได้à¸à¸¢à¹ˆà¸²à¸‡à¸™à¹‰à¸à¸¢à¸«à¸™à¸¶à¹ˆà¸‡à¸£à¸²à¸¢à¸à¸²à¸£" -#: methods/gpgv.cc:172 +#: 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:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดไม่ทราบสาเหตุขณะเรียภgpgv" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "ลายเซ็นต่à¸à¹„ปนี้ใช้à¸à¸²à¸£à¹„ม่ได้:\n" -#: methods/gpgv.cc:229 +#: 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:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "à¹à¸Ÿà¹‰à¸¡à¸§à¹ˆà¸²à¸‡à¹€à¸›à¸¥à¹ˆà¸²à¹„ม่สามารถเป็นà¹à¸Ÿà¹‰à¸¡à¸ˆà¸±à¸”เà¸à¹‡à¸šà¸—ี่ใช้à¸à¸²à¸£à¹„ด้" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดขณะเขียนลงà¹à¸Ÿà¹‰à¸¡" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดขณะà¸à¹ˆà¸²à¸™à¸‚้à¸à¸¡à¸¹à¸¥à¸ˆà¸²à¸à¹€à¸‹à¸´à¸£à¹Œà¸Ÿà¹€à¸§à¸à¸£à¹Œ ปลายทางà¸à¸µà¸à¸”้านหนึ่งปิดà¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸à¸¡à¸•่à¸" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดขณะà¸à¹ˆà¸²à¸™à¸‚้à¸à¸¡à¸¹à¸¥à¸ˆà¸²à¸à¹€à¸‹à¸´à¸£à¹Œà¸Ÿà¹€à¸§à¸à¸£à¹Œ" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดขณะเขียนลงà¹à¸Ÿà¹‰à¸¡" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "select ไม่สำเร็จ" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "หมดเวลารà¸à¹€à¸Šà¸·à¹ˆà¸à¸¡à¸•่à¸" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดขณะเขียนลงà¹à¸Ÿà¹‰à¸¡à¸œà¸¥à¸¥à¸±à¸žà¸˜à¹Œ" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "รà¸à¸«à¸±à¸§à¸‚้à¸à¸¡à¸¹à¸¥" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "บรรทัดข้à¸à¸¡à¸¹à¸¥à¸ªà¹ˆà¸§à¸™à¸«à¸±à¸§à¸œà¸´à¸”พลาด" -#: methods/server.cc:139 methods/server.cc:146 +#: methods/server.cc:134 methods/server.cc:141 msgid "The HTTP server sent an invalid reply header" msgstr "เซิร์ฟเวà¸à¸£à¹Œ HTTP ส่งข้à¸à¸¡à¸¹à¸¥à¸ªà¹ˆà¸§à¸™à¸«à¸±à¸§à¸•à¸à¸šà¸¡à¸²à¹„ม่ถูà¸à¸•้à¸à¸‡" -#: methods/server.cc:176 +#: methods/server.cc:171 msgid "The HTTP server sent an invalid Content-Length header" msgstr "เซิร์ฟเวà¸à¸£à¹Œ HTTP ส่งข้à¸à¸¡à¸¹à¸¥à¸ªà¹ˆà¸§à¸™à¸«à¸±à¸§ Content-Length มาไม่ถูà¸à¸•้à¸à¸‡" -#: methods/server.cc:199 +#: methods/server.cc:194 msgid "The HTTP server sent an invalid Content-Range header" msgstr "เซิร์ฟเวà¸à¸£à¹Œ HTTP ส่งข้à¸à¸¡à¸¹à¸¥à¸ªà¹ˆà¸§à¸™à¸«à¸±à¸§ Content-Range มาไม่ถูà¸à¸•้à¸à¸‡" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "à¸à¸²à¸£à¸ªà¸™à¸±à¸šà¸ªà¸™à¸¸à¸™ Content-Range ที่เซิร์ฟเวà¸à¸£à¹Œ HTTP ผิดพลาด" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "พบรูปà¹à¸šà¸šà¸§à¸±à¸™à¸—ี่ที่ไม่รู้จัà¸" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "ข้à¸à¸¡à¸¹à¸¥à¸ªà¹ˆà¸§à¸™à¸«à¸±à¸§à¸œà¸´à¸”พลาด" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "เชื่à¸à¸¡à¸•่à¸à¹„ม่สำเร็จ" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "ข้à¸à¸œà¸´à¸”พลาดภายใน" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดภายใน: มีà¸à¸²à¸£à¹€à¸£à¸µà¸¢à¸ InstallPackages ด้วยà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่เสีย!" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "มีà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่จำเป็นต้à¸à¸‡à¸–à¸à¸”ถà¸à¸™ à¹à¸•่ถูà¸à¸«à¹‰à¸²à¸¡à¸à¸²à¸£à¸–à¸à¸”ถà¸à¸™à¹„ว้" -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "ข้à¸à¸œà¸´à¸”พลาดภายใน: à¸à¸²à¸£à¹€à¸£à¸µà¸¢à¸‡à¸¥à¸³à¸”ับไม่เสร็จสิ้น" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" -msgstr "à¹à¸›à¸¥à¸à¸›à¸£à¸°à¸«à¸¥à¸²à¸”.. ขนาดไม่ตรงà¸à¸±à¸™ à¸à¸£à¸¸à¸“าà¸à¸µà¹€à¸¡à¸¥à¹à¸ˆà¹‰à¸‡ apt@packages.debian.org" +#: apt-private/private-install.cc:147 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "à¹à¸›à¸¥à¸à¸›à¸£à¸°à¸«à¸¥à¸²à¸”... ขนาดไม่ตรงà¸à¸±à¸™ à¸à¸£à¸¸à¸“าà¸à¸µà¹€à¸¡à¸¥à¹à¸ˆà¹‰à¸‡ apt@packages.debian.org" #. TRANSLATOR: The required 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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "ต้à¸à¸‡à¸”าวน์โหลดà¹à¸žà¸à¹€à¸à¸ˆ %sB/%sB\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:171 +#: apt-private/private-install.cc:159 #, 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:178 +#: apt-private/private-install.cc:166 #, c-format msgid "After this operation, %sB of additional disk space will be used.\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:183 +#: apt-private/private-install.cc:171 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "หลังจาà¸à¸à¸²à¸£à¸à¸£à¸°à¸—ำนี้ เนื้à¸à¸—ี่บนดิสà¸à¹Œà¸ˆà¸°à¸§à¹ˆà¸²à¸‡à¹€à¸žà¸´à¹ˆà¸¡à¸à¸µà¸ %sB\n" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "คุณมีพื้นที่ว่างเหลืà¸à¹„ม่พà¸à¹ƒà¸™ %s" -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "มีปัà¸à¸«à¸²à¸šà¸²à¸‡à¸›à¸£à¸°à¸à¸²à¸£ à¹à¸¥à¸°à¸¡à¸µà¸à¸²à¸£à¹ƒà¸Šà¹‰ -y โดยไม่ระบุ --force-yes" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Trivial Only ถูà¸à¸à¸³à¸«à¸™à¸”ไว้ à¹à¸•่คำสั่งนี้ไม่ใช่คำสั่งเล็à¸à¸™à¹‰à¸à¸¢" #. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be #. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Yes, do as I say!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1162,19 +1187,19 @@ msgstr "" "หาà¸à¸•้à¸à¸‡à¸à¸²à¸£à¸”ำเนินà¸à¸²à¸£à¸•่ภให้พิมพ์ประโยค '%s'\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "เลิà¸à¸—ำ" -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "คุณต้à¸à¸‡à¸à¸²à¸£à¸ˆà¸°à¸”ำเนินà¸à¸²à¸£à¸•่à¸à¹„ปหรืà¸à¹„ม่?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "ดาวน์โหลดบางà¹à¸Ÿà¹‰à¸¡à¹„ม่สำเร็จ" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1182,19 +1207,19 @@ msgstr "" "ดาวน์โหลดบางà¹à¸žà¸à¹€à¸à¸ˆà¹„ม่สำเร็จ บางที à¸à¸²à¸£à¹€à¸£à¸µà¸¢à¸ apt-get update หรืà¸à¸¥à¸à¸‡à¹ƒà¸Šà¹‰à¸•ัวเลืà¸à¸ --fix-" "missing à¸à¸²à¸ˆà¸Šà¹ˆà¸§à¸¢à¹„ด้" -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "ยังไม่รà¸à¸‡à¸£à¸±à¸š --fix-missing พร้à¸à¸¡à¸à¸±à¸šà¸à¸²à¸£à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¹à¸œà¹ˆà¸™" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "ไม่สามารถà¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ขาดหายได้" -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "จะล้มเลิà¸à¸à¸²à¸£à¸•ิดตั้ง" -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1205,15 +1230,15 @@ msgstr[0] "" "à¹à¸žà¸à¹€à¸à¸ˆà¸•่à¸à¹„ปนี้ได้หายไปจาà¸à¸£à¸°à¸šà¸šà¸‚à¸à¸‡à¸„ุณ เพราะà¹à¸Ÿà¹‰à¸¡à¸—ั้งหมดได้ถูà¸à¹à¸—นที่\n" "โดยà¹à¸žà¸à¹€à¸à¸ˆà¸à¸·à¹ˆà¸™à¹à¸¥à¹‰à¸§:" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "หมายเหตุ: นี่เป็นสิ่งที่ dpkg ทำโดยà¸à¸±à¸•โนมัติโดยเจตนา" -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "apt ถูà¸à¸à¸³à¸«à¸™à¸”ไม่ให้มีà¸à¸²à¸£à¸¥à¸šà¹ƒà¸”ๆ จึงไม่สามารถดำเนินà¸à¸²à¸£à¸–à¸à¸”ถà¸à¸™à¸à¸±à¸•โนมัติได้" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1231,15 +1256,15 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 msgid "The following information may help to resolve the situation:" msgstr "ข้à¸à¸¡à¸¹à¸¥à¸•่à¸à¹„ปนี้à¸à¸²à¸ˆà¸Šà¹ˆà¸§à¸¢à¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¹„ด้:" -#: apt-private/private-install.cc:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดภายใน: AutoRemover ทำความเสียหาย" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1247,23 +1272,23 @@ msgid_plural "" "required:" msgstr[0] "à¹à¸žà¸à¹€à¸à¸ˆà¸•่à¸à¹„ปนี้ถูà¸à¸•ิดตั้งà¹à¸šà¸šà¸à¸±à¸•โนมัติไว้ à¹à¸¥à¸°à¹„ม่ต้à¸à¸‡à¹ƒà¸Šà¹‰à¸à¸µà¸à¸•่à¸à¹„ปà¹à¸¥à¹‰à¸§:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" "%lu packages were automatically installed and are no longer required.\n" msgstr[0] "มีà¹à¸žà¸à¹€à¸à¸ˆ %lu à¹à¸žà¸à¹€à¸à¸ˆà¸–ูà¸à¸•ิดตั้งà¹à¸šà¸šà¸à¸±à¸•โนมัติไว้ à¹à¸¥à¸°à¹„ม่ต้à¸à¸‡à¹ƒà¸Šà¹‰à¸à¸µà¸à¸•่à¸à¹„ปà¹à¸¥à¹‰à¸§\n" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "ใช้ 'apt-get autoremove' เพื่à¸à¸–à¸à¸”ถà¸à¸™à¹à¸žà¸à¹€à¸à¸ˆà¸”ังà¸à¸¥à¹ˆà¸²à¸§à¹„ด้" -#: apt-private/private-install.cc:624 +#: 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:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1271,7 +1296,7 @@ msgstr "" "มีปัà¸à¸«à¸²à¸„วามขึ้นต่à¸à¸à¸±à¸™à¸£à¸°à¸«à¸§à¹ˆà¸²à¸‡à¹à¸žà¸à¹€à¸à¸ˆ à¸à¸£à¸¸à¸“าลà¸à¸‡à¹ƒà¸Šà¹‰ 'apt-get -f install' โดยไม่ระบุà¹à¸žà¸à¹€à¸à¸ˆ " "(หรืà¸à¸ˆà¸°à¸£à¸°à¸šà¸¸à¸—างà¹à¸à¹‰à¸à¹‡à¹„ด้)" -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1282,145 +1307,145 @@ msgstr "" "หรืà¸à¸–้าคุณà¸à¸³à¸¥à¸±à¸‡à¹ƒà¸Šà¹‰à¸£à¸¸à¹ˆà¸™ unstable à¸à¹‡à¹€à¸›à¹‡à¸™à¹„ปได้ว่าà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่จำเป็นบางรายà¸à¸²à¸£\n" "ยังไม่ถูà¸à¸ªà¸£à¹‰à¸²à¸‡à¸‚ึ้น หรืà¸à¸–ูà¸à¸¢à¹‰à¸²à¸¢à¸à¸à¸à¸ˆà¸²à¸ Incoming" -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "à¹à¸žà¸à¹€à¸à¸ˆà¸¡à¸µà¸›à¸±à¸à¸«à¸²" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "จะติดตั้งà¹à¸žà¸à¹€à¸à¸ˆà¹€à¸žà¸´à¹ˆà¸¡à¹€à¸•ิมต่à¸à¹„ปนี้:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่à¹à¸™à¸°à¸™à¸³:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ควรใช้ร่วมà¸à¸±à¸™:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "*คำเตืà¸à¸™*: à¹à¸žà¸à¹€à¸à¸ˆà¸•่à¸à¹„ปนี้ไม่สามารถยืนยันà¹à¸«à¸¥à¹ˆà¸‡à¸•้นตà¸à¹„ด้!" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "จะข้ามà¸à¸²à¸£à¹€à¸•ืà¸à¸™à¹€à¸à¸µà¹ˆà¸¢à¸§à¸à¸±à¸šà¸à¸²à¸£à¸¢à¸·à¸™à¸¢à¸±à¸™à¹à¸«à¸¥à¹ˆà¸‡à¸•้นตà¸\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "มีบางà¹à¸žà¸à¹€à¸à¸ˆà¹„ม่สามารถยืนยันà¹à¸«à¸¥à¹ˆà¸‡à¸•้นตà¸à¹„ด้" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "จะติดตั้งà¹à¸žà¸à¹€à¸à¸ˆà¹€à¸«à¸¥à¹ˆà¸²à¸™à¸µà¹‰à¹‚ดยไม่ตรวจสà¸à¸šà¸«à¸£à¸·à¸à¹„ม่?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "ไม่สามารถดาวน์โหลด %s %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [ติดตั้งà¸à¸¢à¸¹à¹ˆ]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [ติดตั้งà¸à¸¢à¸¹à¹ˆ]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [ติดตั้งà¸à¸¢à¸¹à¹ˆ]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [ติดตั้งà¸à¸¢à¸¹à¹ˆ]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "à¹à¸žà¸à¹€à¸à¸ˆà¸•่à¸à¹„ปนี้ขาดà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ต้à¸à¸‡à¹ƒà¸Šà¹‰:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "à¹à¸•่รุ่นที่ติดตั้งไว้คืภ%s" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "à¹à¸•่รุ่นที่จะติดตั้งคืภ%s" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "à¹à¸•่ไม่สามารถติดตั้งได้" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "à¹à¸•่à¹à¸žà¸à¹€à¸à¸ˆà¸™à¸µà¹‰à¹€à¸›à¹‡à¸™à¹à¸žà¸à¹€à¸à¸ˆà¹€à¸ªà¸¡à¸·à¸à¸™" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "à¹à¸•่ได้ติดตั้งไว้" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "à¹à¸•่à¹à¸žà¸à¹€à¸à¸ˆà¸™à¸µà¹‰à¸ˆà¸°à¹„ม่ถูà¸à¸•ิดตั้ง" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " หรืà¸" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "จะติดตั้งà¹à¸žà¸à¹€à¸à¸ˆ *ใหม่* ต่à¸à¹„ปนี้:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "จะ *ลบ* à¹à¸žà¸à¹€à¸à¸ˆà¸•่à¸à¹„ปนี้:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "จะคงรุ่นà¹à¸žà¸à¹€à¸à¸ˆà¸•่à¸à¹„ปนี้:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "จะปรับรุ่นà¹à¸žà¸à¹€à¸à¸ˆà¸•่à¸à¹„ปนี้ขึ้น:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "จะปรับรุ่นà¹à¸žà¸à¹€à¸à¸ˆà¸•่à¸à¹„ปนี้ *ลง*:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "จะเปลี่ยนà¹à¸›à¸¥à¸‡à¸£à¸²à¸¢à¸à¸²à¸£à¸„งรุ่นà¹à¸žà¸à¹€à¸à¸ˆà¸•่à¸à¹„ปนี้:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (เนื่à¸à¸‡à¸ˆà¸²à¸ %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1428,27 +1453,27 @@ msgstr "" "*คำเตืà¸à¸™*: à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่จำเป็นต่à¸à¹„ปนี้จะถูà¸à¸–à¸à¸”ถà¸à¸™\n" "คุณ *ไม่ควร* ทำเช่นนี้ นà¸à¸à¸ˆà¸²à¸à¸„ุณเข้าใจสิ่งที่จะทำ!" -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "ปรับรุ่นขึ้น %lu, ติดตั้งใหม่ %lu, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "ติดตั้งซ้ำ %lu, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "ปรับรุ่นลง %lu, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "ถà¸à¸”ถà¸à¸™ %lu à¹à¸¥à¸°à¹„ม่ปรับรุ่น %lu\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "ติดตั้งหรืà¸à¸–à¸à¸”ถà¸à¸™à¹„ม่ครบ %lu\n" @@ -1457,7 +1482,7 @@ msgstr "ติดตั้งหรืà¸à¸–à¸à¸”ถà¸à¸™à¹„ม่ครบ %l #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "" @@ -1465,90 +1490,90 @@ msgstr "" #. 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:702 +#: apt-private/private-output.cc:708 msgid "[y/N]" msgstr "" #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "คà¸à¸¡à¹„พล์นิพจน์เรà¸à¸´à¸§à¸¥à¸²à¸£à¹Œà¹„ม่สำเร็จ - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "à¸à¸³à¸¥à¸±à¸‡à¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¸„วามขึ้นต่à¸à¸à¸±à¸™à¸£à¸°à¸«à¸§à¹ˆà¸²à¸‡à¹à¸žà¸à¹€à¸à¸ˆ..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " ล้มเหลว" -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "ไม่สามารถà¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¸„วามขึ้นต่à¸à¸à¸±à¸™à¸£à¸°à¸«à¸§à¹ˆà¸²à¸‡à¹à¸žà¸à¹€à¸à¸ˆà¹„ด้" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "ไม่สามารถจำà¸à¸±à¸”รายà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸£à¸¸à¹ˆà¸™à¹ƒà¸«à¹‰à¸™à¹‰à¸à¸¢à¸—ี่สุดได้" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " เสร็จà¹à¸¥à¹‰à¸§" -#: apt-private/private-cachefile.cc:102 +#: 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:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "รายà¸à¸²à¸£à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ต้à¸à¸‡à¹ƒà¸Šà¹‰à¹„ม่ครบ à¸à¸£à¸¸à¸“าลà¸à¸‡à¹ƒà¸Šà¹‰à¸•ัวเลืà¸à¸ -f" -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "คำสั่ง update ไม่รับà¸à¸²à¸£à¹Œà¸à¸´à¸§à¹€à¸¡à¸™à¸•์เพิ่ม" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "à¸à¸³à¸¥à¸±à¸‡à¸„ำนวณà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸£à¸¸à¹ˆà¸™... " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดภายใน: AllUpgrade ทำความเสียหาย" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "เสร็จà¹à¸¥à¹‰à¸§" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1560,43 +1585,43 @@ msgstr "" " à¸à¸¢à¹ˆà¸²à¸¥à¸·à¸¡à¸”้วยว่าà¸à¸²à¸£à¸¥à¹‡à¸à¸„à¸à¹‡à¹„ม่ทำงานเช่นà¸à¸±à¸™\n" " ดังนั้น à¸à¸¢à¹ˆà¸²à¸–ืà¸à¸œà¸¥à¸¥à¸±à¸žà¸˜à¹Œà¸™à¸µà¹‰à¸§à¹ˆà¸²à¸•รงà¸à¸±à¸šà¸ªà¸ าพความเป็นจริงขà¸à¸‡à¸£à¸°à¸šà¸š!" -#: apt-private/private-sources.cc:45 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format msgid "Failed to parse %s. Edit again? " msgstr "ไม่สามารถเปลี่ยนชื่ภ%s ไปเป็น %s" -#: apt-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "เจภ" -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "ดึง:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "ข้าม " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "ปัà¸à¸«à¸² " -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "ดาวน์โหลด %sB ใน %s (%sB/s)\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [à¸à¸³à¸¥à¸±à¸‡à¸—ำงาน]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1609,19 +1634,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "ไม่สามารถà¸à¹ˆà¸²à¸™ %s" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "ไม่สามารถเปลี่ยนไดเรà¸à¸—à¸à¸£à¸µà¹„ปยัง %s" @@ -1650,11 +1675,11 @@ msgstr "ไม่สามารถà¸à¹ˆà¸²à¸™à¹à¸Ÿà¹‰à¸¡à¹à¸«à¸¥à¹ˆà¸‡à¸ªà¸³ msgid "[Mirror: %s]" msgstr "[à¹à¸«à¸¥à¹ˆà¸‡à¸ªà¸³à¹€à¸™à¸²: %s]" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 msgid "Failed to create IPC pipe to subprocess" msgstr "ไม่สามารถสร้างไปป์ IPC ไปยังโพรเซสย่à¸à¸¢" -#: methods/rsh.cc:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "à¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸à¸¡à¸•่à¸à¸–ูà¸à¸›à¸´à¸”à¸à¹ˆà¸à¸™à¹€à¸§à¸¥à¸²à¸à¸±à¸™à¸„วร" @@ -1716,40 +1741,45 @@ msgstr "" " -c=? à¸à¹ˆà¸²à¸™à¹à¸Ÿà¹‰à¸¡à¸„่าตั้งนี้\n" " -o=? à¸à¸³à¸«à¸™à¸”ตัวเลืà¸à¸à¸„่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "ไม่สามารถ stat %s" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "ไม่สามารถเขียนลงà¹à¸Ÿà¹‰à¸¡ %s" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "ไม่สามารถà¸à¹ˆà¸²à¸™à¸£à¸¸à¹ˆà¸™à¸‚à¸à¸‡ debconf ได้ ได้ติดตั้ง debconf ไว้หรืà¸à¹„ม่?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "รายชื่à¸à¸™à¸²à¸¡à¸ªà¸à¸¸à¸¥à¹à¸žà¸à¹€à¸à¸ˆà¸¢à¸²à¸§à¹€à¸à¸´à¸™à¹„ป" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดขณะประมวลผลไดเรà¸à¸—à¸à¸£à¸µ %s" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "รายชื่à¸à¸™à¸²à¸¡à¸ªà¸à¸¸à¸¥à¸‹à¸à¸£à¹Œà¸ªà¸¢à¸²à¸§à¹€à¸à¸´à¸™à¹„ป" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดขณะเขียนข้à¸à¸¡à¸¹à¸¥à¸ªà¹ˆà¸§à¸™à¸«à¸±à¸§à¸¥à¸‡à¹ƒà¸™à¹à¸Ÿà¹‰à¸¡à¸ªà¸²à¸£à¸šà¸±à¸" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดขณะประมวลผลสารบัภ%s" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1826,217 +1856,217 @@ msgstr "" " -c=? à¸à¹ˆà¸²à¸™à¹à¸Ÿà¹‰à¸¡à¸„่าตั้งนี้\n" " -o=? à¸à¸³à¸«à¸™à¸”ตัวเลืà¸à¸à¸„่าตั้งเป็นรายตัว" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "ไม่มีรายà¸à¸²à¸£à¹€à¸¥à¸·à¸à¸à¸—ี่ตรง" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "บางà¹à¸Ÿà¹‰à¸¡à¸‚าดหายไปในà¸à¸¥à¸¸à¹ˆà¸¡à¹à¸Ÿà¹‰à¸¡à¹à¸žà¸à¹€à¸à¸ˆ `%s'" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "DB เสีย จะเปลี่ยนชื่à¸à¹à¸Ÿà¹‰à¸¡à¹€à¸›à¹‡à¸™ %s.old" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "DB เป็นรุ่นเà¸à¹ˆà¸² จะพยายามปรับรุ่น %s ขึ้น" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 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:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "ไม่สามารถเปิดà¹à¸Ÿà¹‰à¸¡ DB %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "stat %s ไม่สำเร็จ" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "à¹à¸žà¸à¹€à¸à¸ˆà¹„ม่มีระเบียนควบคุม" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "ไม่สามารถนำตัวชี้ตำà¹à¸«à¸™à¹ˆà¸‡à¸¡à¸²à¹ƒà¸Šà¹‰à¹„ด้" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: à¸à¹ˆà¸²à¸™à¹„ดเรà¸à¸—à¸à¸£à¸µ %s ไม่สำเร็จ\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: stat %s ไม่สำเร็จ\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "E: ข้à¸à¸œà¸´à¸”พลาดเà¸à¸´à¸”à¸à¸±à¸šà¹à¸Ÿà¹‰à¸¡ " -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "หาพาธเต็มขà¸à¸‡ %s ไม่สำเร็จ" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "เดินท่à¸à¸‡à¸•้นไม้ไม่สำเร็จ" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "เปิด %s ไม่สำเร็จ" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "readlink %s ไม่สำเร็จ" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "unlink %s ไม่สำเร็จ" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** ลิงà¸à¹Œ %s ไปยัง %s ไม่สำเร็จ" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " มาถึงขีดจำà¸à¸±à¸”à¸à¸²à¸£ DeLink ที่ %sB à¹à¸¥à¹‰à¸§\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "à¹à¸žà¸à¹€à¸à¸ˆà¹„ม่มีช่à¸à¸‡à¸‚้à¸à¸¡à¸¹à¸¥ 'Package'" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %s ไม่มีข้à¸à¸¡à¸¹à¸¥ override\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " ผู้ดูà¹à¸¥ %s คืภ%s ไม่ใช่ %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr " %s ไม่มีข้à¸à¸¡à¸¹à¸¥ override สำหรับซà¸à¸£à¹Œà¸ª\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s ไม่มีข้à¸à¸¡à¸¹à¸¥ override สำหรับไบนารีเช่นà¸à¸±à¸™\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - จà¸à¸‡à¸«à¸™à¹ˆà¸§à¸¢à¸„วามจำไม่สำเร็จ" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "ไม่สามารถเปิด %s" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "à¹à¸Ÿà¹‰à¸¡ override %s ผิดรูปà¹à¸šà¸šà¸—ี่บรรทัด %llu #1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "ไม่สามารถà¸à¹ˆà¸²à¸™à¹à¸Ÿà¹‰à¸¡ override %s" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, c-format msgid "Malformed override %s line %llu #1" msgstr "à¹à¸Ÿà¹‰à¸¡ override %s ผิดรูปà¹à¸šà¸šà¸—ี่บรรทัด %llu #1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, c-format msgid "Malformed override %s line %llu #2" msgstr "à¹à¸Ÿà¹‰à¸¡ override %s ผิดรูปà¹à¸šà¸šà¸—ี่บรรทัด %llu #2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, c-format msgid "Malformed override %s line %llu #3" msgstr "à¹à¸Ÿà¹‰à¸¡ override %s ผิดรูปà¹à¸šà¸šà¸—ี่บรรทัด %llu #3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "ไม่รู้จัà¸à¸à¸±à¸¥à¸à¸à¸£à¸´à¸—ึมบีบà¸à¸±à¸” '%s'" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "ผลลัพธ์ขà¸à¸‡à¸à¸²à¸£à¸šà¸µà¸šà¸à¸±à¸” %s ต้à¸à¸‡à¸¡à¸µà¸Šà¸¸à¸”ขà¸à¸‡à¸à¸²à¸£à¸šà¸µà¸šà¸à¸±à¸”ด้วย" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "สร้าง FILE* ไม่สำเร็จ" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "fork ไม่สำเร็จ" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "โพรเซสลูà¸à¸ªà¸³à¸«à¸£à¸±à¸šà¸šà¸µà¸šà¸à¸±à¸”" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "ข้à¸à¸œà¸´à¸”พลาดภายใน: ไม่สามารถสร้าง %s" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "IO ไปยังโพรเซสย่à¸à¸¢à¸«à¸£à¸·à¸à¹à¸Ÿà¹‰à¸¡à¸¥à¹‰à¸¡à¹€à¸«à¸¥à¸§" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "à¸à¹ˆà¸²à¸™à¹à¸Ÿà¹‰à¸¡à¹„ม่สำเร็จขณะคำนวณ MD5" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "มีปัà¸à¸«à¸²à¸‚ณะลบà¹à¸Ÿà¹‰à¸¡ %s" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "ไม่สามารถเปลี่ยนชื่ภ%s ไปเป็น %s" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -2089,157 +2119,157 @@ msgstr "" " -c=? à¸à¹ˆà¸²à¸™à¹à¸Ÿà¹‰à¸¡à¸„่าตั้งนี้\n" " -o=? à¸à¸³à¸«à¸™à¸”ตัวเลืà¸à¸à¸„่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "สร้างไปป์ไม่สำเร็จ" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "เรียภgzip ไม่สำเร็จ" -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "à¹à¸Ÿà¹‰à¸¡à¸ˆà¸±à¸”เà¸à¹‡à¸šà¹€à¸ªà¸µà¸¢à¸«à¸²à¸¢" -#: apt-inst/contrib/extracttar.cc:201 +#: apt-inst/contrib/extracttar.cc:203 msgid "Tar checksum failed, archive corrupted" msgstr "checksum ขà¸à¸‡à¹à¸Ÿà¹‰à¸¡ tar ผิดพลาด à¹à¸Ÿà¹‰à¸¡à¸ˆà¸±à¸”เà¸à¹‡à¸šà¹€à¸ªà¸µà¸¢à¸«à¸²à¸¢" -#: apt-inst/contrib/extracttar.cc:306 +#: apt-inst/contrib/extracttar.cc:308 #, c-format msgid "Unknown TAR header type %u, member %s" msgstr "พบชนิด %u ขà¸à¸‡à¸‚้à¸à¸¡à¸¹à¸¥à¸ªà¹ˆà¸§à¸™à¸«à¸±à¸§ TAR ที่ไม่รู้จัภที่สมาชิภ%s" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "เà¸à¸à¸¥à¸±à¸à¸©à¸“์ขà¸à¸‡à¹à¸Ÿà¹‰à¸¡à¸ˆà¸±à¸”เà¸à¹‡à¸šà¹„ม่ถูà¸à¸•้à¸à¸‡" -#: apt-inst/contrib/arfile.cc:82 +#: apt-inst/contrib/arfile.cc:84 msgid "Error reading archive member header" msgstr "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดขณะà¸à¹ˆà¸²à¸™à¸‚้à¸à¸¡à¸¹à¸¥à¸ªà¹ˆà¸§à¸™à¸«à¸±à¸§à¸‚à¸à¸‡à¸ªà¸¡à¸²à¸Šà¸´à¸à¹à¸Ÿà¹‰à¸¡à¸ˆà¸±à¸”เà¸à¹‡à¸š" -#: apt-inst/contrib/arfile.cc:94 +#: apt-inst/contrib/arfile.cc:96 #, c-format msgid "Invalid archive member header %s" msgstr "ข้à¸à¸¡à¸¹à¸¥à¸ªà¹ˆà¸§à¸™à¸«à¸±à¸§ %s ขà¸à¸‡à¸ªà¸¡à¸²à¸Šà¸´à¸à¹à¸Ÿà¹‰à¸¡à¸ˆà¸±à¸”เà¸à¹‡à¸šà¹„ม่ถูà¸à¸•้à¸à¸‡" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "ข้à¸à¸¡à¸¹à¸¥à¸ªà¹ˆà¸§à¸™à¸«à¸±à¸§à¸‚à¸à¸‡à¸ªà¸¡à¸²à¸Šà¸´à¸à¹à¸Ÿà¹‰à¸¡à¸ˆà¸±à¸”เà¸à¹‡à¸šà¹„ม่ถูà¸à¸•้à¸à¸‡" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "à¹à¸Ÿà¹‰à¸¡à¸ˆà¸±à¸”เà¸à¹‡à¸šà¸ªà¸±à¹‰à¸™à¹€à¸à¸´à¸™à¹„ป" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "à¸à¹ˆà¸²à¸™à¸‚้à¸à¸¡à¸¹à¸¥à¸ªà¹ˆà¸§à¸™à¸«à¸±à¸§à¸‚à¸à¸‡à¹à¸Ÿà¹‰à¸¡à¸ˆà¸±à¸”เà¸à¹‡à¸šà¹„ม่สำเร็จ" -#: apt-inst/filelist.cc:382 +#: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" msgstr "DropNode ถูà¸à¹€à¸£à¸µà¸¢à¸à¹ƒà¸Šà¹‰à¸à¸±à¸šà¹‚หนดที่ยังลิงà¸à¹Œà¸à¸¢à¸¹à¹ˆ" -#: apt-inst/filelist.cc:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "หาสมาชิà¸à¹ƒà¸™à¸•ารางà¹à¸®à¸Šà¹„ม่สำเร็จ!" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "จà¸à¸‡à¹€à¸™à¸·à¹‰à¸à¸—ี่สำหรับ diversion ไม่สำเร็จ" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "ข้à¸à¸œà¸´à¸”พลาดภายในที่ AddDiversion" -#: apt-inst/filelist.cc:479 +#: apt-inst/filelist.cc:477 #, c-format msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" msgstr "พยายามเขียนทับ diversion: %s -> %s à¸à¸±à¸š %s/%s" -#: apt-inst/filelist.cc:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "เพิ่ม diversion %s -> %s ซ้ำสà¸à¸‡" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "à¹à¸Ÿà¹‰à¸¡à¸„่าตั้ง %s/%s ซ้ำ" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: 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:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "ไม่สามารถปิดà¹à¸Ÿà¹‰à¸¡ %s" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: 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:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "พยายามà¹à¸•à¸à¹à¸žà¸à¹€à¸à¸ˆ %s มาà¸à¸à¸§à¹ˆà¸²à¸«à¸™à¸¶à¹ˆà¸‡à¸„รั้ง" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "ไดเรà¸à¸—à¸à¸£à¸µ %s ถูภdivert" -#: apt-inst/extract.cc:145 +#: apt-inst/extract.cc:152 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "à¹à¸žà¸à¹€à¸à¸ˆà¸™à¸µà¹‰à¸žà¸¢à¸²à¸¢à¸²à¸¡à¹€à¸‚ียนลงปลายทางขà¸à¸‡ diversion %s/%s" -#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 msgid "The diversion path is too long" msgstr "พาธขà¸à¸‡ diversion ยาวเà¸à¸´à¸™à¹„ป" -#: apt-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "ไดเรà¸à¸—à¸à¸£à¸µ %s à¸à¸³à¸¥à¸±à¸‡à¸ˆà¸°à¸–ูà¸à¹à¸—นที่ด้วยสิ่งที่ไม่ใช่ไดเรà¸à¸—à¸à¸£à¸µ" -#: apt-inst/extract.cc:282 +#: apt-inst/extract.cc:289 msgid "Failed to locate node in its hash bucket" msgstr "หาโหนดใน bucket ขà¸à¸‡à¹à¸®à¸Šà¹„ม่พบ" -#: apt-inst/extract.cc:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "พาธยาวเà¸à¸´à¸™à¹„ป" -#: apt-inst/extract.cc:414 +#: apt-inst/extract.cc:421 #, c-format msgid "Overwrite package match with no version for %s" msgstr "พบà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่เขียนทับโดยไม่มีข้à¸à¸¡à¸¹à¸¥à¸£à¸¸à¹ˆà¸™à¸ªà¸³à¸«à¸£à¸±à¸š %s" -#: apt-inst/extract.cc:431 +#: 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:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "ไม่สามารถ stat %s" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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:124 +#: apt-inst/deb/debfile.cc:132 #, c-format msgid "Internal error, could not locate member %s" msgstr "ข้à¸à¸œà¸´à¸”พลาดภายใน: ไม่พบสมาชิภ%s" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "ไม่สามารถà¹à¸ˆà¸‡à¹à¸Ÿà¹‰à¸¡à¸„วบคุมได้" @@ -2296,481 +2326,486 @@ msgid "" msgstr "ไม่สามารถเพิ่มขนาดขà¸à¸‡ MMap เนื่à¸à¸‡à¸ˆà¸²à¸à¸œà¸¹à¹‰à¹ƒà¸Šà¹‰à¸›à¸´à¸”à¸à¸²à¸£à¸‚ยายขนาดà¸à¸±à¸•โนมัติ" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "%liวัน %liชม. %liนาที %liวิ" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "%liชม. %liนาที %liวิ" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "%liนาที %liวิ" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "%liวิ" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "ไม่พบรายà¸à¸²à¸£à¹€à¸¥à¸·à¸à¸ %s" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "พบตัวย่à¸à¸‚à¸à¸‡à¸Šà¸™à¸´à¸”ที่ข้à¸à¸¡à¸¹à¸¥à¹„ม่รู้จัà¸: '%c'" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "ขณะเปิดà¹à¸Ÿà¹‰à¸¡à¸„่าตั้ง %s" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "ไวยาà¸à¸£à¸“์ผิดพลาด %s:%u: เริ่มบล็à¸à¸„โดยไม่มีชื่à¸" -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "ไวยาà¸à¸£à¸“์ผิดพลาด %s:%u: à¹à¸—็à¸à¸œà¸´à¸”รูปà¹à¸šà¸š" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "ไวยาà¸à¸£à¸“์ผิดพลาด %s:%u: มีขยะเà¸à¸´à¸™à¸«à¸¥à¸±à¸‡à¸„่า" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "ไวยาà¸à¸£à¸“์ผิดพลาด %s:%u: สามารถใช้ directive ที่ระดับบนสุดได้เท่านั้น" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "ไวยาà¸à¸£à¸“์ผิดพลาด %s:%u: ใช้ include ซ้à¸à¸™à¸à¸±à¸™à¸¡à¸²à¸à¹€à¸à¸´à¸™à¹„ป" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "ไวยาà¸à¸£à¸“์ผิดพลาด %s:%u: include จาà¸à¸—ี่นี่" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "ไวยาà¸à¸£à¸“์ผิดพลาด %s:%u: พบ directive '%s' ที่ไม่รà¸à¸‡à¸£à¸±à¸š" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-pkg/contrib/configuration.cc:900 #, c-format msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "ไวยาà¸à¸£à¸“์ผิดพลาด %s:%u: directive 'clear' ต้à¸à¸‡à¸¡à¸µà¸à¸²à¸£à¹Œà¸à¸´à¸§à¹€à¸¡à¸™à¸•์เป็นลำดับชั้นตัวเลืà¸à¸" -#: apt-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "ไวยาà¸à¸£à¸“์ผิดพลาด %s:%u: มีขยะเà¸à¸´à¸™à¸«à¸¥à¸±à¸‡à¸ˆà¸šà¹à¸Ÿà¹‰à¸¡" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... ผิดพลาด!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... เสร็จà¹à¸¥à¹‰à¸§" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s... เสร็จà¹à¸¥à¹‰à¸§" -#: apt-pkg/contrib/cmndline.cc:116 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format msgid "Command line option '%c' [from %s] is not known." msgstr "ไม่รู้จัà¸à¸•ัวเลืà¸à¸à¸šà¸£à¸£à¸—ัดคำสั่ง '%c' [จาภ%s]" -#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format msgid "Command line option %s is not boolean" msgstr "ตัวเลืà¸à¸à¸šà¸£à¸£à¸—ัดคำสั่ง %s ไม่ได้เป็นค่าบูลีน" -#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "ตัวเลืà¸à¸ %s ต้à¸à¸‡à¸¡à¸µà¸à¸²à¸£à¹Œà¸à¸´à¸§à¹€à¸¡à¸™à¸•์" -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "ตัวเลืà¸à¸ %s: à¸à¸²à¸£à¸à¸³à¸«à¸™à¸”รายà¸à¸²à¸£à¸„่าตั้งต้à¸à¸‡à¸¡à¸µ =<val>" -#: apt-pkg/contrib/cmndline.cc:273 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format msgid "Option %s requires an integer argument, not '%s'" msgstr "ตัวเลืà¸à¸ %s ต้à¸à¸‡à¸à¸²à¸£à¸à¸²à¸£à¹Œà¸à¸´à¸§à¹€à¸¡à¸™à¸•์จำนวนเต็ม ไม่ใช่ '%s'" -#: apt-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "ตัวเลืà¸à¸ '%s' ยาวเà¸à¸´à¸™à¹„ป" -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "ไม่เข้าใจค่าบูลีน %s à¸à¸£à¸¸à¸“าลà¸à¸‡à¹ƒà¸Šà¹‰ true หรืภfalse" -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "ไม่รู้จัà¸à¸„ำสั่ง %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format msgid "Unable to stat the mount point %s" msgstr "ไม่สามารถ stat จุดเมานท์ %s" -#: apt-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "ไม่สามารถ stat ซีดีรà¸à¸¡" -#: apt-pkg/contrib/fileutl.cc:95 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "เà¸à¸´à¸”ปัà¸à¸«à¸²à¸‚ณะปิดà¹à¸Ÿà¹‰à¸¡ gzip %s" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "จะไม่ใช้à¸à¸²à¸£à¸¥à¹‡à¸à¸„à¸à¸±à¸šà¹à¸Ÿà¹‰à¸¡à¸¥à¹‡à¸à¸„ %s ที่à¸à¹ˆà¸²à¸™à¹„ด้à¸à¸¢à¹ˆà¸²à¸‡à¹€à¸”ียว" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "ไม่สามารถเปิดà¹à¸Ÿà¹‰à¸¡à¸¥à¹‡à¸à¸„ %s" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "จะไม่ใช้à¸à¸²à¸£à¸¥à¹‡à¸à¸„à¸à¸±à¸šà¹à¸Ÿà¹‰à¸¡à¸¥à¹‡à¸à¸„ %s ที่เมานท์ผ่าน nfs" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "ไม่สามารถล็à¸à¸„ %s" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "ไม่สามารถสร้างรายชื่à¸à¹à¸Ÿà¹‰à¸¡à¹„ด้ เนื่à¸à¸‡à¸ˆà¸²à¸ '%s' ไม่ใช่ไดเรà¸à¸—à¸à¸£à¸µ" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "จะละเลย '%s' ในไดเรà¸à¸—à¸à¸£à¸µ '%s' เนื่à¸à¸‡à¸ˆà¸²à¸à¹„ม่ใช่à¹à¸Ÿà¹‰à¸¡à¸˜à¸£à¸£à¸¡à¸”า" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "จะละเลย '%s' ในไดเรà¸à¸—à¸à¸£à¸µ '%s' เนื่à¸à¸‡à¸ˆà¸²à¸à¹„ม่มีส่วนขยายในชื่à¸à¹à¸Ÿà¹‰à¸¡" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "จะละเลย '%s' ในไดเรà¸à¸—à¸à¸£à¸µ '%s' เนื่à¸à¸‡à¸ˆà¸²à¸à¸ªà¹ˆà¸§à¸™à¸‚ยายในชื่à¸à¹à¸Ÿà¹‰à¸¡à¹„ม่สามารถใช้à¸à¸²à¸£à¹„ด้" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "โพรเซสย่à¸à¸¢ %s เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดขà¸à¸‡à¸à¸²à¸£à¹ƒà¸Šà¹‰à¸¢à¹ˆà¸²à¸™à¸«à¸™à¹ˆà¸§à¸¢à¸„วามจำ (segmentation fault)" -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, c-format msgid "Sub-process %s received signal %u." msgstr "โพรเซสย่à¸à¸¢ %s ได้รับสัà¸à¸à¸²à¸“ %u" -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 apt-pkg/contrib/gpgv.cc:239 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "โพรเซสย่à¸à¸¢ %s คืนค่าข้à¸à¸œà¸´à¸”พลาด (%u)" -#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "โพรเซสย่à¸à¸¢ %s จบà¸à¸²à¸£à¸—ำงานà¸à¸°à¸—ันหัน" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "เà¸à¸´à¸”ปัà¸à¸«à¸²à¸‚ณะปิดà¹à¸Ÿà¹‰à¸¡ gzip %s" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "ไม่สามารถเปิดà¹à¸Ÿà¹‰à¸¡ %s" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, c-format msgid "Could not open file descriptor %d" msgstr "ไม่สามารถเปิด file destriptor %d" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "สร้าง IPC ขà¸à¸‡à¹‚พรเซสย่à¸à¸¢à¹„ม่สำเร็จ" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "เรียà¸à¸—ำงานตัวบีบà¸à¸±à¸”ไม่สำเร็จ" -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, c-format msgid "read, still have %llu to read but none left" msgstr "read: ยังเหลืภ%llu ที่ยังไม่ได้à¸à¹ˆà¸²à¸™ à¹à¸•่ข้à¸à¸¡à¸¹à¸¥à¸«à¸¡à¸”à¹à¸¥à¹‰à¸§" -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, c-format msgid "write, still have %llu to write but couldn't" msgstr "write: ยังเหลืภ%llu ที่ยังไม่ได้เขียน à¹à¸•่ไม่สามารถเขียนได้" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, c-format msgid "Problem closing the file %s" msgstr "เà¸à¸´à¸”ปัà¸à¸«à¸²à¸‚ณะปิดà¹à¸Ÿà¹‰à¸¡ %s" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, c-format msgid "Problem renaming the file %s to %s" msgstr "เà¸à¸´à¸”ปัà¸à¸«à¸²à¸‚ณะเปลี่ยนชื่à¸à¹à¸Ÿà¹‰à¸¡ %s ไปเป็น %s" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, c-format msgid "Problem unlinking the file %s" msgstr "เà¸à¸´à¸”ปัà¸à¸«à¸²à¸‚ณะลบà¹à¸Ÿà¹‰à¸¡ %s" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "เà¸à¸´à¸”ปัà¸à¸«à¸²à¸‚ณะ sync à¹à¸Ÿà¹‰à¸¡" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "เปลี่ยนชื่à¸à¹„ม่สำเร็จ: %s (%s -> %s)" + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, c-format msgid "No keyring installed in %s." msgstr "ไม่มีพวงà¸à¸¸à¸à¹à¸ˆà¸•ิดตั้งไว้ใน %s" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "à¹à¸„ชขà¸à¸‡à¹à¸žà¸à¹€à¸à¸ˆà¸§à¹ˆà¸²à¸‡à¹€à¸›à¸¥à¹ˆà¸²" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "à¹à¸Ÿà¹‰à¸¡à¹à¸„ชขà¸à¸‡à¹à¸žà¸à¹€à¸à¸ˆà¹€à¸ªà¸µà¸¢à¸«à¸²à¸¢" -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "à¹à¸Ÿà¹‰à¸¡à¹à¸„ชขà¸à¸‡à¹à¸žà¸à¹€à¸à¸ˆà¹€à¸›à¹‡à¸™à¸„นละรุ่นà¸à¸±à¸™" -#: apt-pkg/pkgcache.cc:162 +#: apt-pkg/pkgcache.cc:169 msgid "The package cache file is corrupted, it is too small" msgstr "à¹à¸Ÿà¹‰à¸¡à¹à¸„ชขà¸à¸‡à¹à¸žà¸à¹€à¸à¸ˆà¹€à¸ªà¸µà¸¢à¸«à¸²à¸¢ à¹à¸Ÿà¹‰à¸¡à¸¡à¸µà¸‚นาดเล็à¸à¸à¸§à¹ˆà¸²à¸—ี่ควรจะเป็น" -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "APT รุ่นนี้ไม่รà¸à¸‡à¸£à¸±à¸šà¸£à¸°à¸šà¸šà¸™à¸±à¸šà¸£à¸¸à¹ˆà¸™à¹à¸šà¸š '%s'" -#: apt-pkg/pkgcache.cc:172 +#: apt-pkg/pkgcache.cc:179 msgid "The package cache was built for a different architecture" msgstr "à¹à¸„ชขà¸à¸‡à¹à¸žà¸à¹€à¸à¸ˆà¸–ูà¸à¸ªà¸£à¹‰à¸²à¸‡à¸¡à¸²à¸ªà¸³à¸«à¸£à¸±à¸šà¸ªà¸–าปัตยà¸à¸£à¸£à¸¡à¸à¸·à¹ˆà¸™" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "ต้à¸à¸‡à¹ƒà¸Šà¹‰" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "ต้à¸à¸‡à¹ƒà¸Šà¹‰à¸‚ณะติดตั้ง" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "à¹à¸™à¸°à¸™à¸³" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "ควรใช้ร่วมà¸à¸±à¸š" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "ขัดà¹à¸¢à¹‰à¸‡à¸à¸±à¸š" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "à¹à¸—นที่" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "ใช้à¹à¸—น" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "ทำให้พัง" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "เพิ่มความสามารถ" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "สำคัà¸" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "จำเป็น" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "มาตรà¸à¸²à¸™" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "ตัวเลืà¸à¸" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "ส่วนเสริม" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "à¸à¸³à¸¥à¸±à¸‡à¸ªà¸£à¹‰à¸²à¸‡à¹‚ครงสร้างลำดับความสัมพันธ์" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "รุ่นà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่มี" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "สร้างลำดับความสัมพันธ์" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 msgid "Reading state information" msgstr "à¸à¸³à¸¥à¸±à¸‡à¸à¹ˆà¸²à¸™à¸‚้à¸à¸¡à¸¹à¸¥à¸ªà¸–านะ" -#: apt-pkg/depcache.cc:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "ไม่สามารถเปิดà¹à¸Ÿà¹‰à¸¡à¸ªà¸–านะ %s" -#: apt-pkg/depcache.cc:250 +#: apt-pkg/depcache.cc:256 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "ไม่สามารถเขียนà¹à¸Ÿà¹‰à¸¡à¸ªà¸–านะชั่วคราว %s" -#: apt-pkg/tagfile.cc:138 +#: apt-pkg/tagfile.cc:140 #, c-format msgid "Unable to parse package file %s (1)" msgstr "ไม่สามารถà¹à¸ˆà¸‡à¹à¸Ÿà¹‰à¸¡à¹à¸žà¸à¹€à¸à¸ˆ %s (1)" -#: apt-pkg/tagfile.cc:235 +#: apt-pkg/tagfile.cc:237 #, c-format msgid "Unable to parse package file %s (2)" msgstr "ไม่สามารถà¹à¸ˆà¸‡à¹à¸Ÿà¹‰à¸¡à¹à¸žà¸à¹€à¸à¸ˆ %s (2)" -#: apt-pkg/sourcelist.cc:118 +#: apt-pkg/sourcelist.cc:127 #, fuzzy, c-format msgid "Malformed stanza %u in source list %s (URI parse)" msgstr "บรรทัด %lu ในà¹à¸Ÿà¹‰à¸¡à¸£à¸²à¸¢à¸Šà¸·à¹ˆà¸à¹à¸«à¸¥à¹ˆà¸‡à¹à¸žà¸à¹€à¸à¸ˆ %s ผิดรูปà¹à¸šà¸š (ขณะà¹à¸ˆà¸‡ URI)" -#: apt-pkg/sourcelist.cc:161 +#: apt-pkg/sourcelist.cc:170 #, c-format msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "บรรทัด %lu ในà¹à¸Ÿà¹‰à¸¡à¸£à¸²à¸¢à¸Šà¸·à¹ˆà¸à¹à¸«à¸¥à¹ˆà¸‡à¹à¸žà¸à¹€à¸à¸ˆ %s ผิดรูปà¹à¸šà¸š ([ตัวเลืà¸à¸] à¹à¸ˆà¸‡à¹„ม่ผ่าน)" -#: apt-pkg/sourcelist.cc:164 +#: apt-pkg/sourcelist.cc:173 #, c-format msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "บรรทัด %lu ในà¹à¸Ÿà¹‰à¸¡à¸£à¸²à¸¢à¸Šà¸·à¹ˆà¸à¹à¸«à¸¥à¹ˆà¸‡à¹à¸žà¸à¹€à¸à¸ˆ %s ผิดรูปà¹à¸šà¸š ([ตัวเลืà¸à¸] สั้นเà¸à¸´à¸™à¹„ป)" -#: apt-pkg/sourcelist.cc:175 +#: 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-pkg/sourcelist.cc:181 +#: apt-pkg/sourcelist.cc:190 #, c-format msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "บรรทัด %lu ในà¹à¸Ÿà¹‰à¸¡à¸£à¸²à¸¢à¸Šà¸·à¹ˆà¸à¹à¸«à¸¥à¹ˆà¸‡à¹à¸žà¸à¹€à¸à¸ˆ %s ผิดรูปà¹à¸šà¸š ([%s] ไม่มีคีย์)" -#: apt-pkg/sourcelist.cc:184 +#: 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-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "บรรทัด %lu ในà¹à¸Ÿà¹‰à¸¡à¸£à¸²à¸¢à¸Šà¸·à¹ˆà¸à¹à¸«à¸¥à¹ˆà¸‡à¹à¸žà¸à¹€à¸à¸ˆ %s ผิดรูปà¹à¸šà¸š (URI)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "บรรทัด %lu ในà¹à¸Ÿà¹‰à¸¡à¸£à¸²à¸¢à¸Šà¸·à¹ˆà¸à¹à¸«à¸¥à¹ˆà¸‡à¹à¸žà¸à¹€à¸à¸ˆ %s ผิดรูปà¹à¸šà¸š (dist)" -#: apt-pkg/sourcelist.cc:202 +#: apt-pkg/sourcelist.cc:211 #, c-format msgid "Malformed line %lu in source list %s (URI parse)" msgstr "บรรทัด %lu ในà¹à¸Ÿà¹‰à¸¡à¸£à¸²à¸¢à¸Šà¸·à¹ˆà¸à¹à¸«à¸¥à¹ˆà¸‡à¹à¸žà¸à¹€à¸à¸ˆ %s ผิดรูปà¹à¸šà¸š (ขณะà¹à¸ˆà¸‡ URI)" -#: apt-pkg/sourcelist.cc:208 +#: apt-pkg/sourcelist.cc:217 #, c-format msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "บรรทัด %lu ในà¹à¸Ÿà¹‰à¸¡à¸£à¸²à¸¢à¸Šà¸·à¹ˆà¸à¹à¸«à¸¥à¹ˆà¸‡à¹à¸žà¸à¹€à¸à¸ˆ %s ผิดรูปà¹à¸šà¸š (dist à¹à¸šà¸šà¸ªà¸±à¸¡à¸šà¸¹à¸£à¸“์)" -#: apt-pkg/sourcelist.cc:215 +#: apt-pkg/sourcelist.cc:224 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" msgstr "บรรทัด %lu ในà¹à¸Ÿà¹‰à¸¡à¸£à¸²à¸¢à¸Šà¸·à¹ˆà¸à¹à¸«à¸¥à¹ˆà¸‡à¹à¸žà¸à¹€à¸à¸ˆ %s ผิดรูปà¹à¸šà¸š (ขณะà¹à¸ˆà¸‡ dist)" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸›à¸´à¸” %s" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "บรรทัด %u ในà¹à¸Ÿà¹‰à¸¡à¸£à¸²à¸¢à¸Šà¸·à¹ˆà¸à¹à¸«à¸¥à¹ˆà¸‡à¹à¸žà¸à¹€à¸à¸ˆ %s ยาวเà¸à¸´à¸™à¹„ป" -#: apt-pkg/sourcelist.cc:362 +#: apt-pkg/sourcelist.cc:371 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "บรรทัด %u ในà¹à¸Ÿà¹‰à¸¡à¸£à¸²à¸¢à¸Šà¸·à¹ˆà¸à¹à¸«à¸¥à¹ˆà¸‡à¹à¸žà¸à¹€à¸à¸ˆ %s ผิดรูปà¹à¸šà¸š (ชนิด)" -#: apt-pkg/sourcelist.cc:366 +#: apt-pkg/sourcelist.cc:375 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "ไม่รู้จัà¸à¸Šà¸™à¸´à¸” '%s' ที่บรรทัด %u ในà¹à¸Ÿà¹‰à¸¡à¸£à¸²à¸¢à¸Šà¸·à¹ˆà¸à¹à¸«à¸¥à¹ˆà¸‡à¹à¸žà¸à¹€à¸à¸ˆ %s" -#: apt-pkg/sourcelist.cc:407 +#: 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/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2779,12 +2814,12 @@ msgstr "" "ไม่สามารถตั้งค่า '%s' à¹à¸šà¸šà¸—ันทีได้ à¸à¸£à¸¸à¸“าà¸à¹ˆà¸²à¸™à¸£à¸²à¸¢à¸¥à¸°à¹€à¸à¸µà¸¢à¸”เพิ่มเติมจาภman 5 apt.conf ที่หัวข้ภ" "APT::Immediate-Configure (%d)" -#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, c-format msgid "Could not configure '%s'. " msgstr "ไม่สามารถตั้งค่า '%s'" -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2796,18 +2831,18 @@ msgstr "" "ซึ่งà¹à¸žà¸à¹€à¸à¸ˆà¸”ังà¸à¸¥à¹ˆà¸²à¸§à¹€à¸›à¹‡à¸™à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่จำเป็นสำหรับระบบ à¸à¸²à¸£à¸¥à¸šà¸”ังà¸à¸¥à¹ˆà¸²à¸§à¸¡à¸±à¸à¹€à¸›à¹‡à¸™à¸à¸±à¸™à¸•ราย " "à¹à¸•่ถ้าคุณต้à¸à¸‡à¸à¸²à¸£à¸—ำเช่นนั้นจริงๆ à¸à¹‡à¹ƒà¸«à¹‰à¹€à¸›à¸´à¸”ตัวเลืà¸à¸ APT::Force-LoopBreak" -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "ไม่รà¸à¸‡à¸£à¸±à¸šà¹à¸Ÿà¹‰à¸¡à¸”ัชนีชนิด '%s'" -#: apt-pkg/algorithms.cc:266 +#: 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:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2815,185 +2850,180 @@ msgstr "" "ข้à¸à¸œà¸´à¸”พลาด: pkgProblemResolver::Resolve สร้างคำตà¸à¸šà¸—ี่ทำให้เà¸à¸´à¸”à¹à¸žà¸à¹€à¸à¸ˆà¹€à¸ªà¸µà¸¢ " "à¸à¸²à¸ˆà¹€à¸à¸´à¸”จาà¸à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ถูà¸à¸à¸³à¸«à¸™à¸”ให้คงรุ่นไว้" -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "ไม่สามารถà¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¹„ด้ คุณได้คงรุ่นà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่เสียà¸à¸¢à¸¹à¹ˆà¹„ว้" -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, c-format msgid "List directory %spartial is missing." msgstr "ไม่มีไดเรà¸à¸—à¸à¸£à¸µà¸£à¸²à¸¢à¸Šà¸·à¹ˆà¸à¹à¸žà¸à¹€à¸à¸ˆ %spartial" -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, c-format msgid "Archives directory %spartial is missing." msgstr "ไม่มีไดเรà¸à¸—à¸à¸£à¸µà¹à¸žà¸à¹€à¸à¸ˆ %spartial" -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, c-format msgid "Unable to lock directory %s" msgstr "ไม่สามารถล็à¸à¸„ไดเรà¸à¸—à¸à¸£à¸µ %s" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "à¸à¸³à¸¥à¸±à¸‡à¸”าวน์โหลดà¹à¸Ÿà¹‰à¸¡à¸—ี่ %li จาภ%li (เหลืà¸à¸à¸µà¸ %s)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "à¸à¸³à¸¥à¸±à¸‡à¸”าวน์โหลดà¹à¸Ÿà¹‰à¸¡à¸—ี่ %li จาภ%li" -#: apt-pkg/acquire-worker.cc:113 +#: apt-pkg/acquire-worker.cc:116 #, c-format msgid "The method driver %s could not be found." msgstr "ไม่พบไดรเวà¸à¸£à¹Œà¸ªà¸³à¸«à¸£à¸±à¸šà¸§à¸´à¸˜à¸µà¸à¸²à¸£ %s" -#: apt-pkg/acquire-worker.cc:115 +#: apt-pkg/acquire-worker.cc:118 #, fuzzy, c-format msgid "Is the package %s installed?" msgstr "à¸à¸£à¸¸à¸“าตรวจสà¸à¸šà¸§à¹ˆà¸²à¹„ด้ติดตั้งà¹à¸žà¸à¹€à¸à¸ˆ 'dpkg-dev' à¹à¸¥à¹‰à¸§\n" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "ไม่สามารถเรียà¸à¸—ำงานวิธีà¸à¸²à¸£ %s" -#: apt-pkg/acquire-worker.cc:452 +#: 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" -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "ไม่รà¸à¸‡à¸£à¸±à¸šà¸£à¸°à¸šà¸šà¹à¸žà¸à¹€à¸à¸ˆ '%s'" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "ไม่สามารถระบุชนิดขà¸à¸‡à¸£à¸°à¸šà¸šà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่เหมาะสมได้" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "ไม่สามารถ stat %s" -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "คุณต้à¸à¸‡à¹€à¸žà¸´à¹ˆà¸¡ URI ชนิด 'source' ใน sources.list ขà¸à¸‡à¸„ุณด้วย" -#: apt-pkg/cachefile.cc:87 +#: apt-pkg/cachefile.cc:94 msgid "The package lists or status file could not be parsed or opened." msgstr "ไม่สามารถà¹à¸ˆà¸‡à¸«à¸£à¸·à¸à¹€à¸›à¸´à¸”รายชื่à¸à¹à¸žà¸à¹€à¸à¸ˆà¸«à¸£à¸·à¸à¸ªà¸–านะà¹à¸žà¸à¹€à¸à¸ˆà¹„ด้" -#: apt-pkg/cachefile.cc:91 +#: 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:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "ไม่สามารถà¸à¹ˆà¸²à¸™à¸£à¸²à¸¢à¸Šà¸·à¹ˆà¸à¹à¸«à¸¥à¹ˆà¸‡à¹à¸žà¸à¹€à¸à¸ˆà¹„ด้" -#: apt-pkg/policy.cc:75 +#: apt-pkg/policy.cc:83 #, c-format msgid "" "The value '%s' is invalid for APT::Default-Release as such a release is not " "available in the sources" msgstr "ค่า '%s' ไม่สามารถใช้à¸à¸±à¸š APT::Default-Release ได้ เนื่à¸à¸‡à¸ˆà¸²à¸à¸£à¸¸à¹ˆà¸™à¸”ังà¸à¸¥à¹ˆà¸²à¸§à¹„ม่มีในà¹à¸«à¸¥à¹ˆà¸‡" -#: apt-pkg/policy.cc:414 +#: 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:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "ไม่เข้าใจชนิดà¸à¸²à¸£à¸•รึง %s" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "ไม่ได้ระบุลำดับความสำคัภ(หรืà¸à¸„่าศูนย์) สำหรับà¸à¸²à¸£à¸•รึง" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 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:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดขณะประมวลผล %s (%s%d)" -#: apt-pkg/pkgcachegen.cc:251 +#: apt-pkg/pkgcachegen.cc:257 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "โà¸à¹‰ คุณมาถึงขีดจำà¸à¸±à¸”จำนวนชื่à¸à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ APT สามารถรà¸à¸‡à¸£à¸±à¸šà¹„ด้à¹à¸¥à¹‰à¸§" -#: apt-pkg/pkgcachegen.cc:254 +#: apt-pkg/pkgcachegen.cc:260 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "โà¸à¹‰ คุณมาถึงขีดจำà¸à¸±à¸”จำนวนรุ่นà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ APT สามารถรà¸à¸‡à¸£à¸±à¸šà¹„ด้à¹à¸¥à¹‰à¸§" -#: apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:263 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "โà¸à¹‰ คุณมาถึงขีดจำà¸à¸±à¸”จำนวนคำบรรยายà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ APT สามารถรà¸à¸‡à¸£à¸±à¸šà¹„ด้à¹à¸¥à¹‰à¸§" -#: apt-pkg/pkgcachegen.cc:260 +#: apt-pkg/pkgcachegen.cc:266 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "โà¸à¹‰ คุณมาถึงขีดจำà¸à¸±à¸”จำนวนความสัมพันธ์ระหว่างà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ APT สามารถรà¸à¸‡à¸£à¸±à¸šà¹„ด้à¹à¸¥à¹‰à¸§" -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:576 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "ไม่พบà¹à¸žà¸à¹€à¸à¸ˆ %s %s ขณะประมวลผลความขึ้นต่à¸à¹à¸Ÿà¹‰à¸¡" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "ไม่สามารถ stat รายà¸à¸²à¸£à¹à¸žà¸à¹€à¸à¸ˆà¸‹à¸à¸£à¹Œà¸ª %s" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸à¹‡à¸šà¸‚้à¸à¸¡à¸¹à¸¥à¹à¸Ÿà¹‰à¸¡à¸—ี่ตระเตรียมให้" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 msgid "IO Error saving source cache" msgstr "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาด IO ขณะบันทึà¸à¹à¸„ชขà¸à¸‡à¸‹à¸à¸£à¹Œà¸ª" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "เปลี่ยนชื่à¸à¹„ม่สำเร็จ: %s (%s -> %s)" - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "ผลรวมà¹à¸®à¸Šà¹„ม่ตรงà¸à¸±à¸™" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "ขนาดไม่ตรงà¸à¸±à¸™" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "ไม่รู้จัà¸à¸„ำสั่ง %s" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, c-format msgid "" "Unable to find expected entry '%s' in Release file (Wrong sources.list entry " @@ -3002,16 +3032,16 @@ msgstr "" "ไม่พบรายà¸à¸²à¸£ '%s' ที่ต้à¸à¸‡à¸à¸²à¸£à¹ƒà¸™à¹à¸Ÿà¹‰à¸¡ Release (รายà¸à¸²à¸£ sources.list ไม่ถูà¸à¸•้à¸à¸‡ " "หรืà¸à¹à¸Ÿà¹‰à¸¡à¸œà¸´à¸”รูปà¹à¸šà¸š)" -#: apt-pkg/acquire-item.cc:1586 +#: apt-pkg/acquire-item.cc:1595 #, c-format msgid "Unable to find hash sum for '%s' in Release file" msgstr "ไม่พบผลรวมà¹à¸®à¸Šà¸ªà¸³à¸«à¸£à¸±à¸š '%s' ในà¹à¸Ÿà¹‰à¸¡ Release" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "ไม่มีà¸à¸¸à¸à¹à¸ˆà¸ªà¸²à¸˜à¸²à¸£à¸“ะสำหรับà¸à¸¸à¸à¹à¸ˆà¸«à¸¡à¸²à¸¢à¹€à¸¥à¸‚ต่à¸à¹„ปนี้:\n" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " @@ -3020,12 +3050,12 @@ msgstr "" "à¹à¸Ÿà¹‰à¸¡ Release สำหรับ %s หมดà¸à¸²à¸¢à¸¸à¹à¸¥à¹‰à¸§ (ตั้งà¹à¸•่ %s ที่à¹à¸¥à¹‰à¸§) จะไม่ใช้รายà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸£à¸¸à¹ˆà¸™à¸•่างๆ " "ขà¸à¸‡à¸„ลังà¹à¸žà¸à¹€à¸à¸ˆà¸™à¸µà¹‰" -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "ชุดจัดà¹à¸ˆà¸à¸‚ัดà¹à¸¢à¹‰à¸‡à¸à¸±à¸™: %s (ต้à¸à¸‡à¸à¸²à¸£ %s à¹à¸•่พบ %s)" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3035,94 +3065,90 @@ msgstr "" "ข้à¸à¸œà¸´à¸”พลาดจาภGPG: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "ข้à¸à¸œà¸´à¸”พลาดจาภGPG: %s: %s" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, 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)" -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "ไม่พบà¹à¸«à¸¥à¹ˆà¸‡à¸—ี่จะดาวน์โหลดรุ่น '%s' ขà¸à¸‡ '%s' ได้" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "à¹à¸Ÿà¹‰à¸¡à¸”ัชนีà¹à¸žà¸à¹€à¸à¸ˆà¹€à¸ªà¸µà¸¢à¸«à¸²à¸¢ ไม่มีข้à¸à¸¡à¸¹à¸¥ Filename: (ชื่à¸à¹à¸Ÿà¹‰à¸¡) สำหรับà¹à¸žà¸à¹€à¸à¸ˆ %s" -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, c-format msgid "Unable to parse Release file %s" msgstr "ไม่สามารถà¹à¸ˆà¸‡à¹à¸Ÿà¹‰à¸¡ Release %s" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, c-format msgid "No sections in Release file %s" msgstr "ไม่มีหัวข้à¸à¸¢à¹ˆà¸à¸¢à¹ƒà¸™à¹à¸Ÿà¹‰à¸¡ Release %s" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "ไม่มีรายà¸à¸²à¸£à¹à¸®à¸Šà¹ƒà¸™à¹à¸Ÿà¹‰à¸¡ Release %s" -#: apt-pkg/indexrecords.cc:125 +#: apt-pkg/indexrecords.cc:130 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "รายà¸à¸²à¸£ 'Valid-Until' ไม่ถูà¸à¸•้à¸à¸‡à¹ƒà¸™à¹à¸Ÿà¹‰à¸¡ Release %s" -#: apt-pkg/indexrecords.cc:144 +#: apt-pkg/indexrecords.cc:149 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "รายà¸à¸²à¸£ 'Date' ไม่ถูà¸à¸•้à¸à¸‡à¹ƒà¸™à¹à¸Ÿà¹‰à¸¡ Release %s" -#: apt-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "บล็à¸à¸„ผู้ผลิต %s ไม่มีลายนิ้วมืà¸" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "à¸à¸³à¸¥à¸±à¸‡à¹ƒà¸Šà¹‰à¸ˆà¸¸à¸”เมานท์ซีดีรà¸à¸¡ %s\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸¥à¸´à¸à¹€à¸¡à¸²à¸™à¸—์ซีดีรà¸à¸¡\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸¥à¸´à¸à¹€à¸¡à¸²à¸™à¸—์ซีดีรà¸à¸¡...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "à¸à¸³à¸¥à¸±à¸‡à¸£à¸à¹à¸œà¹ˆà¸™...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸¡à¸²à¸™à¸—์ซีดีรà¸à¸¡...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " -msgstr "à¸à¸³à¸¥à¸±à¸‡à¸•รวจสà¸à¸šà¸Šà¸·à¹ˆà¸à¹à¸œà¹ˆà¸™.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " +msgstr "à¸à¸³à¸¥à¸±à¸‡à¸•รวจสà¸à¸šà¸Šà¸·à¹ˆà¸à¹à¸œà¹ˆà¸™... " -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "ชื่à¸à¸—ี่เà¸à¹‡à¸šà¹„ว้: %s\n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸¥à¸´à¸à¹€à¸¡à¸²à¸™à¸—์ซีดีรà¸à¸¡...\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" -msgstr "à¸à¸³à¸¥à¸±à¸‡à¸ªà¸³à¸£à¸§à¸ˆà¸‚้à¸à¸¡à¸¹à¸¥à¹ƒà¸™à¹à¸œà¹ˆà¸™à¹€à¸žà¸·à¹ˆà¸à¸«à¸²à¹à¸Ÿà¹‰à¸¡à¸”ัชนี..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" +msgstr "à¸à¸³à¸¥à¸±à¸‡à¸ªà¸³à¸£à¸§à¸ˆà¸‚้à¸à¸¡à¸¹à¸¥à¹ƒà¸™à¹à¸œà¹ˆà¸™à¹€à¸žà¸·à¹ˆà¸à¸«à¸²à¹à¸Ÿà¹‰à¸¡à¸”ัชนี...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3131,22 +3157,22 @@ msgstr "" "พบดัชนีà¹à¸žà¸à¹€à¸à¸ˆ %zu รายà¸à¸²à¸£, ดัชนีซà¸à¸£à¹Œà¸ª %zu รายà¸à¸²à¸£, ดัชนีคำà¹à¸›à¸¥ %zu รายà¸à¸²à¸£ à¹à¸¥à¸°à¸¥à¸²à¸¢à¹€à¸‹à¹‡à¸™ " "%zu รายà¸à¸²à¸£\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "ไม่พบà¹à¸Ÿà¹‰à¸¡à¹à¸žà¸à¹€à¸à¸ˆà¹ƒà¸”ๆ บางทีà¹à¸œà¹ˆà¸™à¸™à¸µà¹‰à¸à¸²à¸ˆà¸ˆà¸°à¹„ม่ใช่à¹à¸œà¹ˆà¸™à¹€à¸”เบียน หรืà¸à¸ªà¸–าปัตยà¸à¸£à¸£à¸¡à¸à¸²à¸ˆà¹„ม่ถูà¸à¸•้à¸à¸‡" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "พบชื่à¸à¹à¸œà¹ˆà¸™ '%s'\n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "ไม่ใช่ชื่à¸à¸—ี่ใช้ได้ à¸à¸£à¸¸à¸“าลà¸à¸‡à¹ƒà¸«à¸¡à¹ˆ\n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3155,34 +3181,34 @@ msgstr "" "à¹à¸œà¹ˆà¸™à¸™à¸µà¹‰à¹€à¸£à¸µà¸¢à¸à¸Šà¸·à¹ˆà¸à¸§à¹ˆà¸²:\n" "'%s'\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "à¸à¸³à¸¥à¸±à¸‡à¸„ัดลà¸à¸à¸£à¸²à¸¢à¸Šà¸·à¹ˆà¸à¹à¸žà¸à¹€à¸à¸ˆ..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸‚ียนรายชื่à¸à¹à¸«à¸¥à¹ˆà¸‡à¹à¸žà¸à¹€à¸à¸ˆà¹à¸«à¸¥à¹ˆà¸‡à¹ƒà¸«à¸¡à¹ˆ\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "บรรทัดรายชื่à¸à¹à¸«à¸¥à¹ˆà¸‡à¹à¸žà¸à¹€à¸à¸ˆà¸ªà¸³à¸«à¸£à¸±à¸šà¹à¸œà¹ˆà¸™à¸™à¸µà¹‰à¸„ืà¸:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: 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:777 +#: 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:780 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "เขียนà¹à¸¥à¹‰à¸§ %i ระเบียน โดยมีà¹à¸Ÿà¹‰à¸¡à¸œà¸´à¸”ขนาด %i à¹à¸Ÿà¹‰à¸¡\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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" @@ -3197,37 +3223,37 @@ msgstr "ไม่พบระเบียนยืนยันความà¹à¸— msgid "Hash mismatch for: %s" msgstr "à¹à¸®à¸Šà¹„ม่ตรงà¸à¸±à¸™à¸ªà¸³à¸«à¸£à¸±à¸š: %s" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "ไม่พบรุ่นย่à¸à¸¢ '%s' ขà¸à¸‡ '%s'" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "ไม่พบรุ่น '%s' ขà¸à¸‡ '%s'" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, c-format msgid "Couldn't find task '%s'" msgstr "ไม่พบงานติดตั้ง '%s'" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, c-format msgid "Couldn't find any package by regex '%s'" msgstr "ไม่พบà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ตรงà¸à¸±à¸šà¸™à¸´à¸žà¸ˆà¸™à¹Œà¹€à¸£à¸à¸´à¸§à¸¥à¸²à¸£à¹Œ '%s'" -#: apt-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "ไม่พบà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ตรงà¸à¸±à¸šà¸™à¸´à¸žà¸ˆà¸™à¹Œà¹€à¸£à¸à¸´à¸§à¸¥à¸²à¸£à¹Œ '%s'" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, c-format msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "ไม่สามารถเลืà¸à¸à¸£à¸¸à¹ˆà¸™à¸•่างๆ ขà¸à¸‡à¹à¸žà¸à¹€à¸à¸ˆ '%s' ได้ เนื่à¸à¸‡à¸ˆà¸²à¸à¹€à¸›à¹‡à¸™à¹à¸žà¸à¹€à¸à¸ˆà¹€à¸ªà¸¡à¸·à¸à¸™à¸à¸¢à¹ˆà¸²à¸‡à¹à¸—้จริง" -#: apt-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " @@ -3235,220 +3261,220 @@ msgid "" msgstr "" "ไม่สามารถเลืà¸à¸à¸£à¸¸à¹ˆà¸™à¸—ี่ติดตั้งไว้หรืà¸à¸£à¸¸à¹ˆà¸™à¸ªà¸³à¸«à¸£à¸±à¸šà¸•ิดตั้งขà¸à¸‡à¹à¸žà¸à¹€à¸à¸ˆ '%s' ได้ เนื่à¸à¸‡à¸ˆà¸²à¸à¹„ม่มีทั้งสà¸à¸‡à¸à¸¢à¹ˆà¸²à¸‡" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, c-format msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "ไม่สามารถเลืà¸à¸à¸£à¸¸à¹ˆà¸™à¹ƒà¸«à¸¡à¹ˆà¸—ี่สุดขà¸à¸‡à¹à¸žà¸à¹€à¸à¸ˆ '%s' ได้ เนื่à¸à¸‡à¸ˆà¸²à¸à¹€à¸›à¹‡à¸™à¹à¸žà¸à¹€à¸à¸ˆà¹€à¸ªà¸¡à¸·à¸à¸™à¸à¸¢à¹ˆà¸²à¸‡à¹à¸—้จริง" -#: apt-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "ไม่สามารถเลืà¸à¸à¸£à¸¸à¹ˆà¸™à¸ªà¸³à¸«à¸£à¸±à¸šà¸•ิดตั้งขà¸à¸‡à¹à¸žà¸à¹€à¸à¸ˆ '%s' ได้ เนื่à¸à¸‡à¸ˆà¸²à¸à¹„ม่มีรุ่นสำหรับติดตั้ง" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "ไม่สามารถเลืà¸à¸à¸£à¸¸à¹ˆà¸™à¸—ี่ติดตั้งไว้ขà¸à¸‡à¹à¸žà¸à¹€à¸à¸ˆ '%s' ได้ เนื่à¸à¸‡à¸ˆà¸²à¸à¹à¸žà¸à¹€à¸à¸ˆà¹„ม่ได้ติดตั้งไว้" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "ส่งสภาวà¸à¸²à¸£à¸“์ไปยังà¸à¸¥à¹„à¸à¸à¸²à¸£à¹à¸à¹‰à¸›à¸±à¸à¸«à¸²" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "ส่งคำสั่งไปยังà¸à¸¥à¹„à¸à¸à¸²à¸£à¹à¸à¹‰à¸›à¸±à¸à¸«à¸²" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "เตรียมรับคำตà¸à¸š" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "à¸à¸¥à¹„à¸à¸à¸²à¸£à¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¸ ายนà¸à¸à¸—ำงานล้มเหลวโดยไม่มีข้à¸à¸„วามข้à¸à¸œà¸´à¸”พลาดที่เหมาะสม" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "เรียà¸à¸à¸¥à¹„à¸à¸à¸²à¸£à¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¸ ายนà¸à¸" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸£à¸µà¸¢à¸ dpkg" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "à¸à¸³à¸¥à¸±à¸‡à¸•ิดตั้ง %s" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "à¸à¸³à¸¥à¸±à¸‡à¸•ั้งค่า %s" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "à¸à¸³à¸¥à¸±à¸‡à¸–à¸à¸”ถà¸à¸™ %s" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format msgid "Completely removing %s" msgstr "à¸à¸³à¸¥à¸±à¸‡à¸–à¸à¸”ถà¸à¸™ %s à¸à¸¢à¹ˆà¸²à¸‡à¸ªà¸¡à¸šà¸¹à¸£à¸“์" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "à¸à¸³à¸¥à¸±à¸‡à¸ˆà¸”บันทึà¸à¸à¸²à¸£à¸«à¸²à¸¢à¹„ปขà¸à¸‡ %s" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸£à¸µà¸¢à¸à¸à¸²à¸£à¸ªà¸°à¸à¸´à¸” %s หลังà¸à¸²à¸£à¸•ิดตั้ง" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "ไม่มีไดเรà¸à¸—à¸à¸£à¸µ '%s'" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format msgid "Could not open file '%s'" msgstr "ไม่สามารถเปิดà¹à¸Ÿà¹‰à¸¡ '%s'" -#: apt-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸•รียม %s" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "à¸à¸³à¸¥à¸±à¸‡à¹à¸•à¸à¹à¸žà¸à¹€à¸à¸ˆ %s" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸•รียมตั้งค่า %s" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "ติดตั้ง %s à¹à¸¥à¹‰à¸§" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸•รียมถà¸à¸”ถà¸à¸™ %s" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "ถà¸à¸”ถà¸à¸™ %s à¹à¸¥à¹‰à¸§" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸•รียมถà¸à¸”ถà¸à¸™ %s à¸à¸¢à¹ˆà¸²à¸‡à¸ªà¸¡à¸šà¸¹à¸£à¸“์" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "ถà¸à¸”ถà¸à¸™ %s à¸à¸¢à¹ˆà¸²à¸‡à¸ªà¸¡à¸šà¸¹à¸£à¸“์à¹à¸¥à¹‰à¸§" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "ไม่สามารถเขียนลงà¹à¸Ÿà¹‰à¸¡ %s" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "ปà¸à¸´à¸šà¸±à¸•ิà¸à¸²à¸£à¸–ูà¸à¸‚ัดจังหวะà¸à¹ˆà¸à¸™à¸—ี่จะสามารถทำงานเสร็จ" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 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:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "มีปัà¸à¸«à¸²à¸„วามขึ้นต่à¸à¸à¸±à¸™ - จะทิ้งไว้โดยไม่ตั้งค่า" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" "ไม่มีà¸à¸²à¸£à¹€à¸‚ียนรายงาน apport เพราะข้à¸à¸„วามข้à¸à¸œà¸´à¸”พลาดระบุว่าเป็นสิ่งที่ตามมาจาà¸à¸‚้à¸à¸œà¸´à¸”พลาดà¸à¹ˆà¸à¸™à¸«à¸™à¹‰à¸²" -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "ไม่มีà¸à¸²à¸£à¹€à¸‚ียนรายงาน apport เพราะข้à¸à¸„วามข้à¸à¸œà¸´à¸”พลาดระบุว่าเà¸à¸´à¸”จาà¸à¸”ิสà¸à¹Œà¹€à¸•็ม" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "ไม่มีà¸à¸²à¸£à¹€à¸‚ียนรายงาน apport เพราะข้à¸à¸„วามข้à¸à¸œà¸´à¸”พลาดระบุว่าเà¸à¸´à¸”จาà¸à¸«à¸™à¹ˆà¸§à¸¢à¸„วามจำเต็ม" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 #, fuzzy msgid "" "No apport report written because the error message indicates an issue on the " "local system" msgstr "ไม่มีà¸à¸²à¸£à¹€à¸‚ียนรายงาน apport เพราะข้à¸à¸„วามข้à¸à¸œà¸´à¸”พลาดระบุว่าเà¸à¸´à¸”จาà¸à¸”ิสà¸à¹Œà¹€à¸•็ม" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" "ไม่มีà¸à¸²à¸£à¹€à¸‚ียนรายงาน apport เพราะข้à¸à¸„วามข้à¸à¸œà¸´à¸”พลาดระบุว่าเà¸à¸´à¸”จาà¸à¸›à¸±à¸à¸«à¸²à¸à¸²à¸£à¸à¹ˆà¸²à¸™/เขียนขà¸à¸‡ dpkg" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " "it?" msgstr "ไม่สามารถล็à¸à¸„ไดเรà¸à¸—à¸à¸£à¸µà¸”ูà¹à¸¥à¸£à¸°à¸šà¸š (%s) มีโพรเซสà¸à¸·à¹ˆà¸™à¹ƒà¸Šà¹‰à¸‡à¸²à¸™à¸à¸¢à¸¹à¹ˆà¸«à¸£à¸·à¸à¹€à¸›à¸¥à¹ˆà¸²?" -#: apt-pkg/deb/debsystem.cc:87 +#: apt-pkg/deb/debsystem.cc:94 #, c-format msgid "Unable to lock the administration directory (%s), are you root?" msgstr "ไม่สามารถล็à¸à¸„ไดเรà¸à¸—à¸à¸£à¸µà¸”ูà¹à¸¥à¸£à¸°à¸šà¸š (%s) คุณเป็น root หรืà¸à¹€à¸›à¸¥à¹ˆà¸²?" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: 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-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "ไม่ได้ล็à¸à¸„à¸à¸¢à¸¹à¹ˆ" @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2007-03-29 21:36+0800\n" "Last-Translator: Eric Pareja <xenos@upm.edu.ph>\n" "Language-Team: Tagalog <debian-tl@banwa.upm.edu.ph>\n" @@ -20,156 +20,157 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" -#: cmdline/apt-cache.cc:140 +#: cmdline/apt-cache.cc:149 #, c-format msgid "Package %s version %s has an unmet dep:\n" msgstr "Paketeng %s bersyon %s ay may kulang na dep:\n" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "Kabuuan ng mga Pakete : " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 #, fuzzy msgid "Total package structures: " msgstr "Kabuuan ng mga Pakete : " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " Normal na Pakete: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " Purong Birtwual na Pakete: " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " Nag-iisang Birtwal na Pakete: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " Halong Birtwal na Pakete: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " Kulang/Nawawala: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "Kabuuan ng Natatanging mga Bersyon: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 #, fuzzy msgid "Total distinct descriptions: " msgstr "Kabuuan ng Natatanging mga Bersyon: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "Kabuuan ng mga Dependensiya: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "Kabuuan ng ugnayang Ber/Talaksan: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 #, fuzzy msgid "Total Desc/File relations: " msgstr "Kabuuan ng ugnayang Ber/Talaksan: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "Kabuuan ng Mapping ng Provides: " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "Kabuuan ng Globbed String: " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "Kabuuan ng gamit na puwang ng Dependensiyang Bersyon: " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "Kabuuan ng Hindi Nagamit na puwang: " -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "Kabuuan ng puwang na napag-tuosan: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: 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." -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 #, fuzzy msgid "You must give at least one search pattern" msgstr "Kailangan niyong magbigay ng isa lamang na pattern" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "Hindi mahanap ang paketeng %s" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "Talaksang Pakete:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: 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" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "Mga naka-Pin na Pakete:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(hindi nahanap)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " Nakaluklok: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " Kandidato: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(wala)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " Naka-Pin na Pakete: " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " Talaang Bersyon:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: 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" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -245,29 +246,29 @@ msgstr "" "Basahin ang pahina ng manwal ng apt-cache(8) at apt.conf(5) para sa \n" "karagdagang impormasyon\n" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: 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'" -#: cmdline/apt-cdrom.cc:104 +#: 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" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, fuzzy, c-format msgid "Failed to mount '%s' to '%s'" msgstr "Bigo ang pagpangalan muli ng %s tungong %s" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Ulitin ang prosesong ito para sa lahat ng mga CD sa inyong set." @@ -303,65 +304,65 @@ msgstr "" " -c=? Basahin itong talaksang pagkaayos\n" " -o=? Itakda ang isang option sa pagkaayos, hal. -o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:244 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format msgid "Can not find a package for architecture '%s'" msgstr "Hindi mahanap ang paketeng %s" -#: cmdline/apt-get.cc:326 +#: cmdline/apt-get.cc:327 #, fuzzy, c-format msgid "Can not find a package '%s' with version '%s'" msgstr "Hindi mahanap ang paketeng %s" -#: cmdline/apt-get.cc:329 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format msgid "Can not find a package '%s' with release '%s'" msgstr "Hindi mahanap ang paketeng %s" -#: cmdline/apt-get.cc:366 +#: 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" -#: cmdline/apt-get.cc:422 +#: cmdline/apt-get.cc:423 #, c-format msgid "Can not find version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "Hindi mahanap ang paketeng %s" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "ngunit ang %s ay iluluklok" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: 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" -#: cmdline/apt-get.cc:468 cmdline/apt-mark.cc:116 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: 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:573 cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 msgid "Unable to lock the download directory" msgstr "Hindi maaldaba ang directory ng download" -#: cmdline/apt-get.cc:725 +#: 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" -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "Hindi mahanap ang paketeng source para sa %s" @@ -381,95 +382,95 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Linaktawan ang nakuha na na talaksan '%s'\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "Hindi matantsa ang libreng puwang sa %s" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "Kulang kayo ng libreng puwang sa %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Kailangang kumuha ng %sB/%sB ng arkibong source.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Kailangang kumuha ng %sB ng arkibong source.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "Kunin ang Source %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "Bigo sa pagkuha ng ilang mga arkibo." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "Kumpleto ang pagkakuha ng mga talaksan sa modong pagkuha lamang" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Linaktawan ang pagbuklat ng nabuklat na na source sa %s\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Bigo ang utos ng pagbuklat '%s'.\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Paki-siguro na nakaluklok ang paketeng 'dpkg-dev'.\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "Utos na build '%s' ay bigo.\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "Bigo ang prosesong anak" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 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:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Hindi makuha ang impormasyong build-dependency para sa %s" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "Walang build depends ang %s.\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -478,7 +479,7 @@ msgstr "" "Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi " "mahanap" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -487,14 +488,14 @@ msgstr "" "Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi " "mahanap" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Bigo sa pagbuo ng dependensiyang %s para sa %s: Ang naka-instol na paketeng " "%s ay bagong-bago pa lamang." -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -503,7 +504,7 @@ msgstr "" "Dependensiyang %s para sa %s ay hindi mabuo dahil walang magamit na bersyon " "ng paketeng %s na tumutugon sa kinakailangang bersyon" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -512,30 +513,30 @@ msgstr "" "Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi " "mahanap" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Bigo sa pagbuo ng dependensiyang %s para sa %s: %s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Hindi mabuo ang build-dependencies para sa %s." -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "Bigo sa pagproseso ng build dependencies" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "Kumokonekta sa %s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "Suportadong mga Module:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -620,53 +621,75 @@ msgstr "" "para sa karagdagang impormasyon at mga option.\n" " Ang APT na ito ay may Kapangyarihan Super Kalabaw.\n" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Kailangang magtakda ng kahit isang pakete na kunan ng source" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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 "ngunit ito ay hindi nakaluklok" -#: cmdline/apt-mark.cc:63 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format msgid "%s was already set to manually installed.\n" msgstr "ngunit ang %s ay iluluklok" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, fuzzy, c-format msgid "%s was already set to automatically installed.\n" msgstr "ngunit ang %s ay iluluklok" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format msgid "%s was already set on hold.\n" msgstr "%s ay pinakabagong bersyon na.\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, fuzzy, c-format msgid "%s was already not hold.\n" msgstr "%s ay pinakabagong bersyon na.\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Naghintay, para sa %s ngunit wala nito doon" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: 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" -#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, fuzzy, c-format msgid "Canceled hold on %s.\n" msgstr "Bigo ang pagbukas ng %s" -#: cmdline/apt-mark.cc:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" "\n" @@ -693,7 +716,7 @@ msgid "" "See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -741,52 +764,52 @@ msgstr "Hindi mai-unmount ang CD-ROM sa %s, maaaring ginagamit pa ito." msgid "Disk not found." msgstr "Hindi nahanap ang Disk." -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "Hindi Nahanap ang Talaksan" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: 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" -#: methods/copy.cc:82 methods/gzip.cc:113 methods/rred.cc:606 +#: 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" -#: methods/file.cc:47 +#: 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 //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "Pumapasok" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "Hindi malaman ang pangalan ng peer" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "Hindi malaman ang pangalang lokal" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format msgid "The server refused the connection and said: %s" msgstr "Inayawan ng server ang ating koneksyon at ang sabi ay: %s" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "Bigo ang USER/GUMAGAMIT, sabi ng server ay: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "Bigo ang PASS, sabi ng server ay: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -794,121 +817,123 @@ msgstr "" "May tinakdang katuwang na server ngunit walang login script, walang laman " "ang Acquire::ftp::ProxyLogin." -#: methods/ftp.cc:275 +#: 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" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "Bigo ang TYPE, sabi ng server ay: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 msgid "Connection timeout" msgstr "Lumipas ang koneksyon" -#: methods/ftp.cc:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "Sinarhan ng server ang koneksyon" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "Error sa pagbasa" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "May sagot na bumubo sa buffer." -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "Sira ang protocol" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "Error sa pagsulat" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 msgid "Could not create a socket" msgstr "Hindi maka-likha ng socket" -#: methods/ftp.cc:707 +#: 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" -#: methods/ftp.cc:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "Bigo" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "Hindi maka-konekta sa socket na passive." -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "di makakuha ang getaddrinfo ng socket na nakikinig" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "Hindi maka-bind ng socket" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "Hindi makarinig sa socket" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "Hindi malaman ang pangalan ng socket" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "Hindi makapagpadala ng utos na PORT" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Di kilalang pamilya ng address %u (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "Bigo ang EPRT, sabi ng server ay: %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "Nag-timeout ang socket ng datos" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "Hindi makatanggap ng koneksyon" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "Problema sa pag-hash ng talaksan" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Hindi makakuha ng talaksan, sabi ng server ay '%s'" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "Nag-timeout ang socket ng datos" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, 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:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "Tanong" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "Hindi ma-invoke " @@ -944,7 +969,7 @@ msgstr "Hindi maka-konekta sa %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "Kumokonekta sa %s" @@ -974,40 +999,40 @@ msgstr "May naganap na kababalaghan sa pagresolba ng '%s:%s' (%i)" msgid "Unable to connect to %s:%s:" msgstr "Hindi maka-konekta sa %s %s:" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Error na internal: Tanggap na lagda, ngunit hindi malaman ang key " "fingerprint?!" -#: methods/gpgv.cc:170 +#: 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:172 +#: 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?)" #. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "Hindi kilalang error sa pag-execute ng gpgv" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: 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:229 +#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@ -1015,119 +1040,119 @@ msgstr "" "Ang sumusunod na mga lagda ay hindi maberipika dahil ang public key ay hindi " "available:\n" -#: methods/gzip.cc:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "Error sa pagsusulat sa talaksan" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "Error sa pagbasa mula sa server, sinarhan ng remote ang koneksyon" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "Error sa pagbasa mula sa server" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "Error sa pagsulat sa talaksan" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "Bigo ang pagpili" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "Nag-timeout ang koneksyon" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "Error sa pagsulat ng talaksang output" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "Naghihintay ng panimula" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "Maling linyang panimula" -#: methods/server.cc:139 methods/server.cc:146 +#: methods/server.cc:134 methods/server.cc:141 msgid "The HTTP server sent an invalid reply header" msgstr "Nagpadala ang HTTP server ng di tanggap na reply header" -#: methods/server.cc:176 +#: methods/server.cc:171 msgid "The HTTP server sent an invalid Content-Length header" msgstr "Nagpadala ang HTTP server ng di tanggap na Content-Length header" -#: methods/server.cc:199 +#: methods/server.cc:194 msgid "The HTTP server sent an invalid Content-Range header" msgstr "Nagpadala ang HTTP server ng di tanggap na Content-Range header" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "Sira ang range support ng HTTP server na ito" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "Di kilalang anyo ng petsa" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "Maling datos sa panimula" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "Bigo ang koneksyon" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "Internal na error" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" "Error na internal, tinawagan ang InstallPackages na may sirang mga pakete!" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "" "May mga paketeng kailangang tanggalin ngunit naka-disable ang Tanggal/Remove." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "Error na internal, hindi natapos ang pagsaayos na pagkasunud-sunod" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +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." +"Nakapagtataka... Hindi magkatugma ang laki, mag-email sa 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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Kailangang kumuha ng %sB/%sB ng arkibo.\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:171 +#: apt-private/private-install.cc:159 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Kailangang kumuha ng %sB ng arkibo.\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:178 +#: apt-private/private-install.cc:166 #, fuzzy, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" @@ -1135,31 +1160,31 @@ 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:183 +#: apt-private/private-install.cc:171 #, 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" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, 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:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "May mga problema at -y ay ginamit na walang --force-yes" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Tinakdang Trivial Only ngunit hindi ito operasyong trivial." #. 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Oo, gawin ang sinasabi ko!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1170,19 +1195,19 @@ msgstr "" "Upang magpatuloy, ibigay ang pariralang '%s'\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "Abort." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "Nais niyo bang magpatuloy?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "May mga talaksang hindi nakuha" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1190,19 +1215,19 @@ msgstr "" "Hindi nakuha ang ilang mga arkibo, maaaring patakbuhin ang apt-get update o " "subukang may --fix-missing?" -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing at pagpalit ng media ay kasalukuyang hindi suportado" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "Hindi maayos ang mga kulang na pakete." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "Ina-abort ang pag-instol." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1212,15 +1237,15 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1236,17 +1261,17 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 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:517 +#: apt-private/private-install.cc:505 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "Error na internal, may nasira ang problem resolver" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1256,7 +1281,7 @@ msgid_plural "" 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:528 +#: apt-private/private-install.cc:516 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1264,18 +1289,18 @@ msgid_plural "" 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:530 +#: apt-private/private-install.cc:518 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-install.cc:624 +#: apt-private/private-install.cc:612 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" "Maaaring patakbuhin niyo ang 'apt-get -f install' upang ayusin ang mga ito:" -#: apt-private/private-install.cc:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1283,7 +1308,7 @@ msgstr "" "May mga dependensiyang kulang. Subukan ang 'apt-get -f install' na walang " "mga pakete (o magtakda ng solusyon)." -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1294,147 +1319,147 @@ msgstr "" "o kung kayo'y gumagamit ng pamudmod na unstable ay may ilang mga paketeng\n" "kailangan na hindi pa nalikha o linipat mula sa Incoming." -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "Sirang mga pakete" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "Ang mga sumusunod na extra na pakete ay luluklokin:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "Mga paketeng mungkahi:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "Mga paketeng rekomendado:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "" "BABALA: Ang susunod na mga pakete ay hindi matiyak ang pagka-awtentiko!" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "" "Ipina-walang-bisa ang babala tungkol sa pagka-awtentiko ng mga pakete.\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "May mga paketeng hindi matiyak ang pagka-awtentiko" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "Iluklok ang mga paketeng ito na walang beripikasyon?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Bigo sa pagkuha ng %s %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [Nakaluklok]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [Nakaluklok]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [Nakaluklok]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [Nakaluklok]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "Ang sumusunod na mga pakete ay may kulang na dependensiya:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "ngunit ang %s ay nakaluklok" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "ngunit ang %s ay iluluklok" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "ngunit hindi ito maaaring iluklok" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "ngunit ito ay birtwal na pakete" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "ngunit ito ay hindi nakaluklok" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "ngunit ito ay hindi iluluklok" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " o" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "Ang sumusunod na mga paketeng BAGO ay iluluklok:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "Ang sumusunod na mga pakete ay TATANGGALIN:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "Ang sumusunod na mga pakete ay hinayaang maiwanan:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "Ang susunod na mga pakete ay iu-upgrade:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "Ang susunod na mga pakete ay ida-DOWNGRADE:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "Ang susunod na mga hinawakang mga pakete ay babaguhin:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (dahil sa %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1442,27 +1467,27 @@ msgstr "" "BABALA: Ang susunod na mga paketeng esensyal ay tatanggalin.\n" "HINDI ito dapat gawin kung hindi niyo alam ng husto ang inyong ginagawa!" -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu na nai-upgrade, %lu na bagong luklok, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu iniluklok muli, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu nai-downgrade, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu na tatanggalin at %lu na hindi inupgrade\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu na hindi lubos na nailuklok o tinanggal.\n" @@ -1471,7 +1496,7 @@ msgstr "%lu na hindi lubos na nailuklok o tinanggal.\n" #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "[O/h]" @@ -1479,91 +1504,91 @@ msgstr "[O/h]" #. 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:702 +#: apt-private/private-output.cc:708 msgid "[y/N]" msgstr "[o/H]" #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "O" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "H" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "Error sa pag-compile ng regex - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "Inaayos ang mga dependensiya..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " ay bigo." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "Hindi maayos ang mga dependensiya" -#: apt-private/private-cachefile.cc:96 +#: 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:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " Tapos" -#: apt-private/private-cachefile.cc:102 +#: 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-private/private-cachefile.cc:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "May mga kulang na dependensiya. Subukan niyong gamitin ang -f." -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "Ang utos na update ay hindi tumatanggap ng mga argumento" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "Sinusuri ang pag-upgrade... " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "Internal error, nakasira ng bagay-bagay ang AllUpgrade" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "Tapos" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1571,43 +1596,43 @@ msgid "" " so don't depend on the relevance to the real current situation!" msgstr "" -#: apt-private/private-sources.cc:45 +#: 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" -#: apt-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "Tumama " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "Kunin: " -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "DiPansin " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Err " -#: apt-private/acqprogress.cc:143 +#: 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:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [May ginagawa]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1620,19 +1645,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "Hindi mabasa ang %s" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "Di makalipat sa %s" @@ -1661,11 +1686,11 @@ msgstr "Hindi mabuksan ang talaksang %s" msgid "[Mirror: %s]" msgstr "" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 msgid "Failed to create IPC pipe to subprocess" msgstr "Bigo sa paglikha ng IPC pipe sa subprocess" -#: methods/rsh.cc:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "Nagsara ng maaga ang koneksyon" @@ -1732,40 +1757,45 @@ 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:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Hindi ma-stat ang %s" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "Hindi makapagsulat sa %s" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Hindi makuha ang bersyon ng debconf. Nakaluklok ba ang debconf?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "Mahaba masyado ang talaan ng extensyon ng mga pakete" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "Error sa pagproseso ng directory %s" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "Mahaba masyado ang talaan ng extensyon ng pagkukunan (source)" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "Error sa pagsulat ng panimula sa talaksang nilalaman (contents)" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "Error sa pagproseso ng Contents %s" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1850,26 +1880,26 @@ msgstr "" " -c=? Basahin itong talaksang pagkaayos\n" " -o=? Itakda ang isang option na pagkaayos" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "Walang mga pinili na tugma" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format 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:47 +#: ftparchive/cachedb.cc:51 #, 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:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "Luma ang DB, sinusubukang maupgrade ang %s" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 #, fuzzy msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " @@ -1878,192 +1908,192 @@ 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:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Hindi mabuksan ang talaksang DB %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "Bigo ang pag-stat ng %s" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "Walang kontrol rekord ang arkibo" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "Hindi makakuha ng cursor" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: Hindi mabasa ang directory %s\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: Hindi ma-stat %s\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "E: Mga error ay tumutukoy sa talaksang " -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "Bigo sa pag-resolba ng %s" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "Bigo ang paglakad sa puno" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "Bigo ang pagbukas ng %s" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "Bigo ang pagbasa ng link %s" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "Bigo ang pag-unlink ng %s" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Bigo ang pag-link ng %s sa %s" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " DeLink limit na %sB tinamaan.\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "Walang field ng pakete ang arkibo" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %s ay walang override entry\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " Tagapangalaga ng %s ay %s hindi %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr " %s ay walang override entry para sa pinagmulan\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s ay wala ring override entry na binary\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - Bigo ang pagreserba ng memory" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "Hindi mabuksan %s" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "Maling anyo ng override %s linya %lu #1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "Bigo ang pagbasa ng talaksang override %s" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, fuzzy, c-format msgid "Malformed override %s line %llu #1" msgstr "Maling anyo ng override %s linya %lu #1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, fuzzy, c-format msgid "Malformed override %s line %llu #2" msgstr "Maling anyo ng override %s linya %lu #2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, fuzzy, c-format msgid "Malformed override %s line %llu #3" msgstr "Maling anyo ng override %s linya %lu #3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "Hindi kilalang algorithmong compression '%s'" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "Kailangan ng compression set ang compressed output %s" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "Bigo ang paglikha ng FILE*" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "Bigo ang pag-fork" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "Anak para sa pag-Compress" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "Error na internal, bigo ang paglikha ng %s" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "Bigo ang IO sa subprocess/talaksan" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "Bigo ang pagbasa habang tinutuos ang MD5" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "Problema sa pag-unlink ng %s" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "Bigo ang pagpangalan muli ng %s tungong %s" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -2117,157 +2147,157 @@ msgstr "" " -c=? Basahin ang talaksang pagkaayos na ito\n" " -o=? Itakda ang isang option ng pagkaayos, hal. -o dir::cache=/tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "Bigo sa paglikha ng mga pipe" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "Bigo sa pagtakbo ng gzip " -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "Sirang arkibo" -#: apt-inst/contrib/extracttar.cc:201 +#: 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:306 +#: 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-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "Hindi tanggap na signature ng arkibo" -#: apt-inst/contrib/arfile.cc:82 +#: 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:94 +#: 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:106 +#: 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:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "Bitin ang arkibo. Sobrang iksi." -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "Bigo ang pagbasa ng header ng arkibo" -#: apt-inst/filelist.cc:382 +#: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" msgstr "Tinawagan ang DropNode sa naka-link pa na node" -#: apt-inst/filelist.cc:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "Bigo sa paghanap ng elemento ng hash!" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "Bigo ang pagreserba ng diversion" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "Internal error sa AddDiversion" -#: apt-inst/filelist.cc:479 +#: 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" -#: apt-inst/filelist.cc:508 +#: 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:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "Nadobleng talaksang conf %s/%s" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: 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:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "Bigo sa pagsara ng talaksang %s" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: 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:125 +#: 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:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "Ang directory %s ay divertado" -#: apt-inst/extract.cc:145 +#: 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:155 apt-inst/extract.cc:299 +#: 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:242 +#: 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:282 +#: 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:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "Sobrang haba ng path" -#: apt-inst/extract.cc:414 +#: 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:431 +#: 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:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "Hindi ma-stat ang %s" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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:124 +#: 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:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "Di maintindihang talaksang control" @@ -2325,502 +2355,507 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "Piniling %s ay hindi nahanap" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Hindi kilalang katagang uri: '%c'" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "Binubuksan ang talaksang pagsasaayos %s" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Syntax error %s:%u: Nag-umpisa ang block na walang pangalan." -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Syntax error %s:%u: Maling anyo ng Tag" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Syntax error %s:%u: May basura matapos ng halaga" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, 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-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Syntax error %s:%u: Labis ang pagkaka-nest ng mga include" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Syntax error %s:%u: Sinama mula dito" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Syntax error %s:%u: Di suportadong direktiba '%s'" -#: apt-pkg/contrib/configuration.cc:884 +#: 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-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Syntax error %s:%u: May basura sa dulo ng talaksan" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... Error!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... Tapos" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s... Tapos" -#: apt-pkg/contrib/cmndline.cc:116 +#: 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-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: 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-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "Opsyon %s ay nangangailangan ng argumento" -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "" "Opsyon %s: Ang pagtakda ng aytem sa pagkaayos ay nangangailangan ng " "=<halaga>." -#: apt-pkg/contrib/cmndline.cc:273 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format msgid "Option %s requires an integer argument, not '%s'" msgstr "Opsyon %s ay nangangailangan ng argumentong integer, hindi '%s'" -#: apt-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "Opsyon '%s' ay labis ang haba" -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "Hindi naintindihan ang %s, subukan ang true o false." -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "Di tanggap na operasyon %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: 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-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "Bigo sa pag-stat ng cdrom" -#: apt-pkg/contrib/fileutl.cc:95 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problema sa pagsara ng talaksan" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, 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-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "Hindi mabuksan ang talaksang aldaba %s" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "" "Hindi gumagamit ng pag-aldaba para sa talaksang aldaba %s na naka-mount sa " "nfs" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "hindi makuha ang aldaba %s" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Nakatanggap ang sub-process %s ng segmentation fault." -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "Nakatanggap ang sub-process %s ng segmentation fault." -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 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)" -#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 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-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problema sa pagsara ng talaksan" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "Hindi mabuksan ang talaksang %s" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "Hindi makapag-bukas ng pipe para sa %s" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "Bigo ang paglikha ng subprocess IPC" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "Bigo ang pag-exec ng taga-compress" -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, fuzzy, c-format msgid "read, still have %llu to read but none left" msgstr "pagbasa, mayroong %lu na babasahin ngunit walang natira" -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, fuzzy, c-format msgid "write, still have %llu to write but couldn't" msgstr "pagsulat, mayroon pang %lu na isusulat ngunit hindi makasulat" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "Problema sa pagsara ng talaksan" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "Problema sa pag-sync ng talaksan" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "Problema sa pag-unlink ng talaksan" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "Problema sa pag-sync ng talaksan" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "pagpalit ng pangalan ay bigo, %s (%s -> %s)." + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, fuzzy, c-format msgid "No keyring installed in %s." msgstr "Ina-abort ang pag-instol." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "Walang laman ang cache ng pakete" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "Sira ang talaksan ng cache ng pakete" -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "Ang talaksan ng cache ng pakete ay hindi magamit na bersyon" -#: apt-pkg/pkgcache.cc:162 +#: 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" -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "Ang APT na ito ay hindi nagsusuporta ng versioning system '%s'" -#: apt-pkg/pkgcache.cc:172 +#: 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" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "Dependensiya" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "PreDepends" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "Mungkahi" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "Rekomendado" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "Tunggali" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "Pumapalit" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "Linalaos" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "importante" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "kailangan" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "standard" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "optional" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "extra" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: 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:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "Bersyong Kandidato" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "Pagbuo ng Dependensiya" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: 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:244 +#: apt-pkg/depcache.cc:250 #, fuzzy, c-format msgid "Failed to open StateFile %s" msgstr "Bigo ang pagbukas ng %s" -#: apt-pkg/depcache.cc:250 +#: 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:138 +#: 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-pkg/tagfile.cc:235 +#: 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-pkg/sourcelist.cc:118 +#: 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:161 +#: 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:164 +#: 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:175 +#: 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:181 +#: 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:184 +#: apt-pkg/sourcelist.cc:193 #, fuzzy, c-format msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<" -#: apt-pkg/sourcelist.cc:197 +#: 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)" -#: apt-pkg/sourcelist.cc:199 +#: 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)" -#: apt-pkg/sourcelist.cc:202 +#: 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)" -#: apt-pkg/sourcelist.cc:208 +#: 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)" -#: apt-pkg/sourcelist.cc:215 +#: 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-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "Binubuksan %s" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "Labis ang haba ng linyang %u sa talaksang pagkukunan %s." -#: apt-pkg/sourcelist.cc:362 +#: 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-pkg/sourcelist.cc:366 +#: 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" -#: apt-pkg/sourcelist.cc:407 +#: 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-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, 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:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "Hindi mabuksan ang talaksang %s" -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2832,12 +2867,12 @@ msgstr "" "loop. Madalas ay masama ito, ngunit kung nais niyo talagang gawin ito, i-" "activate ang APT::Force-LoopBreak na option." -#: apt-pkg/pkgrecords.cc:34 +#: 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/algorithms.cc:266 +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." @@ -2845,7 +2880,7 @@ msgstr "" "Kailangan ma-instol muli ang paketeng %s, ngunit hindi ko mahanap ang arkibo " "para dito." -#: apt-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2853,222 +2888,217 @@ msgstr "" "Error, pkgProblemResolver::Resolve ay naghudyat ng mga break, maaaring dulot " "ito ng mga paketeng naka-hold." -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 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/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, fuzzy, c-format msgid "List directory %spartial is missing." msgstr "Nawawala ang directory ng talaan %spartial." -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, fuzzy, c-format msgid "Archives directory %spartial is missing." msgstr "Nawawala ang directory ng arkibo %spartial." -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, fuzzy, c-format msgid "Unable to lock directory %s" msgstr "Hindi maaldaba ang directory ng talaan" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: 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)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "Kinukuha ang talaksang %li ng %li" -#: apt-pkg/acquire-worker.cc:113 +#: 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." -#: apt-pkg/acquire-worker.cc:115 +#: 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" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "Hindi umandar ng tama ang paraang %s" -#: apt-pkg/acquire-worker.cc:452 +#: apt-pkg/acquire-worker.cc:455 #, c-format msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "" "Ikasa ang disk na may pangalang: '%s' sa drive '%s' at pindutin ang enter." -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Hindi suportado ang sistema ng paketeng '%s'" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "Hindi matuklasan ang akmang uri ng sistema ng pakete " -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "Hindi ma-stat ang %s" -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "Kailangan niyong maglagay ng 'source' URIs sa inyong sources.list" -#: apt-pkg/cachefile.cc:87 +#: 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." -#: apt-pkg/cachefile.cc:91 +#: 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" -#: apt-pkg/cachefile.cc:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "Hindi mabasa ang talaan ng pagkukunan (sources)." -#: apt-pkg/policy.cc:75 +#: 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 "" -#: apt-pkg/policy.cc:414 +#: apt-pkg/policy.cc:422 #, fuzzy, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "Di tanggap na record sa talaksang pagtatangi, walang Package header" -#: apt-pkg/policy.cc:436 +#: 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:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "Walang prioridad (o sero) na nakatakda para sa pin" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 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:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: 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)" -#: apt-pkg/pkgcachegen.cc:251 +#: 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." -#: apt-pkg/pkgcachegen.cc:254 +#: 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." -#: apt-pkg/pkgcachegen.cc:257 +#: 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." -#: apt-pkg/pkgcachegen.cc:260 +#: apt-pkg/pkgcachegen.cc:266 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "Wow, nalagpasan niyo ang bilang ng dependensiya na kaya ng APT na ito." -#: apt-pkg/pkgcachegen.cc:570 +#: 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." -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "Hindi ma-stat ang talaan ng pagkukunan ng pakete %s" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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" -#: apt-pkg/pkgcachegen.cc:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "Kinukuha ang Talaksang Provides" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: 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" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "pagpalit ng pangalan ay bigo, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 #, fuzzy msgid "Hash Sum mismatch" msgstr "Di tugmang MD5Sum" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "Di tugmang laki" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "Di tanggap na operasyon %s" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, 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:1586 +#: apt-pkg/acquire-item.cc:1595 #, fuzzy, c-format msgid "Unable to find hash sum for '%s' in Release file" msgstr "Hindi ma-parse ang talaksang pakete %s (1)" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "Walang public key na magamit para sa sumusunod na key ID:\n" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " "repository will not be applied." msgstr "" -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3076,12 +3106,12 @@ msgid "" msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3090,12 +3120,12 @@ msgstr "" "Hindi ko mahanap ang talaksan para sa paketeng %s. Maaaring kailanganin " "niyong ayusin ng de kamay ang paketeng ito. (dahil sa walang arch)" -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -3103,72 +3133,67 @@ msgstr "" "Sira ang talaksang index ng mga pakete. Walang Filename: field para sa " "paketeng %s." -#: apt-pkg/indexrecords.cc:73 +#: 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:81 +#: apt-pkg/indexrecords.cc:86 #, fuzzy, c-format msgid "No sections in Release file %s" msgstr "Paunawa, pinili ang %s imbes na %s\n" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "" -#: apt-pkg/indexrecords.cc:125 +#: 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:144 +#: 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/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "Block ng nagbebenta %s ay walang fingerprint" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, 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:583 -msgid "Unmounting CD-ROM\n" -msgstr "Ina-unmount ang CD-ROM\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "Ina-unmount ang CD-ROM...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "Hinihintay ang disc...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "Sinasalang ang CD-ROM...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " msgstr "Kinikilala..." -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "Naka-imbak na Label: %s \n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -#, fuzzy -msgid "Unmounting CD-ROM...\n" -msgstr "Ina-unmount ang CD-ROM..." - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" msgstr "Sinisiyasat ang Disc para sa talaksang index...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, fuzzy, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3177,22 +3202,22 @@ msgstr "" "Nakahanap ng %i na index ng mga pakete, %i na index ng source at %i na " "signature\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, fuzzy, c-format msgid "Found label '%s'\n" msgstr "Naka-imbak na Label: %s \n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "Hindi yan tanggap na pangalan, subukan muli.\n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3201,34 +3226,34 @@ msgstr "" "Ang Disc na ito ay nagngangalang: \n" "'%s'\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "Kinokopya ang Listahan ng mga Pakete" -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "Sinusulat ang bagong listahan ng pagkukunan\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "Mga nakatala sa Listahan ng Source para sa Disc na ito ay:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: 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:777 +#: 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:780 +#: 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:783 +#: 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 "" @@ -3245,88 +3270,88 @@ msgstr "" msgid "Hash mismatch for: %s" msgstr "Di tugmang MD5Sum" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Release '%s' para sa '%s' ay hindi nahanap" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Bersyon '%s' para sa '%s' ay hindi nahanap" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, fuzzy, c-format msgid "Couldn't find task '%s'" msgstr "Hindi mahanap ang paketeng %s" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, fuzzy, c-format msgid "Couldn't find any package by regex '%s'" msgstr "Hindi mahanap ang paketeng %s" -#: apt-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "Hindi mahanap ang paketeng %s" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, c-format msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " "neither of them" msgstr "" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, c-format msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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 " @@ -3335,167 +3360,167 @@ msgstr "" "May mga talaksang index na hindi nakuha, sila'y di pinansin, o ginamit ang " "mga luma na lamang." -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, fuzzy, c-format msgid "Installing %s" msgstr "Iniluklok ang %s" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "Isasaayos ang %s" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "Tinatanggal ang %s" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, fuzzy, c-format msgid "Completely removing %s" msgstr "Natanggal ng lubusan ang %s" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, fuzzy, c-format msgid "Directory '%s' missing" msgstr "Nawawala ang directory ng talaan %spartial." -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, fuzzy, c-format msgid "Could not open file '%s'" msgstr "Hindi mabuksan ang talaksang %s" -#: apt-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "Hinahanda ang %s" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "Binubuklat ang %s" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "Hinahanda ang %s upang isaayos" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "Iniluklok ang %s" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "Naghahanda para sa pagtanggal ng %s" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "Tinanggal ang %s" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "Naghahanda upang tanggalin ng lubusan ang %s" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "Natanggal ng lubusan ang %s" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "Hindi makapagsulat sa %s" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 msgid "" "No apport report written because the error message indicates an issue on the " "local system" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " "it?" msgstr "" -#: apt-pkg/deb/debsystem.cc:87 +#: apt-pkg/deb/debsystem.cc:94 #, fuzzy, c-format msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Hindi maaldaba ang directory ng talaan" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " msgstr "" -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2013-02-18 03:41+0200\n" "Last-Translator: Mert Dirik <mertdirik@gmail.com>\n" "Language-Team: Debian l10n Turkish\n" @@ -20,154 +20,155 @@ msgstr "" "X-Generator: Poedit 1.5.5\n" "X-Launchpad-Export-Date: 2013-02-04 12:16+0000\n" -#: cmdline/apt-cache.cc:140 +#: cmdline/apt-cache.cc:149 #, c-format msgid "Package %s version %s has an unmet dep:\n" msgstr "%s paketinin (sürüm %s) karşılanamayan bir bağımlılığı var:\n" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "Toplam paketlerin adları: " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 msgid "Total package structures: " msgstr "Toplam paket yapıları: " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " Normal paketler: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " Saf sanal paketler: " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " Tekil sanal paketler: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " Karışık sanal paketler: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " Eksik: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "Toplam farklı sürümler: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "Toplam farklı açıklamalar: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "Toplam bağımlılıklar: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "Toplam sürüm/dosya iliÅŸkileri: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "Toplam Tanım/Dosya iliÅŸkileri: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "Toplam destekleme eÅŸleÅŸtirmeleri: " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "Toplam birikmiÅŸ dizgiler: " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "Toplam baÄŸlımlık sürümü alanı: " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "Toplam serbest alan: " -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "Hesaplanan toplam alan: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format msgid "Package file %s is out of sync." msgstr "%s paket dosyası eÅŸzamansız." -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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ı" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 msgid "You must give at least one search pattern" msgstr "En az bir arama örüntüsü vermelisiniz" -#: cmdline/apt-cache.cc:1411 +#: 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." -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "%s paketi bulunamadı" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "Paket dosyaları:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: 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." #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "SabitlenmiÅŸ paketler:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(bulunamadı)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " Kurulu: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " Aday: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(hiçbiri)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " Paket sabitleme: " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " Sürüm çizelgesi:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s (%s için) %s %s tarihinde derlendi\n" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] showpkg pkg1 [pkg2 ...]\n" @@ -239,28 +240,28 @@ msgstr "" "Ayrıntılı bilgi için apt-cache(8) ve apt.conf(5) rehber sayfalarına göz " "atın.\n" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: 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'" -#: cmdline/apt-cdrom.cc:104 +#: 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" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, c-format msgid "Failed to mount '%s' to '%s'" msgstr "'%s', '%s' konumuna baÄŸlanamadı" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Kalan CD'leriniz için bu iÅŸlemi yineleyin." @@ -297,47 +298,47 @@ msgstr "" " -o=? İsteÄŸe baÄŸlı ayar seçeneÄŸi belirtmenizi saÄŸlar, örneÄŸin -o dir::" "cache=/tmp\n" -#: cmdline/apt-get.cc:244 +#: 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ı" -#: cmdline/apt-get.cc:326 +#: 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ı" -#: cmdline/apt-get.cc:329 +#: 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ı" -#: cmdline/apt-get.cc:366 +#: cmdline/apt-get.cc:367 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Kaynak paket olarak '%s' yerine '%s' kullanılacak\n" -#: cmdline/apt-get.cc:422 +#: 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" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "%s paketi bulunamadı" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "%s elle kurulmuÅŸ olarak ayarlı.\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: 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" -#: cmdline/apt-get.cc:468 cmdline/apt-mark.cc:116 +#: 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." @@ -345,19 +346,19 @@ msgstr "" "Bu komut artık kullanılmamaktadır. Bunun yerine 'apt-mark auto' ve 'apt-mark " "manual' kullanın." -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: 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:573 cmdline/apt-get.cc:610 +#: 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:725 +#: 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" -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "%s paketinin kaynak paketi bulunamadı" @@ -384,78 +385,78 @@ msgstr "" "bzr branch %s\n" "komutunu kullanın.\n" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Zaten indirilmiÅŸ olan '%s' dosyası atlanıyor\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "%s içindeki boÅŸ alan miktarı belirlenemedi" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "%s üzerinde yeterli boÅŸ alan yok" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "%sB/%sB kaynak arÅŸivi indirilecek.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "%sB kaynak arÅŸivi indirilecek.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "%s kaynağını al\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "Bazı arÅŸivler alınamadı." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "İndirme iÅŸlemi tamamlandı ve sadece indirme kipinde" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "%s için zaten açılmış bazı paketlerin açılması atlanıyor.\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Paket açma komutu '%s' baÅŸarısız.\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "'dpkg-dev' paketinin kurulu olduÄŸundan emin olun.\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "İnÅŸa komutu '%s' baÅŸarısız oldu.\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "Alt süreç baÅŸarısız" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "İnÅŸa bağımlılıklarının denetleneceÄŸi en az bir paket belirtilmedilir" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -464,17 +465,17 @@ msgstr "" "%s mimarisine uygun mimari bilgileri mevcut deÄŸil. Kurulumu için apt.conf(5) " "rehber sayfasındaki APT::Architectures kısmına göz atın." -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "%s paketinin inÅŸa-bağımlılığı bilgisi alınamıyor" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s paketinin hiç inÅŸa bağımlılığı yok.\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -483,7 +484,7 @@ msgstr "" "'%4$s' paketlerinde %3$s paketine izin verilmediÄŸi için %2$s kaynağının %1$s " "bağımlılığı karşılanamıyor." -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -491,12 +492,12 @@ msgid "" msgstr "" "%2$s için %1$s bağımlılığı, %3$s paketi bulunamadığı için karşılanamadı." -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "%2$s için %1$s bağımlılığı karşılanamadı: Kurulu %3$s paketi çok yeni." -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -505,7 +506,7 @@ msgstr "" "%2$s için %1$s bağımlılığı saÄŸlanamıyor, çünkü %3$s paketinin aday sürümü " "gerekli sürüm ÅŸartlarını karşılamıyor" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -513,30 +514,30 @@ msgid "" msgstr "" "%2$s için %1$s bağımlılığı saÄŸlanamıyor, çünkü %3$s paketinin aday sürümü yok" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "%2$s için %1$s bağımlılığı karşılanamadı: %3$s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "%s için inÅŸa bağımlılıkları karşılanamadı." -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "İnÅŸa bağımlılıklarını iÅŸleme baÅŸarısız oldu" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, c-format msgid "Changelog for %s (%s)" msgstr "%s (%s) paketinin deÄŸiÅŸim günlüğü" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "Desteklenen birimler:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -626,53 +627,75 @@ msgstr "" "sayfalarına bakabilirsiniz.\n" " Bu APT'nin Süper İnek Güçleri vardır.\n" -#: cmdline/apt-mark.cc:57 +#: 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:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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 kurulu olmadığı için iÅŸaretlenemedi.\n" -#: cmdline/apt-mark.cc:63 +#: cmdline/apt-mark.cc:74 #, c-format msgid "%s was already set to manually installed.\n" msgstr "%s zaten elle kurulmuÅŸ olarak ayarlı.\n" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, c-format msgid "%s was already set to automatically installed.\n" msgstr "%s zaten otomatik kurulmuÅŸ olarak ayarlı.\n" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, c-format msgid "%s was already set on hold.\n" msgstr "%s zaten tutulacak ÅŸekilde ayarlanmış.\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, c-format msgid "%s was already not hold.\n" msgstr "%s zaten tutulmayacak ÅŸekilde ayarlanmış.\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "%s için beklenildi ama o gelmedi" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format msgid "%s set on hold.\n" msgstr "%s paketi tutuluyor.\n" -#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format msgid "Canceled hold on %s.\n" msgstr "%s paketini tutma iÅŸlemi iptal edildi.\n" -#: cmdline/apt-mark.cc:334 +#: 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:381 +#: cmdline/apt-mark.cc:392 #, fuzzy msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" @@ -719,7 +742,7 @@ msgstr "" "Ayrıntılı bilgi için apt-mark(8) ve apt.conf(5) rehber sayfalarına\n" "bakabilirsiniz." -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -767,52 +790,52 @@ msgstr "%s konumundaki CD-ROM çıkarılamıyor, hala kullanımda olabilir." msgid "Disk not found." msgstr "Disk bulunamadı." -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "Dosya bulunamadı" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: 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:82 methods/gzip.cc:113 methods/rred.cc:606 +#: 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:47 +#: 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:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "GiriÅŸ yapılıyor" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "EÅŸ adı belirlenemiyor" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "Yerel ad belirlenemiyor" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format msgid "The server refused the connection and said: %s" msgstr "Sunucu baÄŸlantıyı reddetti, sunucunun iletisi: %s" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "USER baÅŸarısız, sunucunun iletisi: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS baÅŸarısız, sunucunun iletisi: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -820,121 +843,123 @@ msgstr "" "Bir Vekil sunucu belirtildi ancak oturum açma betiÄŸi belirtilmedi, Acquire::" "ftp::ProxyLogin boÅŸ." -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Oturum açma betiÄŸi komutu '%s' baÅŸarısız oldu, sunucunun iletisi: %s" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE baÅŸarısız, sunucunun iletisi: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: 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:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "Sunucu baÄŸlantıyı kesti" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "Okuma hatası" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: 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:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "İletiÅŸim kuralları bozulması" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "Yazma hatası" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: 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:707 +#: 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:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "BaÅŸarısız" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "Edilgen sokete baÄŸlanılamadı." -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo bir dinleme soketi alamıyor" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "Bir sokete baÄŸlanılamadı" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "Soket dinlenemedi" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "Soketin adı belirlenemedi" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "PORT komutu gönderilemedi" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Bilinmeyen adres ailesi %u (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT baÅŸarısız, sunucunun iletisi: %s" -#: methods/ftp.cc:826 +#: 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:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "BaÄŸlantı kabul edilemiyor" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "Dosya saÄŸlaması yapılamadı" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Dosya alınamıyor, sunucunun iletisi: '%s'" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "Veri soketi zaman aşımına uÄŸradı" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Veri aktarımı baÅŸarısız, sunucunun iletisi: '%s'" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "Sorgu" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "ÇaÄŸrılamıyor " @@ -970,7 +995,7 @@ msgstr "Adrese baÄŸlanılamadı: %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "BaÄŸlanılıyor: %s" @@ -1000,186 +1025,186 @@ msgstr "'%s:%s' (%i - %s) adresi çözümlenirken bir ÅŸeyler kötü gitti" msgid "Unable to connect to %s:%s:" msgstr "BaÄŸlanılamıyor %s:%s:" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "İç hata: İmza iyi, ancak anahtar parmak izi belirlenemedi?!" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "En az bir geçersiz imza ile karşılaşıldı." -#: methods/gpgv.cc:172 +#: 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:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "gpgv çalıştırılırken bilinmeyen hata" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "AÅŸağıdaki imzalar geçersiz:\n" -#: methods/gpgv.cc:229 +#: 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" -#: methods/gzip.cc:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "BoÅŸ dosyalar geçerli birer arÅŸiv dosyası olamazlar" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "Dosyaya yazılamadı" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "Sunucundan okunurken hata. Uzak sonlu kapalı baÄŸlantı" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "Sunucundan okunurken hata" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "Dosyaya yazılamadı" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "Seçme baÅŸarısız" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "BaÄŸlantı zaman aşımına uÄŸradı" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "Çıktı dosyasına yazılırken hata" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "BaÅŸlıklar bekleniyor" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "Kötü baÅŸlık satırı" -#: methods/server.cc:139 methods/server.cc:146 +#: 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:176 +#: 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:199 +#: 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:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "HTTP sunucusunun aralık desteÄŸi bozuk" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "Bilinmeyen tarih biçimi" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "Kötü baÅŸlık verisi" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "BaÄŸlantı baÅŸarısız" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "İç hata" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "İç hata, InstallPackages bozuk paketler ile çaÄŸrıldı!" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "" "Paketlerin kaldırılması gerekiyor ancak kaldırma iÅŸlemi devre dışı " "bırakılmış." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "İç hata, Sıralama tamamlanamadı" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" -"Ne kadar ilginç.. Boyutlar eÅŸleÅŸmedi, apt@packages.debian.org adresine " +"Ne kadar ilginç... Boyutlar eÅŸleÅŸmedi, apt@packages.debian.org adresine " "eposta atın." #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "%sB/%sB arÅŸiv dosyası indirilecek.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:171 +#: apt-private/private-install.cc:159 #, c-format msgid "Need to get %sB of archives.\n" msgstr "%sB arÅŸiv dosyası indirilecek.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:178 +#: apt-private/private-install.cc:166 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "Bu iÅŸlem tamamlandıktan sonra %sB ek disk alanı kullanılacak.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:183 +#: apt-private/private-install.cc:171 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Bu iÅŸlem tamamlandıktan sonra %sB disk alanı boÅŸalacak.\n" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "%s içinde yeterli boÅŸ alanınız yok." -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 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-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "Yalnızca Önemsiz seçeneÄŸi ayarlandı, fakat bu önemsiz bir iÅŸlem bir deÄŸil." #. 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Evet, söylediÄŸim ÅŸekilde yap!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1190,19 +1215,19 @@ msgstr "" "Devam etmek için '%s' ifadesini yazınız\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "Vazgeç." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "Devam etmek istiyor musunuz?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "Bazı dosyalar indirilemedi" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1210,19 +1235,19 @@ 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-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing seçeneÄŸi ve ortam takası ÅŸu an için desteklenmiyor" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "Eksik paketler düzeltilemedi." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "Kurulum iptal ediliyor." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1236,15 +1261,15 @@ msgstr[1] "" "Tüm dosyalarının üzerine yazıldığı için aÅŸağıdaki paketler\n" "sisteminizden kayboldu:" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Not: Bu eylem dpkg tarafından otomatik ve kasıtlı olarak yapılmıştır." -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Nesneleri silmemiz beklenemez, AutoRemover çalıştırılamıyor" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1262,15 +1287,15 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 msgid "The following information may help to resolve the situation:" msgstr "AÅŸağıdaki bilgiler durumu çözmenize yardımcı olabilir:" -#: apt-private/private-install.cc:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "İç hata, AutoRemover bazı ÅŸeyleri bozdu" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1282,7 +1307,7 @@ msgstr[1] "" "AÅŸağıdaki paketler otomatik olarak kurulmuÅŸ ve artık bu paketlere gerek " "duyulmuyor:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1290,19 +1315,19 @@ msgid_plural "" msgstr[0] "%lu paket otomatik olarak kurulmuÅŸ ve artık gerekli deÄŸil.\n" msgstr[1] "%lu paket otomatik olarak kurulmuÅŸ ve artık gerekli deÄŸil.\n" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Bu paketi kaldırmak için 'apt-get autoremove' komutunu kullanın." msgstr[1] "Bu paketleri kaldırmak için 'apt-get autoremove' komutunu kullanın." -#: apt-private/private-install.cc:624 +#: 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:" -#: apt-private/private-install.cc:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1310,7 +1335,7 @@ msgstr "" "Karşılanmamış bağımlılıklar. 'apt-get -f install' komutunu paket seçeneÄŸi " "vermeden deneyin (ya da bir çözüm belirtin)." -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1322,145 +1347,145 @@ msgstr "" "bazı paketlerin henüz oluÅŸturulamamış ya da oluÅŸturulmakta\n" "olduÄŸunu gösterir." -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "Bozuk paketler" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "AÅŸağıdaki ek paketler de kurulacak:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "Önerilen paketler:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "Tavsiye edilen paketler:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "UYARI: AÅŸağıdaki paketler doÄŸrulanamıyor!" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "Kimlik denetimi uyarısı görmezden geliniyor.\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "Bazı paketlerin kimlik denetimi yapılamadı" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "Paketler doÄŸrulanmadan kurulsun mu?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 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-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [Kuruldu]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [Kuruldu]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [Kuruldu]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [Kuruldu]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "AÅŸağıdaki paketler karşılanmamış bağımlılıklara sahip:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "ama %s kurulu" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "ama %s kurulacak" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "ama kurulabilir deÄŸil" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "ama o bir sanal paket" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "ama kurulu deÄŸil" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "ama kurulmayacak" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " ya da" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "AÅŸağıdaki YENİ paketler kurulacak:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "AÅŸağıdaki paketler KALDIRILACAK:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "AÅŸağıdaki paketlerin mevcut durumları korunacak:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "AÅŸağıdaki paketler yükseltilecek:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "AÅŸağıdaki paketlerin SÜRÜMLERİ DÜŞÜRÜLECEK:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "AÅŸağıdaki eski sürümlerinde tutulan paketler deÄŸiÅŸtirilecek:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (%s nedeniyle) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1468,27 +1493,27 @@ msgstr "" "UYARI: AÅŸağıdaki temel paketler kaldırılacak.\n" "Bu iÅŸlem ne yaptığınızı tam olarak bilmediÄŸiniz takdirde YAPILMAMALIDIR!" -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu paket yükseltilecek, %lu yeni paket kurulacak, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu paket yeniden kurulacak, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu paketin sürümü düşürülecek, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu paket kaldırılacak ve %lu paket yükseltilmeyecek.\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu paket tam olarak kurulmayacak ya da kaldırılmayacak.\n" @@ -1497,7 +1522,7 @@ msgstr "%lu paket tam olarak kurulmayacak ya da kaldırılmayacak.\n" #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "[E/h]" @@ -1505,93 +1530,93 @@ msgstr "[E/h]" #. 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:702 +#: apt-private/private-output.cc:708 msgid "[y/N]" msgstr "[e/H]" #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "E" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "H" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "Regex derleme hatası - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "Bağımlılıklar düzeltiliyor..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " baÅŸarısız oldu." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "Bağımlılıklar düzeltilemedi" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "Yükseltme kümesi küçültülemiyor" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " Tamamlandı" -#: apt-private/private-cachefile.cc:102 +#: 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-private/private-cachefile.cc:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "Karşılanmayan bağımlılıklar. -f kullanmayı deneyin." -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "'update' komutu bağımsız deÄŸiÅŸken almamaktadır" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "Yükseltme hesaplanıyor... " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "İç hata, AllUpgrade bazı ÅŸeyleri bozdu" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "Bitti" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1603,43 +1628,43 @@ msgstr "" " Unutmayın ki simülasyonda kilitleme yapılmaz,\n" " bu nedenle bu simülasyonun tam uygunluÄŸuna güvenmeyin." -#: apt-private/private-sources.cc:45 +#: 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:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "BaÄŸlandı " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "Alınıyor: " -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "Yoksay " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Hata " -#: apt-private/acqprogress.cc:143 +#: 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" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [Çalışıyor]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1652,19 +1677,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "%s okunamıyor" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "%s olarak deÄŸiÅŸtirilemedi" @@ -1693,11 +1718,11 @@ msgstr "Yansı dosyası %s okunamıyor" msgid "[Mirror: %s]" msgstr "[Yansı: %s]" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: 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:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "BaÄŸlantı vaktinden önce kapandı" @@ -1764,40 +1789,45 @@ 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:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "%s durum bilgisi alınamadı" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "%s dosyasına yazılamıyor" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "debconf sürümü alınamıyor. debconf kurulu mu?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "Paket uzantı listesi çok uzun" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "%s dizinini iÅŸlemede hata" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "Kaynak uzantı listesi çok uzun" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "İçindekiler dosyasına üstbilgi yazmada hata" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "%s içeriÄŸini iÅŸlemede hata" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1880,26 +1910,26 @@ msgstr "" " -c=? Belirtilen yapılandırma dosyası kullan\n" " -o=? Yapılandırma seçeneÄŸi ayarla" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "Hiçbir seçim eÅŸleÅŸmedi" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "'%s' paket dosyası grubunda bazı dosyalar eksik" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "Veritabanı bozuk, dosya adı %s.old olarak deÄŸiÅŸtirildi" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "Veritabanı eski, %s yükseltilmeye çalışılıyor" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -1907,192 +1937,192 @@ msgstr "" "Veritabanı biçimi geçersiz. EÄŸer apt'ın eski bir sürümünden yükseltme " "yaptıysanız, lütfen veritabanını silin ve yeniden oluÅŸturun." -#: ftparchive/cachedb.cc:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Veritabanı dosyası %s açılamadı: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "%s durum bilgisi alınamadı" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "ArÅŸivin denetim kaydı yok" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "İmleç alınamıyor" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: %s dizini okunamıyor\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: %s durum bilgisi alınamıyor\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "E: Hatalar ÅŸu dosya için geçerli: " -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "%s çözümlenemedi" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "AÄŸaçta gezinme baÅŸarısız" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "%s açılamadı" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "%s baÄŸlantı okuması baÅŸarılamadı" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "%s baÄŸlantı koparma baÅŸarılamadı" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** %s, %s konumuna baÄŸlanamadı" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, 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:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "ArÅŸivde paket alanı yok" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %s için geçersiz kılma girdisi yok\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s geliÅŸtiricisi %s, %s deÄŸil\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr " '%s' paketinin yerine geçecek bir kaynak paket yok\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr " '%s' paketinin yerine geçecek bir ikili paket de yok\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - Bellek ayırma yapılamadı" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "%s açılamıyor" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "Hatalı geçersiz kılma %s satır %llu #1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "Geçersiz kılma dosyası %s okunamadı" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, c-format msgid "Malformed override %s line %llu #1" msgstr "Hatalı geçersiz kılma %s satır %llu #1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, c-format msgid "Malformed override %s line %llu #2" msgstr "Hatalı geçersiz kılma %s satır %llu #2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, c-format msgid "Malformed override %s line %llu #3" msgstr "Hatalı geçersiz kılma %s satır %llu #3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "Bilinmeyen sıkıştırma algoritması '%s'" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "Sıkıştırılmış %s çıktısı bir sıkıştırma kümesine ihtiyaç duymaktadır." -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "DOSYA* oluÅŸturulamadı" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "fork yapılamadı" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "ÇocuÄŸu sıkıştır" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "İç hata, %s oluÅŸturulamadı" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "Altsürece/dosyaya GÇ iÅŸlemi baÅŸarısız oldu" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "MD5 hesaplanırken okunamadı" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "%s bağı koparılırken sorun çıktı" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "%s, %s olarak yeniden adlandırılamadı" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -2146,157 +2176,157 @@ msgstr "" " -o=? Herhangi bir yapılandırma seçeneÄŸi ayarla, örneÄŸin -o dir::cache=/" "tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "Boru oluÅŸturulamadı" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "Gzip çalıştırılamadı " -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "Bozuk arÅŸiv" -#: apt-inst/contrib/extracttar.cc:201 +#: 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:306 +#: apt-inst/contrib/extracttar.cc:308 #, c-format msgid "Unknown TAR header type %u, member %s" msgstr "Bilinmeyen TAR baÅŸlığı türü %u, üye %s" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "Geçersiz arÅŸiv imzası" -#: apt-inst/contrib/arfile.cc:82 +#: 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:94 +#: apt-inst/contrib/arfile.cc:96 #, c-format msgid "Invalid archive member header %s" msgstr "GeçerÅŸiz arÅŸiv üyesi baÅŸlığı %s" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "Geçersiz arÅŸiv üyesi baÅŸlığı" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "ArÅŸiv çok kısa" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "ArÅŸiv baÅŸlıkları okunamadı" -#: apt-inst/filelist.cc:382 +#: 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:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "SaÄŸlama elementi bulunamadı" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "Yönlendirme tahsisi baÅŸarısız oldu" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "AddDiversion'da iç hata" -#: apt-inst/filelist.cc:479 +#: apt-inst/filelist.cc:477 #, c-format msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" msgstr "Bir yönlendirmenin üzerine yazılmaya çalışılıyor, %s -> %s ve %s/%s" -#: apt-inst/filelist.cc:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "Aynı dosya iki kez yönlendirilemez: %s -> %s" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "%s/%s yapılandırma dosyası zaten mevcut" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: 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 dosyasına yazılamadı" -#: apt-inst/dirstream.cc:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "%s dosyası kapatılamadı" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format msgid "The path %s is too long" msgstr "%s yolu çok uzun" -#: apt-inst/extract.cc:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "%s paketi bir çok kez açıldı" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "%s dizini yönlendirilmiÅŸ" -#: apt-inst/extract.cc:145 +#: apt-inst/extract.cc:152 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "Bu paket yönlendirme hedefine (%s/%s) yazmayı deniyor" -#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 msgid "The diversion path is too long" msgstr "Yönlendirme yolu çok uzun" -#: apt-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "%s dizini dizin olmayan bir öğeyle deÄŸiÅŸtirildi" -#: apt-inst/extract.cc:282 +#: 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:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "Yol çok uzun" -#: apt-inst/extract.cc:414 +#: apt-inst/extract.cc:421 #, c-format msgid "Overwrite package match with no version for %s" msgstr "%s paketinin sürümü yok" -#: apt-inst/extract.cc:431 +#: apt-inst/extract.cc:438 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "%s/%s dosyası %s paketindeki aynı adlı dosyanın üzerine yazmak istiyor" -#: apt-inst/extract.cc:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "%s durum bilgisi alınamadı" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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" -#: apt-inst/deb/debfile.cc:124 +#: apt-inst/deb/debfile.cc:132 #, c-format msgid "Internal error, could not locate member %s" msgstr "İç hata, %s üyesi bulunamadı" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "Ayrıştırılamayan 'control' dosyası" @@ -2356,211 +2386,206 @@ msgstr "" "artırılamadı." #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "%li gün %li saat %li dk. %li sn." #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "%li saat %li dk. %li sn." #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "%li dk. %li sn." #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "%li sn." -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "%s seçimi bulunamadı" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Tanınamayan tür kısaltması: '%c'" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "Yapılandırma dosyası (%s) açılıyor" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Sözdizim hatası %s:%u: Blok ad olmadan baÅŸlıyor." -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Sözdizim hatası %s:%u: Kötü biçimlendirilmiÅŸ etiket" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Sözdizim hatası %s:%u: DeÄŸerden sonra ilave gereksiz" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "Sözdizim hatası %s:%u: Yönergeler yalnızca en üst düzeyde bitebilir" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Sözdizim hatası %s:%u: Çok fazla yuvalanmış 'include'" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Sözdizim hatası %s:%u: Buradan 'include' edilmiÅŸ" -#: apt-pkg/contrib/configuration.cc:881 +#: 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-pkg/contrib/configuration.cc:884 +#: apt-pkg/contrib/configuration.cc:900 #, c-format msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" "Sözdizim hatası %s:%u: clear yönergesi argüman olarak bir seçenek aÄŸacı " "gerektirir." -#: apt-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Sözdizim hatası %s:%u: Dosya sonunda ilave gereksiz" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... Hata!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... Bitti" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s... Bitti" -#: apt-pkg/contrib/cmndline.cc:116 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format msgid "Command line option '%c' [from %s] is not known." msgstr "Komut satırı seçeneÄŸi '%c' [%s içinden] tanınmıyor." -#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 #, c-format msgid "Command line option %s is not understood" msgstr "Komut satırı seçeneÄŸi %s anlaşılamadı" -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format msgid "Command line option %s is not boolean" msgstr "Komut satırı seçeneÄŸi %s mantıksal deÄŸer deÄŸil" -#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "%s seçeneÄŸi bir bağımsız deÄŸiÅŸkene gerek duyar." -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "" "%s seçeneÄŸi: Yapılandırma öğesi tanımlaması =<deÄŸer> ÅŸeklinde deÄŸer " "içermelidir." -#: apt-pkg/contrib/cmndline.cc:273 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format msgid "Option %s requires an integer argument, not '%s'" msgstr "%s seçeneÄŸi bir tam sayı bağımsız deÄŸiÅŸkene gerek duyar, '%s' deÄŸil" -#: apt-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "'%s' seçeneÄŸi çok uzun" -#: apt-pkg/contrib/cmndline.cc:336 +#: 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." -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "Geçersiz iÅŸlem: %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: 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-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "Cdrom durum bilgisi alınamadı" -#: apt-pkg/contrib/fileutl.cc:95 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Gzip dosyası %s kapatılamadı" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "Kilitleme dosyası %s salt okunur olduÄŸu için kilitleme kullanılmıyor" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "Kilit dosyası %s açılamadı" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "nfs ile baÄŸlanmış kilit dosyası %s için kilitleme kullanılmıyor" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "%s kilidi alınamadı" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "'%s' dizin olmadığı için dosya listeli oluÅŸturulamıyor" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" "'%2$s' dizinindeki '%1$s' normal bir dosya olmadığı için görmezden geliniyor." -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" "'%2$s' dizinindeki '%1$s' dosyası uzantısı olmadığı için görmezden geliniyor." -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" @@ -2568,289 +2593,299 @@ msgstr "" "'%2$s' dizinindeki '%1$s' dosyası geçersiz bir dosya uzantısı olduÄŸu için " "yok sayılıyor." -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "%s altsüreci bir bölümleme hatası aldı (segmentation fault)." -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, c-format msgid "Sub-process %s received signal %u." msgstr "%s altsüreci %u sinyali aldı" -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 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-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "%s altsüreci beklenmeyen bir ÅŸekilde sona erdi" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Gzip dosyası %s kapatılamadı" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "%s dosyası açılamadı" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, c-format msgid "Could not open file descriptor %d" msgstr "Dosya tanımlayıcı %d açılamadı" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "Altsüreç IPC'si oluÅŸturulamadı" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "Sıkıştırma programı çalıştırılamadı " -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, c-format msgid "read, still have %llu to read but none left" msgstr "read, %llu bayt okunması gerekli fakat hiç kalmamış" -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, c-format msgid "write, still have %llu to write but couldn't" msgstr "write, yazılması gereken %llu bayt yazılamıyor" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, c-format msgid "Problem closing the file %s" msgstr "%s dosyası kapatılamadı" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, c-format msgid "Problem renaming the file %s to %s" msgstr "%s dosyası %s olarak yeniden adlandırılamadı" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, c-format msgid "Problem unlinking the file %s" msgstr "%s dosyasından baÄŸ kaldırma sorunu" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "Dosya eÅŸitlenirken sorun çıktı" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "yeniden adlandırma baÅŸarısız, %s (%s -> %s)." + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, c-format msgid "No keyring installed in %s." msgstr "%s dizininde kurulu bir anahtar yok." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "BoÅŸ paket önbelleÄŸi" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "Paket önbelleÄŸi dosyası bozulmuÅŸ" -#: apt-pkg/pkgcache.cc:159 +#: 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:162 +#: 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:167 +#: apt-pkg/pkgcache.cc:174 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "Bu APT '%s' sürümleme sistemini desteklemiyor." -#: apt-pkg/pkgcache.cc:172 +#: 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:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "Bağımlılıklar" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "ÖnBağımlılıklar" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "Önerdikleri" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "Tavsiye ettikleri" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "Çakışmalar" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "DeÄŸiÅŸtirilenler" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "Eskiyenler" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "Bozdukları" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "GeliÅŸtirdikleri" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "önemli" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "gerekli" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "standart" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "seçimlik" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "ilave" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: 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:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "Aday sürümler" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "Bağımlılık oluÅŸturma" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: 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:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "Durum dosyası (StateFile) %s açılamadı." -#: apt-pkg/depcache.cc:250 +#: 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-pkg/tagfile.cc:138 +#: apt-pkg/tagfile.cc:140 #, c-format msgid "Unable to parse package file %s (1)" msgstr "Paket dosyası %s ayrıştırılamadı (1)" -#: apt-pkg/tagfile.cc:235 +#: 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-pkg/sourcelist.cc:118 +#: apt-pkg/sourcelist.cc:127 #, fuzzy, c-format msgid "Malformed stanza %u in source list %s (URI parse)" msgstr "" "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (URI ayrıştırma)" -#: apt-pkg/sourcelist.cc:161 +#: apt-pkg/sourcelist.cc:170 #, c-format msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı ([seçenek] " "ayrıştırılamıyor)" -#: apt-pkg/sourcelist.cc:164 +#: apt-pkg/sourcelist.cc:173 #, c-format msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "" "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı ([seçenek] çok kısa)" -#: apt-pkg/sourcelist.cc:175 +#: apt-pkg/sourcelist.cc:184 #, c-format msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" msgstr "" "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı ([%3$s] bir atama " "deÄŸil)" -#: apt-pkg/sourcelist.cc:181 +#: apt-pkg/sourcelist.cc:190 #, c-format msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "" "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı ([%3$s] seçeneÄŸinin " "anahtarı yok)" -#: apt-pkg/sourcelist.cc:184 +#: apt-pkg/sourcelist.cc:193 #, c-format msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı ([%3$s] %4$s " "anahtarına deÄŸer atanmamış)" -#: apt-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (URI)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (dist)" -#: apt-pkg/sourcelist.cc:202 +#: 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)" -#: apt-pkg/sourcelist.cc:208 +#: 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)" -#: apt-pkg/sourcelist.cc:215 +#: 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-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "%s Açılıyor" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "Kaynak listesinin (%2$s) %1$u numaralı satırı çok uzun." -#: apt-pkg/sourcelist.cc:362 +#: 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-pkg/sourcelist.cc:366 +#: 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)" -#: apt-pkg/sourcelist.cc:407 +#: 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-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2859,12 +2894,12 @@ 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:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, c-format msgid "Could not configure '%s'. " msgstr "'%s' paketi yapılandırılamadı. " -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2876,12 +2911,12 @@ msgstr "" "kötü bir durumdur, ama ille de devam etmek isterseniz, APT::Force-LoopBreak " "seçeneÄŸini etkinleÅŸtirin." -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "İndeks dosyası türü '%s' desteklenmiyor" -#: apt-pkg/algorithms.cc:266 +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." @@ -2889,7 +2924,7 @@ msgstr "" "%s paketinin tekrar kurulması gerekli, ancak gereken arÅŸiv dosyası " "bulunamıyor." -#: apt-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2897,91 +2932,91 @@ msgstr "" "Hata, pkgProblemResolver::Resolve bozuk paketlere yol açtı, bu sorunun " "nedeni tutulan paketler olabilir." -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "Sorunlar giderilemedi, tutulan bozuk paketleriniz var." -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, c-format msgid "List directory %spartial is missing." msgstr "Liste dizini %spartial bulunamadı." -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, c-format msgid "Archives directory %spartial is missing." msgstr "ArÅŸiv dizini %spartial bulunamadı." -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, c-format msgid "Unable to lock directory %s" msgstr "%s dizini kilitlenemiyor" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Alınan dosya: %li / %li (%s kaldı)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "Alınan dosya: %li / %li" -#: apt-pkg/acquire-worker.cc:113 +#: 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ı." -#: apt-pkg/acquire-worker.cc:115 +#: 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" -#: apt-pkg/acquire-worker.cc:166 +#: 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ı" -#: apt-pkg/acquire-worker.cc:452 +#: apt-pkg/acquire-worker.cc:455 #, c-format msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "" "Lütfen '%s' olarak etiketlenmiÅŸ diski '%s' sürücüsüne yerleÅŸtirin ve giriÅŸ " "(enter) tuÅŸuna basın." -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Paketleme sistemi '%s' desteklenmiyor" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "Uygun bir paketleme sistemi türü bulunamıyor" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "%s için dosya bilgisi alınamadı." -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "'sources.list' dosyası içine bazı 'source' adresleri koymalısınız." -#: apt-pkg/cachefile.cc:87 +#: 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ı." -#: apt-pkg/cachefile.cc:91 +#: 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:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "Kaynak listesi okunamadı." -#: apt-pkg/policy.cc:75 +#: apt-pkg/policy.cc:83 #, c-format msgid "" "The value '%s' is invalid for APT::Default-Release as such a release is not " @@ -2990,97 +3025,92 @@ msgstr "" "APT::Default-Release için '%s' deÄŸeri geçersizdir, çünkü kaynaklarda böyle " "bir sürüm yok." -#: apt-pkg/policy.cc:414 +#: 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:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "İğne türü %s anlaşılamadı" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "İğne için öncelik belirlenmedi (ya da sıfır)" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 msgid "Cache has an incompatible versioning system" msgstr "ÖnbelleÄŸin uyumsuz bir sürümleme sistemi var" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "%s paketi iÅŸlenirken sorunlarla karşılaşıldı (%s%d)" -#: apt-pkg/pkgcachegen.cc:251 +#: 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:254 +#: 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." -#: apt-pkg/pkgcachegen.cc:257 +#: 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." -#: apt-pkg/pkgcachegen.cc:260 +#: 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." -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:576 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Dosya bağımlılıkları iÅŸlenirken %s %s paketi bulunamadı" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "Kaynak listesinin (%s) dosya bilgisi alınamadı" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 msgid "Reading package lists" msgstr "Paket listeleri okunuyor" -#: apt-pkg/pkgcachegen.cc:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "Dosya SaÄŸlananları Toplanıyor" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 msgid "IO Error saving source cache" msgstr "Kaynak önbelleÄŸi kaydedilirken GÇ Hatası" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "yeniden adlandırma baÅŸarısız, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "SaÄŸlama toplamları eÅŸleÅŸmiyor" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "Boyutlar eÅŸleÅŸmiyor" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "Geçersiz iÅŸlem: %s" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, c-format msgid "" "Unable to find expected entry '%s' in Release file (Wrong sources.list entry " @@ -3089,17 +3119,17 @@ msgstr "" "'Release' dosyasında olması beklenilen '%s' girdisi bulunamadı (sources.list " "dosyasındaki girdi ya da satır hatalı)" -#: apt-pkg/acquire-item.cc:1586 +#: apt-pkg/acquire-item.cc:1595 #, c-format msgid "Unable to find hash sum for '%s' in Release file" msgstr "'Release' dosyasında '%s' için uygun bir saÄŸlama toplamı bulunamadı" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "" "AÅŸağıdaki anahtar kimlikleri için kullanılır hiçbir genel anahtar yok:\n" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " @@ -3108,12 +3138,12 @@ msgstr "" "%s konumundaki 'Release' dosyasının vâdesi dolmuÅŸ (%s önce). Bu deponun " "güncelleÅŸtirmeleri uygulanmayacak." -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Dağıtım çakışması: %s (beklenen %s ama eldeki %s)" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3123,12 +3153,12 @@ msgstr "" "indeks dosyaları kullanılacak. GPG hatası: %s:%s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "GPG hatası: %s: %s" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3137,82 +3167,78 @@ msgstr "" "%s paketindeki dosyalardan biri konumlandırılamadı. Bu durum, bu paketi elle " "düzeltmeniz gerektiÄŸi anlamına gelebilir. (eksik mimariden dolayı)" -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, 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ı" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "Paket indeks dosyaları bozuk. %s paketinin 'Filename:' alanı yok." -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, c-format msgid "Unable to parse Release file %s" msgstr "'Release' dosyası (%s) ayrıştırılamadı" -#: apt-pkg/indexrecords.cc:81 +#: 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-pkg/indexrecords.cc:112 +#: 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-pkg/indexrecords.cc:125 +#: 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-pkg/indexrecords.cc:144 +#: apt-pkg/indexrecords.cc:149 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "'Release' dosyasında (%s) geçersiz 'Date' girdisi" -#: apt-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "SaÄŸlayıcı bloÄŸu %s parmak izi içermiyor" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "CD-ROM baÄŸlama noktası %s kullanılıyor\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "CD-ROM ayrılıyor\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "CD-ROM ayrılıyor...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "Disk bekleniliyor...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "CD-ROM baÄŸlanıyor...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " msgstr "Tanımlanıyor... " -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "Kayıtlı etiket: %s\n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "CD-ROM ayrılıyor...\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" -msgstr "Disk, indeks dosyaları için taranıyor..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" +msgstr "Disk, indeks dosyaları için taranıyor...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3221,7 +3247,7 @@ msgstr "" "%zu paket indeksi, %zu kaynak indeksi, %zu çeviri indeksi ve %zu imza " "bulundu\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" @@ -3229,16 +3255,16 @@ msgstr "" "Hiç paket dosyası bulunamadı. BelirttiÄŸiniz disk bir Debian diski deÄŸil ya " "da yanlış mimariye sahip." -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "'%s' etiketi bulundu\n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "Bu, geçerli bir ad deÄŸil, yeniden deneyin.\n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3247,34 +3273,34 @@ msgstr "" "Disk adı: \n" "'%s'\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "Paket listeleri kopyalanıyor.." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "Yeni kaynak listesi yazılıyor\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "Bu disk için olan kaynak listesi girdileri:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format msgid "Wrote %i records.\n" msgstr "%i kayıt yazıldı.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:777 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%2$i eksik dosyayla %1$i kayıt yazıldı.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:780 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%2$i eÅŸleÅŸmeyen dosyayla %1$i kayıt yazıldı\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "%2$i eksik dosya ve %3$i eÅŸleÅŸmeyen dosyayla %1$i kayıt yazıldı\n" @@ -3289,37 +3315,37 @@ msgstr "%s için kimlik doÄŸrulama kaydı bulunamadı." msgid "Hash mismatch for: %s" msgstr "SaÄŸlama yapılamadı: %s" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "'%2$s' paketinin '%1$s' sürümü bulunamadı" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "'%2$s' paketinin '%1$s' sürümü bulunamadı" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, c-format msgid "Couldn't find task '%s'" msgstr "'%s' görevi bulunamadı" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, 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:605 +#: apt-pkg/cacheset.cc:613 #, 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:616 +#: apt-pkg/cacheset.cc:624 #, 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:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " @@ -3328,51 +3354,51 @@ msgstr "" "'%s' paketi kurulu olmadığı ve aday sürüme sahip olmadığı için her ikisi de " "seçilemiyor" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, c-format msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "'%s' paketi sanal olduÄŸu için en yeni sürümü seçilemiyor" -#: apt-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "'%s' paketinin aday sürümü olmadığı için aday sürüm seçilemiyor" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "'%s' paketi kurulu olmadığı için kurulu sürüm seçilemiyor" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "Çözücüye senaryo gönder" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "Çözücüye istek gönder" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "Çözüm almak için hazırlan" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "Harici çözücü düzgün bir hata iletisi göstermeden baÅŸarısız oldu" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "Harici çözücüyü çalıştır" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "dpkg çalıştırılıyor" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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." @@ -3380,119 +3406,119 @@ msgstr "" "Bazı indeks dosyaları indirilemedi. Bu dosyalar yok sayıldılar ya da önceki " "sürümleri kullanıldı." -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "%s kuruluyor" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: 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-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "%s kaldırılıyor" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format msgid "Completely removing %s" msgstr "%s tamamen kaldırılıyor" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "%s paketinin kaybolduÄŸu not ediliyor" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "Kurulum sonrası tetikleyicisi %s çalıştırılıyor" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "'%s' dizini bulunamadı" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format msgid "Could not open file '%s'" msgstr "'%s' dosyası açılamadı" -#: apt-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "%s hazırlanıyor" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "%s paketi açılıyor" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "%s paketini yapılandırmaya hazırlanılıyor" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "%s kuruldu" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "%s paketinin kaldırılmasına hazırlanılıyor" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "%s kaldırıldı" -#: apt-pkg/deb/dpkgpm.cc:990 +#: 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-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "%s tamamen kaldırıldı" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "%s dosyasına yazılamıyor" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "İşlem yarıda kesildi" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 msgid "No apport report written because MaxReports is reached already" msgstr "" "En fazla rapor miktarına (MaxReports) ulaşıldığı için apport raporu yazılmadı" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "bağımlılık sorunları - yapılandırılmamış durumda bırakılıyor" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3500,14 +3526,14 @@ msgstr "" "Apport raporu yazılmadı çünkü hata iletisi bu durumun bir önceki hatadan " "kaynaklanan bir hata olduÄŸunu belirtiyor." -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" "Hata iletisi diskin dolu olduÄŸunu belirttiÄŸi için apport raporu yazılamadı" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3515,7 +3541,7 @@ msgstr "" "Hata iletisi bir bellek yetersizliÄŸi hatasına iÅŸaret ettiÄŸi için apport " "raporu yazılamadı" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 #, fuzzy msgid "" "No apport report written because the error message indicates an issue on the " @@ -3523,14 +3549,14 @@ msgid "" msgstr "" "Hata iletisi diskin dolu olduÄŸunu belirttiÄŸi için apport raporu yazılamadı" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" "Hata iletisi bir dpkg G/Ç hatasına iÅŸaret ettiÄŸi için apport raporu " "yazılamadı" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " @@ -3539,21 +3565,21 @@ msgstr "" "Yönetim dizini (%s) kilitlenemiyor, baÅŸka bir iÅŸlem tarafından kullanılıyor " "olmasın?" -#: apt-pkg/deb/debsystem.cc:87 +#: 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?" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: 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. " -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "KilitlenmemiÅŸ" @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-all\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2012-09-25 20:19+0300\n" "Last-Translator: A. Bondarenko <artem.brz@gmail.com>\n" "Language-Team: УкраїнÑька <uk@li.org>\n" @@ -24,155 +24,156 @@ 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:140 +#: cmdline/apt-cache.cc:149 #, c-format msgid "Package %s version %s has an unmet dep:\n" msgstr "Пакунок %s верÑÑ–Ñ— %s має незадоволену залежніÑть:\n" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "Ð’Ñього імен пакунків: " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 msgid "Total package structures: " msgstr "Ð’Ñього Ñтруктур пакунків: " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " Ðормальних пакунків: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " Цілком віртуальних пакунків: " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " Окремих віртуальних пакунків: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " Змішаних віртуальних пакунків: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " ВідÑутні: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "Ð’Ñього унікальних верÑій: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "Ð’Ñього унікальних опиÑів: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "Ð’Ñього залежноÑтей: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "Ð’Ñього відноÑин ВерÑÑ–Ñ/Файл: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "Ð’Ñього відноÑин ОпиÑ/Файл: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 #, fuzzy msgid "Total Provides mappings: " msgstr "Ð’Ñього карт 'Provides': " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "Ð’Ñього відфільтрованих (globbed) Ñ€Ñдків: " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 #, fuzzy msgid "Total dependency version space: " msgstr "Ð’Ñього інформації про залежноÑті: " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 #, fuzzy msgid "Total slack space: " msgstr "Порожнього міÑÑ†Ñ Ð² кеші: " -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "Загальний проÑтір полічений длÑ: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: 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 розÑинхронізований." -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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 "Ðе знайдено жодного пакунка" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 msgid "You must give at least one search pattern" msgstr "Ви повинні задати не менше одного шаблону пошуку" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "Ð¦Ñ ÐºÐ¾Ð¼Ð°Ð½Ð´Ð° Ñ” заÑтарілою. Будь-лаÑка викориÑтовуйте 'apt-mark showauto'" -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "Ðе можу знайти пакунок %s" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "Переліки пакунків:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 msgid "Cache is out of sync, can't x-ref a package file" msgstr "Кеш не Ñинхронізований, неможливо знайти поÑÐ¸Ð»Ð°Ð½Ð½Ñ Ð½Ð° перелік пакунків" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "ЗафікÑовані пакунки:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(не знайдено)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " Ð’Ñтановлено: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " Кандидат: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(відÑутній)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " ФікÑатор(pin) пакунка: " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " Ð¢Ð°Ð±Ð»Ð¸Ñ†Ñ Ð²ÐµÑ€Ñій:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: 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:1740 +#: cmdline/apt-cache.cc:1749 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] showpkg pkg1 [pkg2 ...]\n" @@ -242,28 +243,28 @@ msgstr "" " -o=? Ð’Ñтановити умовну опцію конфігурації, наприклад, -o dir::cache=/tmp\n" "ДивітьÑÑ Ð¿Ð¾Ð´Ñ€Ð¾Ð±Ð¸Ñ†Ñ– на man-Ñторінках apt-cache(8) Ñ– apt.conf(5).\n" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: 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:104 +#: cmdline/apt-cdrom.cc:91 msgid "Please insert a Disc in the drive and press enter" msgstr "Будь-лаÑка, вÑтавте ДиÑк у приÑтрій Ñ– натиÑніть Enter" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, c-format msgid "Failed to mount '%s' to '%s'" msgstr "Ðе вдалоÑÑ Ð¿Ñ–Ð´'єднати '%s' до '%s'" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Повторіть цей Ð¿Ñ€Ð¾Ñ†ÐµÑ Ð´Ð»Ñ Ñ€ÐµÑˆÑ‚Ð¸ CD з вашого набору." @@ -299,47 +300,47 @@ msgstr "" " -Ñ=? Читати зазначений конфігураційний файл.\n" " -o=? Ð’Ñтановити умовну опцію, наприклад, -o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:244 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format msgid "Can not find a package for architecture '%s'" msgstr "Ðеможливо знайти ніÑкий пакунок через рег.вираз '%s'" -#: cmdline/apt-get.cc:326 +#: cmdline/apt-get.cc:327 #, fuzzy, c-format msgid "Can not find a package '%s' with version '%s'" msgstr "Ðеможливо знайти ніÑкий пакунок через рег.вираз '%s'" -#: cmdline/apt-get.cc:329 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format msgid "Can not find a package '%s' with release '%s'" msgstr "Ðеможливо знайти ніÑкий пакунок через рег.вираз '%s'" -#: cmdline/apt-get.cc:366 +#: 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:422 +#: cmdline/apt-get.cc:423 #, fuzzy, c-format msgid "Can not find version '%s' of package '%s'" msgstr "Ігнорувати недоÑтупну верÑÑ–ÑŽ '%s' пакунку '%s'" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "Ðе можу знайти пакунок %s" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "%s позначений Ñк вÑтановлений вручну.\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: 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:468 cmdline/apt-mark.cc:116 +#: 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." @@ -347,21 +348,21 @@ msgstr "" "Ð¦Ñ ÐºÐ¾Ð¼Ð°Ð½Ð´Ð° заÑтаріла. Будь-лаÑка, викориÑтовуйте заміÑть неї 'apt-mark auto' " "Ñ– 'apt-mark manual'." -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 msgid "Internal error, problem resolver broke stuff" msgstr "Ð’Ð½ÑƒÑ‚Ñ€Ñ–ÑˆÐ½Ñ Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ°, вирішувач проблем щоÑÑŒ поламав" -#: cmdline/apt-get.cc:573 cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 msgid "Unable to lock the download directory" msgstr "Ðеможливо заблокувати директорію Ð´Ð»Ñ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ" -#: cmdline/apt-get.cc:725 +#: cmdline/apt-get.cc:726 msgid "Must specify at least one package to fetch source for" msgstr "" "Вкажіть Ñк мінімум один пакунок, Ð´Ð»Ñ Ñкого необхідно завантажити вихідні " "текÑти" -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "Ðеможливо знайти пакунок з вихідними текÑтами Ð´Ð»Ñ %s" @@ -386,81 +387,81 @@ msgstr "" "bzr branch %s\n" "щоб отримати найновіші (потенційно не випущені) Ð¾Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð´Ð¾ пакунку.\n" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "ПропуÑкаємо вже завантажений файл '%s'\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "Ðе вдалоÑÑ Ð²Ð¸Ð·Ð½Ð°Ñ‡Ð¸Ñ‚Ð¸ кількіÑть вільного міÑÑ†Ñ Ð² %s" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "ÐедоÑтатньо міÑÑ†Ñ Ð² %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Ðеобхідно завантажити %sB/%sB з архівів вихідних текÑтів.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Потрібно завантажити %sB архівів з вихідними текÑтами.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "Ð—Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ð²Ð¸Ñ…Ñ–Ð´Ð½Ð¸Ñ… текÑтів %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "ДеÑкі архіви не вдалоÑÑ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶Ð¸Ñ‚Ð¸." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "Ð—Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð¾ в режимі \"тільки завантаженнÑ\"" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" "ПропуÑкаєтьÑÑ Ñ€Ð¾Ð·Ð¿Ð°ÐºÑƒÐ²Ð°Ð½Ð½Ñ Ð²Ð¸Ñ…Ñ–Ð´Ð½Ð¸Ñ… текÑтів, тому що вже розпаковано в %s\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Команда Ñ€Ð¾Ð·Ð¿Ð°ÐºÑƒÐ²Ð°Ð½Ð½Ñ '%s' завершилаÑÑ Ð½ÐµÐ²Ð´Ð°Ð»Ð¾.\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Перевірте, чи вÑтановлений пакунок 'dpkg-dev'.\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "Команда побудови '%s' закінчилаÑÑ Ð½ÐµÐ²Ð´Ð°Ð»Ð¾.\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "Породжений Ð¿Ñ€Ð¾Ñ†ÐµÑ Ð·Ð°Ð²ÐµÑ€ÑˆÐ¸Ð²ÑÑ Ð½ÐµÐ²Ð´Ð°Ð»Ð¾" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "" "Ð”Ð»Ñ Ð¿ÐµÑ€ÐµÐ²Ñ–Ñ€ÐºÐ¸ залежноÑтей Ð´Ð»Ñ Ð¿Ð¾Ð±ÑƒÐ´Ð¾Ð²Ð¸ необхідно вказати Ñк мінімум один " "пакунок" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -469,17 +470,17 @@ msgstr "" "ВідÑÑƒÑ‚Ð½Ñ Ñ–Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–Ñ Ð¿Ñ€Ð¾ архітектуру Ð´Ð»Ñ %s. ДивиÑÑŒ apt.conf(5) APT::" "Ðрхітектури Ð´Ð»Ñ Ð½Ð°Ð»Ð°Ñ‰Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Ðеможливо одержати інформацію про залежноÑті Ð´Ð»Ñ Ð¿Ð¾Ð±ÑƒÐ´Ð¾Ð²Ð¸ %s" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s не має залежноÑтей Ð´Ð»Ñ Ð¿Ð¾Ð±ÑƒÐ´Ð¾Ð²Ð¸.\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -488,7 +489,7 @@ msgstr "" "ЗалежніÑть типу %s Ð´Ð»Ñ %s не може бути задоволена, бо %s не Ñ” дозволеним на " "'%s' пакунках" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -496,14 +497,14 @@ msgid "" msgstr "" "ЗалежніÑть типу %s Ð´Ð»Ñ %s не може бути задоволена, бо пакунок %s не знайдено" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Ðе вдалоÑÑ Ð·Ð°Ð´Ð¾Ð²Ð¾Ð»ÑŒÐ½Ð¸Ñ‚Ð¸ залежніÑть типу %s Ð´Ð»Ñ %s: Ð’Ñтановлений пакунок %s " "новіше, аніж треба" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -512,7 +513,7 @@ msgstr "" "ЗалежніÑть типу %s Ð´Ð»Ñ %s не може бути задоволена, бо верÑÑ–Ñ Ð¿Ð°ÐºÑƒÐ½ÐºÑƒ-" "кандидата %s не задовольнÑÑ” умови по верÑÑ–Ñм" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -521,30 +522,30 @@ msgstr "" "ЗалежніÑть типу %s Ð´Ð»Ñ %s не може бути задоволена, бо немає пакунку-" "кандидата %s потрібної верÑÑ–Ñ—" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Ðеможливо задовольнити залежніÑть типу %s Ð´Ð»Ñ Ð¿Ð°ÐºÑƒÐ½ÐºÐ° %s: %s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "ЗалежноÑті Ð´Ð»Ñ Ð¿Ð¾Ð±ÑƒÐ´Ð¾Ð²Ð¸ %s не можуть бути задоволені." -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "Обробка залежноÑтей Ð´Ð»Ñ Ð¿Ð¾Ð±ÑƒÐ´Ð¾Ð²Ð¸ закінчилаÑÑ Ð½ÐµÐ²Ð´Ð°Ð»Ð¾" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, c-format msgid "Changelog for %s (%s)" msgstr "Журнал змін Ð´Ð»Ñ %s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "Підтримувані модулі:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -636,53 +637,77 @@ msgstr "" "міÑÑ‚Ñть більше інформації Ñ– опцій.\n" " Цей APT має Супер-Коров'Ñчу Силу.\n" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "" +"Вкажіть Ñк мінімум один пакунок, Ð´Ð»Ñ Ñкого необхідно завантажити вихідні " +"текÑти" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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" -#: cmdline/apt-mark.cc:63 +#: cmdline/apt-mark.cc:74 #, c-format msgid "%s was already set to manually installed.\n" msgstr "%s вже був позначений, Ñк вÑтановлений вручну.\n" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, c-format msgid "%s was already set to automatically installed.\n" msgstr "%s вже був позначений, Ñк автоматично вÑтановлений.\n" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, c-format msgid "%s was already set on hold.\n" msgstr "%s вже був зафікÑований.\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, c-format msgid "%s was already not hold.\n" msgstr "%s вже був незафікÑований.\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Очікував на %s, але його там не було" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format msgid "%s set on hold.\n" msgstr "%s зафікÑовано.\n" -#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format msgid "Canceled hold on %s.\n" msgstr "ФікÑацію Ð´Ð»Ñ %s відмінено.\n" -#: cmdline/apt-mark.cc:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "Ðе вдалоÑÑ Ð²Ð¸ÐºÐ¾Ð½Ð°Ñ‚Ð¸ dpkg. Ви root?" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 #, fuzzy msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" @@ -729,7 +754,7 @@ msgstr "" " -o=? Ð’Ñтановити умовну опцію конфігурації, наприклад, -o dir::cache=/tmp\n" "Ð”Ð»Ñ Ð´Ð¾ÐºÐ»Ð°Ð´Ð½Ð¾Ñ— інформації дивітьÑÑ ÐºÐµÑ€Ñ–Ð²Ð½Ð¸Ñ†Ñ‚Ð²Ð° Ð´Ð»Ñ apt-mark(8) Ñ– apt.conf(5)." -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -778,53 +803,53 @@ msgstr "" msgid "Disk not found." msgstr "ДиÑк не знайдено." -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "Файл не знайдено" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: 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:82 methods/gzip.cc:113 methods/rred.cc:606 +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 msgid "Failed to set modification time" msgstr "Ðе вдалоÑÑ Ð²Ñтановити Ñ‡Ð°Ñ Ð¼Ð¾Ð´Ð¸Ñ„Ñ–ÐºÐ°Ñ†Ñ–Ñ—" -#: methods/file.cc:47 +#: 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:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "ЛогінюÑÑŒ в" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "Ðеможливо визначити назву вузла" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "Ðеможливо визначити локальну назву" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format msgid "The server refused the connection and said: %s" msgstr "Сервер розірвав з'єднаннÑ, відповівши: %s" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "USER невдало, Ñервер мовив: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS невдало, Ñервер мовив: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -832,121 +857,123 @@ msgstr "" "Вказано прокÑÑ–-Ñервер, але відÑутній Ñкрипт логіну, Acquire::ftp::ProxyLogin " "пуÑтий." -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Команда '%s' у Ñкрипті логіна не вдалаÑÑ, Ñервер мовив: %s" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE невдало, Ñервер мовив: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 msgid "Connection timeout" msgstr "Ð§Ð°Ñ Ð·'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð²Ð¸Ñ‡ÐµÑ€Ð¿Ð°Ð²ÑÑ" -#: methods/ftp.cc:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "Сервер закрив з'єднаннÑ" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "Помилка зчитуваннÑ" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "Відповідь переповнила буфер." -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "Спотворений протокол" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "Помилка запиÑу" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 msgid "Could not create a socket" msgstr "Ðеможливо Ñтворити Ñокет (socket)" -#: methods/ftp.cc:707 +#: methods/ftp.cc:712 msgid "Could not connect data socket, connection timed out" msgstr "Ðеможливо під'єднати Ñокет (socket) з даними, Ñ‡Ð°Ñ Ð·'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð²Ð¸Ñ‡ÐµÑ€Ð¿Ð°Ð²ÑÑ" -#: methods/ftp.cc:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "Ðевдача" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "Ðеможливо під'єднати паÑивний Ñокет (passive socket)." -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "Виклик getaddrinfo не зміг отримати Ñлухаючий Ñокет" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "Ðеможливо приєднатиÑÑ Ð´Ð¾ Ñокета" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "Ðеможливо проÑлухати на Ñокеті" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "Ðе вдалоÑÑ Ð²Ð¸Ð·Ð½Ð°Ñ‡Ð¸Ñ‚Ð¸ назву Ñокета" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "Ðеможливо відіÑлати команду PORT" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Ðевідоме адреÑове ÑімейÑтво %u (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT невдало, Ñервер мовив: %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "Ð§Ð°Ñ Ð·'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð· Ñокетом даних вичерпавÑÑ" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "Ðеможливо прийнÑти з'єднаннÑ" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "Проблема Ñ…ÐµÑˆÑƒÐ²Ð°Ð½Ð½Ñ Ñ„Ð°Ð¹Ð»Ð°" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Ðеможливо завантажити файл, Ñервер мовив: '%s'" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "Ð§Ð°Ñ Ð·'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð· Ñокетом (socket) з даними вичерпавÑÑ" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Передача даних обірвалаÑÑ, Ñервер мовив '%s'" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "Черга" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "Ðеможливо викликати " @@ -982,7 +1009,7 @@ msgstr "Ðеможливо під'єднатиÑÑ Ð´Ð¾ %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "З'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð· %s" @@ -1012,38 +1039,38 @@ msgstr "СталоÑÑ Ñ‰Ð¾ÑÑŒ дивне при Ñпробі отримати msgid "Unable to connect to %s:%s:" msgstr "Ðеможливо під'єднатиÑÑ Ð´Ð¾ %s:%s:" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Ð’Ð½ÑƒÑ‚Ñ€Ñ–ÑˆÐ½Ñ Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ°: Вірний Ð¿Ñ–Ð´Ð¿Ð¸Ñ (signature), але не можливо визначити його " "відбиток?!" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "Знайдено Ñк мінімум один невірний підпиÑ." -#: methods/gpgv.cc:172 +#: 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:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "Ðевідома помилка Ð²Ð¸ÐºÐ¾Ð½Ð°Ð½Ð½Ñ gpgv" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "ÐаÑтупні підпиÑи були невірними:\n" -#: methods/gpgv.cc:229 +#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@ -1051,117 +1078,117 @@ msgstr "" "ÐаÑтупні підпиÑи не можуть бути перевірені, тому що публічний ключ " "відÑутній:\n" -#: methods/gzip.cc:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "ПуÑті файли не можуть бути правильними архівами" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "Помилка запиÑу у файл" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "Помилка Ð·Ñ‡Ð¸Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð· Ñервера. Віддалена Ñторона закрила з'єднаннÑ" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "Помилка Ð·Ñ‡Ð¸Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð· Ñервера" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "Помилка запиÑу у файл" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "Вибір проваливÑÑ" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "Ð§Ð°Ñ Ð¾Ñ‡Ñ–ÐºÑƒÐ²Ð°Ð½Ð½Ñ Ð·'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð²Ð¸Ð¹ÑˆÐ¾Ð²" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "Помилка запиÑу у вихідний файл" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "ÐžÑ‡Ñ–ÐºÑƒÐ²Ð°Ð½Ð½Ñ Ð½Ð° заголовки" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "Ðевірний Ñ€Ñдок заголовку" -#: methods/server.cc:139 methods/server.cc:146 +#: methods/server.cc:134 methods/server.cc:141 msgid "The HTTP server sent an invalid reply header" msgstr "HTTP Ñервер відіÑлав невірний заголовок 'reply'" -#: methods/server.cc:176 +#: methods/server.cc:171 msgid "The HTTP server sent an invalid Content-Length header" msgstr "HTTP Ñервер відіÑлав невірний заголовок 'Content-Length'" -#: methods/server.cc:199 +#: methods/server.cc:194 msgid "The HTTP server sent an invalid Content-Range header" msgstr "HTTP Ñервер відіÑлав невірний заголовок 'Content-Range'" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "Цей HTTP Ñервер має поламану підтримку 'range'" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "Ðевідомий формат дати" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "Погана заголовкова інформаціÑ" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "З'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð½Ðµ вдалоÑÑ" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "Ð’Ð½ÑƒÑ‚Ñ€Ñ–ÑˆÐ½Ñ Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ°" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" "Ð’Ð½ÑƒÑ‚Ñ€Ñ–ÑˆÐ½Ñ Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ°, InstallPackages була викликана з непрацездатними " "пакунками!" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "Ðеобхідно видалити пакунки, але Ð²Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ Ð·Ð°Ð±Ð¾Ñ€Ð¾Ð½ÐµÐ½Ðµ." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "Ð’Ð½ÑƒÑ‚Ñ€Ñ–ÑˆÐ½Ñ Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ°, Ordering не завершилаÑÑ" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" -msgstr "Дивно.. РозбіжніÑть розмірів, напишіть на apt@packages.debian.org" +#: apt-private/private-install.cc:147 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "Дивно... РозбіжніÑть розмірів, напишіть на apt@packages.debian.org" #. TRANSLATOR: The required 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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Ðеобхідно завантажити %sB/%sB архівів.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:171 +#: apt-private/private-install.cc:159 #, 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:178 +#: apt-private/private-install.cc:166 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" @@ -1169,33 +1196,33 @@ 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:183 +#: apt-private/private-install.cc:171 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "" "ПіÑÐ»Ñ Ñ†Ñ–Ñ”Ñ— операції об'єм зайнÑтого диÑкового проÑтору зменшитьÑÑ Ð½Ð° %sB.\n" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "ÐедоÑтатньо вільного міÑÑ†Ñ Ð² %s." -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "ВиÑвлено проблеми, а Ð¾Ð¿Ñ†Ñ–Ñ -y була викориÑтана без --force-yes" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Так, робити, Ñк Ñ Ñкажу!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1206,19 +1233,19 @@ msgstr "" "Щоб продовжити, введіть фразу: '%s'\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "Перервано." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "Бажаєте продовжити?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "ДеÑкі файли не вдалоÑÑ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶Ð¸Ñ‚Ð¸" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1226,19 +1253,19 @@ msgstr "" "Ðеможливо завантажити деÑкі архіви, імовірно треба виконати apt-get update " "або Ñпробувати повторити запуÑк з ключем --fix-missing?" -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing Ñ– зміна ноÑÑ–Ñ Ð² даний момент не підтримуєтьÑÑ" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "Ðеможливо виправити втрачені пакунки." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "ПерериваєтьÑÑ Ð²ÑтановленнÑ." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1255,15 +1282,15 @@ msgstr[2] "" "Вказані пакунки зникли з вашої ÑиÑтеми, так Ñк\n" "уÑÑ– файли були перезапиÑані іншими пакунками:" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Увага: це зроблено автоматично Ñ– умиÑно dpkg'ем." -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Ðам не дозволено видалÑти, неможливо запуÑтити AutoRemover" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1281,15 +1308,15 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 msgid "The following information may help to resolve the situation:" msgstr "ÐаÑтупна Ñ–Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–Ñ Ð¼Ð¾Ð¶Ð»Ð¸Ð²Ð¾ допоможе Вам виправити Ñитуацію:" -#: apt-private/private-install.cc:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "Ð’Ð½ÑƒÑ‚Ñ€Ñ–ÑˆÐ½Ñ ÐŸÐ¾Ð¼Ð¸Ð»ÐºÐ°, AutoRemover щоÑÑŒ поламав" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1300,7 +1327,7 @@ msgstr[0] "" msgstr[1] "ÐаÑтупні пакунки були вÑтановлені автоматично Ñ– більше не потрібні:" msgstr[2] "ÐаÑтупні пакунки були вÑтановлені автоматично Ñ– більше не потрібні:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1311,20 +1338,20 @@ msgstr[1] "" msgstr[2] "" "%lu пакунків було вÑтановлено автоматично Ñ– вони більше не потрібні.\n" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "ВикориÑтовуйте 'apt-get autoremove' щоб видалити його." msgstr[1] "ВикориÑтовуйте 'apt-get autoremove' щоб видалити Ñ—Ñ…." msgstr[2] "ВикориÑтовуйте 'apt-get autoremove' щоб видалити Ñ—Ñ…." -#: apt-private/private-install.cc:624 +#: 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:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1332,7 +1359,7 @@ msgstr "" "Ðезадоволені залежноÑті. Спробуйте виконати 'apt-get -f install', не " "вказуючи назв пакунків (або вкажіть рішеннÑ)." -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1343,145 +1370,145 @@ msgstr "" "або ж викориÑтовуєте неÑтабільний диÑтрибутив, Ñ– запитані Вами пакунки\n" "ще не Ñтворені або були вилучені з Incoming." -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "Зламані пакунки" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "Будуть вÑтановлені наÑтупні додаткові пакунки:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "Пропоновані пакунки:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "Рекомендовані пакунки:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "УВÐГÐ: ÐаÑтупні пакунки неможливо автентифікувати!" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "Ðвтентифікаційне Ð¿Ð¾Ð¿ÐµÑ€ÐµÐ´Ð¶ÐµÐ½Ð½Ñ Ð½Ðµ прийнÑто до уваги.\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "ДеÑкі пакунки неможливо автентифікувати" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "Ð’Ñтановити ці пакунки без перевірки?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Ðе вдалоÑÑ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶Ð¸Ñ‚Ð¸ %s %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [Ð’Ñтановлено]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [Ð’Ñтановлено]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [Ð’Ñтановлено]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [Ð’Ñтановлено]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "Пакунки, що мають незадоволені залежноÑті:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "але %s вже вÑтановлений" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "але %s буде вÑтановлений" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "але він не може бути вÑтановлений" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "але це віртуальний пакунок" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "але він не вÑтановлений" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "але він не буде вÑтановлений" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " чи" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "ÐОВІ пакунки, Ñкі будуть вÑтановлені:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "Пакунки, Ñкі будуть ВИДÐЛЕÐІ:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "Пакунки, Ñкі залишені в незмінному Ñтані:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "Пакунки, Ñкі будуть ОÐОВЛЕÐІ:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "Пакунки, Ñкі будуть замінені на СТÐРІШІ верÑÑ–Ñ—:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "Пакунки, Ñкі мали б залишитиÑÑ Ð±ÐµÐ· змін, але будуть замінені:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (внаÑлідок %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1489,27 +1516,27 @@ msgstr "" "УВÐГÐ: ÐаÑтупні важливі пакунки будуть вилучені.\n" "ÐЕ РОБІТЬ цього, Ñкщо ви ÐЕ уÑвлÑєте Ñобі вÑÑ– можливі наÑлідки!" -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "оновлено %lu, вÑтановлено %lu нових, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu перевÑтановлено, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu замінено на Ñтаріші верÑÑ–Ñ—, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu відмічено Ð´Ð»Ñ Ð²Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ Ñ– %lu не оновлено.\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "не вÑтановлено(видалено) до ÐºÑ–Ð½Ñ†Ñ %lu пакунків.\n" @@ -1518,7 +1545,7 @@ msgstr "не вÑтановлено(видалено) до ÐºÑ–Ð½Ñ†Ñ %lu пак #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "" @@ -1526,93 +1553,93 @@ msgstr "" #. 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:702 +#: apt-private/private-output.cc:708 msgid "[y/N]" msgstr "" #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "Помилка компілÑції регулÑрного виразу - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "Ð’Ð¸Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð½Ñ Ð·Ð°Ð»ÐµÐ¶Ð½Ð¾Ñтей..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " невдача." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "Ðеможливо Ñкоригувати залежноÑті" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "Ðеможливо мінімізувати набір оновлень" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " Виконано" -#: apt-private/private-cachefile.cc:102 +#: 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:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "Ðезадоволені залежноÑті. Спробуйте викориÑтати -f." -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "Команді update не потрібні аргументи" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "ОбчиÑÐ»ÐµÐ½Ð½Ñ Ð¾Ð½Ð¾Ð²Ð»ÐµÐ½ÑŒ... " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "Ð’Ð½ÑƒÑ‚Ñ€Ñ–ÑˆÐ½Ñ Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ°, AllUpgrade щоÑÑŒ поламав" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "Виконано" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1624,43 +1651,43 @@ msgstr "" " Також не забувайте, що Ð±Ð»Ð¾ÐºÑƒÐ²Ð°Ð½Ð½Ñ Ð²Ð¸Ð¼Ð¸ÐºÐ°Ñ”Ñ‚ÑŒÑÑ,\n" " тому не очікуйте на відповідніÑть поточній реальній Ñитуації!" -#: apt-private/private-sources.cc:45 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format msgid "Failed to parse %s. Edit again? " msgstr "Ðе вдалоÑÑ Ð¿ÐµÑ€ÐµÐ¹Ð¼ÐµÐ½ÑƒÐ²Ð°Ñ‚Ð¸ %s на %s" -#: apt-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "Ð’ кеші " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "Отр:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "Ігн " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Пом " -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "Отримано %sB за %sB (%sB/s)\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [Йде робота]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1673,19 +1700,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "Ðеможливо прочитати %s" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "Ðеможливо змінити на %s" @@ -1714,11 +1741,11 @@ msgstr "Ðеможливо прочитати файл дзеркала '%s'" msgid "[Mirror: %s]" msgstr "[Дзеркало: %s]" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 msgid "Failed to create IPC pipe to subprocess" msgstr "Ðе вдалоÑÑ Ñтворити IPC канал Ð´Ð»Ñ Ð¿Ñ–Ð´Ð¿Ñ€Ð¾Ñ†ÐµÑу" -#: methods/rsh.cc:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "З'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð¾ передчаÑно" @@ -1785,42 +1812,47 @@ msgstr "" " -c=? Читати зазначений конфігураційний файл\n" " -o=? Вказати довільну опцію, наприклад, -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Ðеможливо прочитати атрибути %s" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "Ðеможливо запиÑати в %s" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Ðеможливо визначити верÑÑ–ÑŽ debconf. Він вÑтановлений?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "СпиÑок розширень, припуÑтимих Ð´Ð»Ñ Ð¿Ð°ÐºÑƒÐ½ÐºÑ–Ð², занадто довгий" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "Помилка обробки директорії %s" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "" "СпиÑок розширень, припуÑтимих Ð´Ð»Ñ Ð¿Ð°ÐºÑƒÐ½ÐºÑ–Ð² з вихідними текÑтами, занадто " "довгий" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "Помилка запиÑу заголовка в повний перелік вміÑту пакунків (Contents)" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "Помилка обробки повного переліку вміÑту пакунків (Contents) %s" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1908,26 +1940,26 @@ msgstr "" " -c=? ВикориÑтати зазначений конфігураційний файл\n" " -o=? Вказати довільний параметр конфігурації" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "Збігів не виÑвлено" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "У групі пакунків '%s' відÑутні деÑкі файли" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "БД була пошкоджена, файл перейменований на %s.old" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "БД заÑтаріла, намагаюÑÑŒ оновити %s" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -1935,192 +1967,192 @@ msgstr "" "Ðевірний формат БД. Якщо ви оновилиÑÑ Ð·Ñ– Ñтарої верÑÑ–Ñ— apt, будь-лаÑка " "видаліть Ñ– наново Ñтворіть базу-даних." -#: ftparchive/cachedb.cc:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Ðе вдалоÑÑ Ð²Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ð¸ файл БД %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "Ðе вдалоÑÑ Ð¾Ð´ÐµÑ€Ð¶Ð°Ñ‚Ð¸ атрибути %s" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "Ð’ архіві немає запиÑу 'control'" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "Ðеможливо одержати курÑор" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "У: Ðе вдалоÑÑ Ð¿Ñ€Ð¾Ñ‡Ð¸Ñ‚Ð°Ñ‚Ð¸ директорію %s\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "У: Ðеможливо прочитати атрибути %s\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "П: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "У: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "П: Помилки відноÑÑтьÑÑ Ð´Ð¾ файлу " -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "Ðе вдалоÑÑ Ð²Ð¸Ð·Ð½Ð°Ñ‡Ð¸Ñ‚Ð¸ %s" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "Ðе вдалоÑÑ Ð·Ñ€Ð¾Ð±Ð¸Ñ‚Ð¸ обхід дерева" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "Ðе вдалоÑÑ Ð²Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ð¸ %s" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr "DeLink %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "Ðе вдалоÑÑ Ð¿Ñ€Ð¾Ñ‡Ð¸Ñ‚Ð°Ñ‚Ð¸ поÑÐ¸Ð»Ð°Ð½Ð½Ñ (readlink) %s" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "Ðе вдалоÑÑ Ð²Ð¸Ð´Ð°Ð»Ð¸Ñ‚Ð¸ поÑÐ¸Ð»Ð°Ð½Ð½Ñ (unlink) %s" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Ðе вдалоÑÑ Ñтворити поÑÐ¸Ð»Ð°Ð½Ð½Ñ %s на %s" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Перевищено ліміт в %sB в DeLink.\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "Ðрхів не мав Ð¿Ð¾Ð»Ñ 'package'" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, fuzzy, c-format msgid " %s has no override entry\n" msgstr " ВідÑутній Ð·Ð°Ð¿Ð¸Ñ Ð¿Ñ€Ð¾ Ð¿ÐµÑ€ÐµÐ¿Ñ€Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ (override) Ð´Ð»Ñ %s\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " пакунок %s ÑупроводжуєтьÑÑ %s, а не %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, fuzzy, c-format msgid " %s has no source override entry\n" msgstr " ВідÑутній Ð·Ð°Ð¿Ð¸Ñ Ð¿Ñ€Ð¾ Ð¿ÐµÑ€ÐµÐ¿Ñ€Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð²Ð¸Ñ…Ñ–Ð´Ð½Ð¸Ñ… текÑтів Ð´Ð»Ñ %s\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, fuzzy, c-format msgid " %s has no binary override entry either\n" msgstr " Крім того, відÑутній Ð·Ð°Ð¿Ð¸Ñ Ð¿Ñ€Ð¾ бінарне Ð¿ÐµÑ€ÐµÐ¿Ñ€Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð´Ð»Ñ %s\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - Ðе вдалоÑÑ Ð²Ð¸Ð´Ñ–Ð»Ð¸Ñ‚Ð¸ пам'Ñть" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "Ðе вдалоÑÑ Ð²Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ð¸ %s" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "Спотворений Ð·Ð°Ð¿Ð¸Ñ Ð¿Ñ€Ð¾ Ð¿ÐµÑ€ÐµÐ¿Ñ€Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ (override) %s на Ñ€Ñдку %llu #1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "Ðе вдалоÑÑ Ð¿Ñ€Ð¾Ñ‡Ð¸Ñ‚Ð°Ñ‚Ð¸ файл перепризначень (override) %s" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, fuzzy, c-format msgid "Malformed override %s line %llu #1" msgstr "Спотворений Ð·Ð°Ð¿Ð¸Ñ Ð¿Ñ€Ð¾ Ð¿ÐµÑ€ÐµÐ¿Ñ€Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ (override) %s на Ñ€Ñдку %llu #1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, fuzzy, c-format msgid "Malformed override %s line %llu #2" msgstr "Спотворений Ð·Ð°Ð¿Ð¸Ñ Ð¿Ñ€Ð¾ Ð¿ÐµÑ€ÐµÐ¿Ñ€Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ (override) %s на Ñ€Ñдку %llu #2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, fuzzy, c-format msgid "Malformed override %s line %llu #3" msgstr "Спотворений Ð·Ð°Ð¿Ð¸Ñ Ð¿Ñ€Ð¾ Ð¿ÐµÑ€ÐµÐ¿Ñ€Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ (override) %s на Ñ€Ñдку %llu #3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "Ðевідомий алгоритм ÑтиÑÐ½ÐµÐ½Ð½Ñ '%s'" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "Ð”Ð»Ñ Ð¾Ñ‚Ñ€Ð¸Ð¼Ð°Ð½Ð½Ñ ÑтиÑнутого виводу %s необхідно ввімкнути ÑтиÑненнÑ" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "Ðе вдалоÑÑ Ñтворити FILE*" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "Ðе вдалоÑÑ Ð¿Ð¾Ñ€Ð¾Ð´Ð¸Ñ‚Ð¸ Ð¿Ñ€Ð¾Ñ†ÐµÑ (fork)" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "ПроцеÑ-нащадок, що виконує пакуваннÑ" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "Ð’Ð½ÑƒÑ‚Ñ€Ñ–ÑˆÐ½Ñ Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ°, не вдалоÑÑ Ñтворити %s" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "Помилка уведеннÑ/виводу в підпроцеÑ/файл" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "Помилка Ð·Ñ‡Ð¸Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ñ–Ð´ Ñ‡Ð°Ñ Ð¾Ð±Ñ‡Ð¸ÑÐ»ÐµÐ½Ð½Ñ MD5" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "Ðе вдалоÑÑ Ð²Ð¸Ð´Ð°Ð»Ð¸Ñ‚Ð¸ %s" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "Ðе вдалоÑÑ Ð¿ÐµÑ€ÐµÐ¹Ð¼ÐµÐ½ÑƒÐ²Ð°Ñ‚Ð¸ %s на %s" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -2175,161 +2207,161 @@ msgstr "" " -c=? читати зазначений файл конфігурації\n" " -o=? вÑтановити довільну опцію, наприклад, -o dir::cache=/tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "Ðе вдалоÑÑ Ñтворити канали (pipes)" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "Ðе вдалоÑÑ Ð²Ð¸ÐºÐ¾Ð½Ð°Ñ‚Ð¸ gzip " -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "Пошкоджений архів" -#: apt-inst/contrib/extracttar.cc:201 +#: apt-inst/contrib/extracttar.cc:203 msgid "Tar checksum failed, archive corrupted" msgstr "Контрольна Ñума tar архіва невірна, архів пошкоджений" -#: apt-inst/contrib/extracttar.cc:306 +#: apt-inst/contrib/extracttar.cc:308 #, c-format msgid "Unknown TAR header type %u, member %s" msgstr "Ðевідомий тип заголовку TAR - %u, член %s" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "Ðевірний Ð¿Ñ–Ð´Ð¿Ð¸Ñ Ð°Ñ€Ñ…Ñ–Ð²Ñƒ" -#: apt-inst/contrib/arfile.cc:82 +#: apt-inst/contrib/arfile.cc:84 msgid "Error reading archive member header" msgstr "Ðеможливо прочитати заголовок 'member' в архіві" -#: apt-inst/contrib/arfile.cc:94 +#: apt-inst/contrib/arfile.cc:96 #, fuzzy, c-format msgid "Invalid archive member header %s" msgstr "Ðевірний заголовок 'member' %s в архіві" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 #, fuzzy msgid "Invalid archive member header" msgstr "Ðевірний заголовок 'member' в архіві" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "Ðрхів занадто малий" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "Ðе вдалоÑÑ Ð¿Ñ€Ð¾Ñ‡Ð¸Ñ‚Ð°Ñ‚Ð¸ заголовки в архіві" -#: apt-inst/filelist.cc:382 +#: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" msgstr "DropNode було викликано Ð´Ð»Ñ Ð²ÑƒÐ·Ð»Ð°, що ще викориÑтовувавÑÑ" -#: apt-inst/filelist.cc:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "Ðе вдалоÑÑ Ð·Ð½Ð°Ð¹Ñ‚Ð¸ елемент хеша!" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 #, fuzzy msgid "Failed to allocate diversion" msgstr "Ðе вдалоÑÑ Ñтворити diversion" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "Ð’Ð½ÑƒÑ‚Ñ€Ñ–ÑˆÐ½Ñ Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ° в AddDiversion" -#: apt-inst/filelist.cc:479 +#: 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" -#: apt-inst/filelist.cc:508 +#: apt-inst/filelist.cc:506 #, fuzzy, c-format msgid "Double add of diversion %s -> %s" msgstr "Подвійне Ð´Ð¾Ð´Ð°Ð²Ð°Ð½Ð½Ñ diversion %s -> %s" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "ÐšÐ¾Ð¿Ñ–Ñ ÐºÐ¾Ð½Ñ„Ñ–Ð³ÑƒÑ€Ð°Ñ†Ñ–Ð¹Ð½Ð¾Ð³Ð¾ файлу %s/%s" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: 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:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "Ðе вдалоÑÑ Ð·Ð°ÐºÑ€Ð¸Ñ‚Ð¸ файл %s" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: 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:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "Ð Ð¾Ð·Ð¿Ð°ÐºÑƒÐ²Ð°Ð½Ð½Ñ %s більш ніж один раз" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, fuzzy, c-format msgid "The directory %s is diverted" msgstr "Ð”Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ñ–Ñ %s Ñ” відхиленою (diverted)" -#: apt-inst/extract.cc:145 +#: apt-inst/extract.cc:152 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "Пакунок пробує запиÑати у ціль з diversion %s/%s" -#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 #, fuzzy msgid "The diversion path is too long" msgstr "ШлÑÑ… 'diversion' Ñ” занадто довгим" -#: apt-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "Ð”Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ñ–Ñ %s замінюєтьÑÑ Ð½Ðµ директорією" -#: apt-inst/extract.cc:282 +#: apt-inst/extract.cc:289 #, fuzzy msgid "Failed to locate node in its hash bucket" msgstr "Ðе вдалоÑÑ Ð·Ð½Ð°Ð¹Ñ‚Ð¸ вузол у його наборі хешів" -#: apt-inst/extract.cc:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "ШлÑÑ… занадто довгий" -#: apt-inst/extract.cc:414 +#: apt-inst/extract.cc:421 #, c-format msgid "Overwrite package match with no version for %s" msgstr "ПерезапиÑати відповідніÑть пакунка без верÑÑ–Ñ— Ð´Ð»Ñ %s" -#: apt-inst/extract.cc:431 +#: 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:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "Ðеможливо прочитати атрибути %s" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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:124 +#: apt-inst/deb/debfile.cc:132 #, c-format msgid "Internal error, could not locate member %s" msgstr "Ð’Ð½ÑƒÑ‚Ñ€Ñ–ÑˆÐ½Ñ Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ°, не можу знайти Ñкладову чаÑтину %s" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "Контрольний файл не можливо обробити" @@ -2389,493 +2421,498 @@ msgstr "" "кориÑтувачем." #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "%liд %liг %liхв %liÑ" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "%liг %liхв %liÑ" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "%liхв %liÑ" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "%liÑ" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "Вибір %s не знайдено" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Ðерозпізнаваний тип абревіатури: '%c'" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "ВідкриваєтьÑÑ ÐºÐ¾Ð½Ñ„Ñ–Ð³ÑƒÑ€Ð°Ñ†Ñ–Ð¹Ð½Ð¸Ð¹ файл %s" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "СинтакÑична помилка %s:%u: Блок починаєтьÑÑ Ð±ÐµÐ· назви." -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "СинтакÑична помилка %s:%u: Ñпотворений тег" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "СинтакÑична помилка %s:%u: зайві Ñимволи піÑÐ»Ñ Ð²ÐµÐ»Ð¸Ñ‡Ð¸Ð½Ð¸" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "СинтакÑична помилка %s:%u: Директиви можуть бути виконані тільки на " "найвищому рівні" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "СинтакÑична помилка %s:%u: Забагато вмонтованих (nested) включень" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "СинтакÑична помилка %s:%u: Включено звідÑи" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "СинтакÑична помилка %s:%u: Директива '%s' не підтримуєтьÑÑ" -#: apt-pkg/contrib/configuration.cc:884 +#: 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-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "СинтакÑична помилка %s:%u: Зайве ÑÐ¼Ñ–Ñ‚Ñ‚Ñ Ð² кінці файла" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... Помилка!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... Виконано" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s... Виконано" -#: apt-pkg/contrib/cmndline.cc:116 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format msgid "Command line option '%c' [from %s] is not known." msgstr "Ðевідомий параметр командного Ñ€Ñдка '%c' [з %s]." -#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format msgid "Command line option %s is not boolean" msgstr "Параметр %s командного Ñ€Ñдка не Ñ” логічного типу 'boolean'" -#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "Параметр %s потребує аргумента." -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "" "ÐžÐ¿Ñ†Ñ–Ñ %s: Ð¡Ð¿ÐµÑ†Ð¸Ñ„Ñ–ÐºÐ°Ñ†Ñ–Ñ Ð²Ð¸Ð¼Ð°Ð³Ð°Ñ”, щоб Ñ€Ñдки у конфігурації мали вираз =<val>." -#: apt-pkg/contrib/cmndline.cc:273 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format msgid "Option %s requires an integer argument, not '%s'" msgstr "Параметр %s потребує цілочиÑлений аргумент, але не '%s'" -#: apt-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "Параметр '%s' Ñ” занадто довгим" -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "Ðезрозумілий вираз %s, Ñпробуйте true чи false." -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "Ðевірна Ð´Ñ–Ñ %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format msgid "Unable to stat the mount point %s" msgstr "Ðеможливо прочитати атрибути точки Ð¼Ð¾Ð½Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ %s" -#: apt-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "Ðе вдалоÑÑ Ð¿Ñ€Ð¾Ñ‡Ð¸Ñ‚Ð°Ñ‚Ð¸ атрибути cdrom" -#: apt-pkg/contrib/fileutl.cc:95 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Проблема з закриттÑм gzip файла %s" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "" "Ð‘Ð»Ð¾ÐºÑƒÐ²Ð°Ð½Ð½Ñ Ð½Ðµ викориÑтовуєтьÑÑ, так Ñк файл Ð±Ð»Ð¾ÐºÑƒÐ²Ð°Ð½Ð½Ñ %s доÑтупний тільки " "Ð´Ð»Ñ Ð·Ñ‡Ð¸Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "Ðеможливо відкрити 'lock' файл %s" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "" "Ð‘Ð»Ð¾ÐºÑƒÐ²Ð°Ð½Ð½Ñ Ð½Ðµ викориÑтовуєтьÑÑ, так Ñк файл Ð±Ð»Ð¾ÐºÑƒÐ²Ð°Ð½Ð½Ñ %s знаходитьÑÑ Ð½Ð° " "файловій ÑиÑтемі nfs" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "Ðеможливо отримати замок %s" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "Ðеможливо Ñтворити перелік файлів, так Ñк '%s' не Ñ” директорією" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "ІгноруєтьÑÑ '%s' у директорії '%s', так Ñк не Ñ” звичайним файлом" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "ІгноруєтьÑÑ Ñ„Ð°Ð¹Ð» '%s' у директорії '%s', так Ñк він не має розширеннÑ" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" "ІгноруєтьÑÑ Ñ„Ð°Ð¹Ð» '%s' у директорії '%s', так Ñк він має невірне розширеннÑ" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "ÐŸÑ–Ð´Ð¿Ñ€Ð¾Ñ†ÐµÑ %s отримав 'segmentation fault' (фатальна помилка)." -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, c-format msgid "Sub-process %s received signal %u." msgstr "ÐŸÑ–Ð´Ð¿Ñ€Ð¾Ñ†ÐµÑ %s отримав Ñигнал %u." -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 apt-pkg/contrib/gpgv.cc:239 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "ÐŸÑ–Ð´Ð¿Ñ€Ð¾Ñ†ÐµÑ %s повернув код помилки (%u)" -#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "ÐŸÑ–Ð´Ð¿Ñ€Ð¾Ñ†ÐµÑ %s раптово завершивÑÑ" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Проблема з закриттÑм gzip файла %s" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "Ðеможливо відкрити файл %s" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, c-format msgid "Could not open file descriptor %d" msgstr "Ðеможливо відкрити файловий деÑкриптор %d" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "Ðе вдалоÑÑ Ñтворити IPC з породженим процеÑом" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "Ðе вдалоÑÑ Ð²Ð¸ÐºÐ¾Ð½Ð°Ñ‚Ð¸ компреÑор " -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, c-format msgid "read, still have %llu to read but none left" msgstr "зчитуваннÑ, повинен зчитати ще %llu байт, але нічого більше нема" -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, c-format msgid "write, still have %llu to write but couldn't" msgstr "запиÑуваннÑ, повинен був запиÑати ще %llu байт, але не вдалоÑÑ" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, c-format msgid "Problem closing the file %s" msgstr "Проблема з закриттÑм файла %s" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, c-format msgid "Problem renaming the file %s to %s" msgstr "Проблема з перейменуваннÑм файла %s на %s" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, c-format msgid "Problem unlinking the file %s" msgstr "Проблема з роз'єднаннÑм файла %s" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "Проблема з Ñинхронізацією файла" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "не вдалоÑÑ Ð¿ÐµÑ€ÐµÐ¹Ð¼ÐµÐ½ÑƒÐ²Ð°Ñ‚Ð¸, %s (%s -> %s)." + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, c-format msgid "No keyring installed in %s." msgstr "Ðе вÑтановлено 'keyring' у %s." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "Кеш пакунків пуÑтий" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "Файл кешу пакунків пошкоджений" -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "Файл кешу пакунків має неÑуміÑну верÑÑ–ÑŽ" -#: apt-pkg/pkgcache.cc:162 +#: apt-pkg/pkgcache.cc:169 msgid "The package cache file is corrupted, it is too small" msgstr "Файл кешу пакунків пошкоджений, занадто малий" -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "Цей APT не підтримує ÑиÑтему Ð¿Ñ€Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð²ÐµÑ€Ñій '%s'" -#: apt-pkg/pkgcache.cc:172 +#: apt-pkg/pkgcache.cc:179 msgid "The package cache was built for a different architecture" msgstr "Кеш пакунків був побудований Ð´Ð»Ñ Ñ–Ð½ÑˆÐ¾Ñ— архітектури" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "ЗалежноÑті (Depends)" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "Пре-ЗалежноÑті (PreDepends)" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "Пропонує (Suggests)" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "Рекомендує (Recommends)" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "Конфлікти (Conflicts)" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "ЗамінÑÑ” (Replaces)" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "ЗаÑтарілі (Obsoletes)" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "Ламає (Breaks)" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "Покращує (Enhances)" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "важливі (important)" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "необхідні (required)" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "Ñтандартні (standard)" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "необов'Ñзкові (optional)" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "додаткові (extra)" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "Побудова дерева залежноÑтей" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "ВерÑÑ–Ñ— кандидатів" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "ÒÐµÐ½ÐµÑ€Ð°Ñ†Ñ–Ñ Ð·Ð°Ð»ÐµÐ¶Ð½Ð¾Ñтей" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 msgid "Reading state information" msgstr "Ð—Ñ‡Ð¸Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ñ–Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–Ñ— про Ñтан" -#: apt-pkg/depcache.cc:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "Ðе вдалоÑÑ Ð²Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ð¸ StateFile %s" -#: apt-pkg/depcache.cc:250 +#: apt-pkg/depcache.cc:256 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Ðе вдалоÑÑ Ð·Ð°Ð¿Ð¸Ñати до тимчаÑового StateFile файла %s" -#: apt-pkg/tagfile.cc:138 +#: apt-pkg/tagfile.cc:140 #, c-format msgid "Unable to parse package file %s (1)" msgstr "Ðеможливо проаналізувати файл пакунку %s (1)" -#: apt-pkg/tagfile.cc:235 +#: apt-pkg/tagfile.cc:237 #, c-format msgid "Unable to parse package file %s (2)" msgstr "Ðеможливо проаналізувати файл пакунку %s (2)" -#: apt-pkg/sourcelist.cc:118 +#: apt-pkg/sourcelist.cc:127 #, fuzzy, c-format msgid "Malformed stanza %u in source list %s (URI parse)" msgstr "Спотворений Ñ€Ñдок %lu у переліку джерел %s (аналіз URI)" -#: apt-pkg/sourcelist.cc:161 +#: apt-pkg/sourcelist.cc:170 #, c-format msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "Спотворений Ñ€Ñдок %lu у переліку джерел %s (нечитабельний [параметр])" -#: apt-pkg/sourcelist.cc:164 +#: apt-pkg/sourcelist.cc:173 #, c-format msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "" "Спотворений Ñ€Ñдок %lu у переліку джерел %s ([параметр] занадто короткий)" -#: apt-pkg/sourcelist.cc:175 +#: 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-pkg/sourcelist.cc:181 +#: apt-pkg/sourcelist.cc:190 #, c-format msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "Спотворений Ñ€Ñдок %lu у переліку джерел %s ([%s] не має ключа)" -#: apt-pkg/sourcelist.cc:184 +#: 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-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "Спотворений Ñ€Ñдок %lu у переліку джерел %s (проблема з URI)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "Спотворений Ñ€Ñдок %lu у переліку джерел %s (dist)" -#: apt-pkg/sourcelist.cc:202 +#: apt-pkg/sourcelist.cc:211 #, c-format msgid "Malformed line %lu in source list %s (URI parse)" msgstr "Спотворений Ñ€Ñдок %lu у переліку джерел %s (аналіз URI)" -#: apt-pkg/sourcelist.cc:208 +#: apt-pkg/sourcelist.cc:217 #, c-format msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "Спотворений Ñ€Ñдок %lu у переліку джерел %s (absolute dist)" -#: apt-pkg/sourcelist.cc:215 +#: apt-pkg/sourcelist.cc:224 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" msgstr "Спотворений Ñ€Ñдок %lu у переліку джерел %s (dist parse)" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "Ð’Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ñ‚Ñ %s" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "Ð Ñдок %u Ñ” занадто довгим у переліку джерел %s." -#: apt-pkg/sourcelist.cc:362 +#: apt-pkg/sourcelist.cc:371 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Спотворений Ñ€Ñдок %u у переліку джерел %s (тип)" -#: apt-pkg/sourcelist.cc:366 +#: apt-pkg/sourcelist.cc:375 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Ðевідомий тип '%s' на Ñ€Ñдку %u в переліку джерел %s" -#: apt-pkg/sourcelist.cc:407 +#: 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/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2884,12 +2921,12 @@ msgstr "" "Ðеможливо прÑмо налаштувати конфігурацію на '%s'. Будь-лаÑка, дивітьÑÑ man 5 " "apt.conf, нижче APT::Immediate-Configure Ð´Ð»Ñ Ð´ÐµÑ‚Ð°Ð»ÐµÐ¹. (%d)" -#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, c-format msgid "Could not configure '%s'. " msgstr "Ðеможливо налаштувати '%s'." -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2901,19 +2938,19 @@ msgstr "" "погано, але Ñкщо Ви дійÑно бажаєте зробити це, активуйте параметр APT::Force-" "LoopBreak." -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "Тип '%s' індекÑного файлу не підтримуєтьÑÑ" -#: apt-pkg/algorithms.cc:266 +#: 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:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2921,89 +2958,89 @@ msgstr "" "Помилка, pkgProblemResolver::Resolve згенерував зупинку, це може бути " "пов'Ñзано з зафікÑованими пакунками." -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "Ðеможливо уÑунути проблеми, ви маєте поламані зафікÑовані пакунки." -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, c-format msgid "List directory %spartial is missing." msgstr "ВідÑÑƒÑ‚Ð½Ñ Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ñ–Ñ Ð·Ñ– ÑпиÑками: %spartial" -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, c-format msgid "Archives directory %spartial is missing." msgstr "ВідÑÑƒÑ‚Ð½Ñ Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ñ–Ñ Ð´Ð»Ñ Ð°Ñ€Ñ…Ñ–Ð²Ñ–Ð²: %spartial" -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, c-format msgid "Unable to lock directory %s" msgstr "Ðеможливо заблокувати директорію %s" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "ЗавантажуєтьÑÑ Ñ„Ð°Ð¹Ð» %li з %li (залишилоÑÑŒ %s)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "ЗавантажуєтьÑÑ Ñ„Ð°Ð¹Ð» %li з %li" -#: apt-pkg/acquire-worker.cc:113 +#: apt-pkg/acquire-worker.cc:116 #, c-format msgid "The method driver %s could not be found." msgstr "Драйвер Ð´Ð»Ñ Ð¼ÐµÑ‚Ð¾Ð´Ð° %s не знайдено." -#: apt-pkg/acquire-worker.cc:115 +#: apt-pkg/acquire-worker.cc:118 #, fuzzy, c-format msgid "Is the package %s installed?" msgstr "Перевірте, чи вÑтановлений пакунок 'dpkg-dev'.\n" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "Метод %s Ñтартував некоректно" -#: apt-pkg/acquire-worker.cc:452 +#: 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." -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "СиÑтема Ð¿Ð°ÐºÑƒÐ²Ð°Ð½Ð½Ñ '%s' не підтримуєтьÑÑ" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "Ðеможливо визначити тип необхідної ÑиÑтеми пакуваннÑ" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "Ðеможливо прочитати атрибути %s." -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "Додайте деÑкі поÑÐ¸Ð»Ð°Ð½Ð½Ñ (URI) на вихідні текÑти у ваш sources.list" -#: apt-pkg/cachefile.cc:87 +#: apt-pkg/cachefile.cc:94 msgid "The package lists or status file could not be parsed or opened." msgstr "Ðе можу обробити чи відкрити перелік пакунків чи ÑтатуÑний файл." -#: apt-pkg/cachefile.cc:91 +#: 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:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "Ðеможливо прочитати перелік вихідних кодів." -#: apt-pkg/policy.cc:75 +#: apt-pkg/policy.cc:83 #, c-format msgid "" "The value '%s' is invalid for APT::Default-Release as such a release is not " @@ -3012,98 +3049,93 @@ msgstr "" "Ðевірне Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ '%s' Ð´Ð»Ñ APT::Default-Release, так Ñк такий випуÑк не Ñ” " "доÑтупним у вихідних кодах" -#: apt-pkg/policy.cc:414 +#: 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:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "Ðе зрозумів тип %s Ð´Ð»Ñ Ñ„Ñ–ÐºÑатора пакунків (pin)" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "Ðе вÑтановлено пріоритету (або Ñтоїть 0) Ð´Ð»Ñ Ñ„Ñ–ÐºÑатора пакунків (pin)" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 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:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Виникла помилка під Ñ‡Ð°Ñ Ð¾Ð±Ñ€Ð¾Ð±ÐºÐ¸ %s (%s%d)" -#: apt-pkg/pkgcachegen.cc:251 +#: apt-pkg/pkgcachegen.cc:257 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "Ого! Ви перевищили кількіÑть імен пакунків, Ñкі APT може обробити." -#: apt-pkg/pkgcachegen.cc:254 +#: apt-pkg/pkgcachegen.cc:260 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "Ого! Ви перевищили кількіÑть верÑій, Ñкі APT може обробити." -#: apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:263 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "Ого! Ви перевищили кількіÑть опиÑів, Ñкі APT може обробити." -#: apt-pkg/pkgcachegen.cc:260 +#: apt-pkg/pkgcachegen.cc:266 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "Ого! Ви перевищили кількіÑть залежноÑтей, Ñкі APT може обробити." -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:576 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Пакунок %s %s не був знайдений під Ñ‡Ð°Ñ Ð¾Ð±Ñ€Ð¾Ð±ÐºÐ¸ залежноÑтей" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "Ðе вдалоÑÑ Ð¿Ñ€Ð¾Ñ‡Ð¸Ñ‚Ð°Ñ‚Ð¸ атрибути переліку вихідних текÑтів %s" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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:1304 +#: apt-pkg/pkgcachegen.cc:1316 #, fuzzy msgid "Collecting File Provides" msgstr "Ð—Ð±Ð¸Ñ€Ð°Ð½Ð½Ñ Ñ–Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–Ñ— про 'File Provides'" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 msgid "IO Error saving source cache" msgstr "Помилка IO під Ñ‡Ð°Ñ Ð·Ð±ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ ÐºÐµÑˆÑƒ вихідних текÑтів" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "не вдалоÑÑ Ð¿ÐµÑ€ÐµÐ¹Ð¼ÐµÐ½ÑƒÐ²Ð°Ñ‚Ð¸, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "ÐевідповідніÑть хешу MD5Sum" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "ÐевідповідніÑть розміру" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "Ðевірна Ð´Ñ–Ñ %s" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, c-format msgid "" "Unable to find expected entry '%s' in Release file (Wrong sources.list entry " @@ -3112,16 +3144,16 @@ msgstr "" "Ðеможливо знайти очікуваний Ð·Ð°Ð¿Ð¸Ñ '%s' у 'Release' файлі (Ðевірний Ð·Ð°Ð¿Ð¸Ñ Ñƒ " "sources.list, або пошкоджений файл)" -#: apt-pkg/acquire-item.cc:1586 +#: apt-pkg/acquire-item.cc:1595 #, c-format msgid "Unable to find hash sum for '%s' in Release file" msgstr "Ðеможливо знайти хеш-Ñуму Ð´Ð»Ñ '%s' у 'Release' файлі" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "ВідÑутній публічний ключ Ð´Ð»Ñ Ð·Ð°Ð´Ð°Ð½Ð¸Ñ… ідентифікаторів (ID) ключа:\n" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " @@ -3130,12 +3162,12 @@ msgstr "" "Файл 'Release' Ð´Ð»Ñ %s заÑтарів (недійÑний з %s). ÐžÐ½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð´Ð»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ " "Ñ€ÐµÐ¿Ð¾Ð·Ð¸Ñ‚Ð¾Ñ€Ñ–Ñ Ð½Ðµ будуть заÑтоÑовані." -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Конфліктуючий диÑтрибутив: %s (очікувавÑÑ %s, але Ñ” %s)" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3145,12 +3177,12 @@ msgstr "" "попередні індекÑні файли будуть викориÑтані. Помилка GPG: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "Помилка GPG: %s: %s" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3159,83 +3191,79 @@ msgstr "" "Я не зміг знайти файл Ð´Ð»Ñ Ð¿Ð°ÐºÑƒÐ½ÐºÑƒ %s. Можливо, це значить, що вам потрібно " "влаÑноруч виправити цей пакунок. (через відÑутніÑть 'arch')" -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "Ðеможливо знайти джерело Ð´Ð»Ñ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ð²ÐµÑ€ÑÑ–Ñ— '%s' Ð´Ð»Ñ '%s'" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" "ІндекÑні файли пакунків пошкоджені. Ðемає Ð¿Ð¾Ð»Ñ 'Filename' Ð´Ð»Ñ Ð¿Ð°ÐºÑƒÐ½ÐºÑƒ %s." -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, c-format msgid "Unable to parse Release file %s" msgstr "Ðеможливо проаналізувати 'Release' файл %s" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, c-format msgid "No sections in Release file %s" msgstr "Ðемає Ñекцій у 'Release' файлі %s" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "Ðемає запиÑу 'Hash' у 'Release' файлі %s" -#: apt-pkg/indexrecords.cc:125 +#: apt-pkg/indexrecords.cc:130 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Ðевірний Ð·Ð°Ð¿Ð¸Ñ 'Valid-Until' у 'Release' файлі %s" -#: apt-pkg/indexrecords.cc:144 +#: apt-pkg/indexrecords.cc:149 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Ðевірний Ð·Ð°Ð¿Ð¸Ñ 'Date' у 'Release' файлі %s" -#: apt-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "Блок поÑтачальника %s не міÑтить відбитку (fingerprint)" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "ВикориÑтовуєтьÑÑ Ñ‚Ð¾Ñ‡ÐºÐ° Ð¼Ð¾Ð½Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ CD-ROM: %s\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "ДемонтуєтьÑÑ CD-ROM\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "ДемонтуєтьÑÑ CD-ROM...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "Чекаю на диÑк...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "МонтуєтьÑÑ CD-ROM...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " -msgstr "ІдентифікаціÑ.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " +msgstr "ІдентифікаціÑ... " -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "ЗапиÑано мітку: %s\n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "ДемонтуєтьÑÑ CD-ROM...\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" -msgstr "СкануєтьÑÑ Ð´Ð¸Ñк на вміÑÑ‚ індекÑних файлів..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" +msgstr "СкануєтьÑÑ Ð´Ð¸Ñк на вміÑÑ‚ індекÑних файлів...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3244,7 +3272,7 @@ msgstr "" "Знайдено %zu індекÑів пакунків, %zu індекÑів вихідних текÑтів, %zu індекÑів " "перекладів Ñ– %zu підпиÑів\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" @@ -3252,16 +3280,16 @@ msgstr "" "Ðеможливо знайти ніÑкі файли пакунків, можливо, що це не диÑк з Debian, або " "невірна архітектура?" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "Знайдено мітку: '%s'\n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "Ðе Ñ” вірною назвою, Ñпробуйте ще.\n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3270,34 +3298,34 @@ msgstr "" "Цей диÑк зветьÑÑ: \n" "'%s'\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "КопіюютьÑÑ Ð¿ÐµÑ€ÐµÐ»Ñ–ÐºÐ¸ пакунків..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "ЗапиÑуєтьÑÑ Ð½Ð¾Ð²Ð¸Ð¹ перелік вихідних текÑтів\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "Перелік вихідних текÑтів Ð´Ð»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ диÑка:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: 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:777 +#: 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:780 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "ЗапиÑано %i запиÑів з %i невідповідними файлам\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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" @@ -3312,37 +3340,37 @@ msgstr "Ðеможливо знайти аутентифікаційний заРmsgid "Hash mismatch for: %s" msgstr "ÐевідповідніÑть хешу длÑ: %s" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "ВипуÑк '%s' Ð´Ð»Ñ '%s' не знайдено" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "ВерÑÑ–Ñ '%s' Ð´Ð»Ñ '%s' не знайдена" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, c-format msgid "Couldn't find task '%s'" msgstr "Ðеможливо знайти Ð·Ð°Ð²Ð´Ð°Ð½Ð½Ñ '%s'" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, c-format msgid "Couldn't find any package by regex '%s'" msgstr "Ðеможливо знайти ніÑкий пакунок через рег.вираз '%s'" -#: apt-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "Ðеможливо знайти ніÑкий пакунок через рег.вираз '%s'" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, c-format msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "Ðеможливо вибирати верÑÑ–Ñ— пакунку '%s', так Ñк він Ñ” чиÑто віртуальним" -#: apt-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " @@ -3351,61 +3379,61 @@ msgstr "" "Ðеможливо вибрати вÑтановлений пакунок, або верÑÑ–ÑŽ-кандидат пакунку '%s', " "так Ñк вони відÑутні" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, c-format msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" "Ðеможливо вибрати найновішу верÑÑ–ÑŽ пакунку '%s', так Ñк він Ñ” чиÑто " "віртуальним" -#: apt-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "Ðеможливо вибрати верÑÑ–ÑŽ пакунку %s, так Ñк він не має кандидатів" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "" "Ðеможливо вибрати вÑтановлену верÑÑ–ÑŽ пакунку %s, так Ñк такий пакунок не " "вÑтановлено" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 #, fuzzy msgid "Send scenario to solver" msgstr "Відправити Ñценарій розв'Ñзувачу" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 #, fuzzy msgid "Send request to solver" msgstr "Відправити запит розв'Ñзувачу" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 #, fuzzy msgid "Prepare for receiving solution" msgstr "ПригодуватиÑÑ Ð´Ð¾ Ð¾Ñ‚Ñ€Ð¸Ð¼Ð°Ð½Ð½Ñ Ñ€Ð¾Ð·Ð²'Ñзку" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "" "Зовнішній розв'Ñзувач завершивÑÑ Ð½ÐµÐ²Ð´Ð°Ð»Ð¾ без відповідного Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ð¿Ñ€Ð¾ " "помилку" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 #, fuzzy msgid "Execute external solver" msgstr "Виконати зовнішній розв'Ñзувач" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "ВиконуєтьÑÑ dpkg" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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." @@ -3413,120 +3441,120 @@ msgstr "" "ДеÑкі індекÑні файли не вдалоÑÑ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶Ð¸Ñ‚Ð¸. Вони були зігноровані, або " "заміÑть них були викориÑтані Ñтаріші верÑÑ–Ñ—." -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "Ð’ÑтановлюєтьÑÑ %s" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "ÐалаштовуєтьÑÑ %s" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "ВидалÑєтьÑÑ %s" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format msgid "Completely removing %s" msgstr "ПовніÑтю видалÑєтьÑÑ %s" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "ВзÑто до відома Ð·Ð½Ð¸ÐºÐ½ÐµÐ½Ð½Ñ %s" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "ВиконуєтьÑÑ Ð¿Ñ–ÑлÑуÑтановочний ініціатор %s" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "Ð”Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ñ–Ñ '%s' відÑутнÑ" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format msgid "Could not open file '%s'" msgstr "Ðеможливо відкрити файл '%s'" -#: apt-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "Підготовка %s" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "Ð Ð¾Ð·Ð¿Ð°ÐºÑƒÐ²Ð°Ð½Ð½Ñ %s" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "Підготовка до конфігурації %s" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "Ð’Ñтановлено %s" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "Підготовка до Ð²Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ %s" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "Видалено %s" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "Підготовка до повного Ð²Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ %s" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "ПовніÑтю видалено %s" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "Ðеможливо запиÑати в %s" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "Операцію було перервано до того, Ñк вона мала завершитиÑÑ" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 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:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "проблеми з залежноÑÑ‚Ñми - залишено неналаштованим" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3534,7 +3562,7 @@ msgstr "" "Звіт apport не був запиÑаний, тому що Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ð¿Ñ€Ð¾ помилку вказує на те, " "що Ñ†Ñ Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ° Ñ” наÑлідком попередньої невдачі." -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" @@ -3542,7 +3570,7 @@ msgstr "" "Звіт apport не був запиÑаний, тому що Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ð¿Ñ€Ð¾ помилку вказує на " "відÑутніÑть вільного міÑÑ†Ñ Ð½Ð° диÑку" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3550,7 +3578,7 @@ msgstr "" "Звіт apport не був запиÑаний, тому що Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ð¿Ñ€Ð¾ помилку вказує на " "відÑутніÑть вільного міÑÑ†Ñ Ñƒ пам'Ñті" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 #, fuzzy msgid "" "No apport report written because the error message indicates an issue on the " @@ -3559,14 +3587,14 @@ msgstr "" "Звіт apport не був запиÑаний, тому що Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ð¿Ñ€Ð¾ помилку вказує на " "відÑутніÑть вільного міÑÑ†Ñ Ð½Ð° диÑку" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" "Звіт apport не був запиÑаний, тому що Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ð¿Ñ€Ð¾ помилку вказує на " "помилку Ð’/Ð’ (I/O) у dpkg" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " @@ -3575,14 +3603,14 @@ msgstr "" "Ðеможливо заблокувати адмініÑтративну директорію (%s), може Ñ—Ñ— викориÑтовує " "інший процеÑ?" -#: apt-pkg/deb/debsystem.cc:87 +#: apt-pkg/deb/debsystem.cc:94 #, c-format msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Ðеможливо заблокувати адмініÑтративну директорію (%s), ви root?" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " @@ -3590,7 +3618,7 @@ msgstr "" "dpkg було перервано, ви повинні вручну запуÑтити '%s' аби виправити " "проблему. " -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "Ðе заблоковано" @@ -6,10 +6,10 @@ # msgid "" msgstr "" -"Project-Id-Version: apt 0.9.15.1\n" +"Project-Id-Version: apt 0.9.16.1\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" -"PO-Revision-Date: 2014-02-10 07:50+0700\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" +"PO-Revision-Date: 2014-03-28 14:49+0700\n" "Last-Translator: Trần Ngá»c Quân <vnwildman@gmail.com>\n" "Language-Team: Vietnamese <translation-team-vi@lists.sourceforge.net>\n" "Language: vi\n" @@ -22,154 +22,155 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-Basepath: ../\n" -#: cmdline/apt-cache.cc:140 +#: cmdline/apt-cache.cc:149 #, c-format msgid "Package %s version %s has an unmet dep:\n" -msgstr "Gói %s phiên bản %s chưa thá»a mãn quan hệ phụ thuá»™c:\n" +msgstr "Gói %s phiên bản %s có phần phụ thuá»™c chưa thá»a mãn:\n" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "Tổng các tên gói: " -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 msgid "Total package structures: " msgstr "Tổng các cấu trúc gói: " -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " Gói thưá»ng: " -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " Gói thuần ảo: " -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " Gói ảo đơn: " -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " Gói ảo há»—n hợp: " -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " Thiếu: " -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "Tổng phiên bản riêng: " -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "Tổng mô tả riêng: " -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "Tổng gói phụ thuá»™c: " -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "Tổng liên quan phiên bản và táºp tin: " -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "Tổng quan hệ mô-tả/táºp-tin: " -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "Tổng ánh xạ Cung cấp: " -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "Tổng chuá»—i mở rá»™ng mẫu tìm kiếm: " -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "Tổng chá»— phiên bản phụ thuá»™c: " -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "Tổng chá»— trống: " -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "Tổng chá»— đã tÃnh dà nh cho: " -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format msgid "Package file %s is out of sync." msgstr "Táºp tin gói %s không đồng bá»™ được." -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 msgid "No packages found" msgstr "Không tìm thấy gói" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 msgid "You must give at least one search pattern" msgstr "Bạn phải đưa ra Ãt nhất má»™t mẫu tìm kiếm" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" "Lệnh nà y đã lá»—i thá»i. Xin hãy dùng lệnh “apt-mark showauto†để thay thế." -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" -msgstr "Không thể xác định vị trà cá»§a gói %s" +msgstr "Không thể định vị gói %s" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "Táºp tin gói:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 msgid "Cache is out of sync, can't x-ref a package file" msgstr "" "Bá»™ nhá»› tạm không đồng bá»™ được nên không thể tham chiếu chéo táºp tin gói" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "Các gói đã ghim:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(không tìm thấy)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " Äã cà i đặt: " -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " Ứng cá»: " -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(không)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " Ghim gói: " #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " Bảng phiên bản:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s-%s được biên dịch cho %s và o lúc “%s %sâ€\n" -#: cmdline/apt-cache.cc:1740 +#: cmdline/apt-cache.cc:1749 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] showpkg pkg1 [pkg2 ...]\n" @@ -209,8 +210,8 @@ msgstr "" " apt-cache [tùy_chá»n...] showpkg gói1 [gói2 ...]\n" " apt-cache [tùy_chá»n...] showsrc gói1 [gói2 ...]\n" "(cache: bá»™ nhá»› tạm\n" -"showpkg: hiển thị gói\n" -"showsrc: hiển thị nguồn)\n" +"showpkg: hiển thị gói nhị phân\n" +"showsrc: hiển thị gói nguồn)\n" "\n" "apt-cache là má»™t công cụ ở mức thấp dùng để truy vấn\n" "thông tin từ các táºp tin bá»™ nhá»› tạm nhị phân cá»§a APT.\n" @@ -218,7 +219,7 @@ msgstr "" "Lệnh:\n" " gencaches - Xây dá»±ng (tạo ra) bá»™ nhá»› tạm cho cả gói lẫn nguồn\n" " showpkg - Hiện thông tin chung vá» má»™t gói riêng lẻ\n" -" showsrc - Hiện các bản ghi nguồn\n" +" showsrc - Hiện các bản ghi cho gói nguồn\n" " stats - Hiện phần thống kê cÆ¡ bản\n" " dump - Hiện toà n bá»™ táºp tin dạng ngắn (đổ)\n" " dumpavail - In ra má»™t táºp tin sẵn dùng ra thiết bị xuất chuẩn\n" @@ -226,11 +227,11 @@ msgstr "" " search - Tìm kiếm danh sách các gói dá»±a trên biểu thức chÃnh quy\n" " show - Hiển thị bản ghi có thể Ä‘á»c cho những gói đó\n" " depends - Hiện thông tin quan hệ phụ thuá»™c dạng thô cho gói\n" -" rdepends - Hiện thông tin quan hệ phụ thuá»™c ngược lại cho gói\n" +" rdepends - Hiện thông tin những gói phụ thuá»™c và o gói nà y\n" " pkgnames - Liệt kê danh sách má»i gói trên hệ thống\n" " dotty - Tạo ra đồ thị gói cho GraphViz (nhiá»u chấm)\n" " xvcg - Tạo ra đồ thị gói cho xvcg\n" -" policy - Hiển thị các cà i đặt chÃnh sách\n" +" policy - Hiển thị các cà i đặt vá» chÃnh sách\n" "\n" "Tùy chá»n:\n" " -h Hiển thị trợ giúp nà y.\n" @@ -243,32 +244,33 @@ msgstr "" "Äể tìm thông tin thêm, xem hai trang hướng dẫn\n" " apt-cache(8) và apt.conf(5).\n" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" -"Không tìm thấy CD-ROM bằng cách dò tìm hay sá» dụng Ä‘iểm gắn mặc định.\n" -"Bạn có lẽ nên dùng tùy chá»n --cdrom để đặt Ä‘iểm gắn CD-ROM.\n" -"Xem “man apt-cdrom†để có thêm thông tin vá» tá»± động dò tìm và điểm gắn CD-" -"ROM." - -#: cmdline/apt-cdrom.cc:89 +#: cmdline/apt-cdrom.cc:76 msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "Hãy cung cấp tên cho ÄÄ©a nà y, kiểu như là : “Debian 5.0.3 ÄÄ©a 1â€" -#: cmdline/apt-cdrom.cc:104 +#: cmdline/apt-cdrom.cc:91 msgid "Please insert a Disc in the drive and press enter" msgstr "Hãy đưa đĩa và o ổ rồi bấm nút Enter" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, c-format msgid "Failed to mount '%s' to '%s'" msgstr "Gặp lá»—i khi gắn “%s†và o “%sâ€" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" +"Không tìm thấy CD-ROM bằng cách tá»± động dò tìm hay sá» dụng Ä‘iểm gắn mặc " +"định.\n" +"Bạn có lẽ nên dùng tùy chá»n --cdrom để đặt Ä‘iểm gắn CD-ROM.\n" +"Xem “man apt-cdrom†để có thêm thông tin vá» tá»± động dò tìm CD-ROM và điểm " +"gắn." + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Hãy lặp lại tiến trình nà y cho các ÄÄ©a còn lại trong bá»™ đĩa cá»§a bạn." @@ -306,47 +308,47 @@ msgstr "" " -c=? Äá»c táºp tin cấu hình nà y\n" " -o=? Äặt má»™t tùy chá»n cấu hình tùy ý, và dụ -o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:244 +#: cmdline/apt-get.cc:245 #, c-format msgid "Can not find a package for architecture '%s'" msgstr "Không tìm thấy gói cho kiến trúc “%sâ€" -#: cmdline/apt-get.cc:326 +#: cmdline/apt-get.cc:327 #, c-format msgid "Can not find a package '%s' with version '%s'" msgstr "Không tìm thấy gói “%s†vá»›i phiên bản “%sâ€" -#: cmdline/apt-get.cc:329 +#: cmdline/apt-get.cc:330 #, c-format msgid "Can not find a package '%s' with release '%s'" msgstr "Không tìm thấy gói “%s†vá»›i số phát hà nh “%sâ€" -#: cmdline/apt-get.cc:366 +#: cmdline/apt-get.cc:367 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Äang chá»n “%s†là m gói nguồn, thay thế cho “%sâ€\n" -#: cmdline/apt-get.cc:422 +#: cmdline/apt-get.cc:423 #, c-format msgid "Can not find version '%s' of package '%s'" msgstr "Không tìm thấy phiên bản “%s†cá»§a gói “%sâ€" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "Không tìm thấy gói %s" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "%s được đặt thà nh “được cà i đặt bằng tayâ€.\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s được đặt thà nh “được tá»± động cà i đặtâ€.\n" -#: cmdline/apt-get.cc:468 cmdline/apt-mark.cc:116 +#: 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." @@ -354,19 +356,19 @@ msgstr "" "Lệnh nà y đã lá»—i thá»i. Xin hãy dùng lệnh “apt-mark auto†và “apt-mark manual†" "để thay thế." -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 msgid "Internal error, problem resolver broke stuff" msgstr "Lá»—i ná»™i bá»™: bá»™ tháo gỡ vấn đỠđã ngắt gì" -#: cmdline/apt-get.cc:573 cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 msgid "Unable to lock the download directory" msgstr "Không thể khoá thư mục tải vá»" -#: cmdline/apt-get.cc:725 +#: cmdline/apt-get.cc:726 msgid "Must specify at least one package to fetch source for" msgstr "Phải chỉ định Ãt nhất má»™t gói để mà lấy mã nguồn vá» cho nó" -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "Không tìm thấy gói nguồn cho %s" @@ -392,79 +394,79 @@ msgstr "" "bzr branch %s\n" "để lấy các gói má»›i nhất (có thể là chưa phát hà nh).\n" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Äang bá» qua táºp tin đã được tải vỠ“%sâ€\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "Không thể tìm được chá»— trống trong %s" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "Không đủ chá»— trống trên %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Cần phải lấy %sB/%sB kho nguồn.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Cần phải lấy %sB từ kho nguồn.\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "Lấy mã nguồn %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "Gặp lá»—i khi lấy má»™t số kho." -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "Hoà n tất việc tải vá» và trong chế độ chỉ tải vá»" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Äang bá» qua giải nén nguồn đã giải nén trong %s\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Lệnh giải nén “%s†bị lá»—i.\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Hãy kiểm tra xem gói “dpkg-dev†đã được cà i đặt chưa.\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "Lệnh biên dịch “%s†bị lá»—i.\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "Tiến trình con bị lá»—i" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "" "Phải chỉ ra Ãt nhất má»™t gói cần kiểm tra các phần phụ thuá»™c cần khi biên dịch" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -473,17 +475,17 @@ msgstr "" "Không có thông tin kiến trúc sẵn sà ng cho %s. Xem apt.conf(5) APT::" "Architectures để cà i đặt" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Không thể lấy thông tin vá» các phần phụ thuá»™c khi biên dịch cho %s" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s không phụ thuá»™c và o gì khi biên dịch.\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -492,7 +494,7 @@ msgstr "" "Phần phụ thuá»™c %s cho %s không ổn thá»a bởi vì %s không được cho phép trên " "gói “%sâ€" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -500,14 +502,14 @@ msgid "" msgstr "" "Phần phụ thuá»™c %s cho %s không thể được thá»a mãn vì không tìm thấy gói %s" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Việc cố thá»a mãn quan hệ phụ thuá»™c %s cho %s bị lá»—i vì gói đã cà i đặt %s là " "quá má»›i" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -516,7 +518,7 @@ msgstr "" "phần phụ thuá»™c %s cho %s không thể được thá»a mãn phiên bản ứng cá» cá»§a gói %s " "có thể thá»a mãn Ä‘iá»u kiện phiên bản" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -525,30 +527,30 @@ msgstr "" "phần phụ thuá»™c %s cho %s không thể được thá»a mãn bởi vì gói %s không có bản " "ứng cá»" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Việc cố thá»a cách phụ thuá»™c %s cho %s bị lá»—i: %s." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Không thể thá»a mãn quan hệ phụ thuá»™c khi biên dịch cho %s." -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "Gặp lá»—i khi xá» lý các quan hệ phụ thuá»™c khi biên dịch" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, c-format msgid "Changelog for %s (%s)" msgstr "Changelog cho %s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "Há»— trợ các mô-Ä‘un:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -642,55 +644,85 @@ msgstr "" " apt-get(8), sources.list(5) và apt.conf(5).\n" " Trình APT nà y có năng lá»±c cá»§a siêu bò.\n" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +msgid "Must specify at least one pair url/filename" +msgstr "Phải chỉ định Ãt nhất má»™t cặp url/tên-táºp-tin" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "Gặp lá»—i khi tải vá»" + +#: cmdline/apt-helper.cc:65 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" +msgstr "" +"Cách dùng: apt-helper [các-tùy-chá»n] lệnh\n" +" apt-helper [các-tùy-chá»n] download-file uri đưá»ng-dẫn-Ä‘Ãch\n" +"\n" +"apt-helper là phần trợ giúp dà nh cho apt\n" +"\n" +"Các lệnh:\n" +" download-file - tải vá» uri đã cho vỠđưá»ng-dẫn-Ä‘Ãch\n" +"\n" +" Lệnh trợ giúp APT nà y có Sức Mạnh cá»§a Siêu “Meepâ€.\n" + +#: cmdline/apt-mark.cc:68 #, c-format msgid "%s can not be marked as it is not installed.\n" msgstr "không thể đánh dấu %s như là nó chưa được cà i đặt.\n" -#: cmdline/apt-mark.cc:63 +#: cmdline/apt-mark.cc:74 #, c-format msgid "%s was already set to manually installed.\n" msgstr "%s được đặt thà nh được cà i đặt bằng tay.\n" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, c-format msgid "%s was already set to automatically installed.\n" msgstr "%s đã sẵn được đặt thà nh cà i đặt tá»± động rồi.\n" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, c-format msgid "%s was already set on hold.\n" msgstr "%s đã sẵn được đặt là giữ lại.\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, c-format msgid "%s was already not hold.\n" msgstr "%s đã sẵn được đặt là không giữ lại.\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Cần %s nhưng mà không thấy nó ở đây" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format msgid "%s set on hold.\n" msgstr "%s được đặt là giữ lại.\n" -#: cmdline/apt-mark.cc:264 cmdline/apt-mark.cc:316 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format msgid "Canceled hold on %s.\n" msgstr "Há»§y bá» nắm giữ %s.\n" -#: cmdline/apt-mark.cc:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "" "Thá»±c thi lệnh “dpkg†gặp lá»—i. Bạn có cần quyá»n siêu ngưá»i dùng để thá»±c thi " "lệnh nà y" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" "\n" @@ -742,8 +774,7 @@ msgstr "" "Äể tìm thông tin thêm, xem hai trang man (hướng dẫn)\n" " apt-mark(8) và apt.conf(5)" -#: cmdline/apt.cc:71 -#, fuzzy +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -767,7 +798,7 @@ msgstr "" "Cách dùng: apt [các tùy chá»n] lệnh\n" "\n" "CLI (giao diện dòng lệnh) dà nh cho apt.\n" -"Lệnh: \n" +"Các lệnh cÆ¡ bản:\n" " list - liệt kê các gói dá»±a trên cÆ¡ sở là tên gói\n" " search - tìm trong phần mô tả cá»§a gói\n" " show - hiển thị thông tin chi tiết vá» gói\n" @@ -809,52 +840,52 @@ msgstr "Không thể bá» gắn đĩa CD-ROM trong %s. Có lẽ nó vẫn Ä‘ang msgid "Disk not found." msgstr "Không tìm thấy đĩa." -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "Không tìm thấy táºp tin" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 msgid "Failed to stat" msgstr "Gặp lá»—i khi lấy thống kê" -#: methods/copy.cc:82 methods/gzip.cc:113 methods/rred.cc:606 +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 msgid "Failed to set modification time" msgstr "Gặp lá»—i khi đặt giá» sá»a đổi" -#: methods/file.cc:47 +#: methods/file.cc:48 msgid "Invalid URI, local URIS must not start with //" msgstr "Äịa chỉ URI không hợp lệ, URI ná»™i bá»™ không thể bắt đầu bằng “//â€" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "Äang đăng nháºp và o" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "Không thể quyết định tên ngang hà ng" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "Không thể phân giải tên cục bá»™" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format msgid "The server refused the connection and said: %s" msgstr "Máy phục vụ đã từ chối kết nối, và đã nói: %s" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "Lệnh USER (ngưá»i dùng) đã thất bại: máy chá»§ nói: %s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "Lệnh PASS (máºt khẩu) đã thất bại: máy chá»§ nói: %s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -862,121 +893,123 @@ msgstr "" "Äã ghi rõ máy phục vụ á»§y nhiệm, nhưng mà chưa ghi rõ táºp lệnh đăng nháºp. " "“Acquire::ftp::ProxyLogin†là rá»—ng." -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Văn lệnh đăng nháºp “%s†đã thất bại: máy chá»§ nói: %s" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "Lệnh TYPE (kiểu) đã thất bại: máy chá»§ nói: %s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 msgid "Connection timeout" msgstr "Thá»i hạn kết nối" -#: methods/ftp.cc:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "Máy phục vụ đã đóng kết nối" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "Lá»—i Ä‘á»c" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "Má»™t trả lá»i đã trà n bá»™ đệm." -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "Giao thức bị há»ng" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "Lá»—i ghi" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 msgid "Could not create a socket" msgstr "Không thể tạo ổ cắm" -#: methods/ftp.cc:707 +#: methods/ftp.cc:712 msgid "Could not connect data socket, connection timed out" msgstr "Không thể kết nối ổ cắm dữ liệu, kết nối đã quá giá»" -#: methods/ftp.cc:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "Gặp lá»—i" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "Không thể kết nối ổ cắm bị động." -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo (lấy thông tin địa chỉ) không thể lấy ổ cắm lắng nghe" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "Không thể đóng kết ổ cắm" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "Không thể lắng nghe trên ổ cắm đó" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "Không thể quyết định tên ổ cắm đó" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "Không thể gá»i lệnh PORT (cổng)" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Không biết hỠđịa chỉ %u (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "Lệnh EPRT (thông báo lá»—i) đã thất bại: máy chá»§ nói: %s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "Quá giá» kết nối ổ cắm dữ liệu" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "Không thể chấp nháºn kết nối" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "Gặp vấn đỠbăm táºp tin" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Không thể lấy táºp tin: máy phục vụ nói “%sâ€" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "á»” cắm dữ liệu đã quá giá»" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Việc truyá»n dữ liệu bị lá»—i: máy phục vụ nói “%sâ€" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "Truy vấn" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "Không thể gá»i " @@ -1012,7 +1045,7 @@ msgstr "Không thể kết nối đến %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "Äang kết nối đến %s" @@ -1042,22 +1075,22 @@ msgstr "Má»™t số hư há»ng đã xảy ra khi phân giải “%s:%s†(%i - % msgid "Unable to connect to %s:%s:" msgstr "Không thể kết nối đến %s: %s:" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "Lá»—i ná»™i bá»™: Chữ ký đúng, nhưng không thể xác định vân tay cá»§a khóa?!" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "Gặp Ãt nhất má»™t chữ ký không hợp lệ." -#: methods/gpgv.cc:172 +#: methods/gpgv.cc:174 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "Không thể thá»±c hiện “gpgv†để thẩm tra chữ ký (gpgv đã được cà i đặt chưa?)" #. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " @@ -1066,156 +1099,156 @@ msgstr "" "Táºp tin Clearsigned không hợp lệ, nháºn được “%s†(mạng yêu cầu xác nháºn phải " "không?)" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "Gặp lá»—i không rõ khi thá»±c hiện gpgv" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Những chữ ký theo đây không hợp lệ:\n" -#: methods/gpgv.cc:229 +#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" msgstr "" "Không thể kiểm chứng những chữ ký theo đây, vì khóa công không sẵn có:\n" -#: methods/gzip.cc:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "Các táºp tin trống rá»—ng không phải là kho lưu hợp lệ" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "Gặp lá»—i khi ghi và o táºp tin" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "Gặp lá»—i khi Ä‘á»c từ máy phục vụ: Máy chá»§ đã đóng kết nối" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "Gặp lá»—i khi Ä‘á»c từ máy phục vụ" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "Gặp lá»—i khi ghi và o táºp tin" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "Việc chá»n bị lá»—i" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "Kết nối đã quá giá»" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "Gặp lá»—i khi ghi và o táºp tin đầu ra" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "Äang đợi phần đầu dữ liệu..." -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "Dòng đầu sai" -#: methods/server.cc:139 methods/server.cc:146 +#: methods/server.cc:134 methods/server.cc:141 msgid "The HTTP server sent an invalid reply header" msgstr "Máy phục vụ HTTP đã gá»i má»™t dòng đầu trả lá»i không hợp lệ" -#: methods/server.cc:176 +#: methods/server.cc:171 msgid "The HTTP server sent an invalid Content-Length header" msgstr "" "Máy phục vụ HTTP đã gá»i má»™t dòng đầu Content-Length (độ dà i ná»™i dung) không " "hợp lệ" -#: methods/server.cc:199 +#: methods/server.cc:194 msgid "The HTTP server sent an invalid Content-Range header" msgstr "" "Máy phục vụ HTTP đã gá»i má»™t dòng đầu Content-Range (phạm vi ná»™i dung) không " "hợp lệ" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "Máy phục vụ HTTP không há»— trợ tải má»™t phần táºp tin" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "Không rõ định dạng ngà y" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "Dữ liệu phần đầu sai" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "Kết nối bị lá»—i" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "Gặp lá»—i ná»™i bá»™" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "Äang liệt kê" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Lá»—i ná»™i bá»™: InstallPackages (cà i đặt gói) được gá»i vá»›i gói bị há»ng!" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "Cần phải gỡ bá» má»™t số gói, nhưng mà khả năng Gỡ bá» (Remove) đã bị tắt." -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "Gặp lá»—i ná»™i bá»™: Tiến trình Sắp xếp chưa xong" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" "Lạ nhỉ... KÃch cỡ không khá»›p nhau. Hãy gá»i thư cho <apt@packages.debian.org>" #. TRANSLATOR: The required 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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Cần phải lấy %sB/%sB từ kho chứa.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:171 +#: apt-private/private-install.cc:159 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Cần phải lấy %sB từ kho chứa.\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:178 +#: apt-private/private-install.cc:166 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "Sau thao tác nà y, %sB dung lượng đĩa sẽ bị chiếm dụng.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:183 +#: apt-private/private-install.cc:171 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Sau thao tác nà y, %sB dung lượng đĩa sẽ được giải phóng.\n" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "Bạn không có đủ dung lượng đĩa còn trống trong %s." -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "Có lá»—i và đã dùng tùy chá»n “-y†mà không có “--force-yesâ€" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "Äã đưa ra “Chỉ không đáng kể†(Trivial Only) nhưng mà thao tác nà y là đáng " @@ -1223,11 +1256,11 @@ 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Có, là m Ä‘i!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1238,19 +1271,19 @@ msgstr "" "Nếu vẫn muốn tiếp tục thì hãy gõ cụm từ “%sâ€\n" "?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "Há»§y bá»." -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "Bạn có muốn tiếp tục không?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "Má»™t số táºp tin không tải vỠđược" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1259,20 +1292,20 @@ msgstr "" "nháºt)\n" "hay dùng tùy chá»n “--fix-missing†(sá»a thiếu sót) không?" -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "" "Chưa há»— trợ tùy chá»n “--fix-missing†(sá»a khi thiếu) và trao đổi phương tiện." -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "Không thể sá»a những gói còn thiếu." -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "Äang há»§y bá» tiến trình cà i đặt." -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1283,15 +1316,15 @@ msgstr[0] "" "Những gói theo đây không còn nằm trên hệ thống nà y vì má»i táºp tin Ä‘á»u bị gói " "khác ghi đè:" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Ghi chú: Thay đổi nà y được tá»± động thá»±c hiện bởi dpkg." -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Không nên xoá gì thì không thể khởi chạy Bá»™ Gỡ bá» Tá»± động" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1309,15 +1342,15 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 msgid "The following information may help to resolve the situation:" msgstr "Có lẽ thông tin theo đây sẽ giúp đỡ bạn giải quyết tình trạng nà y:" -#: apt-private/private-install.cc:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "Lá»—i ná»™i bá»™: Bá»™ Gỡ bá» Tá»± động đã là m há»ng má»™t thứ gì đó" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1326,23 +1359,23 @@ msgid_plural "" msgstr[0] "" "(Các) gói sau đây đã được tá»± động cà i đặt nên không còn cần yêu cầu lại:" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" "%lu packages were automatically installed and are no longer required.\n" msgstr[0] "%lu gói đã được tá»± động cà i đặt nên không còn cần yêu cầu lại.\n" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Hãy dùng lệnh “apt-get autoremove†để gỡ bá» chúng." -#: apt-private/private-install.cc:624 +#: apt-private/private-install.cc:612 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Có lẽ bạn cần chạy lệnh “apt-get -f install†để sá»a những cái đó:" -#: apt-private/private-install.cc:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1350,7 +1383,7 @@ msgstr "" "Thưa thá»a mãn quan hệ phụ thuá»™c. Hãy thá» chạy lệnh “apt-get -f install†mà " "không có gói nà o (hoặc chỉ định cách thức giải quyết)." -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1362,142 +1395,142 @@ msgstr "" "chưa ổn định cái mà yêu cầu các gói mà nó còn chưa được tạo ra\n" "hay chưa được chuyển ra khá»i phần Incoming (Äến)." -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "Gói bị há»ng" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "Những gói thêm theo đây sẽ được cà i đặt:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "Các gói đỠnghị:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "Gói khuyến khÃch:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "CẢNH BÃO: Không thể xác thá»±c những gói theo đây!" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "Cảnh báo xác thá»±c bị đè.\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "Má»™t số gói không thể được xác thá»±c" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "Cà i đặt những gói nà y mà không cần thẩm tra?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Gặp lá»—i khi lấy vá» %s %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "không hiểu" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, c-format msgid "[installed,upgradable to: %s]" msgstr "[đã cà i, có thể nâng cấp thà nh: %s]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 msgid "[installed,local]" msgstr "[đã cà i đặt,ná»™i bá»™]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "[đã cà i,có thể tá»± động gỡ bá»]" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 msgid "[installed,automatic]" msgstr "[đã cà i đặt,tá»± động]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 msgid "[installed]" msgstr "[đã cà i đặt]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "[có thể nâng cấp từ: %s]" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "[residual-config]" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "Những gói theo đây chưa thá»a mãn quan hệ phụ thuá»™c:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "nhưng mà %s đã được cà i đặt" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "nhưng mà %s sẽ được cà i đặt" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "nhưng mà nó không có khả năng cà i đặt" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "nhưng mà nó là gói ảo" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "nhưng mà nó không được cà i đặt" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "nhưng mà nó sẽ không được cà i đặt" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " hay" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "Những gói MỚI sau sẽ được CÀI ÄẶT:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "Những gói sau sẽ bị Gá» BỎ:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "Những gói sau đây được giữ lại:" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "Những gói sau đây sẽ được NÂNG CẤP:" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "Những gói sau đây sẽ bị HẠCẤP:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "Những gói giữ lại sau đây sẽ bị THAY Äá»”I:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (bởi vì %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1505,27 +1538,27 @@ msgstr "" "CẢNH BÃO: Có những gói chá»§ yếu sau đây sẽ bị gỡ bá».\n" "ÄỪNG là m như thế trừ khi bạn biết chÃnh xác mình Ä‘ang là m gì!" -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu nâng cấp, %lu được cà i đặt má»›i, " -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "%lu được cà i đặt lại, " -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "%lu bị hạ cấp, " -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu cần gỡ bá», và %lu chưa được nâng cấp.\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu chưa được cà i đặt toà n bá»™ hay được gỡ bá».\n" @@ -1534,7 +1567,7 @@ msgstr "%lu chưa được cà i đặt toà n bá»™ hay được gỡ bá».\n" #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "[C/k]" @@ -1542,89 +1575,89 @@ msgstr "[C/k]" #. 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:702 +#: apt-private/private-output.cc:708 msgid "[y/N]" msgstr "[c/K]" #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "C" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "K" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "Lá»—i biên dịch biểu thức chÃnh quy - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "Äang sá»a chữa quan hệ phụ thuá»™c..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " gặp lá»—i." -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "Không thể sá»a phần phụ thuá»™c" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "Không thể tối thiểu hóa táºp hợp nâng cấp" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " Xong" -#: apt-private/private-cachefile.cc:102 +#: apt-private/private-cachefile.cc:108 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "Bạn có thể chạy lệnh “apt-get -f install†để sá»a những lá»—i trên." -#: apt-private/private-cachefile.cc:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "Chưa thá»a mãn quan hệ phụ thuá»™c. Hãy thá» dùng tùy chá»n “-fâ€." -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "Äang sắp xếp" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "Lệnh cáºp nháºt không chấp nháºn đối số" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "Äang tÃnh toán nâng cấp... " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 msgid "Internal error, Upgrade broke stuff" msgstr "Lá»—i ná»™i bá»™: Upgrade (Nâng cấp) đã là m há»ng thứ gì đó" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "Xong" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "Tìm kiếm toà n văn" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." -msgstr[0] "Ở đây có %lu bản ghi phụ thêm. Hãy dùng tùy chá»n “-a†để xem" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "Ở đây có %i bản ghi phụ thêm. Hãy dùng tùy chá»n “-a†để xem" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "không là gói tháºt (ảo)" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1636,43 +1669,43 @@ msgstr "" " Cần nhá»› rằng chức năng khóa đã bị tắt,\n" " nên có thể nó không chÃnh xác như những gì là m tháºt!" -#: apt-private/private-sources.cc:45 +#: apt-private/private-sources.cc:58 #, c-format msgid "Failed to parse %s. Edit again? " msgstr "Gặp lá»—i khi phân tÃch %s. Sá»a lại chứ? " -#: apt-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "Táºp tin “%s†cá»§a bạn đã thay đổi, hãy chạy lệnh “apt-get updateâ€." -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "Tìm thấy " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "Lấy:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "Bá»q " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "Lá»—i " -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "Äã lấy vá» %sB mất %s (%sB/g).\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [Äang hoạt động]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1685,19 +1718,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "Không thể Ä‘á»c %s" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "Không thể chuyển đổi sang %s" @@ -1726,11 +1759,11 @@ msgstr "Không tìm thấy Ä‘iểm và o trong táºp tin bản sao “%sâ€" msgid "[Mirror: %s]" msgstr "[Bản sao: %s]" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 msgid "Failed to create IPC pipe to subprocess" msgstr "Việc tạo ống IPC đến tiến trình con bị lá»—i" -#: methods/rsh.cc:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "Kết nối bị đóng bất ngá»" @@ -1798,40 +1831,45 @@ msgstr "" " -c=? Äá»c táºp tin cấu hình nà y\n" " -o=? Äặt má»™t tùy chá»n cấu hình tùy ý, v.d. “-o dir::cache=/tmpâ€\n" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Không thể lấy thông tin thống kê %s" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "Không thể ghi và o %s" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Không thể lấy phiên bản debconf. Debconf có được cà i đặt chưa?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "Danh sách mở rá»™ng gói quá dà i" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "Gặp lá»—i khi xá» lý thư mục %s" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "Danh sách mở rá»™ng nguồn quá dà i" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "Gặp lá»—i khi ghi phần đầu và o táºp tin nộị dung" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "Gặp lá»—i khi xá» lý ná»™i dung %s" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1927,26 +1965,26 @@ msgstr "" " -c=? Äá»c táºp tin cấu hình nà y\n" " -o=? Äặt má»™t tùy chá»n cấu hình tùy ý, v.d. “-o dir::cache=/tmpâ€" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "Không có cái được chá»n khá»›p được" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Thiếu má»™t số táºp tin trong nhóm táºp tin gói “%sâ€." -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "CÆ¡ sở dữ liệu bị há»ng nên đã đổi tên táºp tin thà nh %s.old (old: cÅ©)." -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "CÆ¡ sở dữ liệu đã cÅ©, nên Ä‘ang cố nâng cấp lên thà nh %s" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -1954,192 +1992,192 @@ msgstr "" "Äịnh dạng cÆ¡ sở dữ liệu không hợp lệ. Nếu bạn đã nâng cấp từ má»™t phiên bản " "apt cÅ©, hãy gỡ bá» nó và sau đó tạo lại cÆ¡ sở dữ liệu." -#: ftparchive/cachedb.cc:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Không thể mở táºp tin cÆ¡ sở dữ liệu %s: %s." -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "Việc lấy thông tin thống kê cho %s bị lá»—i" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "Kho không có mục ghi Ä‘iá»u khiển" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "Không thể lấy con trá»" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "CB: Không thể Ä‘á»c thư mục %s\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "CB: Không thể lấy thông tin thống kê %s\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "L: " -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "CB: " -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "Lá»–I: có lá»—i áp dụng và o táºp tin " -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "Gặp lá»—i khi phân giải %s" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "Việc di chuyển qua cây bị lá»—i" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "Gặp lá»—i khi mở %s" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " Bá» liên kết %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "Gặp lá»—i khi Ä‘á»c liên kết %s" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "Việc bá» liên kết %s bị lá»—i" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Gặp lá»—i khi liên kết %s đến %s" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Hết hạn bá» liên kết cá»§a %sB.\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "Kho không có trưá»ng gói" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %s không có mục ghi đè (override)\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " ngưá»i bảo trì %s là %s không phải %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr " %s không có mục ghi đè (override) nguồn\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s cÅ©ng không có mục ghi đè (override) nhị phân\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc (cấp phát lại) - việc cấp phát bá»™ nhá»› bị lá»—i" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "Không thể mở %s" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, c-format msgid "Malformed override %s line %llu (%s)" msgstr "Sai “override†%s dòng %llu (%s)" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "Việc Ä‘á»c táºp tin đè %s bị lá»—i" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, c-format msgid "Malformed override %s line %llu #1" msgstr "Sai override %s dòng %llu #1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, c-format msgid "Malformed override %s line %llu #2" msgstr "Sai override %s dòng %llu #2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, c-format msgid "Malformed override %s line %llu #3" msgstr "Sai override %s dòng %llu #3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "Không biết thuáºt toán nén “%sâ€" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "Dữ liệu xuất đã nén %s cần má»™t bá»™ nén" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "Việc tạo TẬP_TIN* bị lá»—i" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "Gặp lá»—i khi rẽ nhánh tiến trình" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "Nén con" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "Lá»—i ná»™i bá»™, gặp lá»—i khi tạo %s" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "Gặp lá»—i khi nháºp/xuất và o tiến-trình-con/táºp-tin" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "Gặp lá»—i khi Ä‘á»c trong khi tÃnh MD5" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "Gặp lá»—i khi bá» liên kết %s" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "Việc đổi tên %s thà nh %s bị lá»—i" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 msgid "" "Usage: apt-internal-solver\n" "\n" @@ -2194,157 +2232,157 @@ msgstr "" " -c=? Äá»c táºp tin cấu hình nà y\n" " -o=? Äặt tùy chá»n cấu hình tùy ý, v.d. “-o dir::cache=/tmpâ€\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "Gặp lá»—i khi tạo các đưá»ng ống dẫn lệnh" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "Việc thá»±c hiện gzip bị lá»—i " -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "Kho bị há»ng." -#: apt-inst/contrib/extracttar.cc:201 +#: apt-inst/contrib/extracttar.cc:203 msgid "Tar checksum failed, archive corrupted" msgstr "Gặp lá»—i khi tổng kiểm “tarâ€, kho bị há»ng" -#: apt-inst/contrib/extracttar.cc:306 +#: apt-inst/contrib/extracttar.cc:308 #, c-format msgid "Unknown TAR header type %u, member %s" msgstr "Không rõ kiểu phần đầu tar %u, thà nh viên %s" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "Chữ ký kho không hợp lệ" -#: apt-inst/contrib/arfile.cc:82 +#: apt-inst/contrib/arfile.cc:84 msgid "Error reading archive member header" msgstr "Gặp lá»—i khi Ä‘á»c phần đầu thà nh viên kho" -#: apt-inst/contrib/arfile.cc:94 +#: apt-inst/contrib/arfile.cc:96 #, c-format msgid "Invalid archive member header %s" msgstr "Phần đầu thà nh viên kho lưu không hợp lệ %s" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "Phần đầu thà nh viên kho không hợp lê" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "Kho quá ngắn" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "Việc Ä‘á»c phần đầu kho bị lá»—i" -#: apt-inst/filelist.cc:382 +#: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" msgstr "DropNode (thả Ä‘iểm nút) được gá»i vá»›i Ä‘iểm nút còn liên kết" -#: apt-inst/filelist.cc:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" -msgstr "Gặp lá»—i xác định vị trà phần tá» băm!" +msgstr "Gặp lá»—i khi định vị phần tá» băm!" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" -msgstr "Gặp lá»—i khi xác định vị trà trệch Ä‘i" +msgstr "Gặp lá»—i khi định vị trệch Ä‘i" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "Lá»—i ná»™i bá»™ trong AddDiversion (thêm sá»± trệch Ä‘i)" -#: apt-inst/filelist.cc:479 +#: apt-inst/filelist.cc:477 #, c-format msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" msgstr "Äang cố ghi đè má»™t sá»± trệch Ä‘i, %s → %s và %s/%s" -#: apt-inst/filelist.cc:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "Sá»± trệch Ä‘i được thêm hai lần %s → %s" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "Táºp tin cấu hình (conf) trùng lặp %s/%s" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format msgid "Failed to write file %s" msgstr "Việc ghi táºp tin %s gặp lá»—i" -#: apt-inst/dirstream.cc:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "Việc đóng táºp tin %s gặp lá»—i" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format msgid "The path %s is too long" msgstr "ÄÆ°á»ng dẫn %s quá dà i" -#: apt-inst/extract.cc:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "Äang giải nén %s nhiá»u lần" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "Thư mục %s bị trệch hướng" -#: apt-inst/extract.cc:145 +#: apt-inst/extract.cc:152 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "Gói nà y Ä‘ang cố ghi và o Ä‘Ãch trệch Ä‘i %s/%s" -#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 msgid "The diversion path is too long" msgstr "ÄÆ°á»ng dẫn trệch Ä‘i quá dà i" -#: apt-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "Thư mục %s Ä‘ang được thay thế do má»™t cái không phải là thư mục" -#: apt-inst/extract.cc:282 +#: apt-inst/extract.cc:289 msgid "Failed to locate node in its hash bucket" -msgstr "Gặp lá»—i khi xác định vị trà điểm nút trong há»™p băm nó bị lá»—i" +msgstr "Gặp lá»—i định vị Ä‘iểm nút trong há»™p băm nó bị lá»—i" -#: apt-inst/extract.cc:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "ÄÆ°á»ng dẫn quá dà i" -#: apt-inst/extract.cc:414 +#: apt-inst/extract.cc:421 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Ghi đè lên gói đã khá»›p mà không có phiên bản cho %s" -#: apt-inst/extract.cc:431 +#: apt-inst/extract.cc:438 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "Táºp tin %s/%s ghi đè lên má»™t táºp tin trong gói %s" -#: apt-inst/extract.cc:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "Không thể lấy thông tin thống kê %s" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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 "Äây không phải là má»™t kho DEB hợp lệ vì còn thiếu thà nh viên “%sâ€" -#: apt-inst/deb/debfile.cc:124 +#: apt-inst/deb/debfile.cc:132 #, c-format msgid "Internal error, could not locate member %s" -msgstr "Gặp lá»—i ná»™i bá»™, không thể xác định vị trà thà nh viên %s" +msgstr "Gặp lá»—i ná»™i bá»™, không thể định vị thà nh viên %s" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "Táºp tin Ä‘iá»u khiển không có khả năng phân tách" @@ -2404,209 +2442,204 @@ msgstr "" "dùng tắt Ä‘i." #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "%li ngà y %li giá» %li phút %li giây" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "%li giá» %li phút %li giây" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "%li phút %li giây" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "%li giây" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "Không tìm thấy vùng chá»n %s" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Không chấp nháºn kiểu viết tắt: “%câ€" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "Äang mở táºp tin cấu hình %s..." -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Gặp lá»—i cú pháp %s:%u: Khối bắt đầu không có tên." -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Gặp lá»—i cú pháp %s:%u: Sai dạng thẻ" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Gặp lá»—i cú pháp %s:%u: Có rác sau giá trị" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "Gặp lá»—i cú pháp %s:%u: Chỉ có thể thá»±c hiện chỉ thị mức đầu" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Gặp lá»—i cú pháp %s:%u: Quá nhiá»u chỉ thị bao gồm lồng nhau" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Gặp lá»—i cú pháp %s:%u: Äã được bao gồm từ đây" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Gặp lá»—i cú pháp %s:%u: Chưa há»— trợ chỉ thị “%sâ€" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-pkg/contrib/configuration.cc:900 #, c-format msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" "Gặp lá»—i cú pháp %s:%u: Chỉ thị “clear†thì yêu cầu má»™t cây tuỳ chá»n là m đối " "số" -#: apt-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Gặp lá»—i cú pháp %s:%u: Gặp rác tại kết thúc táºp tin" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... Lá»—i!" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... Xong" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "..." #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, c-format msgid "%c%s... %u%%" msgstr "%c%s... %u%%" -#: apt-pkg/contrib/cmndline.cc:116 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format msgid "Command line option '%c' [from %s] is not known." -msgstr "Không rõ tùy chá»n dòng lệnh “%c†[từ %s]." +msgstr "Không hiểu tùy chá»n dòng lệnh “%c†[từ %s]." -#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 #, c-format msgid "Command line option %s is not understood" msgstr "Không hiểu tùy chá»n dòng lệnh %s" -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format msgid "Command line option %s is not boolean" msgstr "Tùy chá»n dòng lệnh %s không phải dạng lôgÃc (đúng/sai)" -#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "Tùy chá»n %s yêu cầu má»™t đối số." -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "Tùy chá»n %s: Äặc tả mục cấu hình phải có má»™t “=<giá_trị>â€." -#: apt-pkg/contrib/cmndline.cc:273 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format msgid "Option %s requires an integer argument, not '%s'" msgstr "Tùy chá»n %s yêu cầu má»™t đối số kiểu số nguyên, không phải “%sâ€" -#: apt-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "Tùy chá»n “%s†quá dà i" -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "Không hiểu %s: hãy thá» dùng true (đúng) hoặc false (sai)." -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "Thao tác “%s†không hợp lệ" -#: apt-pkg/contrib/cdromutl.cc:56 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format msgid "Unable to stat the mount point %s" msgstr "Không thể lấy các thông tin cho Ä‘iểm gắn kết %s" -#: apt-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "Việc lấy các thông tin thống kê đĩa CD-ROM bị lá»—i" -#: apt-pkg/contrib/fileutl.cc:95 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Gặp vấn đỠkhi đóng táºp tin gzip %s" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "Không dùng khả năng khóa cho táºp tin khóa chỉ Ä‘á»c %s" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "Không thể mở táºp tin khóa %s" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "Không dùng khả năng khóa cho táºp tin khóa đã lắp kiểu NFS %s" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "Không thể lấy khóa %s" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "" "Liệt kê các táºp tin không thể được tạo ra vì “%s†không phải là má»™t thư mục" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "Bá» qua “%s†trong thư mục “%s'vì nó không phải là táºp tin bình thưá»ng" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" "Bá» qua táºp tin “%s†trong thư mục “%s†vì nó không có phần Ä‘uôi mở rá»™ng" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" @@ -2614,286 +2647,296 @@ msgstr "" "Bá» qua táºp tin “%s†trong thư mục “%s†vì nó có phần Ä‘uôi mở rá»™ng không hợp " "lệ" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Tiến trình con %s đã nháºn má»™t lá»—i phân Ä‘oạn." -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, c-format msgid "Sub-process %s received signal %u." msgstr "Tiến trình con %s đã nháºn tÃn hiệu %u." -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 apt-pkg/contrib/gpgv.cc:239 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Tiến trình con %s đã trả vá» má»™t mã lá»—i (%u)" -#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Tiến trình con %s đã thoát bất thưá»ng" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Gặp vấn đỠkhi đóng táºp tin gzip %s" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "Không thể mở táºp tin %s" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, c-format msgid "Could not open file descriptor %d" msgstr "Không thể mở bá»™ mô tả táºp tin %d" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "Việc tạo tiến trình con IPC bị lá»—i" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "Gặp lá»—i khi thá»±c hiện nén " -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, c-format msgid "read, still have %llu to read but none left" msgstr "Ä‘á»c, còn cần Ä‘á»c %llu nhưng mà không có gì còn lại cả" -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, c-format msgid "write, still have %llu to write but couldn't" msgstr "ghi, còn cần ghi %llu nhưng mà không thể" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, c-format msgid "Problem closing the file %s" msgstr "Gặp vấn đỠkhi đóng táºp tin %s" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, c-format msgid "Problem renaming the file %s to %s" msgstr "Gặp vấn đỠkhi đổi tên táºp tin %s thà nh %s" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, c-format msgid "Problem unlinking the file %s" msgstr "Gặp vấn đỠkhi bá» liên kết táºp tin %s" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "Gặp vấn đỠkhi đồng bá»™ hóa táºp tin" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "gặp lá»—i khi đổi tên, %s (%s → %s)." + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, c-format msgid "No keyring installed in %s." msgstr "Không có vòng khoá nà o được cà i đặt và o %s." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "Bá»™ nhá»› tạm gói trống" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "Táºp tin nhá»› tạm gói bị há»ng" -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "Táºp tin nhá»› tạm gói là má»™t phiên bản không tương thÃch" -#: apt-pkg/pkgcache.cc:162 +#: apt-pkg/pkgcache.cc:169 msgid "The package cache file is corrupted, it is too small" msgstr "Táºp tin nhá»› tạm gói bị há»ng, nó quá nhá»" -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "Trình APT nà y không há»— trợ hệ thống Ä‘iá»u khiển phiên bản “%sâ€" -#: apt-pkg/pkgcache.cc:172 +#: apt-pkg/pkgcache.cc:179 msgid "The package cache was built for a different architecture" msgstr "Bá»™ nhá»› tạm gói được biên dịch cho má»™t kiến trúc khác" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "Phụ thuá»™c" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "Phụ thuá»™c sẵn" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "Äá» nghị" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "Khuyến khÃch" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "Xung đột" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "Thay thế" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "CÅ©" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "Là m há»ng" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "Tăng cưá»ng" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "quan trá»ng" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "yêu cầu" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "chuẩn" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "tùy chá»n" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "bổ sung" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "Äang xây dá»±ng cây quan hệ phụ thuá»™c" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "Phiên bản ứng cá»" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "Tạo ra quan hệ phụ thuá»™c" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 msgid "Reading state information" msgstr "Äang Ä‘á»c thông tin vá» tình trạng" -#: apt-pkg/depcache.cc:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "Lá»—i mở táºp tin tình trạng StateFile %s" -#: apt-pkg/depcache.cc:250 +#: apt-pkg/depcache.cc:256 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Gặp lá»—i khi ghi táºp tin tình trạng StateFile tạm thá»i %s" -#: apt-pkg/tagfile.cc:138 +#: apt-pkg/tagfile.cc:140 #, c-format msgid "Unable to parse package file %s (1)" msgstr "Không thể phân tÃch táºp tin gói %s (1)" -#: apt-pkg/tagfile.cc:235 +#: apt-pkg/tagfile.cc:237 #, c-format msgid "Unable to parse package file %s (2)" msgstr "Không thể phân tÃch táºp tin gói %s (2)" -#: apt-pkg/sourcelist.cc:118 +#: apt-pkg/sourcelist.cc:127 #, c-format msgid "Malformed stanza %u in source list %s (URI parse)" msgstr "Gặp Ä‘oạn sai dạng %u trong danh sách nguồn %s (ngữ pháp URI)" -#: apt-pkg/sourcelist.cc:161 +#: apt-pkg/sourcelist.cc:170 #, c-format msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" "Gặp dòng có sai dạng %lu trong danh sách nguồn %s ([tùy chá»n] không thể phân " "tÃch được)" -#: apt-pkg/sourcelist.cc:164 +#: apt-pkg/sourcelist.cc:173 #, c-format msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "Gặp dòng sai dạng %lu trong danh sách nguồn %s ([tùy chá»n] quá ngắn)" -#: apt-pkg/sourcelist.cc:175 +#: apt-pkg/sourcelist.cc:184 #, c-format msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" msgstr "" "Gặp dòng sai dạng %lu trong danh sách nguồn %s ([%s] không phải là má»™t phép " "gán)" -#: apt-pkg/sourcelist.cc:181 +#: apt-pkg/sourcelist.cc:190 #, c-format msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "" "Gặp dòng sai dạng %lu trong danh sách nguồn %s ([%s] không có khoá nà o)" -#: apt-pkg/sourcelist.cc:184 +#: apt-pkg/sourcelist.cc:193 #, c-format msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" "Gặp dòng sai dạng %lu trong danh sách nguồn %s (khoá [%s] %s không có giá " "trị)" -#: apt-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "Gặp dòng sai dạng %lu trong danh sách nguồn %s (địa chỉ URI)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "Gặp dòng sai dạng %lu trong danh sách nguồn %s (bản phân phối)" -#: apt-pkg/sourcelist.cc:202 +#: apt-pkg/sourcelist.cc:211 #, c-format msgid "Malformed line %lu in source list %s (URI parse)" msgstr "Gặp dòng sai dạng %lu trong danh sách nguồn %s (ngữ pháp URI)" -#: apt-pkg/sourcelist.cc:208 +#: apt-pkg/sourcelist.cc:217 #, c-format msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "" "Gặp dòng sai dạng %lu trong danh sách nguồn %s (bản phân phối tuyệt đối)" -#: apt-pkg/sourcelist.cc:215 +#: apt-pkg/sourcelist.cc:224 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" msgstr "" "Gặp dòng sai dạng %lu trong danh sách nguồn %s (phân tách bản phân phối)" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "Äang mở %s" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "Dòng %u quá dà i trong danh sách nguồn %s." -#: apt-pkg/sourcelist.cc:362 +#: apt-pkg/sourcelist.cc:371 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Gặp dòng sai dạng %u trong danh sách nguồn %s (kiểu)." -#: apt-pkg/sourcelist.cc:366 +#: apt-pkg/sourcelist.cc:375 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Không biết kiểu “%s†trên dòng %u trong danh sách nguồn %s." -#: apt-pkg/sourcelist.cc:407 +#: apt-pkg/sourcelist.cc:416 #, c-format msgid "Type '%s' is not known on stanza %u in source list %s" msgstr "Không hiểu kiểu “%s†trên Ä‘oạn %u trong danh sách nguồn %s" -#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2902,12 +2945,12 @@ msgstr "" "Không thể thá»±c hiện ngay láºp tức tiến trình cấu hình “%sâ€. Xem “man 5 apt." "conf †dưới “APT::Immediate-Configure†để tìm chi tiết. (%d)" -#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, c-format msgid "Could not configure '%s'. " msgstr "Không thể cấu hình “%sâ€. " -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2919,18 +2962,18 @@ msgstr "" "bạn tháºt sá»± muốn tiếp tục, có thể hoạt hóa tuy chá»n “APT::Force-" "LoopBreak†(buá»™c ngắt vòng lặp)." -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "Không há»— trợ kiểu táºp tin chỉ mục “%sâ€" -#: apt-pkg/algorithms.cc:266 +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "Cần phải cà i đặt lại gói %s, nhưng mà không thể tìm kho cho nó." -#: apt-pkg/algorithms.cc:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2938,91 +2981,91 @@ msgstr "" "Lá»—i: “pkgProblemResolver::Resolve†(bá»™ tháo gỡ vấn đỠgá»i::tháo gỡ) đã tạo " "ra nhiá»u chá»— ngắt, có lẽ má»™t số gói đã giữ lại đã gây ra trưá»ng hợp nà y." -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "Không thể sá»a trục trặc nà y, bạn đã giữ lại má»™t số gói bị há»ng." -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, c-format msgid "List directory %spartial is missing." msgstr "Thiếu thư mục danh sách %spartial." -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, c-format msgid "Archives directory %spartial is missing." msgstr "Thiếu thư mục kho lưu %spartial." -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, c-format msgid "Unable to lock directory %s" msgstr "Không thể khoá thư mục %s" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Äang tải táºp tin thứ %li trong tổng số %li (còn lại %s)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "Äang tải táºp tin %li trong tổng số %li" -#: apt-pkg/acquire-worker.cc:113 +#: apt-pkg/acquire-worker.cc:116 #, c-format msgid "The method driver %s could not be found." msgstr "Không tìm thấy trình Ä‘iá»u khiển phương thức %s." -#: apt-pkg/acquire-worker.cc:115 -#, fuzzy, c-format +#: apt-pkg/acquire-worker.cc:118 +#, c-format msgid "Is the package %s installed?" -msgstr "Hãy kiểm tra xem gói “dpkg-dev†đã được cà i đặt chưa.\n" +msgstr "Gói “%s†đã được cà i đặt chưa?" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "Phương thức %s đã không khởi chạy đúng đắn." -#: apt-pkg/acquire-worker.cc:452 +#: apt-pkg/acquire-worker.cc:455 #, c-format msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "Hãy cho đĩa có nhãn “%s†và o ổ “%s†rồi bấm nút Enter." -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Không há»— trợ hệ thống đóng gói “%sâ€" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "Không thể quyết định kiểu hệ thống đóng gói thÃch hợp" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "Không thể lấy trạng thái vá» %s." -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "" "Bạn phải để má»™t số địa chỉ URI “nguồn†và o “sources.list†(danh sách nguồn)" -#: apt-pkg/cachefile.cc:87 +#: apt-pkg/cachefile.cc:94 msgid "The package lists or status file could not be parsed or opened." msgstr "Không thể phân tÃch hay mở danh sách gói hay táºp tin trạng thái." -#: apt-pkg/cachefile.cc:91 +#: apt-pkg/cachefile.cc:98 msgid "You may want to run apt-get update to correct these problems" msgstr "" "Bạn nên lấy cÆ¡ sở dữ liệu má»›i bằng lệnh “apt-get update†để sá»a các vấn đỠ" "nà y" -#: apt-pkg/cachefile.cc:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "Không thể Ä‘á»c danh sách nguồn." -#: apt-pkg/policy.cc:75 +#: apt-pkg/policy.cc:83 #, c-format msgid "" "The value '%s' is invalid for APT::Default-Release as such a release is not " @@ -3031,97 +3074,92 @@ msgstr "" "Giá trị “%s†không hợp lệ cho APT::Default-Release như váºy bản phát hà nh " "không sẵn có trong mã nguồn" -#: apt-pkg/policy.cc:414 +#: apt-pkg/policy.cc:422 #, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "" "Gặp mục ghi sai trong táºp tin tùy thÃch %s: không có dòng đầu Package (Gói)." -#: apt-pkg/policy.cc:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "Không hiểu kiểu ghim %s" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "Chưa ghi rõ ưu tiên (hay số không) cho ghim" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 msgid "Cache has an incompatible versioning system" msgstr "Bá»™ nhá»› tạm có hệ thống Ä‘iá»u khiển phiên bản không tương thÃch" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Có lá»—i phát sinh khi xá» lý %s (%s%d)" -#: apt-pkg/pkgcachegen.cc:251 +#: apt-pkg/pkgcachegen.cc:257 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "á»’, bạn đã vượt quá số tên gói mà trình APT nà y có thể quản lý." -#: apt-pkg/pkgcachegen.cc:254 +#: apt-pkg/pkgcachegen.cc:260 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "á»’, bạn đã vượt quá số phiên bản mà trình APT nà y có thể quản lý." -#: apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:263 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "á»’, bạn đã vượt quá số mô tả mà trình APT nà y có thể quản lý." -#: apt-pkg/pkgcachegen.cc:260 +#: apt-pkg/pkgcachegen.cc:266 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "á»’, bạn đã vượt quá số cách phụ thuá»™c mà trình APT nà y có thể quản lý." -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:576 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Không tìm thấy gói %s %s khi xá» lý quan hệ phụ thuá»™c cá»§a táºp tin" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "Không thể lấy các thông tin vá» danh sách gói nguồn %s" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 msgid "Reading package lists" msgstr "Äang Ä‘á»c các danh sách gói" -#: apt-pkg/pkgcachegen.cc:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "Äang táºp hợp các Nhà cung cấp Táºp tin" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 msgid "IO Error saving source cache" msgstr "Lá»—i nháºp/xuất khi lưu bá»™ nhá»› tạm nguồn" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "gặp lá»—i khi đổi tên, %s (%s → %s)." - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" -msgstr "Mã băm tổng kiểm tra (hash sum) không khá»›p" +msgstr "Mã băm tổng kiểm tra không khá»›p" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "KÃch cỡ không khá»›p nhau" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 msgid "Invalid file format" msgstr "Äịnh dạng táºp táºp tin không hợp lệ" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, c-format msgid "" "Unable to find expected entry '%s' in Release file (Wrong sources.list entry " @@ -3130,16 +3168,16 @@ msgstr "" "Không tìm thấy mục cần thiết “%s†trong táºp tin Phát hà nh (Sai mục trong " "sources.list hoặc táºp tin bị há»ng)" -#: apt-pkg/acquire-item.cc:1586 +#: apt-pkg/acquire-item.cc:1595 #, c-format msgid "Unable to find hash sum for '%s' in Release file" msgstr "Không thể tìm thấy mã băm tổng kiểm tra cho táºp tin Phát hà nh %s" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "Không có khóa công sẵn sà ng cho những mã số khoá theo đây:\n" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " @@ -3148,12 +3186,12 @@ msgstr "" "Táºp tin phát hà nh %s đã hết hạn (không hợp lệ kể từ %s). Cáºp nháºt cho kho " "nà y sẽ không được áp dụng." -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Bản phát hà nh xung đột: %s (cần %s nhưng lại nháºn được %s)" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3164,12 +3202,12 @@ msgstr "" "Lá»—i GPG: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "Lá»—i GPG: %s: %s" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3178,12 +3216,12 @@ msgstr "" "Không tìm thấy táºp tin liên quan đến gói %s. Có lẽ bạn cần phải tá»± sá»a gói " "nà y, do thiếu kiến trúc." -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "Không tìm thấy nguồn cho việc tải vá» phiên bản “%s†of “%sâ€" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -3191,74 +3229,70 @@ msgstr "" "Các táºp tin chỉ mục cá»§a gói nà y bị há»ng. Không có trưá»ng Filename: (Tên táºp " "tin:) cho gói %s." -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, c-format msgid "Unable to parse Release file %s" msgstr "Không thể phân tÃch cú pháp cá»§a táºp tin Phát hà nh %s" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, c-format msgid "No sections in Release file %s" msgstr "Không có phần nà o trong táºp tin Phát hà nh %s" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "Không có mục Hash (chuá»—i duy nhất) nà o trong táºp tin Phát hà nh %s" -#: apt-pkg/indexrecords.cc:125 +#: apt-pkg/indexrecords.cc:130 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "" "Gặp mục tin “Valid-Until†(hợp lệ đến khi) không hợp lệ trong táºp tin Phát " "hà nh %s" -#: apt-pkg/indexrecords.cc:144 +#: apt-pkg/indexrecords.cc:149 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "" "Gặp mục tin “Date†(ngà y tháng) không hợp lệ trong táºp tin Phát hà nh %s" -#: apt-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "Khối nhà bán %s không chứa vân tay" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Äang dùng Ä‘iểm gắn đĩa CD-ROM %s\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" msgstr "Äang bá» gắn CD-ROM...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "Äang đợi đĩa...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "Äang gắn đĩa CD-ROM...\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " msgstr "Äang nháºn diện... " -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "Nhãn đã lưu: %s\n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "Äang bá» gắn CD-ROM...\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" msgstr "Äang quét đĩa tìm táºp tin chỉ mục...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3266,7 +3300,7 @@ msgid "" msgstr "" "Tìm thấy %zu chỉ mục gói, %zu chỉ mục nguồn, %zu chỉ mục dịch và %zu chữ ký\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" @@ -3274,16 +3308,16 @@ msgstr "" "Không tìm thấy táºp tin gói nà o, có thể vì đây không phải là má»™t ÄÄ©a Debian, " "hoặc có kiến trúc không đúng?" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "Tìm thấy nhãn “%sâ€\n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "Nó không phải là má»™t tên hợp lệ: hãy thá» lại.\n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3292,34 +3326,34 @@ msgstr "" "Tên đĩa nà y:\n" "“%sâ€\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "Äang sao chép các danh sách gói..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "Äang ghi danh sách nguồn má»›i\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "Các mục tin danh sách nguồn cho đĩa nà y:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format msgid "Wrote %i records.\n" msgstr "Äã ghi %i bản ghi.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:777 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Äã ghi %i bản ghi vá»›i %i táºp tin còn thiếu.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:780 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Äã ghi %i bản ghi vá»›i %i táºp tin không khá»›p vá»›i nhau\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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 "" @@ -3336,37 +3370,37 @@ msgstr "Không tìm thấy bản ghi xác thá»±c cho: %s" msgid "Hash mismatch for: %s" msgstr "Sai khá»›p chuá»—i duy nhất cho: %s" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Không tìm thấy bản phát hà nh “%s†cho “%sâ€" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Không tìm thấy phiên bản “%s†cho “%sâ€" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, c-format msgid "Couldn't find task '%s'" msgstr "Không tìm thấy tác vụ “%sâ€" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, c-format msgid "Couldn't find any package by regex '%s'" msgstr "Không tìm thấy gói nà o theo biểu thức chÃnh quy “%sâ€" -#: apt-pkg/cacheset.cc:605 -#, fuzzy, c-format +#: apt-pkg/cacheset.cc:613 +#, c-format msgid "Couldn't find any package by glob '%s'" -msgstr "Không tìm thấy gói nà o theo biểu thức chÃnh quy “%sâ€" +msgstr "Không tìm thấy gói nà o theo đưá»ng dẫn “%sâ€" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, c-format msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "Không thể chá»n phiên bản trong gói “%s†vì nó chỉ là ảo" -#: apt-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " @@ -3375,53 +3409,53 @@ msgstr "" "Không thể chá»n phiên bản được cà i đặt hoặc phiên bản ứng cá» trong gói “%s†" "mà không có trong nó" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, c-format msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "Không thể chá»n phiên bản má»›i nhất trong gói “%s†vì nó chỉ là ảo" -#: apt-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "Không thể chá»n phiên bản ứng cá» trong gói %s vì nó không có ứng cá»" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "" "Không thể chá»n phiên bản được cà i đặt trong gói %s vì nó không phải được cà i " "đặt" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "Gá»i kịch bản đến bá»™ phân giải" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "Gá»i yêu cầu đến bá»™ phân giải" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "Chuẩn bị để lấy cách giải quyết" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "Bá»™ phân giải bên ngoà i gặp lá»—i mà không trả vá» thông tin lá»—i thÃch hợp" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "Thi hà nh bá»™ phân giải từ bên ngoà i" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "Diá»…n biến: [%3i%%]" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "Äang chạy dpkg" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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." @@ -3429,119 +3463,119 @@ msgstr "" "Má»™t số táºp tin chỉ mục không tải vỠđược. Chúng đã bị bá» qua, hoặc cái cÅ© đã " "được dùng thay thế." -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "Äang cà i đặt %s" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "Äang cấu hình %s" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "Äang gỡ bá» %s" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format msgid "Completely removing %s" msgstr "Äang gỡ bá» hoà n toà n %s" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "Äang ghi chép sá»± biến mất cá»§a %s" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "Äang chạy bẫy sau-cà i-đặt %s" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "Thiếu thư mục “%sâ€" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format msgid "Could not open file '%s'" msgstr "Không thể mở táºp tin “%sâ€" -#: apt-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "Äang chuẩn bị %s" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "Äang mở gói %s" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "Äang chuẩn bị cấu hình %s" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "Äã cà i đặt %s" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "Äang chuẩn bị gỡ bá» %s" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "Äã gỡ bá» %s" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "Äang chuẩn bị gỡ bá» hoà n toà n %s" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "Gỡ bá» hoà n toà n %s" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "ioctl(TIOCGWINSZ) gặp lá»—i" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, c-format msgid "Can not write log (%s)" msgstr "Không thể ghi nháºt ký (%s)" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "/dev/pts đã gắn chưa?" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "Äầu ra là thiết bị cuối?" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "Hệ Ä‘iá»u hà nh đã ngắt trước khi nó kịp hoà n thà nh" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 msgid "No apport report written because MaxReports is reached already" msgstr "" "Không ghi báo cáo apport, vì đã chạm giá»›i hạn số các báo cáo (MaxReports)" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "gặp vấn đỠvá» quan hệ phụ thuá»™c nên để lại không cấu hình" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3549,14 +3583,14 @@ msgstr "" "Không ghi báo cáo apport, vì thông Ä‘iệp lá»—i chỉ thị đây là má»™t lá»—i kế tiếp " "do má»™t sá»± thất bại trước đó." -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" "Không ghi báo cáo apport, vì thông Ä‘iệp lá»—i chỉ thị đây là má»™t lá»—i “đĩa đầyâ€" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3564,7 +3598,7 @@ msgstr "" "Không ghi báo cáo apport, vì thông Ä‘iệp lá»—i chỉ thị đây là má»™t lá»—i “không đủ " "bá»™ nhá»›â€" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 msgid "" "No apport report written because the error message indicates an issue on the " "local system" @@ -3572,13 +3606,13 @@ msgstr "" "Không ghi báo cáo apport, vì thông Ä‘iệp lá»—i chỉ thị đây là má»™t lá»—i trên hệ " "thống ná»™i bá»™" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" "Không ghi báo cáo apport, vì thông Ä‘iệp lá»—i chỉ thị đây là má»™t lá»—i “V/R dpkgâ€" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " @@ -3587,14 +3621,14 @@ msgstr "" "Không thể khoá thư mục quản trị (%s), có má»™t tiến trình khác Ä‘ang sá» dụng nó " "phải không?" -#: apt-pkg/deb/debsystem.cc:87 +#: apt-pkg/deb/debsystem.cc:94 #, c-format msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Không thể khoá thư mục quản trị (%s), bạn có quyá»n root không?" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " @@ -3602,7 +3636,7 @@ msgstr "" "dpkg bị ngắt giữa chừng, bạn cần phải chạy “%s†má»™t cách thá»§ công để giải " "vấn đỠnà y. " -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "Chưa được khoá" diff --git a/po/zh_CN.po b/po/zh_CN.po index 5df69c4ee..463d76e71 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 <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2010-08-26 14:42+0800\n" "Last-Translator: Aron Xu <happyaron.xu@gmail.com>\n" "Language-Team: Chinese (simplified) <i18n-zh@googlegroups.com>\n" @@ -19,152 +19,153 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: cmdline/apt-cache.cc:140 +#: cmdline/apt-cache.cc:149 #, c-format msgid "Package %s version %s has an unmet dep:\n" msgstr "版本为 %2$s 的软件包 %1$s 有未满足的ä¾èµ–关系:\n" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "软件包å称总数:" -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 msgid "Total package structures: " msgstr "全部软件包结构:" -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " 普通软件包:" -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " 完全虚拟软件包:" -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " å•虚拟软件包:" -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " æ··åˆè™šæ‹Ÿè½¯ä»¶åŒ…:" -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " 缺失:" -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "按版本共计:" -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "按ä¸åŒçš„说明共计:" -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "按ä¾èµ–关系共计:" -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "按版本/文件关系共计:" -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "按说明/文件关系共计:" -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "æä¾›æ˜ 射共计:" -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "Glob å—串共计:" -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "ä¾èµ–å…³ç³»ç‰ˆæœ¬åæ‰€å 空间共计:" -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "Slack 空间共计:" -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "总å 用空间:" -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: 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 å°šæœªåŒæ¥ã€‚" -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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 "没有å‘现匹é…的软件包" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 msgid "You must give at least one search pattern" msgstr "您必须明确地给出至少一个表达å¼" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "未å‘现软件包 %s" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "软件包文件:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: 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)一个软件包文件" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "被é”定的软件包:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(没有找到)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " 已安装:" -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " 候选软件包:" -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(æ— )" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " 软件包é”:" #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " 版本列表:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: 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:1740 +#: cmdline/apt-cache.cc:1749 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -238,28 +239,28 @@ msgstr "" " -o=? è®¾ç½®ä»»æ„æŒ‡å®šçš„é…置选项,例如 -o dir::cache=/tmp\n" "è‹¥è¦äº†è§£æ›´å¤šä¿¡æ¯ï¼Œæ‚¨è¿˜å¯ä»¥æŸ¥é˜… apt-cache(8) å’Œ apt.conf(5) å‚考手册。\n" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: 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:104 +#: cmdline/apt-cdrom.cc:91 msgid "Please insert a Disc in the drive and press enter" msgstr "请把盘片æ’å…¥é©±åŠ¨å™¨å†æŒ‰å›žè½¦é”®" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, c-format msgid "Failed to mount '%s' to '%s'" msgstr "æ— æ³•å°† %s 挂载到 %s" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "请对您的盘片套件ä¸çš„其它盘片é‡å¤ç›¸åŒçš„æ“ä½œã€‚" @@ -295,65 +296,65 @@ msgstr "" " -c=? è¯»å–æŒ‡å®šçš„é…置文件\n" " -o=? è®¾ç½®ä»»æ„æŒ‡å®šçš„é…置选项,例如:-o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:244 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format msgid "Can not find a package for architecture '%s'" msgstr "æ— æ³•æŒ‰ç…§æ£åˆ™è¡¨è¾¾å¼ %s 找到任何软件包" -#: cmdline/apt-get.cc:326 +#: cmdline/apt-get.cc:327 #, fuzzy, c-format msgid "Can not find a package '%s' with version '%s'" msgstr "æ— æ³•æŒ‰ç…§æ£åˆ™è¡¨è¾¾å¼ %s 找到任何软件包" -#: cmdline/apt-get.cc:329 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format msgid "Can not find a package '%s' with release '%s'" msgstr "æ— æ³•æŒ‰ç…§æ£åˆ™è¡¨è¾¾å¼ %s 找到任何软件包" -#: cmdline/apt-get.cc:366 +#: 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:422 +#: cmdline/apt-get.cc:423 #, fuzzy, c-format msgid "Can not find version '%s' of package '%s'" msgstr "忽略ä¸å¯ç”¨çš„ %2$s 软件包的 %1$s 版" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "æ— æ³•æ‰¾åˆ°è½¯ä»¶åŒ… %s" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "%s 被设置为手动安装。\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: 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:468 cmdline/apt-mark.cc:116 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 msgid "Internal error, problem resolver broke stuff" msgstr "内部错误,问题解决工具å事了" -#: cmdline/apt-get.cc:573 cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 msgid "Unable to lock the download directory" msgstr "æ— æ³•é”定下载目录" -#: cmdline/apt-get.cc:725 +#: cmdline/apt-get.cc:726 msgid "Must specify at least one package to fetch source for" msgstr "è¦ä¸‹è½½æºä»£ç ,必须指定至少一个对应的软件包" -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "æ— æ³•æ‰¾åˆ°ä¸Ž %s 对应的æºä»£ç 包" @@ -378,114 +379,114 @@ msgstr "" "bzr get %s\n" "获得该软件包的最近更新(å¯èƒ½å°šæœªæ£å¼å‘布)。\n" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "忽略已下载过的文件“%sâ€\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "æ— æ³•èŽ·çŸ¥æ‚¨åœ¨ %s 上的å¯ç”¨ç©ºé—´" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "您在 %s 上没有足够的å¯ç”¨ç©ºé—´" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "需è¦ä¸‹è½½ %sB/%sB çš„æºä»£ç 包。\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "需è¦ä¸‹è½½ %sB çš„æºä»£ç 包。\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "下载æºä»£ç %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "æœ‰ä¸€äº›åŒ…æ–‡ä»¶æ— æ³•ä¸‹è½½ã€‚" -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "ä¸‹è½½å®Œæ¯•ï¼Œç›®å‰æ˜¯â€œä»…ä¸‹è½½â€æ¨¡å¼" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "忽略已ç»è¢«è§£åŒ…到 %s 目录的æºä»£ç 包\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "è¿è¡Œè§£åŒ…的命令“%sâ€å‡ºé”™ã€‚\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "请检查是å¦å®‰è£…了“dpkg-devâ€è½¯ä»¶åŒ…。\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "æ‰§è¡Œæž„é€ è½¯ä»¶åŒ…å‘½ä»¤â€œ%sâ€å¤±è´¥ã€‚\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "å进程出错" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "è¦æ£€æŸ¥ç”Ÿæˆè½¯ä»¶åŒ…的构建ä¾èµ–关系,必须指定至少一个软件包" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "æ— æ³•èŽ·å¾— %s 的构建ä¾èµ–关系信æ¯" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr " %s 没有构建ä¾èµ–关系信æ¯ã€‚\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " "packages" msgstr "ç”±äºŽæ— æ³•æ‰¾åˆ°è½¯ä»¶åŒ… %3$s ï¼Œå› æ¤ä¸èƒ½æ»¡è¶³ %2$s æ‰€è¦æ±‚çš„ %1$s ä¾èµ–关系" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "ç”±äºŽæ— æ³•æ‰¾åˆ°è½¯ä»¶åŒ… %3$s ï¼Œå› æ¤ä¸èƒ½æ»¡è¶³ %2$s æ‰€è¦æ±‚çš„ %1$s ä¾èµ–关系" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "æ— æ³•æ»¡è¶³ %2$s æ‰€è¦æ±‚ %1$s ä¾èµ–关系:已安装的软件包 %3$s 太新" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -494,37 +495,37 @@ msgstr "" "ç”±äºŽæ— æ³•æ‰¾åˆ°ç¬¦åˆè¦æ±‚的软件包 %3$s çš„å¯ç”¨ç‰ˆæœ¬ï¼Œå› æ¤ä¸èƒ½æ»¡è¶³ %2$s æ‰€è¦æ±‚çš„ " "%1$s ä¾èµ–关系" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " "version" msgstr "ç”±äºŽæ— æ³•æ‰¾åˆ°è½¯ä»¶åŒ… %3$s ï¼Œå› æ¤ä¸èƒ½æ»¡è¶³ %2$s æ‰€è¦æ±‚çš„ %1$s ä¾èµ–关系" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "æ— æ³•æ»¡è¶³ %2$s æ‰€è¦æ±‚ %1$s ä¾èµ–关系:%3$s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "ä¸èƒ½æ»¡è¶³è½¯ä»¶åŒ… %s æ‰€è¦æ±‚的构建ä¾èµ–关系。" -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "æ— æ³•å¤„ç†æž„建ä¾èµ–关系" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "æ£åœ¨è¿žæŽ¥ %s (%s)" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "支æŒçš„æ¨¡å—:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -612,53 +613,75 @@ msgstr "" "ä»¥èŽ·å–æ›´å¤šä¿¡æ¯å’Œé€‰é¡¹ã€‚\n" " 本 APT 具有超级牛力。\n" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "è¦ä¸‹è½½æºä»£ç ,必须指定至少一个对应的软件包" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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:63 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format msgid "%s was already set to manually installed.\n" msgstr "%s 被设置为手动安装。\n" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, fuzzy, c-format msgid "%s was already set to automatically installed.\n" msgstr "%s 被设置为手动安装。\n" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format msgid "%s was already set on hold.\n" msgstr "%s å·²ç»æ˜¯æœ€æ–°çš„版本了。\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, fuzzy, c-format msgid "%s was already not hold.\n" msgstr "%s å·²ç»æ˜¯æœ€æ–°çš„版本了。\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "ç‰å¾…å进程 %s 的退出,但是它并ä¸å˜åœ¨" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: 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:264 cmdline/apt-mark.cc:316 +#: 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:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" "\n" @@ -685,7 +708,7 @@ msgid "" "See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -733,173 +756,175 @@ msgstr "æ— æ³•å¸è½½çŽ°åœ¨æŒ‚è½½äºŽ %s çš„ CD-ROM,它å¯èƒ½æ£åœ¨ä½¿ç”¨ä¸ã€‚" msgid "Disk not found." msgstr "找ä¸åˆ°ç›˜ç‰‡ã€‚" -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "æ— æ³•æ‰¾åˆ°è¯¥æ–‡ä»¶" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 msgid "Failed to stat" msgstr "æ— æ³•è¯»å–状æ€" -#: methods/copy.cc:82 methods/gzip.cc:113 methods/rred.cc:606 +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 msgid "Failed to set modification time" msgstr "æ— æ³•è®¾ç½®æ–‡ä»¶çš„ä¿®æ”¹æ—¥æœŸ" -#: methods/file.cc:47 +#: 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:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "æ£åœ¨ç™»å½•" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "æ— æ³•èŽ·çŸ¥å¯¹æ–¹ä¸»æœºå" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "æ— æ³•èŽ·çŸ¥æœ¬åœ°ä¸»æœºå" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format msgid "The server refused the connection and said: %s" msgstr "æœåŠ¡å™¨æ‹’ç»äº†æˆ‘们的连接,å“应信æ¯ä¸ºï¼š%s" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "USER 指令出错,æœåС噍å“应信æ¯ä¸ºï¼š%s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS 指令出错,æœåС噍å“应信æ¯ä¸ºï¼š%s" -#: methods/ftp.cc:247 +#: 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:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "登录脚本命令“%sâ€å‡ºé”™ï¼ŒæœåС噍å“应信æ¯ä¸ºï¼š%s" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE 指令出错,æœåС噍å“应信æ¯ä¸ºï¼š%s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 msgid "Connection timeout" msgstr "连接超时" -#: methods/ftp.cc:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "æœåС噍关é—了连接" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "读错误" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "回应超出了缓å˜åŒºå¤§å°ã€‚" -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "å议有误" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "写出错" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 msgid "Could not create a socket" msgstr "æ— æ³•åˆ›å»ºå¥—æŽ¥å—" -#: methods/ftp.cc:707 +#: methods/ftp.cc:712 msgid "Could not connect data socket, connection timed out" msgstr "æ— æ³•è¿žæŽ¥ä¸Šæ•°æ®å¥—接å—,连接超时" -#: methods/ftp.cc:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "失败" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "æ— æ³•è¿žæŽ¥è¢«åŠ¨æ¨¡å¼çš„套接å—。" -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo æ— æ³•å¾—åˆ°ç›‘å¬å¥—接å—" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "æ— æ³•ç»‘å®šå¥—æŽ¥å—" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "æ— æ³•åœ¨å¥—æŽ¥å—上监å¬" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "æ— æ³•ç¡®å®šå¥—æŽ¥å—çš„åå—" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "æ— æ³•å‘出 PORT 指令" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "æ— æ³•è¯†åˆ«çš„åœ°å€æ— %u (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT 指令出错,æœåС噍å“应信æ¯ä¸ºï¼š%s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "æ•°æ®å¥—接å—连接超时" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "æ— æ³•æŽ¥å—连接" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "æŠŠæ–‡ä»¶åŠ å…¥å“ˆå¸Œè¡¨æ—¶å‡ºé”™" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "æ— æ³•èŽ·å–æ–‡ä»¶ï¼ŒæœåС噍å“应信æ¯ä¸ºâ€œ%sâ€" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "æ•°æ®å¥—接å—è¶…æ—¶" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "æ•°æ®ä¼ é€å‡ºé”™ï¼ŒæœåС噍å“应信æ¯ä¸ºâ€œ%sâ€" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "查询" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "æ— æ³•è°ƒç”¨ " @@ -935,7 +960,7 @@ msgstr "æ— æ³•è¿žæŽ¥ä¸Š %s:%s (%s)。" #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "æ£åœ¨è¿žæŽ¥ %s" @@ -965,181 +990,181 @@ msgstr "è§£æžâ€œ%s:%sâ€æ—¶ï¼Œå‡ºçŽ°äº†æŸäº›æ•…éšœ(%i - %s)" msgid "Unable to connect to %s:%s:" msgstr "ä¸èƒ½è¿žæŽ¥åˆ° %s:%s:" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "内部错误:ç¾åæ£ç¡®æ— è¯¯ï¼Œä½†æ˜¯æ— æ³•ç¡®è®¤å¯†é’¥æŒ‡çº¹ï¼Ÿï¼" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "至少å‘çŽ°ä¸€ä¸ªæ— æ•ˆçš„ç¾å。" -#: methods/gpgv.cc:172 +#: 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:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "è¿è¡Œ gpgv æ—¶å‘生未知错误" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "下列ç¾åæ— æ•ˆï¼š\n" -#: methods/gpgv.cc:229 +#: 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:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "写入文件出错" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "从æœåŠ¡å™¨è¯»å–æ•°æ®æ—¶å‡ºé”™ï¼Œå¯¹æ–¹å…³é—了连接" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "从æœåŠ¡å™¨è¯»å–æ•°æ®å‡ºé”™" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "写入文件出错" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "select 调用出错" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "连接超时" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "写输出文件时出错" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "æ£åœ¨ç‰å¾…报头" -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "错误的报头行" -#: methods/server.cc:139 methods/server.cc:146 +#: methods/server.cc:134 methods/server.cc:141 msgid "The HTTP server sent an invalid reply header" msgstr "该 HTTP æœåС噍å‘é€äº†ä¸€ä¸ªæ— æ•ˆçš„åº”ç”æŠ¥å¤´" -#: methods/server.cc:176 +#: methods/server.cc:171 msgid "The HTTP server sent an invalid Content-Length header" msgstr "该 HTTP æœåС噍å‘é€äº†ä¸€ä¸ªæ— 效的 Content-Length 报头" -#: methods/server.cc:199 +#: methods/server.cc:194 msgid "The HTTP server sent an invalid Content-Range header" msgstr "该 HTTP æœåС噍å‘é€äº†ä¸€ä¸ªæ— 效的 Content-Range 报头" -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "该 HTTP æœåŠ¡å™¨çš„ range 支æŒä¸æ£å¸¸" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "æ— æ³•è¯†åˆ«çš„æ—¥æœŸæ ¼å¼" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "错误的报头数æ®" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "连接失败" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "内部错误" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "内部错误,InstallPackages è¢«ç”¨åœ¨äº†æ— æ³•å®‰è£…çš„è½¯ä»¶åŒ…ä¸Šï¼" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "有软件包需è¦è¢«å¸è½½ï¼Œä½†æ˜¯å¸è½½åŠ¨ä½œè¢«ç¨‹åºè®¾ç½®æ‰€ç¦æ¢ã€‚" -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "内部错误,Ordering 未能完æˆ" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "怪了……文件大å°ä¸ç¬¦ï¼Œè¯·å‘ä¿¡ç»™ apt@packages.debian.org å§" #. TRANSLATOR: The required 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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "需è¦ä¸‹è½½ %sB/%sB 的软件包。\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:171 +#: apt-private/private-install.cc:159 #, 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:178 +#: apt-private/private-install.cc:166 #, c-format msgid "After this operation, %sB of additional disk space will be used.\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:183 +#: apt-private/private-install.cc:171 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "解压缩åŽå°†ä¼šç©ºå‡º %sB 的空间。\n" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "您在 %s 上没有足够的å¯ç”¨ç©ºé—´ã€‚" -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "碰到了一些问题,您使用了 -y 选项,但是没有用 --force-yes" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "是,按我说的åšï¼" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1150,19 +1175,19 @@ msgstr "" "若还想继ç»çš„è¯ï¼Œå°±è¾“入下é¢çš„çŸå¥â€œ%sâ€\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "䏿¢æ‰§è¡Œã€‚" -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 msgid "Do you want to continue?" msgstr "æ‚¨å¸Œæœ›ç»§ç»æ‰§è¡Œå—?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "æœ‰ä¸€äº›æ–‡ä»¶æ— æ³•ä¸‹è½½" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1170,19 +1195,19 @@ msgstr "" "æœ‰å‡ ä¸ªè½¯ä»¶åŒ…æ— æ³•ä¸‹è½½ï¼Œæ‚¨å¯ä»¥è¿è¡Œ apt-get update æˆ–è€…åŠ ä¸Š --fix-missing 的选项" "å†è¯•试?" -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "ç›®å‰è¿˜ä¸æ”¯æŒ --fix-missing 和介质交æ¢" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "æ— æ³•æ›´æ£ç¼ºå°‘的软件包。" -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "䏿¢å®‰è£…。" -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1191,15 +1216,15 @@ msgid_plural "" "all files have been overwritten by other packages:" msgstr[0] "ä»¥ä¸‹è½¯ä»¶åŒ…å› ä¸ºæ–‡ä»¶å·²è¢«å…¶ä»–è½¯ä»¶åŒ…è¦†ç›–è€Œæ¶ˆå¤±ï¼š" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "注æ„:这是自动被 dpkg 有æ„完æˆçš„。" -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "我们ä¸åº”è¯¥è¿›è¡Œåˆ é™¤ï¼Œæ— æ³•å¯åŠ¨è‡ªåŠ¨åˆ é™¤å™¨" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1215,15 +1240,15 @@ msgstr "似乎自动å¸è½½å·¥å…·æŸå了一些软件,这ä¸åº”该å‘生。请 #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 msgid "The following information may help to resolve the situation:" msgstr "下列信æ¯å¯èƒ½ä¼šå¯¹è§£å†³é—®é¢˜æœ‰æ‰€å¸®åŠ©ï¼š" -#: apt-private/private-install.cc:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "内部错误,自动å¸è½½å·¥å…·å事了" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1231,24 +1256,24 @@ msgid_plural "" "required:" msgstr[0] "下列软件包是自动安装的并且现在ä¸éœ€è¦äº†ï¼š" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" "%lu packages were automatically installed and are no longer required.\n" msgstr[0] "%lu 个自动安装的的软件包现在已ä¸å†éœ€è¦äº†ã€‚\n" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 #, fuzzy msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "使用'apt-get autoremove'æ¥å¸è½½å®ƒä»¬" -#: apt-private/private-install.cc:624 +#: 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:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1256,7 +1281,7 @@ msgstr "" "有未能满足的ä¾èµ–关系。请å°è¯•䏿Œ‡æ˜Žè½¯ä»¶åŒ…çš„åå—æ¥è¿è¡Œâ€œapt-get -f installâ€(也å¯" "以指定一个解决办法)。" -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1267,145 +1292,145 @@ msgstr "" "å› ä¸ºç³»ç»Ÿæ— æ³•è¾¾åˆ°æ‚¨è¦æ±‚的状æ€é€ æˆçš„。该版本ä¸å¯èƒ½ä¼šæœ‰ä¸€äº›æ‚¨éœ€è¦çš„软件\n" "包尚未被创建或是它们已被从新到(Incoming)目录移出。" -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "ç ´æŸçš„软件包" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "将会安装下列é¢å¤–的软件包:" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "建议安装的软件包:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "推è安装的软件包:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ã€è¦å‘Šã€‘:下列软件包ä¸èƒ½é€šè¿‡éªŒè¯ï¼" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "忽略了认è¯è¦å‘Šã€‚\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "有些软件包ä¸èƒ½é€šè¿‡éªŒè¯" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "ä¸ç»éªŒè¯å°±å®‰è£…这些软件包å—?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "æ— æ³•ä¸‹è½½ %s %s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr " [已安装]" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr " [已安装]" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr " [已安装]" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr " [已安装]" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "下列软件包有未满足的ä¾èµ–关系:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "但是 %s å·²ç»å®‰è£…" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "但是 %s æ£è¦è¢«å®‰è£…" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "ä½†æ— æ³•å®‰è£…å®ƒ" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "但是它是虚拟软件包" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "但是它还没有被安装" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "但是它将ä¸ä¼šè¢«å®‰è£…" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr " 或" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "ä¸‹åˆ—ã€æ–°ã€‘软件包将被安装:" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "下列软件包将被ã€å¸è½½ã€‘:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "ä¸‹åˆ—è½¯ä»¶åŒ…çš„ç‰ˆæœ¬å°†ä¿æŒä¸å˜ï¼š" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "下列软件包将被å‡çº§ï¼š" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "下列软件包将被ã€é™çº§ã€‘:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "ä¸‹åˆ—è¢«è¦æ±‚ä¿æŒç‰ˆæœ¬ä¸å˜çš„软件包将被改å˜ï¼š" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%s (是由于 %s) " -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1413,27 +1438,27 @@ msgstr "" "ã€è¦å‘Šã€‘:下列基础软件包将被å¸è½½ã€‚\n" "请勿å°è¯•ï¼Œé™¤éžæ‚¨ç¡®å®žçŸ¥é“您在åšä»€ä¹ˆï¼" -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "å‡çº§äº† %lu 个软件包,新安装了 %lu 个软件包," -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "釿–°å®‰è£…了 %lu 个软件包," -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "é™çº§äº† %lu 个软件包," -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "è¦å¸è½½ %lu 个软件包,有 %lu 个软件包未被å‡çº§ã€‚\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "有 %lu 个软件包没有被完全安装或å¸è½½ã€‚\n" @@ -1442,7 +1467,7 @@ msgstr "有 %lu 个软件包没有被完全安装或å¸è½½ã€‚\n" #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "" @@ -1450,90 +1475,90 @@ msgstr "" #. 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:702 +#: apt-private/private-output.cc:708 msgid "[y/N]" msgstr "" #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "编译æ£åˆ™è¡¨è¾¾å¼æ—¶å‡ºé”™ - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "æ£åœ¨æ›´æ£ä¾èµ–关系..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " 失败。" -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "æ— æ³•æ›´æ£ä¾èµ–关系" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "æ— æ³•æœ€å°åŒ–è¦å‡çº§çš„软件包集åˆ" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " 完æˆ" -#: apt-private/private-cachefile.cc:102 +#: 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:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "ä¸èƒ½æ»¡è¶³ä¾èµ–关系。ä¸å¦¨è¯•一下 -f 选项。" -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr " update 命令ä¸éœ€è¦å‚æ•°" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "æ£åœ¨å¯¹å‡çº§è¿›è¡Œè®¡ç®—... " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "内部错误,全部å‡çº§å·¥å…·å事了" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "完æˆ" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1544,43 +1569,43 @@ msgstr "" "   apt-get éœ€è¦ root 特æƒè¿›è¡Œå®žé™…的执行。\n" "ã€€ã€€ã€€åŒæ—¶è¯·è®°ä½æ¤æ—¶å¹¶æœªé”定,所以请勿完全相信当å‰çš„æƒ…况ï¼" -#: apt-private/private-sources.cc:45 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format msgid "Failed to parse %s. Edit again? " msgstr "æ— æ³•å°† %s é‡å‘½å为 %s" -#: apt-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "å‘½ä¸ " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "获å–:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "忽略 " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "错误 " -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "下载 %sB,耗时 %s (%sB/s)\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [执行ä¸]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1593,19 +1618,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "æ— æ³•è¯»å– %s" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "æ— æ³•åˆ‡æ¢å·¥ä½œç›®å½•到 %s" @@ -1634,11 +1659,11 @@ msgstr "æ²¡æœ‰æ‰¾åˆ°é•œåƒæ–‡ä»¶ %s" msgid "[Mirror: %s]" msgstr "[镜åƒï¼š%s]" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 msgid "Failed to create IPC pipe to subprocess" msgstr "æ— æ³•ä¸ºå进程创建 IPC 管é“" -#: methods/rsh.cc:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "连接被永久关é—" @@ -1700,40 +1725,45 @@ msgstr "" " -c=? 读指定的é…置文件\n" " -o=? è®¾ç½®ä»»æ„æŒ‡å®šçš„é…置选项,例如 -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "æ— æ³•è¯»å– %s 的状æ€" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "æ— æ³•å†™å…¥ %s" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "æ— æ³•èŽ·å¾— debconf 的版本。您安装了 debconf å—?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "软件包的扩展列表太长" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "处ç†ç›®å½• %s 时出错" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "æºæ‰©å±•列表太长" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "将头写入到目录文件时出错" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "处ç†ç›®å½• %s 时出错" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1813,218 +1843,218 @@ msgstr "" " -c=? è¯»å–æŒ‡å®šé…置文件\n" " -o=? è®¾ç½®ä»»æ„æŒ‡å®šçš„é…置选项" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "没有任何选定项是匹é…çš„" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "软件包文件组“%sâ€ä¸ç¼ºå°‘一些文件" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "æ•°æ®åº“被æŸå,该数æ®åº“文件的文件åå·²æ”¹æˆ %s.old" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "æ•°æ®åº“已过期,现å°è¯•进行å‡çº§ %s" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 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:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "æ— æ³•æ‰“å¼€æ•°æ®åº“文件 %s:%s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "æ— æ³•èŽ·å¾— %s 的状æ€" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "å½’æ¡£æ–‡ä»¶æ²¡æœ‰åŒ…å«æŽ§åˆ¶å—æ®µ" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "æ— æ³•èŽ·å¾—æ¸¸æ ‡" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "è¦å‘Šï¼šæ— 法读å–目录 %s\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "è¦å‘Šï¼šæ— 法获得 %s 的状æ€\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "错误:" -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "è¦å‘Šï¼š" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "é”™è¯¯ï¼šå¤„ç†æ–‡ä»¶æ—¶å‡ºé”™ " -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "æ— æ³•è§£æž %s" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "æ— æ³•éåŽ†ç›®å½•æ ‘" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "æ— æ³•æ‰“å¼€ %s" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "æ— æ³•è¯»å–符å·é“¾æŽ¥ %s" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "æ— æ³•ä½¿ç”¨ unlink åˆ é™¤ %s" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** æ— æ³•å°† %s 链接到 %s" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " 达到了 DeLink çš„ä¸Šé™ %sB。\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "å½’æ¡£æ–‡ä»¶æ²¡æœ‰åŒ…å« package å—æ®µ" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %s 䏿²¡æœ‰ override 项\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s 的维护者 %s å¹¶éž %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr " %s 没有æºä»£ç çš„ override 项\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s 䏿²¡æœ‰äºŒè¿›åˆ¶æ–‡ä»¶çš„ override 项\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - 分é…内å˜å¤±è´¥" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "æ— æ³•æ‰“å¼€ %s" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "override 文件 %s 第 %lu è¡Œçš„æ ¼å¼æœ‰è¯¯ #1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "æ— æ³•è¯»å– override 文件 %s" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, fuzzy, c-format msgid "Malformed override %s line %llu #1" msgstr "override 文件 %s 第 %lu è¡Œçš„æ ¼å¼æœ‰è¯¯ #1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, fuzzy, c-format msgid "Malformed override %s line %llu #2" msgstr "override 文件 %s 第 %lu è¡Œçš„æ ¼å¼æœ‰è¯¯ #2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, fuzzy, c-format msgid "Malformed override %s line %llu #3" msgstr "override 文件 %s 第 %lu è¡Œçš„æ ¼å¼æœ‰è¯¯ #3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "未知的压缩算法“%sâ€" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "压缩åŽçš„输出文件 %s è¦æ±‚有一个压缩文件集åˆ" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "æ— æ³•åˆ›å»º FILE*" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "æ— æ³• fork" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "压缩å进程" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "å†…éƒ¨é”™è¯¯ï¼Œæ— æ³•åˆ›å»º %s" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "æ— æ³•å¯¹å进程或文件进行读写" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "在计算 MD5 æ ¡éªŒå’Œæ—¶æ— æ³•è¯»å–æ•°æ®" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "在使用 unlink åˆ é™¤ %s 时出错" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "æ— æ³•å°† %s é‡å‘½å为 %s" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -2077,157 +2107,157 @@ msgstr "" " -c=? è¯»å–æŒ‡å®šé…置文件\n" " -o=? è®¾ç½®ä»»æ„æŒ‡å®šçš„é…置选项,例如 -o dir::cache=/tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "æ— æ³•åˆ›å»ºç®¡é“" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "æ— æ³•æ‰§è¡Œ gzip" -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "包文件已被æŸå" -#: apt-inst/contrib/extracttar.cc:201 +#: apt-inst/contrib/extracttar.cc:203 msgid "Tar checksum failed, archive corrupted" msgstr "Tar çš„æ ¡éªŒå’Œä¸ç¬¦ï¼Œæ–‡ä»¶å·²æŸå" -#: apt-inst/contrib/extracttar.cc:306 +#: apt-inst/contrib/extracttar.cc:308 #, c-format msgid "Unknown TAR header type %u, member %s" msgstr "未知的 TAR æ•°æ®å¤´ç±»åž‹ %u,æˆå‘˜ %s" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "æ— æ•ˆçš„å½’æ¡£ç¾å" -#: apt-inst/contrib/arfile.cc:82 +#: apt-inst/contrib/arfile.cc:84 msgid "Error reading archive member header" msgstr "读å–å½’æ¡£æˆå‘˜æ–‡ä»¶å¤´å‡ºé”™" -#: apt-inst/contrib/arfile.cc:94 +#: apt-inst/contrib/arfile.cc:96 #, c-format msgid "Invalid archive member header %s" msgstr "å½’æ¡£æ–‡ä»¶ä¸æˆå‘˜æ–‡ä»¶å¤´ %s æ— æ•ˆ" -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "å½’æ¡£æ–‡ä»¶ä¸æˆå‘˜æ–‡ä»¶å¤´æ— 效" -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "归档文件太çŸ" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "æ— æ³•è¯»å–归档文件的数æ®å¤´" -#: apt-inst/filelist.cc:382 +#: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" msgstr "把 DropNode 用在了ä»åœ¨é“¾è¡¨ä¸çš„节点上" -#: apt-inst/filelist.cc:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "æ— æ³•å®šä½å“ˆå¸Œè¡¨å…ƒç´ ï¼" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "æ— æ³•åˆ†é…转移项" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "内部错误,出现在 AddDiversion" -#: apt-inst/filelist.cc:479 +#: 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:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "æ·»åŠ äº†ä¸¤ä¸ªè½¬ç§»é¡¹ %s-> %s" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "é‡å¤çš„é…置文件 %s/%s" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: 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:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "æ— æ³•å…³é—æ–‡ä»¶ %s" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: 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:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "%s 被解包了ä¸åªä¸€æ¬¡" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "目录 %s 已被转移" -#: apt-inst/extract.cc:145 +#: 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:155 apt-inst/extract.cc:299 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 msgid "The diversion path is too long" msgstr "该转移路径太长" -#: apt-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "目录 %s è¦è¢«ä¸€ä¸ªéžç›®å½•的文件替æ¢" -#: apt-inst/extract.cc:282 +#: apt-inst/extract.cc:289 msgid "Failed to locate node in its hash bucket" msgstr "æ— æ³•åœ¨å…¶æ•£åˆ—æ¡¶ä¸åˆ†é…节点" -#: apt-inst/extract.cc:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "路径å太长" -#: apt-inst/extract.cc:414 +#: apt-inst/extract.cc:421 #, c-format msgid "Overwrite package match with no version for %s" msgstr "用æ¥è¦†ç›–的软件包ä¸å±žäºŽ %s 的任何版本" -#: apt-inst/extract.cc:431 +#: 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:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "æ— æ³•è¯»å– %s 的状æ€" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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:124 +#: apt-inst/deb/debfile.cc:132 #, c-format msgid "Internal error, could not locate member %s" msgstr "å†…éƒ¨é”™è¯¯ï¼Œæ— æ³•å®šä½åŒ…内文件 %s" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "ä¸èƒ½è§£æžçš„主控文件" @@ -2284,482 +2314,487 @@ msgid "" msgstr "æ— æ³•å¢žåŠ MMap 大å°ï¼Œå› 为用户已ç¦ç”¨è‡ªåŠ¨å¢žåŠ ã€‚" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "%li天 %liå°æ—¶ %li分 %liç§’" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "%liå°æ—¶ %li分 %liç§’" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "%li分 %liç§’" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "%liç§’" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "找ä¸åˆ°æ‚¨é€‰åˆ™çš„ %s" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "æ— æ³•è¯†åˆ«çš„ç±»åž‹ç¼©å†™ï¼šâ€œ%câ€" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "æ£åœ¨æ‰“å¼€é…置文件 %s" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "è¯æ³•错误 %s:%u:é…ç½®å°èŠ‚æ²¡æœ‰ä»¥åå—开头" -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "è¯æ³•错误 %s:%uï¼šæ ‡ç¾æ ¼å¼æœ‰è¯¯" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "è¯æ³•错误 %s:%u:é…ç½®å€¼åŽæœ‰å¤šä½™çš„æ— æ„义数æ®" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "è¯æ³•错误 %s:%u:åªèƒ½åœ¨é¡¶å±‚é…置文件ä¸ä½¿ç”¨æŒ‡ç¤º" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "è¯æ³•错误 %s:%u:太多的嵌套 include 命令" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "è¯æ³•错误 %s:%u:Included from here" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "è¯æ³•错误 %s:%uï¼šä¸æ”¯æŒçš„æŒ‡ä»¤â€œ%sâ€" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-pkg/contrib/configuration.cc:900 #, c-format msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "è¯æ³•错误 %s:%u:clean 指令需è¦ä¸€ä¸ªé€‰é¡¹æ ‘ä½œä¸ºå‚æ•°" -#: apt-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "è¯æ³•错误 %s:%uï¼šæ–‡ä»¶å°¾éƒ¨æœ‰å¤šä½™çš„æ— æ„义的数æ®" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... 有错误ï¼" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... 完æˆ" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s... 完æˆ" -#: apt-pkg/contrib/cmndline.cc:116 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format msgid "Command line option '%c' [from %s] is not known." msgstr "未知的命令行选项“%c†[æ¥è‡ª %s]" -#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format msgid "Command line option %s is not boolean" msgstr "命令行选项 %s 䏿˜¯å¸ƒå°”值" -#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "选项 %s è¦æ±‚æœ‰ä¸€ä¸ªå‚æ•°" -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "选项 %s:é…置项åŽå¿…é¡»åŒ…å«æœ‰å½¢å¦‚“=<å˜é‡>â€çš„具体指定" -#: apt-pkg/contrib/cmndline.cc:273 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format msgid "Option %s requires an integer argument, not '%s'" msgstr "选项 %s è¦æ±‚æœ‰ä¸€ä¸ªæ•´æ•°ä½œä¸ºå‚æ•°ï¼Œè€Œä¸æ˜¯â€œ%sâ€" -#: apt-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "选项“%sâ€å¤ªé•¿" -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "ä¸èƒ½è¯†åˆ«å‚æ•° %s,请用 true 或 false" -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "æ— æ•ˆçš„æ“作 %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format msgid "Unable to stat the mount point %s" msgstr "æ— æ³•è¯»å–æ–‡ä»¶ç³»ç»ŸæŒ‚载点 %s 的状æ€" -#: apt-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "æ— æ³•è¯»å–盘片的状æ€" -#: apt-pkg/contrib/fileutl.cc:95 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "å…³é— gzip %s 文件出错" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "由于文件系统为åªè¯»ï¼Œå› è€Œæ— æ³•ä½¿ç”¨æ–‡ä»¶é” %s" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "æ— æ³•æ‰“å¼€é”æ–‡ä»¶ %s" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "æ— æ³•åœ¨ nfs æ–‡ä»¶ç³»ç»Ÿä¸Šä½¿ç”¨æ–‡ä»¶é” %s" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "æ— æ³•èŽ·å¾—é” %s" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "å进程 %s å‘生了段错误" -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, c-format msgid "Sub-process %s received signal %u." msgstr "å进程 %s æ”¶åˆ°ä¿¡å· %u。" -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 apt-pkg/contrib/gpgv.cc:239 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "å进程 %s è¿”å›žäº†ä¸€ä¸ªé”™è¯¯å· (%u)" -#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "å进程 %s 异常退出" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "å…³é— gzip %s 文件出错" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "æ— æ³•æ‰“å¼€æ–‡ä»¶ %s" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, c-format msgid "Could not open file descriptor %d" msgstr "æ— æ³•æ‰“å¼€æ–‡ä»¶æè¿°ç¬¦ %d" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "æ— æ³•åˆ›å»ºå进程的 IPC 管é“" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "æ— æ³•æ‰§è¡ŒåŽ‹ç¼©ç¨‹åº" -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, fuzzy, c-format msgid "read, still have %llu to read but none left" msgstr "è¯»å–æ–‡ä»¶å‡ºé”™ï¼Œè¿˜å‰© %lu å—节没有读出" -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, fuzzy, c-format msgid "write, still have %llu to write but couldn't" msgstr "写入文件出错,还剩 %lu å—节没有ä¿å˜" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, c-format msgid "Problem closing the file %s" msgstr "关闿–‡ä»¶ %s 出错" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, c-format msgid "Problem renaming the file %s to %s" msgstr "é‡å‘½å文件 %s 为 %s 出错" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, c-format msgid "Problem unlinking the file %s" msgstr "用 unlink åˆ é™¤æ–‡ä»¶ %s 出错" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "åŒæ¥æ–‡ä»¶å‡ºé”™" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "æ— æ³•é‡å‘½å文件,%s (%s -> %s)。" + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, c-format msgid "No keyring installed in %s." msgstr "%s 䏿²¡æœ‰å®‰è£…密钥环。" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "软件包缓å˜åŒºæ˜¯ç©ºçš„" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "è½¯ä»¶åŒ…ç¼“å˜æ–‡ä»¶æŸå了" -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "软件包缓å˜åŒºæ–‡ä»¶çš„版本ä¸å…¼å®¹" -#: apt-pkg/pkgcache.cc:162 +#: apt-pkg/pkgcache.cc:169 #, fuzzy msgid "The package cache file is corrupted, it is too small" msgstr "è½¯ä»¶åŒ…ç¼“å˜æ–‡ä»¶æŸå了" -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "本程åºç›®å‰ä¸æ”¯æŒâ€œ%sâ€ç‰ˆæœ¬ç³»ç»Ÿ" -#: apt-pkg/pkgcache.cc:172 +#: apt-pkg/pkgcache.cc:179 msgid "The package cache was built for a different architecture" msgstr "软件包缓å˜åŒºæ˜¯ä¸ºå…¶å®ƒæž¶æž„的硬件构建的" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "ä¾èµ–" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "预ä¾èµ–" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "建议" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "推è" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "冲çª" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "替æ¢" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "废弃" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "ç ´å" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "增强" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "é‡è¦" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "必需" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "æ ‡å‡†" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "å¯é€‰" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "é¢å¤–" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "æ£åœ¨åˆ†æžè½¯ä»¶åŒ…çš„ä¾èµ–å…³ç³»æ ‘" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "候选版本" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "生æˆä¾èµ–关系" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 msgid "Reading state information" msgstr "æ£åœ¨è¯»å–状æ€ä¿¡æ¯" -#: apt-pkg/depcache.cc:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "æ— æ³•æ‰“å¼€çŠ¶æ€æ–‡ä»¶ %s" -#: apt-pkg/depcache.cc:250 +#: apt-pkg/depcache.cc:256 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "æ— æ³•å†™å…¥ä¸´æ—¶çŠ¶æ€æ–‡ä»¶ %s" -#: apt-pkg/tagfile.cc:138 +#: apt-pkg/tagfile.cc:140 #, c-format msgid "Unable to parse package file %s (1)" msgstr "æ— æ³•è§£æžè½¯ä»¶åŒ…文件 %s (1)" -#: apt-pkg/tagfile.cc:235 +#: apt-pkg/tagfile.cc:237 #, c-format msgid "Unable to parse package file %s (2)" msgstr "æ— æ³•è§£æžè½¯ä»¶åŒ…文件 %s (2)" -#: apt-pkg/sourcelist.cc:118 +#: 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-pkg/sourcelist.cc:161 +#: apt-pkg/sourcelist.cc:170 #, c-format msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "安装æºé…置文件“%2$sâ€ç¬¬ %1$lu 行有错误([选项] æ— æ³•è§£æž)" -#: apt-pkg/sourcelist.cc:164 +#: apt-pkg/sourcelist.cc:173 #, c-format msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "安装æºé…置文件“%2$sâ€ç¬¬ %1$lu 行有错误([选项] 太çŸ)" -#: apt-pkg/sourcelist.cc:175 +#: 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-pkg/sourcelist.cc:181 +#: 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-pkg/sourcelist.cc:184 +#: 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-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "安装æºé…置文件“%2$sâ€ç¬¬ %1$lu è¡Œçš„æ ¼å¼æœ‰è¯¯(URI)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "安装æºé…置文件“%2$sâ€ç¬¬ %1$lu 行有错误(å‘行版)" -#: apt-pkg/sourcelist.cc:202 +#: apt-pkg/sourcelist.cc:211 #, c-format msgid "Malformed line %lu in source list %s (URI parse)" msgstr "安装æºé…置文件“%2$sâ€ç¬¬ %1$lu 行有错误(URI è§£æž)" -#: apt-pkg/sourcelist.cc:208 +#: apt-pkg/sourcelist.cc:217 #, c-format msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "安装æºé…置文件“%2$sâ€ç¬¬ %1$lu 行有错误(独立å‘行版)" -#: apt-pkg/sourcelist.cc:215 +#: apt-pkg/sourcelist.cc:224 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" msgstr "安装æºé…置文件“%2$sâ€ç¬¬ %1$lu 行有错误(å‘行版解æž)" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "æ£åœ¨æ‰“å¼€ %s" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "æºåˆ—表 %2$s 的第 %1$u 行太长了。" -#: apt-pkg/sourcelist.cc:362 +#: apt-pkg/sourcelist.cc:371 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "在æºåˆ—表 %2$s ä¸ç¬¬ %1$u è¡Œçš„æ ¼å¼æœ‰è¯¯(类型)" -#: apt-pkg/sourcelist.cc:366 +#: 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â€" -#: apt-pkg/sourcelist.cc:407 +#: apt-pkg/sourcelist.cc:416 #, fuzzy, c-format msgid "Type '%s' is not known on stanza %u in source list %s" msgstr "æ— æ³•è¯†åˆ«åœ¨æºåˆ—表 %3$s 里,第 %2$u 行ä¸çš„软件包类别“%1$sâ€" -#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2768,12 +2803,12 @@ msgstr "" "æ— æ³•ç«‹å³å¯¹ %s 进行é…置。请查看 man 5 apt.conf ä¸çš„ APT::Immediate-Configure " "(%d)" -#: apt-pkg/packagemanager.cc:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "æ— æ³•æ‰“å¼€æ–‡ä»¶ %s" -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2784,18 +2819,18 @@ msgstr "" "少的软件包 %s。通常并ä¸å»ºè®®è¿™æ ·åšï¼Œä½†æ˜¯å¦‚果您确实希望如æ¤ï¼Œå¯ä»¥æ‰“å¼€ APT::" "Force-LoopBreak 选项。" -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "䏿”¯æŒç´¢å¼•文件类型“%sâ€" -#: apt-pkg/algorithms.cc:266 +#: 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:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2803,215 +2838,210 @@ msgstr "" "错误,pkgProblemResolver::Resolve å‘生故障,这å¯èƒ½æ˜¯æœ‰è½¯ä»¶åŒ…è¢«è¦æ±‚ä¿æŒçŽ°çŠ¶çš„" "缘故。" -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "" "æ— æ³•ä¿®æ£é”™è¯¯ï¼Œå› ä¸ºæ‚¨è¦æ±‚æŸäº›è½¯ä»¶åŒ…ä¿æŒçŽ°çŠ¶ï¼Œå°±æ˜¯å®ƒä»¬ç ´å了软件包间的ä¾èµ–å…³" "系。" -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, c-format msgid "List directory %spartial is missing." msgstr "软件包列表的目录 %spartial 缺失。" -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, c-format msgid "Archives directory %spartial is missing." msgstr "仓库目录 %spartial 确实。" -#: apt-pkg/acquire.cc:93 +#: apt-pkg/acquire.cc:99 #, c-format msgid "Unable to lock directory %s" msgstr "æ— æ³•å¯¹ç›®å½• %s åŠ é”" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "æ£åœ¨ä¸‹è½½ç¬¬ %li 个文件,共 %li 个(还剩 %s 个)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "æ£åœ¨ä¸‹è½½ç¬¬ %li 个文件,共 %li 个" -#: apt-pkg/acquire-worker.cc:113 +#: apt-pkg/acquire-worker.cc:116 #, c-format msgid "The method driver %s could not be found." msgstr "æ— æ³•æ‰¾åˆ°èŽ·å–è½¯ä»¶åŒ…çš„æ¸ é“ %s 所需的驱动程åºã€‚" -#: apt-pkg/acquire-worker.cc:115 +#: apt-pkg/acquire-worker.cc:118 #, fuzzy, c-format msgid "Is the package %s installed?" msgstr "请检查是å¦å®‰è£…了“dpkg-devâ€è½¯ä»¶åŒ…。\n" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "获å–è½¯ä»¶åŒ…çš„æ¸ é“ %s æ‰€éœ€çš„é©±åŠ¨ç¨‹åºæ²¡æœ‰æ£å¸¸å¯åŠ¨ã€‚" -#: apt-pkg/acquire-worker.cc:452 +#: apt-pkg/acquire-worker.cc:455 #, c-format msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "è¯·æŠŠæ ‡æœ‰â€œ%sâ€çš„盘片æ’入驱动器“%sâ€å†æŒ‰å›žè½¦é”®ã€‚" -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "䏿”¯æŒâ€œ%sâ€æ‰“包系统" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "æ— æ³•ç¡®å®šé€‚åˆçš„æ‰“包系统类型" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "æ— æ³•è¯»å– %s 的状æ€ã€‚" -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "您必须在您的 sources.list 写入一些“软件æºâ€çš„ URI" -#: apt-pkg/cachefile.cc:87 +#: apt-pkg/cachefile.cc:94 msgid "The package lists or status file could not be parsed or opened." msgstr "æ— æ³•è§£æžæˆ–æ‰“å¼€è½¯ä»¶åŒ…çš„åˆ—è¡¨æˆ–æ˜¯çŠ¶æ€æ–‡ä»¶ã€‚" -#: apt-pkg/cachefile.cc:91 +#: 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:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "æ— æ³•è¯»å–æºåˆ—表。" -#: apt-pkg/policy.cc:75 +#: 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 "" -#: apt-pkg/policy.cc:414 +#: 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:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "æ— æ³•è¯†åˆ«é”定的类型 %s" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "没有为版本é”定指定优先级(或为零)" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 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:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: 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)时出错" -#: apt-pkg/pkgcachegen.cc:251 +#: apt-pkg/pkgcachegen.cc:257 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "哇,软件包数é‡è¶…出了本 APT 的处ç†èƒ½åŠ›ã€‚" -#: apt-pkg/pkgcachegen.cc:254 +#: apt-pkg/pkgcachegen.cc:260 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "哇,软件包版本数é‡è¶…出了本 APT 的处ç†èƒ½åŠ›ã€‚" -#: apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:263 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "哇,软件包说明数é‡è¶…出了本 APT 的处ç†èƒ½åŠ›ã€‚" -#: apt-pkg/pkgcachegen.cc:260 +#: apt-pkg/pkgcachegen.cc:266 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "哇,ä¾èµ–关系数é‡è¶…出了本 APT 的处ç†èƒ½åŠ›ã€‚" -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:576 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "å½“å¤„ç†æ–‡ä»¶ä¾èµ–å…³ç³»æ—¶ï¼Œæ— æ³•æ‰¾åˆ°è½¯ä»¶åŒ… %s %s" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "æ— æ³•èŽ·å–æºè½¯ä»¶åŒ…列表 %s 的状æ€" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "æ£åœ¨æ”¶é›†æ–‡ä»¶æ‰€æä¾›çš„软件包" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 msgid "IO Error saving source cache" msgstr "æ— æ³•è¯»å–æˆ–写入软件æºç¼“å˜" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "æ— æ³•é‡å‘½å文件,%s (%s -> %s)。" - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "Hash æ ¡éªŒå’Œä¸ç¬¦" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "大å°ä¸ç¬¦" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "æ— æ•ˆçš„æ“作 %s" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, 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:1586 +#: apt-pkg/acquire-item.cc:1595 #, fuzzy, c-format msgid "Unable to find hash sum for '%s' in Release file" msgstr "æ— æ³•è§£æžè½¯ä»¶åŒ…仓库 Release 文件 %s" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "以下 ID 的密钥没有å¯ç”¨çš„公钥:\n" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " "repository will not be applied." msgstr "" -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "冲çªçš„å‘行版:%s (期望 %s 但得到 %s)" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3020,12 +3050,12 @@ msgstr "" "æ ¡éªŒç¾å出错。æ¤ä»“库未被更新,ä»ç„¶ä½¿ç”¨ä»¥å‰çš„索引文件。GPG 错误:%s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "GPG 错误:%s: %s" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3034,82 +3064,78 @@ msgstr "" "æˆ‘æ— æ³•æ‰¾åˆ°ä¸€ä¸ªå¯¹åº” %s è½¯ä»¶åŒ…çš„æ–‡ä»¶ã€‚åœ¨è¿™ç§æƒ…况下å¯èƒ½éœ€è¦æ‚¨æ‰‹åŠ¨ä¿®æ£è¿™ä¸ªè½¯ä»¶" "包。(缘于架构缺失)" -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "软件包的索引文件已æŸå。找ä¸åˆ°å¯¹åº”软件包 %s çš„ Filename: å—æ®µã€‚" -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, c-format msgid "Unable to parse Release file %s" msgstr "æ— æ³•è§£æžè½¯ä»¶åŒ…仓库 Release 文件 %s" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, c-format msgid "No sections in Release file %s" msgstr "软件包仓库 Release 文件 %s å†…æ— ç»„ä»¶ç« èŠ‚ä¿¡æ¯" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "软件包仓库 Release 文件 %s å†…æ— å“ˆå¸Œæ¡ç›®" -#: apt-pkg/indexrecords.cc:125 +#: apt-pkg/indexrecords.cc:130 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "软件包仓库 Release 文件 %s 内 Valid-Until æ¡ç›®æ— 效" -#: apt-pkg/indexrecords.cc:144 +#: apt-pkg/indexrecords.cc:149 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "软件包仓库 Release 文件 %s 内 Date æ¡ç›®æ— 效" -#: apt-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "软件æä¾›è€…æ•°æ®å—内 %s æ²¡æœ‰åŒ…å«æŒ‡çº¹ä¿¡æ¯" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "现把 %s 作为了 CD-ROM 的挂载点\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "æ£åœ¨å¸è½½ CD-ROM 文件系统\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "æ£åœ¨å¸è½½ CD-ROM...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "ç‰å¾…æ’入盘片……\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "æ£åœ¨æŒ‚è½½ CD-ROM 文件系统……\n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " -msgstr "æ£åœ¨é‰´åˆ«.. " +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " +msgstr "æ£åœ¨é‰´åˆ«... " -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "å·²å½’æ¡£æ–‡ä»¶çš„æ ‡ç¾ï¼š%s\n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "æ£åœ¨å¸è½½ CD-ROM...\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" -msgstr "æ£åœ¨ç›˜ç‰‡ä¸æŸ¥æ‰¾ç´¢å¼•文件..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" +msgstr "æ£åœ¨ç›˜ç‰‡ä¸æŸ¥æ‰¾ç´¢å¼•文件...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3118,7 +3144,7 @@ msgstr "" "找到了 %zu 个软件包索引ã€%zu 个æºä»£ç 包索引ã€%zu 个翻译索引和 %zu 个数å—ç¾" "å\n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" @@ -3126,16 +3152,16 @@ msgstr "" "æ— æ³•ç¡®å®šä»»ä½•åŒ…æ–‡ä»¶çš„ä½ç½®ï¼Œå¯èƒ½è¿™ä¸æ˜¯ä¸€å¼ Debian 盘片或者是选择了错误的硬件构" "架。" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "æ‰¾åˆ°æ ‡ç¾ '%s'\n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "è¿™ä¸æ˜¯ä¸€ä¸ªæœ‰æ•ˆçš„åå—,请é‡è¯•。\n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3144,34 +3170,34 @@ msgstr "" "è¿™å¼ ç›˜ç‰‡çŽ°åœ¨çš„åå—æ˜¯ï¼š\n" "“%sâ€\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "æ£åœ¨å¤åˆ¶è½¯ä»¶åŒ…列表……" -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "æ£åœ¨å†™å…¥æ–°çš„æºåˆ—è¡¨\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "对应于该盘片的软件æºè®¾ç½®é¡¹æ˜¯ï¼š\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: 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:777 +#: 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:780 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "已写入 %i æ¡è®°å½•,并有 %i 个文件ä¸åŒ¹é…\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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" @@ -3186,88 +3212,88 @@ msgstr "æ— æ³•æ‰¾åˆ°è®¤è¯è®°å½•:%s" msgid "Hash mismatch for: %s" msgstr "Hash æ ¡éªŒå’Œä¸ç¬¦ï¼š%s" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "未找到“%2$sâ€çš„“%1$sâ€å‘布版本" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "未找到“%2$sâ€çš„“%1$sâ€ç‰ˆæœ¬" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, c-format msgid "Couldn't find task '%s'" msgstr "æ— æ³•æ‰¾åˆ°ä»»åŠ¡ %s" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, c-format msgid "Couldn't find any package by regex '%s'" msgstr "æ— æ³•æŒ‰ç…§æ£åˆ™è¡¨è¾¾å¼ %s 找到任何软件包" -#: apt-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "æ— æ³•æŒ‰ç…§æ£åˆ™è¡¨è¾¾å¼ %s 找到任何软件包" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, c-format msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "æ— æ³•ä»Žå®Œå…¨è™šæ‹Ÿçš„è½¯ä»¶åŒ… %s ä¸é€‰æ‹©ç‰ˆæœ¬" -#: apt-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " "neither of them" msgstr "å› ä¸ºè½¯ä»¶åŒ… %s æ²¡æœ‰å·²å®‰è£…æˆ–å€™é€‰çš„ç‰ˆæœ¬ï¼Œæ— æ³•è¿›è¡Œé€‰æ‹©" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, c-format msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "å› ä¸ºè½¯ä»¶åŒ… %s æ˜¯å®Œå…¨çš„è™šæ‹Ÿè½¯ä»¶åŒ…ï¼Œæ— æ³•é€‰æ‹©å®ƒçš„æœ€æ–°ç‰ˆ" -#: apt-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "å› ä¸ºè½¯ä»¶åŒ… %s æ²¡æœ‰å€™é€‰ç‰ˆæœ¬ï¼Œæ— æ³•è¿›è¡Œé€‰æ‹©" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "å› ä¸ºè½¯ä»¶åŒ… %s æ²¡æœ‰å®‰è£…ï¼Œæ— æ³•é€‰æ‹©å®ƒçš„å·²å®‰è£…ç‰ˆæœ¬" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "æ£åœ¨è¿è¡Œ dpkg" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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 " @@ -3275,168 +3301,168 @@ msgid "" msgstr "" "有一些索引文件ä¸èƒ½ä¸‹è½½ï¼Œå®ƒä»¬å¯èƒ½è¢«å¿½ç•¥äº†ï¼Œä¹Ÿå¯èƒ½è½¬è€Œä½¿ç”¨äº†æ—§çš„索引文件。" -#: apt-pkg/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "æ£åœ¨å®‰è£… %s" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "æ£åœ¨é…ç½® %s" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "æ£åœ¨åˆ 除 %s" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format msgid "Completely removing %s" msgstr "å®Œå…¨åˆ é™¤ %s" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "注æ„到 %s å·²ç»æ¶ˆå¤±" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "æ‰§è¡Œå®‰è£…åŽæ‰§è¡Œçš„触å‘器 %s" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "目录 %s 缺失" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format msgid "Could not open file '%s'" msgstr "æ— æ³•æ‰“å¼€æ–‡ä»¶ %s" -#: apt-pkg/deb/dpkgpm.cc:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "æ£åœ¨å‡†å¤‡ %s" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "æ£åœ¨è§£åŽ‹ç¼© %s" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "æ£åœ¨å‡†å¤‡é…ç½® %s" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "已安装 %s" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "æ£åœ¨å‡†å¤‡ %s çš„åˆ é™¤æ“作" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "å·²åˆ é™¤ %s" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "æ£åœ¨å‡†å¤‡å®Œå…¨åˆ 除 %s" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "å®Œå…¨åˆ é™¤äº† %s" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "æ— æ³•å†™å…¥ %s" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 msgid "No apport report written because MaxReports is reached already" msgstr "由于已ç»è¾¾åˆ° MaxReports é™åˆ¶ï¼Œæ²¡æœ‰å†™å…¥ apport 报告。" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "ä¾èµ–问题 - ä¿æŒæœªé…ç½®" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "å› ä¸ºé”™è¯¯æ¶ˆæ¯æŒ‡ç¤ºè¿™æ˜¯ç”±äºŽä¸Šä¸€ä¸ªé—®é¢˜å¯¼è‡´çš„错误,没有写入 apport 报告。" -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "å› ä¸ºé”™è¯¯æ¶ˆæ¯æŒ‡ç¤ºè¿™æ˜¯ç”±äºŽç£ç›˜å·²æ»¡ï¼Œæ²¡æœ‰å†™å…¥ apport 报告。" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "å› ä¸ºé”™è¯¯æ¶ˆæ¯æŒ‡ç¤ºè¿™æ˜¯ç”±äºŽå†…å˜ä¸è¶³ï¼Œæ²¡æœ‰å†™å…¥ apport 报告。" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 #, fuzzy msgid "" "No apport report written because the error message indicates an issue on the " "local system" msgstr "å› ä¸ºé”™è¯¯æ¶ˆæ¯æŒ‡ç¤ºè¿™æ˜¯ç”±äºŽç£ç›˜å·²æ»¡ï¼Œæ²¡æœ‰å†™å…¥ apport 报告。" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "å› ä¸ºé”™è¯¯æ¶ˆæ¯æŒ‡ç¤ºè¿™æ˜¯ä¸€ä¸ª dpkg I/O 错误,没有写入 apport 报告。" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " "it?" msgstr "æ— æ³•é”定管ç†ç›®å½•(%s)ï¼Œæ˜¯å¦æœ‰å…¶ä»–进程æ£å 用它?" -#: apt-pkg/deb/debsystem.cc:87 +#: apt-pkg/deb/debsystem.cc:94 #, c-format msgid "Unable to lock the administration directory (%s), are you root?" msgstr "æ— æ³•å¯¹çŠ¶æ€åˆ—è¡¨ç›®å½•åŠ é”(%s)ï¼Œè¯·æŸ¥çœ‹æ‚¨æ˜¯å¦æ£ä»¥ root 用户è¿è¡Œï¼Ÿ" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:103 +#: 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-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "未é”定" diff --git a/po/zh_TW.po b/po/zh_TW.po index 1c88254ff..74c783829 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 <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-02-23 00:29+0100\n" +"POT-Creation-Date: 2014-04-10 10:18+0200\n" "PO-Revision-Date: 2009-01-28 10:41+0800\n" "Last-Translator: Tetralet <tetralet@gmail.com>\n" "Language-Team: Debian-user in Chinese [Big5] <debian-chinese-big5@lists." @@ -18,154 +18,155 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: cmdline/apt-cache.cc:140 +#: cmdline/apt-cache.cc:149 #, c-format msgid "Package %s version %s has an unmet dep:\n" msgstr "套件 %s 版本 %s æœªèƒ½æ»¿è¶³ç›¸ä¾æ€§ï¼š\n" -#: cmdline/apt-cache.cc:268 +#: cmdline/apt-cache.cc:277 msgid "Total package names: " msgstr "套件å稱åˆè¨ˆï¼š" -#: cmdline/apt-cache.cc:270 +#: cmdline/apt-cache.cc:279 #, fuzzy msgid "Total package structures: " msgstr "套件å稱åˆè¨ˆï¼š" -#: cmdline/apt-cache.cc:310 +#: cmdline/apt-cache.cc:319 msgid " Normal packages: " msgstr " 一般套件:" -#: cmdline/apt-cache.cc:311 +#: cmdline/apt-cache.cc:320 msgid " Pure virtual packages: " msgstr " 完全虛擬套件:" -#: cmdline/apt-cache.cc:312 +#: cmdline/apt-cache.cc:321 msgid " Single virtual packages: " msgstr " 單一虛擬套件:" -#: cmdline/apt-cache.cc:313 +#: cmdline/apt-cache.cc:322 msgid " Mixed virtual packages: " msgstr " æ··åˆè™›æ“¬å¥—件:" -#: cmdline/apt-cache.cc:314 +#: cmdline/apt-cache.cc:323 msgid " Missing: " msgstr " 找ä¸åˆ°ï¼š" -#: cmdline/apt-cache.cc:316 +#: cmdline/apt-cache.cc:325 msgid "Total distinct versions: " msgstr "個別版本åˆè¨ˆï¼š" -#: cmdline/apt-cache.cc:318 +#: cmdline/apt-cache.cc:327 msgid "Total distinct descriptions: " msgstr "個別版本類別åˆè¨ˆï¼š" -#: cmdline/apt-cache.cc:320 +#: cmdline/apt-cache.cc:329 msgid "Total dependencies: " msgstr "相ä¾é—œä¿‚åˆè¨ˆï¼š" -#: cmdline/apt-cache.cc:323 +#: cmdline/apt-cache.cc:332 msgid "Total ver/file relations: " msgstr "版本/檔案關è¯åˆè¨ˆï¼š" -#: cmdline/apt-cache.cc:325 +#: cmdline/apt-cache.cc:334 msgid "Total Desc/File relations: " msgstr "類別/檔案關è¯åˆè¨ˆï¼š" -#: cmdline/apt-cache.cc:327 +#: cmdline/apt-cache.cc:336 msgid "Total Provides mappings: " msgstr "æä¾›è€…å°æ‡‰åˆè¨ˆï¼š" -#: cmdline/apt-cache.cc:339 +#: cmdline/apt-cache.cc:348 msgid "Total globbed strings: " msgstr "所有å—串åˆè¨ˆï¼š" -#: cmdline/apt-cache.cc:353 +#: cmdline/apt-cache.cc:362 msgid "Total dependency version space: " msgstr "相ä¾ç‰ˆæœ¬ç©ºé–“åˆè¨ˆï¼š" -#: cmdline/apt-cache.cc:358 +#: cmdline/apt-cache.cc:367 msgid "Total slack space: " msgstr "間暇空間åˆè¨ˆï¼š" -#: cmdline/apt-cache.cc:366 +#: cmdline/apt-cache.cc:375 msgid "Total space accounted for: " msgstr "統計後的空間åˆè¨ˆï¼š" -#: cmdline/apt-cache.cc:497 cmdline/apt-cache.cc:1146 -#: apt-private/private-show.cc:55 +#: 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 æœªåŒæ¥ã€‚" -#: cmdline/apt-cache.cc:575 cmdline/apt-cache.cc:1432 -#: cmdline/apt-cache.cc:1434 cmdline/apt-cache.cc:1511 cmdline/apt-mark.cc:48 -#: cmdline/apt-mark.cc:95 cmdline/apt-mark.cc:221 -#: apt-private/private-show.cc:167 apt-private/private-show.cc:169 +#: 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 "未找到套件" -#: cmdline/apt-cache.cc:1245 +#: cmdline/apt-cache.cc:1254 #, fuzzy msgid "You must give at least one search pattern" msgstr "æ‚¨å¿…é ˆæ˜Žç¢ºå¾—çµ¦å®šä¸€å€‹æ¨£å¼" -#: cmdline/apt-cache.cc:1411 +#: cmdline/apt-cache.cc:1420 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: cmdline/apt-cache.cc:1506 apt-pkg/cacheset.cc:586 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:594 #, c-format msgid "Unable to locate package %s" msgstr "找ä¸åˆ°å¥—ä»¶ %s" -#: cmdline/apt-cache.cc:1536 +#: cmdline/apt-cache.cc:1545 msgid "Package files:" msgstr "套件檔:" -#: cmdline/apt-cache.cc:1543 cmdline/apt-cache.cc:1634 +#: 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 套件檔" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1566 msgid "Pinned packages:" msgstr "鎖定的套件:" -#: cmdline/apt-cache.cc:1569 cmdline/apt-cache.cc:1614 +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 msgid "(not found)" msgstr "(未找到)" -#: cmdline/apt-cache.cc:1577 +#: cmdline/apt-cache.cc:1586 msgid " Installed: " msgstr " 已安è£ï¼š" -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1587 msgid " Candidate: " msgstr " 候é¸ï¼š" -#: cmdline/apt-cache.cc:1596 cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 msgid "(none)" msgstr "(ç„¡)" -#: cmdline/apt-cache.cc:1611 +#: cmdline/apt-cache.cc:1620 msgid " Package pin: " msgstr " 套件鎖定:" #. Show the priority tables -#: cmdline/apt-cache.cc:1620 +#: cmdline/apt-cache.cc:1629 msgid " Version table:" msgstr " 版本列表:" -#: cmdline/apt-cache.cc:1733 cmdline/apt-cdrom.cc:252 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1580 cmdline/apt-mark.cc:377 cmdline/apt.cc:66 -#: cmdline/apt-extracttemplates.cc:217 ftparchive/apt-ftparchive.cc:591 -#: cmdline/apt-internal-solver.cc:34 cmdline/apt-sortpkgs.cc:147 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1578 cmdline/apt-helper.cc:58 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:600 cmdline/apt-internal-solver.cc:42 +#: 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:1740 +#: cmdline/apt-cache.cc:1749 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -238,29 +239,29 @@ msgstr "" " -o=? 指定任æ„çš„è¨å®šé¸é …,例如:-o dir::cache=/tmp\n" "è«‹åƒé–± apt-cache(8) åŠ apt.conf(5) åƒè€ƒæ‰‹å†Šä»¥å–得更多資訊。\n" -#. }}} -#: cmdline/apt-cdrom.cc:45 -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. See 'man apt-" -"cdrom' for more information about the CD-ROM auto-detection and mount point." -msgstr "" - -#: cmdline/apt-cdrom.cc:89 +#: 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:104 +#: cmdline/apt-cdrom.cc:91 msgid "Please insert a Disc in the drive and press enter" msgstr "請把光碟放入光碟機,然後按下 [Enter] éµ" -#: cmdline/apt-cdrom.cc:141 +#: cmdline/apt-cdrom.cc:139 #, fuzzy, c-format msgid "Failed to mount '%s' to '%s'" msgstr "無法將 %s æ›´å為 %s" -#: cmdline/apt-cdrom.cc:196 +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" + +#: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." msgstr "è«‹å°æ‚¨çš„光碟組ä¸çš„其它光碟é‡è¤‡ç›¸åŒçš„æ“ä½œã€‚" @@ -296,65 +297,65 @@ msgstr "" " -c=? è®€å–æŒ‡å®šçš„è¨å®šæª”\n" " -o=? 指定任æ„çš„è¨å®šé¸é …,例如:-o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:244 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format msgid "Can not find a package for architecture '%s'" msgstr "無法找到套件 %s" -#: cmdline/apt-get.cc:326 +#: cmdline/apt-get.cc:327 #, fuzzy, c-format msgid "Can not find a package '%s' with version '%s'" msgstr "無法找到套件 %s" -#: cmdline/apt-get.cc:329 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format msgid "Can not find a package '%s' with release '%s'" msgstr "無法找到套件 %s" -#: cmdline/apt-get.cc:366 +#: cmdline/apt-get.cc:367 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "無法å–得來æºå¥—件列表 %s 的狀態" -#: cmdline/apt-get.cc:422 +#: cmdline/apt-get.cc:423 #, c-format msgid "Can not find version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:453 +#: cmdline/apt-get.cc:454 #, c-format msgid "Couldn't find package %s" msgstr "無法找到套件 %s" -#: cmdline/apt-get.cc:458 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 #, c-format msgid "%s set to manually installed.\n" msgstr "%s 被è¨å®šç‚ºæ‰‹å‹•安è£ã€‚\n" -#: cmdline/apt-get.cc:460 cmdline/apt-mark.cc:72 +#: 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:468 cmdline/apt-mark.cc:116 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:537 cmdline/apt-get.cc:545 +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 msgid "Internal error, problem resolver broke stuff" msgstr "內部錯誤,å•é¡ŒæŽ’é™¤å™¨é€ æˆäº†æå£ž" -#: cmdline/apt-get.cc:573 cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 msgid "Unable to lock the download directory" msgstr "無法鎖定下載目錄" -#: cmdline/apt-get.cc:725 +#: cmdline/apt-get.cc:726 msgid "Must specify at least one package to fetch source for" msgstr "在å–å¾—åŽŸå§‹ç¢¼æ™‚å¿…é ˆè‡³å°‘æŒ‡å®šä¸€å€‹å¥—ä»¶" -#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:765 cmdline/apt-get.cc:1058 #, c-format msgid "Unable to find a source package for %s" msgstr "無法找到 %s 的原始碼套件" @@ -374,114 +375,114 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:840 +#: cmdline/apt-get.cc:839 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "ç•¥éŽå·²ä¸‹è¼‰çš„æª”案 '%s'\n" -#: cmdline/apt-get.cc:863 cmdline/apt-get.cc:866 -#: apt-private/private-install.cc:198 apt-private/private-install.cc:201 +#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:864 +#: apt-private/private-install.cc:186 apt-private/private-install.cc:189 #, c-format msgid "Couldn't determine free space in %s" msgstr "ç„¡æ³•ç¢ºèª %s 的未使用空間" -#: cmdline/apt-get.cc:877 +#: cmdline/apt-get.cc:874 #, c-format msgid "You don't have enough free space in %s" msgstr "在 %s è£¡æ²’æœ‰è¶³å¤ çš„çš„æœªä½¿ç”¨ç©ºé–“" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:886 +#: cmdline/apt-get.cc:883 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "需è¦ä¸‹è¼‰ %sB/%sB 的原始套件檔。\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:888 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "需è¦ä¸‹è¼‰ %sB 的原始套件檔。\n" -#: cmdline/apt-get.cc:897 +#: cmdline/apt-get.cc:894 #, c-format msgid "Fetch source %s\n" msgstr "å–得原始碼 %s\n" -#: cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:912 msgid "Failed to fetch some archives." msgstr "無法å–å¾—æŸäº›å¥—件檔。" -#: cmdline/apt-get.cc:923 apt-private/private-install.cc:325 +#: cmdline/apt-get.cc:917 apt-private/private-install.cc:313 msgid "Download complete and in download only mode" msgstr "下載完æˆï¼Œä¸”é€™æ˜¯ã€Žåƒ…ä¸‹è¼‰ã€æ¨¡å¼" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:942 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "ä¸è§£é–‹ï¼Œå› 原始碼已解開至 %s\n" -#: cmdline/apt-get.cc:961 +#: cmdline/apt-get.cc:954 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "解開指令 '%s' 失敗。\n" -#: cmdline/apt-get.cc:962 +#: cmdline/apt-get.cc:955 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "請檢查是å¦å·²å®‰è£äº† 'dpkg-dev' 套件。\n" -#: cmdline/apt-get.cc:984 +#: cmdline/apt-get.cc:983 #, c-format msgid "Build command '%s' failed.\n" msgstr "ç·¨è¯æŒ‡ä»¤ '%s' 失敗。\n" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1002 msgid "Child process failed" msgstr "å程åºå¤±æ•—" -#: cmdline/apt-get.cc:1023 +#: cmdline/apt-get.cc:1021 msgid "Must specify at least one package to check builddeps for" msgstr "在檢查編è¯ç›¸ä¾é—œä¿‚æ™‚å¿…é ˆè‡³å°‘æŒ‡å®šä¸€å€‹å¥—ä»¶" -#: cmdline/apt-get.cc:1048 +#: cmdline/apt-get.cc:1046 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:1072 cmdline/apt-get.cc:1075 +#: cmdline/apt-get.cc:1070 cmdline/apt-get.cc:1073 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "無法å–å¾— %s 的編è¯ç›¸ä¾é—œä¿‚資訊" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1093 #, c-format msgid "%s has no build depends.\n" msgstr "%s 沒有編è¯ç›¸ä¾é—œä¿‚。\n" -#: cmdline/apt-get.cc:1265 +#: cmdline/apt-get.cc:1263 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " "packages" msgstr "無法滿足 %2$s æ‰€è¦æ±‚çš„ %1$s 相ä¾é—œä¿‚ï¼Œå› ç‚ºæ‰¾ä¸åˆ°å¥—ä»¶ %3$s" -#: cmdline/apt-get.cc:1283 +#: cmdline/apt-get.cc:1281 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "無法滿足 %2$s æ‰€è¦æ±‚çš„ %1$s 相ä¾é—œä¿‚ï¼Œå› ç‚ºæ‰¾ä¸åˆ°å¥—ä»¶ %3$s" -#: cmdline/apt-get.cc:1306 +#: cmdline/apt-get.cc:1304 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "無法滿足 %2$s 的相ä¾é—œä¿‚ %1$s:已安è£çš„套件 %3$s 太新了" -#: cmdline/apt-get.cc:1345 +#: cmdline/apt-get.cc:1343 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -489,37 +490,37 @@ msgid "" msgstr "" "無法滿足 %2$s æ‰€è¦æ±‚çš„ %1$s 相ä¾é—œä¿‚ï¼Œå› ç‚ºå¥—ä»¶ %3$s 沒有版本符åˆå…¶ç‰ˆæœ¬éœ€æ±‚" -#: cmdline/apt-get.cc:1351 +#: cmdline/apt-get.cc:1349 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " "version" msgstr "無法滿足 %2$s æ‰€è¦æ±‚çš„ %1$s 相ä¾é—œä¿‚ï¼Œå› ç‚ºæ‰¾ä¸åˆ°å¥—ä»¶ %3$s" -#: cmdline/apt-get.cc:1374 +#: cmdline/apt-get.cc:1372 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "無法滿足 %2$s 的相ä¾é—œä¿‚ %1$s:%3$s" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1387 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "無法滿足套件 %s 的編è¯ç›¸ä¾é—œä¿‚。" -#: cmdline/apt-get.cc:1394 +#: cmdline/apt-get.cc:1392 msgid "Failed to process build dependencies" msgstr "無法處ç†ç·¨è¯ç›¸ä¾é—œä¿‚" -#: cmdline/apt-get.cc:1487 cmdline/apt-get.cc:1499 +#: cmdline/apt-get.cc:1485 cmdline/apt-get.cc:1497 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "æ£å’Œ %s (%s) 連線" -#: cmdline/apt-get.cc:1585 +#: cmdline/apt-get.cc:1583 msgid "Supported modules:" msgstr "å·²æ”¯æ´æ¨¡çµ„:" -#: cmdline/apt-get.cc:1626 +#: cmdline/apt-get.cc:1624 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -605,53 +606,75 @@ msgstr "" "以å–得更多資訊和é¸é …。\n" " 該 APT 有著超級牛力。\n" -#: cmdline/apt-mark.cc:57 +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "在å–å¾—åŽŸå§‹ç¢¼æ™‚å¿…é ˆè‡³å°‘æŒ‡å®šä¸€å€‹å¥—ä»¶" + +#: cmdline/apt-helper.cc:52 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:65 +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:63 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format msgid "%s was already set to manually installed.\n" msgstr "%s 被è¨å®šç‚ºæ‰‹å‹•安è£ã€‚\n" -#: cmdline/apt-mark.cc:65 +#: cmdline/apt-mark.cc:76 #, fuzzy, c-format msgid "%s was already set to automatically installed.\n" msgstr "%s 被è¨å®šç‚ºæ‰‹å‹•安è£ã€‚\n" -#: cmdline/apt-mark.cc:230 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format msgid "%s was already set on hold.\n" msgstr "%s 已經是最新版本了。\n" -#: cmdline/apt-mark.cc:232 +#: cmdline/apt-mark.cc:243 #, fuzzy, c-format msgid "%s was already not hold.\n" msgstr "%s 已經是最新版本了。\n" -#: cmdline/apt-mark.cc:247 cmdline/apt-mark.cc:328 -#: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:217 -#: apt-pkg/deb/dpkgpm.cc:1182 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:815 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1201 #, c-format msgid "Waited for %s but it wasn't there" msgstr "ç‰å¾… %s 但是它並ä¸å˜åœ¨" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:311 +#: 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:264 cmdline/apt-mark.cc:316 +#: 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:334 +#: cmdline/apt-mark.cc:345 msgid "Executing dpkg failed. Are you root?" msgstr "" -#: cmdline/apt-mark.cc:381 +#: cmdline/apt-mark.cc:392 msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" "\n" @@ -678,7 +701,7 @@ msgid "" "See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: cmdline/apt.cc:71 +#: cmdline/apt.cc:47 msgid "" "Usage: apt [options] command\n" "\n" @@ -725,173 +748,175 @@ msgstr "無法å¸è¼‰ %s 裡的光碟片,或許它ä»åœ¨ä½¿ç”¨ä¸ã€‚" msgid "Disk not found." msgstr "找ä¸åˆ°ç£ç¢Ÿã€‚" -#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:274 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 msgid "File not found" msgstr "找ä¸åˆ°æª”案" -#: methods/copy.cc:46 methods/gzip.cc:106 methods/rred.cc:599 -#: methods/rred.cc:609 +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 msgid "Failed to stat" msgstr "無法å–得狀態" -#: methods/copy.cc:82 methods/gzip.cc:113 methods/rred.cc:606 +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 msgid "Failed to set modification time" msgstr "無法è¨å®šä¿®æ”¹æ™‚é–“" -#: methods/file.cc:47 +#: 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:172 +#: methods/ftp.cc:177 msgid "Logging in" msgstr "登入ä¸" -#: methods/ftp.cc:178 +#: methods/ftp.cc:183 msgid "Unable to determine the peer name" msgstr "無法解æžå°æ–¹ä¸»æ©Ÿå稱" -#: methods/ftp.cc:183 +#: methods/ftp.cc:188 msgid "Unable to determine the local name" msgstr "ç„¡æ³•è§£æžæœ¬æ©Ÿå稱" -#: methods/ftp.cc:214 methods/ftp.cc:242 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format msgid "The server refused the connection and said: %s" msgstr "伺æœå™¨ä¸æŽ¥å—連線,並回應:%s" -#: methods/ftp.cc:220 +#: methods/ftp.cc:225 #, c-format msgid "USER failed, server said: %s" msgstr "USER 指令失敗,伺æœå™¨å›žæ‡‰ï¼š%s" -#: methods/ftp.cc:227 +#: methods/ftp.cc:232 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS 指令失敗,伺æœå™¨å›žæ‡‰ï¼š%s" -#: methods/ftp.cc:247 +#: methods/ftp.cc:252 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." msgstr "" "指定了代ç†ä¼ºæœå™¨ï¼Œä½†æ²’有指定登入 script,Acquire::ftp::ProxyLogin 是空的。" -#: methods/ftp.cc:275 +#: methods/ftp.cc:280 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "登入 script 指令 '%s' 失敗,伺æœå™¨å›žæ‡‰ï¼š%s" -#: methods/ftp.cc:301 +#: methods/ftp.cc:306 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE 指令失敗,伺æœå™¨å›žæ‡‰ï¼š%s" -#: methods/ftp.cc:339 methods/ftp.cc:451 methods/rsh.cc:191 methods/rsh.cc:236 +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 msgid "Connection timeout" msgstr "連線逾時" -#: methods/ftp.cc:345 +#: methods/ftp.cc:350 msgid "Server closed the connection" msgstr "伺æœå™¨å·²é—œé–‰é€£ç·š" -#: methods/ftp.cc:348 methods/rsh.cc:198 apt-pkg/contrib/fileutl.cc:1292 -#: apt-pkg/contrib/fileutl.cc:1301 apt-pkg/contrib/fileutl.cc:1304 +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1475 +#: apt-pkg/contrib/fileutl.cc:1484 apt-pkg/contrib/fileutl.cc:1489 +#: apt-pkg/contrib/fileutl.cc:1491 msgid "Read error" msgstr "讀å–錯誤" -#: methods/ftp.cc:355 methods/rsh.cc:205 +#: methods/ftp.cc:360 methods/rsh.cc:209 msgid "A response overflowed the buffer." msgstr "回應超éŽç·©è¡å€é•·åº¦ã€‚" -#: methods/ftp.cc:372 methods/ftp.cc:384 +#: methods/ftp.cc:377 methods/ftp.cc:389 msgid "Protocol corruption" msgstr "å”定失敗" -#: methods/ftp.cc:457 methods/rsh.cc:242 apt-pkg/contrib/fileutl.cc:1388 -#: apt-pkg/contrib/fileutl.cc:1397 apt-pkg/contrib/fileutl.cc:1400 -#: apt-pkg/contrib/fileutl.cc:1425 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:875 +#: apt-pkg/contrib/fileutl.cc:1597 apt-pkg/contrib/fileutl.cc:1606 +#: apt-pkg/contrib/fileutl.cc:1611 apt-pkg/contrib/fileutl.cc:1613 +#: apt-pkg/contrib/fileutl.cc:1638 msgid "Write error" msgstr "寫入錯誤" -#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 msgid "Could not create a socket" msgstr "無法建立 Socket" -#: methods/ftp.cc:707 +#: methods/ftp.cc:712 msgid "Could not connect data socket, connection timed out" msgstr "無法和 data socket 連線,連線逾時" -#: methods/ftp.cc:711 methods/connect.cc:116 apt-private/private-upgrade.cc:22 +#: methods/ftp.cc:716 methods/connect.cc:116 apt-private/private-upgrade.cc:28 msgid "Failed" msgstr "失敗" -#: methods/ftp.cc:713 +#: methods/ftp.cc:718 msgid "Could not connect passive socket." msgstr "無法和 passive socket 連線。" -#: methods/ftp.cc:730 +#: methods/ftp.cc:735 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo 無法å–å¾—ç›£è½ socket" -#: methods/ftp.cc:744 +#: methods/ftp.cc:749 msgid "Could not bind a socket" msgstr "無法 bind 至 socket" -#: methods/ftp.cc:748 +#: methods/ftp.cc:753 msgid "Could not listen on the socket" msgstr "ç„¡æ³•ç›£è½ socket" -#: methods/ftp.cc:755 +#: methods/ftp.cc:760 msgid "Could not determine the socket's name" msgstr "ç„¡æ³•è§£æž socket å稱" -#: methods/ftp.cc:787 +#: methods/ftp.cc:792 msgid "Unable to send PORT command" msgstr "無法é€å‡º PORT 指令" -#: methods/ftp.cc:797 +#: methods/ftp.cc:802 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "未知的地å€å®¶æ— %u (AF_*)" -#: methods/ftp.cc:806 +#: methods/ftp.cc:811 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT 指令失敗,伺æœå™¨å›žæ‡‰ï¼š%s" -#: methods/ftp.cc:826 +#: methods/ftp.cc:831 msgid "Data socket connect timed out" msgstr "Data socket 連線逾時" -#: methods/ftp.cc:833 +#: methods/ftp.cc:838 msgid "Unable to accept connection" msgstr "無法接å—連線" -#: methods/ftp.cc:872 methods/server.cc:357 methods/rsh.cc:312 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 msgid "Problem hashing file" msgstr "有å•題的雜湊檔" -#: methods/ftp.cc:885 +#: methods/ftp.cc:890 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "無法å–得檔案,伺æœå™¨å›žæ‡‰ '%s'" -#: methods/ftp.cc:900 methods/rsh.cc:331 +#: methods/ftp.cc:905 methods/rsh.cc:335 msgid "Data socket timed out" msgstr "Data socket 連線逾時" -#: methods/ftp.cc:930 +#: methods/ftp.cc:935 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "資料傳輸失敗,伺æœå™¨å›žæ‡‰ '%s'" #. Get the files information -#: methods/ftp.cc:1009 +#: methods/ftp.cc:1014 msgid "Query" msgstr "查詢" -#: methods/ftp.cc:1123 +#: methods/ftp.cc:1128 msgid "Unable to invoke " msgstr "無法 invoke " @@ -927,7 +952,7 @@ msgstr "無法和 %s:%s (%s) 連線。" #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:435 +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" msgstr "æ£é€£ç·šè‡³ %s" @@ -957,182 +982,182 @@ msgstr "åœ¨è§£æž '%s:%s' (%i) 時出了怪事" msgid "Unable to connect to %s:%s:" msgstr "無法連線至 %s %s:" -#: methods/gpgv.cc:166 +#: methods/gpgv.cc:168 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "å…§éƒ¨éŒ¯èª¤ï¼šç°½ç« ç„¡èª¤ï¼Œä½†å»ç„¡æ³•辨è˜å¯†é‘°çš„æŒ‡ç´‹ç¢¼ï¼Ÿï¼" -#: methods/gpgv.cc:170 +#: methods/gpgv.cc:172 msgid "At least one invalid signature was encountered." msgstr "至少發ç¾ä¸€å€‹ç„¡æ•ˆçš„ç°½ç« ã€‚" -#: methods/gpgv.cc:172 +#: methods/gpgv.cc:174 #, fuzzy msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "無法執行 '%s' 來驗è‰ç°½ç« (gpgv 是å¦å®‰è£äº†ï¼Ÿï¼‰" #. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:178 +#: methods/gpgv.cc:180 #, c-format msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" -#: methods/gpgv.cc:182 +#: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" msgstr "在執行 gpgv 時發生未知的錯誤" -#: methods/gpgv.cc:215 methods/gpgv.cc:222 +#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "以下簽å無效:\n" -#: methods/gpgv.cc:229 +#: 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:65 +#: methods/gzip.cc:69 msgid "Empty files can't be valid archives" msgstr "" -#: methods/http.cc:516 +#: methods/http.cc:508 msgid "Error writing to the file" msgstr "在寫入該檔時發生錯誤" -#: methods/http.cc:530 +#: methods/http.cc:522 msgid "Error reading from server. Remote end closed connection" msgstr "在讀å–伺æœå™¨æ™‚發生錯誤,é 端主機已關閉連線" -#: methods/http.cc:532 +#: methods/http.cc:524 msgid "Error reading from server" msgstr "在讀å–伺æœå™¨æ™‚發生錯誤" -#: methods/http.cc:568 +#: methods/http.cc:560 msgid "Error writing to file" msgstr "在寫入檔案時發生錯誤" -#: methods/http.cc:628 +#: methods/http.cc:620 msgid "Select failed" msgstr "鏿“‡å¤±æ•—" -#: methods/http.cc:633 +#: methods/http.cc:625 msgid "Connection timed out" msgstr "連線逾時" -#: methods/http.cc:656 +#: methods/http.cc:648 msgid "Error writing to output file" msgstr "在寫入輸出檔時發生錯誤" -#: methods/server.cc:56 +#: methods/server.cc:51 msgid "Waiting for headers" msgstr "ç‰å¾…標é " -#: methods/server.cc:114 +#: methods/server.cc:109 msgid "Bad header line" msgstr "標é 行錯誤" -#: methods/server.cc:139 methods/server.cc:146 +#: methods/server.cc:134 methods/server.cc:141 msgid "The HTTP server sent an invalid reply header" msgstr "HTTP 伺æœå™¨å‚³é€äº†ä¸€å€‹ç„¡æ•ˆçš„回覆標é " -#: methods/server.cc:176 +#: methods/server.cc:171 msgid "The HTTP server sent an invalid Content-Length header" msgstr "HTTP 伺æœå™¨å‚³é€äº†ä¸€å€‹ç„¡æ•ˆçš„ Content-Length 標é " -#: methods/server.cc:199 +#: methods/server.cc:194 msgid "The HTTP server sent an invalid Content-Range header" msgstr "HTTP 伺æœå™¨å‚³é€äº†ä¸€å€‹ç„¡æ•ˆçš„ Content-Range 標é " -#: methods/server.cc:201 +#: methods/server.cc:196 msgid "This HTTP server has broken range support" msgstr "這個 HTTP 伺æœå™¨çš„ç¯„åœæ”¯æ´æœ‰å•題" -#: methods/server.cc:225 +#: methods/server.cc:220 msgid "Unknown date format" msgstr "æœªçŸ¥çš„è³‡æ–™æ ¼å¼" -#: methods/server.cc:494 +#: methods/server.cc:489 msgid "Bad header data" msgstr "錯誤的標é 資料" -#: methods/server.cc:511 methods/server.cc:567 +#: methods/server.cc:506 methods/server.cc:562 msgid "Connection failed" msgstr "連線失敗" -#: methods/server.cc:659 +#: methods/server.cc:654 msgid "Internal error" msgstr "內部錯誤" -#: apt-private/private-list.cc:147 +#: apt-private/private-list.cc:131 msgid "Listing" msgstr "" -#: apt-private/private-install.cc:93 +#: apt-private/private-install.cc:81 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "å…§éƒ¨éŒ¯èª¤ï¼Œåœ¨ææ¯€çš„套件上執行 InstallPackagesï¼" -#: apt-private/private-install.cc:102 +#: apt-private/private-install.cc:90 msgid "Packages need to be removed but remove is disabled." msgstr "有套件需è¦è¢«ç§»é™¤ï¼Œä½†å»è¢«ç¦æ¢ç§»é™¤ã€‚" -#: apt-private/private-install.cc:121 +#: apt-private/private-install.cc:109 msgid "Internal error, Ordering didn't finish" msgstr "å…§éƒ¨éŒ¯èª¤ï¼ŒæŽ’åºæœªèƒ½å®Œæˆ" -#: apt-private/private-install.cc:159 -msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +#: apt-private/private-install.cc:147 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "怪哉... 檔案大å°ä¸ç¬¦ï¼Œè«‹ç™¼ä¿¡çµ¦ apt@packages.debian.org" #. TRANSLATOR: The required 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:166 +#: apt-private/private-install.cc:154 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "需è¦ä¸‹è¼‰ %sB/%sB 的套件檔。\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:171 +#: apt-private/private-install.cc:159 #, 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:178 +#: apt-private/private-install.cc:166 #, c-format msgid "After this operation, %sB of additional disk space will be used.\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:183 +#: apt-private/private-install.cc:171 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "æ¤æ“作完æˆä¹‹å¾Œï¼Œæœƒç©ºå‡º %sB çš„ç£ç¢Ÿç©ºé–“。\n" -#: apt-private/private-install.cc:211 +#: apt-private/private-install.cc:199 #, c-format msgid "You don't have enough free space in %s." msgstr "在 %s è£¡æ²’æœ‰è¶³å¤ çš„çš„æœªä½¿ç”¨ç©ºé–“ã€‚" -#: apt-private/private-install.cc:221 apt-private/private-download.cc:55 +#: apt-private/private-install.cc:209 apt-private/private-download.cc:54 msgid "There are problems and -y was used without --force-yes" msgstr "發生了å•題,且 -y 並沒有和 --force-yes æé…使用" -#: apt-private/private-install.cc:227 apt-private/private-install.cc:249 +#: apt-private/private-install.cc:215 apt-private/private-install.cc:237 msgid "Trivial Only specified but this is not a trivial operation." msgstr "雖然指定了 Trivial Onlyï¼ˆè‡ªå‹•ç” NO)é¸é …ï¼Œä½†é€™ä¸¦ä¸æ˜¯ trivial æ“作。" #. 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:231 +#: apt-private/private-install.cc:219 msgid "Yes, do as I say!" msgstr "Yes, do as I say!" -#: apt-private/private-install.cc:233 +#: apt-private/private-install.cc:221 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1143,20 +1168,20 @@ msgstr "" "請輸入 '%s' 這個å¥å以繼續進行\n" " ?] " -#: apt-private/private-install.cc:239 apt-private/private-install.cc:257 +#: apt-private/private-install.cc:227 apt-private/private-install.cc:245 msgid "Abort." msgstr "放棄執行。" -#: apt-private/private-install.cc:254 +#: apt-private/private-install.cc:242 #, fuzzy msgid "Do you want to continue?" msgstr "是å¦ç¹¼çºŒé€²è¡Œ [Y/n]?" -#: apt-private/private-install.cc:324 +#: apt-private/private-install.cc:312 msgid "Some files failed to download" msgstr "有部份檔案無法下載" -#: apt-private/private-install.cc:331 +#: apt-private/private-install.cc:319 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1164,19 +1189,19 @@ msgstr "" "有部份套件檔無法å–得,試著執行 apt-get update æˆ–è€…è©¦è‘—åŠ ä¸Š --fix-missing é¸" "é …ï¼Ÿ" -#: apt-private/private-install.cc:335 +#: apt-private/private-install.cc:323 msgid "--fix-missing and media swapping is not currently supported" msgstr "ç›®å‰å°šæœªæ”¯æ´ --fix-missing 和媒體抽æ›" -#: apt-private/private-install.cc:340 +#: apt-private/private-install.cc:328 msgid "Unable to correct missing packages." msgstr "ç„¡æ³•ä¿®æ£æ¬ 缺的套件。" -#: apt-private/private-install.cc:341 +#: apt-private/private-install.cc:329 msgid "Aborting install." msgstr "放棄安è£ã€‚" -#: apt-private/private-install.cc:377 +#: apt-private/private-install.cc:365 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1186,15 +1211,15 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: apt-private/private-install.cc:381 +#: apt-private/private-install.cc:369 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-private/private-install.cc:402 +#: apt-private/private-install.cc:390 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "我們沒有計劃è¦åˆªé™¤ä»»ä½•æ±è¥¿ï¼Œç„¡æ³•啟動 AutoRemover" -#: apt-private/private-install.cc:510 +#: apt-private/private-install.cc:498 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1212,15 +1237,15 @@ msgstr "" #. "that package should be filed.") << std::endl; #. } #. -#: apt-private/private-install.cc:513 apt-private/private-install.cc:654 +#: apt-private/private-install.cc:501 apt-private/private-install.cc:642 msgid "The following information may help to resolve the situation:" msgstr "以下的資訊或許有助於解決當å‰çš„æƒ…æ³ï¼š" -#: apt-private/private-install.cc:517 +#: apt-private/private-install.cc:505 msgid "Internal Error, AutoRemover broke stuff" msgstr "內部錯誤,AutoRemover 處ç†å¤±æ•—" -#: apt-private/private-install.cc:524 +#: apt-private/private-install.cc:512 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1230,7 +1255,7 @@ msgid_plural "" msgstr[0] "以下套件是被自動安è£é€²ä¾†çš„,且已ä¸å†æœƒè¢«ç”¨åˆ°äº†ï¼š" msgstr[1] "以下套件是被自動安è£é€²ä¾†çš„,且已ä¸å†æœƒè¢«ç”¨åˆ°äº†ï¼š" -#: apt-private/private-install.cc:528 +#: apt-private/private-install.cc:516 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1238,18 +1263,18 @@ msgid_plural "" msgstr[0] "以下套件是被自動安è£é€²ä¾†çš„,且已ä¸å†æœƒè¢«ç”¨åˆ°äº†ï¼š" msgstr[1] "以下套件是被自動安è£é€²ä¾†çš„,且已ä¸å†æœƒè¢«ç”¨åˆ°äº†ï¼š" -#: apt-private/private-install.cc:530 +#: apt-private/private-install.cc:518 #, fuzzy msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "使用 'apt-get autoremove' 來將其移除。" msgstr[1] "使用 'apt-get autoremove' 來將其移除。" -#: apt-private/private-install.cc:624 +#: 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:626 +#: apt-private/private-install.cc:614 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1257,7 +1282,7 @@ msgstr "" "未能滿足相ä¾é—œä¿‚ã€‚è«‹è©¦è‘—ä¸æŒ‡å®šå¥—件來執行 'apt-get -f install'(或採å–其它的解" "決方案)。" -#: apt-private/private-install.cc:639 +#: apt-private/private-install.cc:627 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" @@ -1267,145 +1292,145 @@ msgstr "" "有些套件無法安è£ã€‚這å¯èƒ½æ„è¬‚è‘—æ‚¨çš„è¦æ±‚難以解決,或是若您使用的是\n" "unstable 發行版,å¯èƒ½æœ‰äº›å¿…è¦çš„套件尚未建立,或是被移出 Incoming 了。" -#: apt-private/private-install.cc:660 +#: apt-private/private-install.cc:648 msgid "Broken packages" msgstr "ææ¯€çš„套件" -#: apt-private/private-install.cc:713 +#: apt-private/private-install.cc:701 msgid "The following extra packages will be installed:" msgstr "下列的é¡å¤–套件將被安è£ï¼š" -#: apt-private/private-install.cc:803 +#: apt-private/private-install.cc:791 msgid "Suggested packages:" msgstr "建è°å¥—件:" -#: apt-private/private-install.cc:804 +#: apt-private/private-install.cc:792 msgid "Recommended packages:" msgstr "推薦套件:" -#: apt-private/private-download.cc:32 +#: apt-private/private-download.cc:31 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ã€è¦å‘Šã€‘:無法驗è‰ä¸‹åˆ—套件ï¼" -#: apt-private/private-download.cc:36 +#: apt-private/private-download.cc:35 msgid "Authentication warning overridden.\n" msgstr "忽略了驗è‰è¦å‘Šã€‚\n" -#: apt-private/private-download.cc:41 apt-private/private-download.cc:48 +#: apt-private/private-download.cc:40 apt-private/private-download.cc:47 msgid "Some packages could not be authenticated" msgstr "有部份套件無法驗è‰" -#: apt-private/private-download.cc:46 +#: apt-private/private-download.cc:45 msgid "Install these packages without verification?" msgstr "是å¦ä¸ç¶“é©—è‰å°±å®‰è£é€™äº›å¥—件?" -#: apt-private/private-download.cc:87 apt-pkg/update.cc:84 +#: apt-private/private-download.cc:86 apt-pkg/update.cc:77 #, c-format msgid "Failed to fetch %s %s\n" msgstr "無法å–å¾— %s,%s\n" -#: apt-private/private-output.cc:75 apt-private/private-show.cc:81 -#: apt-private/private-show.cc:86 +#: apt-private/private-output.cc:81 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 msgid "unknown" msgstr "" -#: apt-private/private-output.cc:201 +#: apt-private/private-output.cc:207 #, fuzzy, c-format msgid "[installed,upgradable to: %s]" msgstr "ã€å·²å®‰è£ã€‘" -#: apt-private/private-output.cc:205 +#: apt-private/private-output.cc:211 #, fuzzy msgid "[installed,local]" msgstr "ã€å·²å®‰è£ã€‘" -#: apt-private/private-output.cc:208 +#: apt-private/private-output.cc:214 msgid "[installed,auto-removable]" msgstr "" -#: apt-private/private-output.cc:210 +#: apt-private/private-output.cc:216 #, fuzzy msgid "[installed,automatic]" msgstr "ã€å·²å®‰è£ã€‘" -#: apt-private/private-output.cc:212 +#: apt-private/private-output.cc:218 #, fuzzy msgid "[installed]" msgstr "ã€å·²å®‰è£ã€‘" -#: apt-private/private-output.cc:216 +#: apt-private/private-output.cc:222 #, c-format msgid "[upgradable from: %s]" msgstr "" -#: apt-private/private-output.cc:220 +#: apt-private/private-output.cc:226 msgid "[residual-config]" msgstr "" -#: apt-private/private-output.cc:320 +#: apt-private/private-output.cc:326 msgid "The following packages have unmet dependencies:" msgstr "下列的套件有未滿足的相ä¾é—œä¿‚:" -#: apt-private/private-output.cc:410 +#: apt-private/private-output.cc:416 #, c-format msgid "but %s is installed" msgstr "但 %s å»å·²å®‰è£" -#: apt-private/private-output.cc:412 +#: apt-private/private-output.cc:418 #, c-format msgid "but %s is to be installed" msgstr "但 %s å»å°‡è¢«å®‰è£" -#: apt-private/private-output.cc:419 +#: apt-private/private-output.cc:425 msgid "but it is not installable" msgstr "但它å»ç„¡æ³•安è£" -#: apt-private/private-output.cc:421 +#: apt-private/private-output.cc:427 msgid "but it is a virtual package" msgstr "但它是虛擬套件" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not installed" msgstr "但它å»å°šæœªå®‰è£" -#: apt-private/private-output.cc:424 +#: apt-private/private-output.cc:430 msgid "but it is not going to be installed" msgstr "但它å»å°‡ä¸æœƒè¢«å®‰è£" -#: apt-private/private-output.cc:429 +#: apt-private/private-output.cc:435 msgid " or" msgstr "或" -#: apt-private/private-output.cc:458 +#: apt-private/private-output.cc:464 msgid "The following NEW packages will be installed:" msgstr "ä¸‹åˆ—ã€æ–°ã€‘套件將會被安è£ï¼š" -#: apt-private/private-output.cc:484 +#: apt-private/private-output.cc:490 msgid "The following packages will be REMOVED:" msgstr "下列套件將會被ã€ç§»é™¤ã€‘:" -#: apt-private/private-output.cc:506 +#: apt-private/private-output.cc:512 msgid "The following packages have been kept back:" msgstr "ä¸‹åˆ—å¥—ä»¶å°‡æœƒç¶æŒå…¶åŽŸæœ‰ç‰ˆæœ¬ï¼š" -#: apt-private/private-output.cc:527 +#: apt-private/private-output.cc:533 msgid "The following packages will be upgraded:" msgstr "下列套件將會被å‡ç´šï¼š" -#: apt-private/private-output.cc:548 +#: apt-private/private-output.cc:554 msgid "The following packages will be DOWNGRADED:" msgstr "下列套件將會被ã€é™ç´šã€‘:" -#: apt-private/private-output.cc:568 +#: apt-private/private-output.cc:574 msgid "The following held packages will be changed:" msgstr "下列被ä¿ç•™ (hold) 的套件將會被更改:" -#: apt-private/private-output.cc:623 +#: apt-private/private-output.cc:629 #, c-format msgid "%s (due to %s) " msgstr "%sï¼ˆå› ç‚º %s)" -#: apt-private/private-output.cc:631 +#: apt-private/private-output.cc:637 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -1413,27 +1438,27 @@ msgstr "" "ã€è¦å‘Šã€‘:下列的基本套件都將被移除。\n" "é™¤éžæ‚¨å¾ˆæ¸…楚您在åšä»€éº¼ï¼Œå¦å‰‡è«‹å‹¿è¼•易嘗試ï¼" -#: apt-private/private-output.cc:662 +#: apt-private/private-output.cc:668 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "å‡ç´š %lu å€‹ï¼Œæ–°å®‰è£ %lu 個," -#: apt-private/private-output.cc:666 +#: apt-private/private-output.cc:672 #, c-format msgid "%lu reinstalled, " msgstr "釿–°å®‰è£ %lu 個," -#: apt-private/private-output.cc:668 +#: apt-private/private-output.cc:674 #, c-format msgid "%lu downgraded, " msgstr "é™ç´š %lu 個," -#: apt-private/private-output.cc:670 +#: apt-private/private-output.cc:676 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "移除 %lu 個,有 %lu 個未被å‡ç´šã€‚\n" -#: apt-private/private-output.cc:674 +#: apt-private/private-output.cc:680 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu å€‹æ²’æœ‰å®Œæ•´å¾—å®‰è£æˆ–移除。\n" @@ -1442,7 +1467,7 @@ msgstr "%lu å€‹æ²’æœ‰å®Œæ•´å¾—å®‰è£æˆ–移除。\n" #. 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:696 +#: apt-private/private-output.cc:702 msgid "[Y/n]" msgstr "" @@ -1450,91 +1475,91 @@ msgstr "" #. 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:702 +#: apt-private/private-output.cc:708 msgid "[y/N]" msgstr "" #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:713 +#: apt-private/private-output.cc:719 msgid "Y" msgstr "" #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:719 +#: apt-private/private-output.cc:725 msgid "N" msgstr "" -#: apt-private/private-output.cc:741 apt-pkg/cachefilter.cc:33 +#: apt-private/private-output.cc:747 apt-pkg/cachefilter.cc:35 #, c-format msgid "Regex compilation error - %s" msgstr "ç·¨è¯æ£è¦è¡¨ç¤ºå¼æ™‚發生錯誤 - %s" -#: apt-private/private-cachefile.cc:87 +#: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." msgstr "æ£åœ¨ä¿®æ£ç›¸ä¾é—œä¿‚..." -#: apt-private/private-cachefile.cc:90 +#: apt-private/private-cachefile.cc:96 msgid " failed." msgstr " 失敗。" -#: apt-private/private-cachefile.cc:93 +#: apt-private/private-cachefile.cc:99 msgid "Unable to correct dependencies" msgstr "無法修æ£ç›¸ä¾é—œä¿‚" -#: apt-private/private-cachefile.cc:96 +#: apt-private/private-cachefile.cc:102 msgid "Unable to minimize the upgrade set" msgstr "無法將å‡ç´šè¨ˆåŠƒæœ€å°åŒ–" -#: apt-private/private-cachefile.cc:98 +#: apt-private/private-cachefile.cc:104 msgid " Done" msgstr " 完æˆ" -#: apt-private/private-cachefile.cc:102 +#: 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:105 +#: apt-private/private-cachefile.cc:111 msgid "Unmet dependencies. Try using -f." msgstr "未能滿足相ä¾é—œä¿‚。試試 -f é¸é …。" -#: apt-private/private-cacheset.cc:26 apt-private/private-search.cc:57 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" msgstr "" -#: apt-private/private-update.cc:45 +#: apt-private/private-update.cc:31 msgid "The update command takes no arguments" msgstr "update 指令ä¸éœ€ä»»ä½•åƒæ•¸" -#: apt-private/private-upgrade.cc:19 +#: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " msgstr "籌備å‡ç´šä¸... " -#: apt-private/private-upgrade.cc:24 +#: apt-private/private-upgrade.cc:30 #, fuzzy msgid "Internal error, Upgrade broke stuff" msgstr "內部錯誤,AllUpgrade é€ æˆäº†æå£ž" -#: apt-private/private-upgrade.cc:26 +#: apt-private/private-upgrade.cc:32 msgid "Done" msgstr "完æˆ" -#: apt-private/private-search.cc:61 +#: apt-private/private-search.cc:51 msgid "Full Text Search" msgstr "" -#: apt-private/private-show.cc:152 +#: apt-private/private-show.cc:156 #, c-format -msgid "There is %lu additional record. Please use the '-a' switch to see it" +msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" -"There are %lu additional records. Please use the '-a' switch to see them." +"There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" msgstr[1] "" -#: apt-private/private-show.cc:159 +#: apt-private/private-show.cc:163 msgid "not a real package (virtual)" msgstr "" -#: apt-private/private-main.cc:19 +#: apt-private/private-main.cc:23 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1542,43 +1567,43 @@ msgid "" " so don't depend on the relevance to the real current situation!" msgstr "" -#: apt-private/private-sources.cc:45 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format msgid "Failed to parse %s. Edit again? " msgstr "無法將 %s æ›´å為 %s" -#: apt-private/private-sources.cc:57 +#: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: apt-private/acqprogress.cc:63 +#: apt-private/acqprogress.cc:66 msgid "Hit " msgstr "已有 " -#: apt-private/acqprogress.cc:87 +#: apt-private/acqprogress.cc:90 msgid "Get:" msgstr "下載:" -#: apt-private/acqprogress.cc:118 +#: apt-private/acqprogress.cc:121 msgid "Ign " msgstr "ç•¥éŽ " -#: apt-private/acqprogress.cc:122 +#: apt-private/acqprogress.cc:125 msgid "Err " msgstr "錯誤 " -#: apt-private/acqprogress.cc:143 +#: apt-private/acqprogress.cc:146 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" msgstr "å–å¾— %sB 用了 %s (%sB/s)\n" -#: apt-private/acqprogress.cc:233 +#: apt-private/acqprogress.cc:236 #, c-format msgid " [Working]" msgstr " [工作ä¸]" -#: apt-private/acqprogress.cc:294 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" "Media change: please insert the disc labeled\n" @@ -1591,19 +1616,19 @@ 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:464 -#: apt-pkg/contrib/cdromutl.cc:184 apt-pkg/contrib/fileutl.cc:406 -#: apt-pkg/contrib/fileutl.cc:519 apt-pkg/sourcelist.cc:271 -#: apt-pkg/sourcelist.cc:277 apt-pkg/acquire.cc:485 apt-pkg/init.cc:100 -#: apt-pkg/init.cc:108 apt-pkg/clean.cc:36 apt-pkg/policy.cc:373 +#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: apt-pkg/contrib/cdromutl.cc:205 apt-pkg/contrib/fileutl.cc:371 +#: apt-pkg/contrib/fileutl.cc:484 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/acquire.cc:491 apt-pkg/init.cc:102 +#: apt-pkg/init.cc:110 apt-pkg/clean.cc:40 apt-pkg/policy.cc:381 #, c-format msgid "Unable to read %s" msgstr "ç„¡æ³•è®€å– %s" -#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/contrib/cdromutl.cc:214 apt-pkg/acquire.cc:491 -#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:123 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 apt-pkg/acquire.cc:497 +#: apt-pkg/acquire.cc:522 apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 +#: apt-pkg/clean.cc:127 #, c-format msgid "Unable to change to %s" msgstr "無法切æ›è‡³ %s" @@ -1632,11 +1657,11 @@ msgstr "無法開啟檔案 %s" msgid "[Mirror: %s]" msgstr "" -#: methods/rsh.cc:98 ftparchive/multicompress.cc:169 +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 msgid "Failed to create IPC pipe to subprocess" msgstr "無法和å程åºå»ºç«‹ IPC 管線" -#: methods/rsh.cc:339 +#: methods/rsh.cc:343 msgid "Connection closed prematurely" msgstr "連線çªç„¶çµ‚æ¢" @@ -1700,40 +1725,45 @@ msgstr "" " -c=? è®€å–æŒ‡å®šçš„è¨å®šæª”\n" " -o=? 指定任æ„çš„è¨å®šé¸é …,例如:-o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:256 apt-pkg/pkgcachegen.cc:1388 +#: cmdline/apt-extracttemplates.cc:254 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "無法å–å¾— %s 的狀態" + +#: cmdline/apt-extracttemplates.cc:259 apt-pkg/pkgcachegen.cc:1400 #, c-format msgid "Unable to write to %s" msgstr "無法寫入 %s" -#: cmdline/apt-extracttemplates.cc:298 +#: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" msgstr "無法å–å¾— debconf ç‰ˆæœ¬ã€‚æ˜¯å¦æœ‰å®‰è£ debconf?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 +#: ftparchive/apt-ftparchive.cc:180 ftparchive/apt-ftparchive.cc:358 msgid "Package extension list is too long" msgstr "套件延伸列表éŽé•·" -#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 -#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 +#: ftparchive/apt-ftparchive.cc:182 ftparchive/apt-ftparchive.cc:199 +#: ftparchive/apt-ftparchive.cc:222 ftparchive/apt-ftparchive.cc:273 +#: ftparchive/apt-ftparchive.cc:287 ftparchive/apt-ftparchive.cc:309 #, c-format msgid "Error processing directory %s" msgstr "處ç†ç›®éŒ„ %s 時發生錯誤" -#: ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:271 msgid "Source extension list is too long" msgstr "原始碼的延伸列表太長" -#: ftparchive/apt-ftparchive.cc:379 +#: ftparchive/apt-ftparchive.cc:388 msgid "Error writing header to contents file" msgstr "寫入標é 資訊到內容檔時發生錯誤" -#: ftparchive/apt-ftparchive.cc:409 +#: ftparchive/apt-ftparchive.cc:418 #, c-format msgid "Error processing contents %s" msgstr "處ç†å…§å®¹ %s 時發生錯誤" -#: ftparchive/apt-ftparchive.cc:597 +#: ftparchive/apt-ftparchive.cc:606 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1811,26 +1841,26 @@ msgstr "" " -c=? è®€å–æŒ‡å®šçš„è¨å®šæª”\n" " -o=? 指定任æ„çš„è¨å®šé¸é …" -#: ftparchive/apt-ftparchive.cc:803 +#: ftparchive/apt-ftparchive.cc:812 msgid "No selections matched" msgstr "找ä¸åˆ°ç¬¦åˆçš„é¸é …" -#: ftparchive/apt-ftparchive.cc:881 +#: ftparchive/apt-ftparchive.cc:890 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "套件檔案組 `%s' 少了部份檔案" -#: ftparchive/cachedb.cc:47 +#: ftparchive/cachedb.cc:51 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "DB å·²ææ¯€ï¼Œæª”案被更å為 %s.old" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:69 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "DB éŽèˆŠï¼Œå˜—試å‡ç´š %s" -#: ftparchive/cachedb.cc:76 +#: ftparchive/cachedb.cc:80 #, fuzzy msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " @@ -1838,192 +1868,192 @@ msgid "" msgstr "" "è³‡æ–™åº«æ ¼å¼ä¸æ£ç¢ºã€‚如果您是由舊版的 apt å‡ç´šä¸Šä¾†çš„ï¼Œè«‹ç§»é™¤ä¸¦é‡æ–°å»ºç«‹è³‡æ–™åº«ã€‚" -#: ftparchive/cachedb.cc:81 +#: ftparchive/cachedb.cc:85 #, c-format msgid "Unable to open DB file %s: %s" msgstr "無法開啟 DB 檔 %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 -#: apt-inst/extract.cc:209 +#: ftparchive/cachedb.cc:131 apt-inst/extract.cc:186 apt-inst/extract.cc:199 +#: apt-inst/extract.cc:216 #, c-format msgid "Failed to stat %s" msgstr "無法å–å¾— %s 的狀態" -#: ftparchive/cachedb.cc:249 +#: ftparchive/cachedb.cc:253 msgid "Archive has no control record" msgstr "套件檔沒有 control 記錄" -#: ftparchive/cachedb.cc:490 +#: ftparchive/cachedb.cc:494 msgid "Unable to get a cursor" msgstr "無法å–å¾—éŠæ¨™" -#: ftparchive/writer.cc:82 +#: ftparchive/writer.cc:91 #, c-format msgid "W: Unable to read directory %s\n" msgstr "è¦å‘Šï¼šç„¡æ³•讀å–目錄 %s\n" -#: ftparchive/writer.cc:87 +#: ftparchive/writer.cc:96 #, c-format msgid "W: Unable to stat %s\n" msgstr "è¦å‘Šï¼šç„¡æ³•å–å¾— %s 狀態\n" -#: ftparchive/writer.cc:143 +#: ftparchive/writer.cc:152 msgid "E: " msgstr "錯誤:" -#: ftparchive/writer.cc:145 +#: ftparchive/writer.cc:154 msgid "W: " msgstr "è¦å‘Šï¼š" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:161 msgid "E: Errors apply to file " msgstr "錯誤:套用到檔案時發生錯誤" -#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 +#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 #, c-format msgid "Failed to resolve %s" msgstr "ç„¡æ³•è§£æž %s" -#: ftparchive/writer.cc:183 +#: ftparchive/writer.cc:192 msgid "Tree walking failed" msgstr "無法走訪目錄樹" -#: ftparchive/writer.cc:210 +#: ftparchive/writer.cc:219 #, c-format msgid "Failed to open %s" msgstr "無法開啟 %s" -#: ftparchive/writer.cc:269 +#: ftparchive/writer.cc:278 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:277 +#: ftparchive/writer.cc:286 #, c-format msgid "Failed to readlink %s" msgstr "無法讀å–é€£çµ %s" -#: ftparchive/writer.cc:281 +#: ftparchive/writer.cc:290 #, c-format msgid "Failed to unlink %s" msgstr "ç„¡æ³•ç§»é™¤é€£çµ %s" -#: ftparchive/writer.cc:289 +#: ftparchive/writer.cc:298 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** 無法將 %s 連çµåˆ° %s" -#: ftparchive/writer.cc:299 +#: ftparchive/writer.cc:308 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " é”到了 DeLink çš„ä¸Šé™ %sB。\n" -#: ftparchive/writer.cc:404 +#: ftparchive/writer.cc:413 msgid "Archive had no package field" msgstr "套件檔裡沒有套件資訊" -#: ftparchive/writer.cc:412 ftparchive/writer.cc:702 +#: ftparchive/writer.cc:421 ftparchive/writer.cc:711 #, c-format msgid " %s has no override entry\n" msgstr " %s æ²’æœ‰é‡æ–°å®šç¾©é …ç›®\n" -#: ftparchive/writer.cc:480 ftparchive/writer.cc:846 +#: ftparchive/writer.cc:489 ftparchive/writer.cc:855 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s çš„ç¶è·è€…是 %sï¼Œè€Œéž %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:721 #, c-format msgid " %s has no source override entry\n" msgstr " %s æ²’æœ‰åŽŸå§‹ç¢¼é‡æ–°å®šç¾©é …ç›®\n" -#: ftparchive/writer.cc:716 +#: ftparchive/writer.cc:725 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s ä¹Ÿæ²’æœ‰äºŒå…ƒç¢¼é‡æ–°å®šç¾©é …ç›®\n" -#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +#: ftparchive/contents.cc:340 ftparchive/contents.cc:371 msgid "realloc - Failed to allocate memory" msgstr "realloc - 無法é…置記憶體" -#: ftparchive/override.cc:35 ftparchive/override.cc:139 +#: ftparchive/override.cc:38 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" msgstr "無法開啟 %s" #. skip spaces #. find end of word -#: ftparchive/override.cc:65 +#: ftparchive/override.cc:68 #, fuzzy, c-format msgid "Malformed override %s line %llu (%s)" msgstr "釿–°å®šç¾©æª” %s 第 %lu è¡Œçš„æ ¼å¼éŒ¯èª¤ #1" -#: ftparchive/override.cc:124 ftparchive/override.cc:198 +#: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" msgstr "無法讀å–釿–°å®šç¾©æª” %s" -#: ftparchive/override.cc:163 +#: ftparchive/override.cc:166 #, fuzzy, c-format msgid "Malformed override %s line %llu #1" msgstr "釿–°å®šç¾©æª” %s 第 %lu è¡Œçš„æ ¼å¼éŒ¯èª¤ #1" -#: ftparchive/override.cc:175 +#: ftparchive/override.cc:178 #, fuzzy, c-format msgid "Malformed override %s line %llu #2" msgstr "釿–°å®šç¾©æª” %s 第 %lu è¡Œçš„æ ¼å¼éŒ¯èª¤ #2" -#: ftparchive/override.cc:188 +#: ftparchive/override.cc:191 #, fuzzy, c-format msgid "Malformed override %s line %llu #3" msgstr "釿–°å®šç¾©æª” %s 第 %lu è¡Œçš„æ ¼å¼éŒ¯èª¤ #3" -#: ftparchive/multicompress.cc:71 +#: ftparchive/multicompress.cc:73 #, c-format msgid "Unknown compression algorithm '%s'" msgstr "未知的壓縮演算法 '%s'" -#: ftparchive/multicompress.cc:101 +#: ftparchive/multicompress.cc:103 #, c-format msgid "Compressed output %s needs a compression set" msgstr "è¦å£“縮輸出 %s 需æé…壓縮動作" -#: ftparchive/multicompress.cc:190 +#: ftparchive/multicompress.cc:192 msgid "Failed to create FILE*" msgstr "無法建立 FILE*" -#: ftparchive/multicompress.cc:193 +#: ftparchive/multicompress.cc:195 msgid "Failed to fork" msgstr "fork 時失敗" -#: ftparchive/multicompress.cc:207 +#: ftparchive/multicompress.cc:209 msgid "Compress child" msgstr "壓縮å程åº" -#: ftparchive/multicompress.cc:230 +#: ftparchive/multicompress.cc:232 #, c-format msgid "Internal error, failed to create %s" msgstr "內部錯誤,無法建立 %s" -#: ftparchive/multicompress.cc:303 +#: ftparchive/multicompress.cc:305 msgid "IO to subprocess/file failed" msgstr "å’Œå程åº/檔案 IO 失敗" -#: ftparchive/multicompress.cc:341 +#: ftparchive/multicompress.cc:343 msgid "Failed to read while computing MD5" msgstr "在計算 MD5 時無法讀å–到資料" -#: ftparchive/multicompress.cc:357 +#: ftparchive/multicompress.cc:359 #, c-format msgid "Problem unlinking %s" msgstr "åœ¨å–æ¶ˆ %s çš„é€£çµæ™‚發生å•題" -#: ftparchive/multicompress.cc:372 apt-inst/extract.cc:187 +#: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194 #, c-format msgid "Failed to rename %s to %s" msgstr "無法將 %s æ›´å為 %s" -#: cmdline/apt-internal-solver.cc:38 +#: cmdline/apt-internal-solver.cc:46 #, fuzzy msgid "" "Usage: apt-internal-solver\n" @@ -2075,157 +2105,157 @@ msgstr "" " -c=? è®€å–æŒ‡å®šçš„è¨å®šæª”\n" " -o=? 指定任æ„çš„è¨å®šé¸é …,例如:-o dir::cache=/tmp\n" -#: apt-inst/contrib/extracttar.cc:122 +#: apt-inst/contrib/extracttar.cc:124 msgid "Failed to create pipes" msgstr "無法建立管線" -#: apt-inst/contrib/extracttar.cc:149 +#: apt-inst/contrib/extracttar.cc:151 msgid "Failed to exec gzip " msgstr "無法執行 gzip" -#: apt-inst/contrib/extracttar.cc:186 apt-inst/contrib/extracttar.cc:216 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 msgid "Corrupted archive" msgstr "ææ¯€çš„套件檔" -#: apt-inst/contrib/extracttar.cc:201 +#: apt-inst/contrib/extracttar.cc:203 msgid "Tar checksum failed, archive corrupted" msgstr "Tar checksum å¤±æ•—ï¼Œå¥—ä»¶æª”å·²ææ¯€" -#: apt-inst/contrib/extracttar.cc:306 +#: apt-inst/contrib/extracttar.cc:308 #, c-format msgid "Unknown TAR header type %u, member %s" msgstr "未知的 TAR 標é 類型 %u,æˆå“¡ %s" -#: apt-inst/contrib/arfile.cc:74 +#: apt-inst/contrib/arfile.cc:76 msgid "Invalid archive signature" msgstr "ç„¡æ•ˆçš„å¥—ä»¶åº«ç°½ç« " -#: apt-inst/contrib/arfile.cc:82 +#: apt-inst/contrib/arfile.cc:84 msgid "Error reading archive member header" msgstr "讀å–套件檔的æˆå“¡æ¨™é è¨Šæ¯æ™‚發生錯誤" -#: apt-inst/contrib/arfile.cc:94 +#: apt-inst/contrib/arfile.cc:96 #, fuzzy, c-format msgid "Invalid archive member header %s" msgstr "無效的套件檔æˆå“¡æ¨™é " -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:108 msgid "Invalid archive member header" msgstr "無效的套件檔æˆå“¡æ¨™é " -#: apt-inst/contrib/arfile.cc:135 +#: apt-inst/contrib/arfile.cc:137 msgid "Archive is too short" msgstr "套件檔éŽçŸ" -#: apt-inst/contrib/arfile.cc:139 +#: apt-inst/contrib/arfile.cc:141 msgid "Failed to read the archive headers" msgstr "讀å–套件檔標é 失敗" -#: apt-inst/filelist.cc:382 +#: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" msgstr "DropNode 在還有連çµçµé»žæ™‚被呼å«" -#: apt-inst/filelist.cc:414 +#: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" msgstr "找ä¸åˆ°é›œæ¹Šå…ƒä»¶ï¼" -#: apt-inst/filelist.cc:461 +#: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" msgstr "在é…置抽æ›è³‡è¨Šæ™‚失敗" -#: apt-inst/filelist.cc:466 +#: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" msgstr "在 AddDiversion 發生了內部錯誤" -#: apt-inst/filelist.cc:479 +#: 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:508 +#: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" msgstr "é‡è¤‡åŠ å…¥æŠ½æ›è³‡è¨Š %s -> %s" -#: apt-inst/filelist.cc:551 +#: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" msgstr "é‡è¤‡çš„è¨å®šæª” %s/%s" -#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#: 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:106 +#: apt-inst/dirstream.cc:105 #, c-format msgid "Failed to close file %s" msgstr "關閉檔案 %s 失敗" -#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 +#: 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:125 +#: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" msgstr "解開 %s è¶…éŽä¸€æ¬¡" -#: apt-inst/extract.cc:135 +#: apt-inst/extract.cc:142 #, c-format msgid "The directory %s is diverted" msgstr "路徑 %s 已被抽æ›" -#: apt-inst/extract.cc:145 +#: 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:155 apt-inst/extract.cc:299 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 msgid "The diversion path is too long" msgstr "è¦é€²è¡ŒæŠ½æ›çš„路徑éŽé•·" -#: apt-inst/extract.cc:242 +#: apt-inst/extract.cc:249 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "目錄 %s 已經被éžç›®éŒ„的檔案所å–代" -#: apt-inst/extract.cc:282 +#: apt-inst/extract.cc:289 msgid "Failed to locate node in its hash bucket" msgstr "åœ¨é›œæ¹Šè¡¨ä¸æ‰¾ä¸åˆ°ç¯€é»ž" -#: apt-inst/extract.cc:286 +#: apt-inst/extract.cc:293 msgid "The path is too long" msgstr "路徑éŽé•·" -#: apt-inst/extract.cc:414 +#: apt-inst/extract.cc:421 #, c-format msgid "Overwrite package match with no version for %s" msgstr "以無版本的 %s 覆寫原始套件" -#: apt-inst/extract.cc:431 +#: 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:491 +#: apt-inst/extract.cc:498 #, c-format msgid "Unable to stat %s" msgstr "無法å–å¾— %s 的狀態" -#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:48 -#: apt-inst/deb/debfile.cc:57 +#: 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:124 +#: apt-inst/deb/debfile.cc:132 #, c-format msgid "Internal error, could not locate member %s" msgstr "å…§éƒ¨éŒ¯èª¤ï¼Œæ‰¾ä¸æ‰¾åˆ°æˆå“¡ %s" -#: apt-inst/deb/debfile.cc:219 +#: apt-inst/deb/debfile.cc:227 msgid "Unparsable control file" msgstr "無法分æžçš„ control 檔" @@ -2284,494 +2314,499 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:401 +#: apt-pkg/contrib/strutl.cc:406 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:408 +#: apt-pkg/contrib/strutl.cc:413 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:415 +#: apt-pkg/contrib/strutl.cc:420 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-pkg/contrib/strutl.cc:425 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1229 +#: apt-pkg/contrib/strutl.cc:1236 #, c-format msgid "Selection %s not found" msgstr "é¸é … %s 找ä¸åˆ°" -#: apt-pkg/contrib/configuration.cc:503 +#: apt-pkg/contrib/configuration.cc:519 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "無法辨è˜çš„縮寫類型:'%c'" -#: apt-pkg/contrib/configuration.cc:617 +#: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" msgstr "開啟è¨å®šæª” %s" -#: apt-pkg/contrib/configuration.cc:785 +#: apt-pkg/contrib/configuration.cc:801 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "語法錯誤 %s:%u:å€å¡Šé–‹é 沒有å稱。" -#: apt-pkg/contrib/configuration.cc:804 +#: apt-pkg/contrib/configuration.cc:820 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "語法錯誤 %s:%uï¼šæ¨™ç±¤æ ¼å¼éŒ¯èª¤" -#: apt-pkg/contrib/configuration.cc:821 +#: apt-pkg/contrib/configuration.cc:837 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "語法錯誤 %s:%u:數值後有多餘的垃圾" -#: apt-pkg/contrib/configuration.cc:861 +#: apt-pkg/contrib/configuration.cc:877 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "語法錯誤 %s:%u:指令åªèƒ½æ–¼æœ€é«˜å±¤ç´šåŸ·è¡Œ" -#: apt-pkg/contrib/configuration.cc:868 +#: apt-pkg/contrib/configuration.cc:884 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "語法錯誤 %s:%u: 太多巢狀引入檔" -#: apt-pkg/contrib/configuration.cc:872 apt-pkg/contrib/configuration.cc:877 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "語法錯誤 %s:%u:從æ¤å¼•å…¥" -#: apt-pkg/contrib/configuration.cc:881 +#: apt-pkg/contrib/configuration.cc:897 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "語法錯誤 %s:%uï¼šä¸æ”¯æ´çš„æŒ‡ä»¤ '%s'" -#: apt-pkg/contrib/configuration.cc:884 +#: 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-pkg/contrib/configuration.cc:934 +#: apt-pkg/contrib/configuration.cc:950 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "語法錯誤 %s:%u:在檔案çµå°¾æœ‰å¤šé¤˜çš„垃圾" -#: apt-pkg/contrib/progress.cc:146 +#: apt-pkg/contrib/progress.cc:148 #, c-format msgid "%c%s... Error!" msgstr "%c%s... 錯誤ï¼" -#: apt-pkg/contrib/progress.cc:148 +#: apt-pkg/contrib/progress.cc:150 #, c-format msgid "%c%s... Done" msgstr "%c%s... 完æˆ" -#: apt-pkg/contrib/progress.cc:179 +#: apt-pkg/contrib/progress.cc:181 msgid "..." msgstr "" #. Print the spinner -#: apt-pkg/contrib/progress.cc:195 +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format msgid "%c%s... %u%%" msgstr "%c%s... 完æˆ" -#: apt-pkg/contrib/cmndline.cc:116 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format msgid "Command line option '%c' [from %s] is not known." msgstr "未知的命令列é¸é … '%c' [來自 %s]。" -#: apt-pkg/contrib/cmndline.cc:141 apt-pkg/contrib/cmndline.cc:150 -#: apt-pkg/contrib/cmndline.cc:158 +#: 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-pkg/contrib/cmndline.cc:163 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format msgid "Command line option %s is not boolean" msgstr "命令列é¸é … %s 䏿˜¯ boolean 值" -#: apt-pkg/contrib/cmndline.cc:204 apt-pkg/contrib/cmndline.cc:225 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format msgid "Option %s requires an argument." msgstr "需替é¸é … %s æŒ‡å®šåƒæ•¸ã€‚" -#: apt-pkg/contrib/cmndline.cc:238 apt-pkg/contrib/cmndline.cc:244 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." msgstr "é¸é … %s:在指定è¨å®šé …目時應該有 =<val>。" -#: apt-pkg/contrib/cmndline.cc:273 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format msgid "Option %s requires an integer argument, not '%s'" msgstr "é¸é … %s çš„åƒæ•¸æ‡‰è©²æ˜¯æ•¸å—ï¼Œè€Œä¸æ˜¯ '%s'" -#: apt-pkg/contrib/cmndline.cc:304 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format msgid "Option '%s' is too long" msgstr "é¸é … %s 太長" -#: apt-pkg/contrib/cmndline.cc:336 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format msgid "Sense %s is not understood, try true or false." msgstr "嵿¸¬å™¨ %s 無法ç†è§£ï¼Œè©¦è©¦ true 或 false。" -#: apt-pkg/contrib/cmndline.cc:386 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format msgid "Invalid operation %s" msgstr "無效的æ“作 %s" -#: apt-pkg/contrib/cdromutl.cc:56 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format msgid "Unable to stat the mount point %s" msgstr "無法å–得掛載點 %s 的狀態" -#: apt-pkg/contrib/cdromutl.cc:225 +#: apt-pkg/contrib/cdromutl.cc:246 msgid "Failed to stat the cdrom" msgstr "無法å–å¾— CD-ROM 的狀態" -#: apt-pkg/contrib/fileutl.cc:95 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "在關閉檔案時發生å•題" - -#: apt-pkg/contrib/fileutl.cc:228 +#: apt-pkg/contrib/fileutl.cc:193 #, c-format msgid "Not using locking for read only lock file %s" msgstr "ä¸åœ¨å”¯è®€æª”案 %s 上使用檔案鎖定" -#: apt-pkg/contrib/fileutl.cc:233 +#: apt-pkg/contrib/fileutl.cc:198 #, c-format msgid "Could not open lock file %s" msgstr "無法開啟鎖定檔 %s" -#: apt-pkg/contrib/fileutl.cc:256 +#: apt-pkg/contrib/fileutl.cc:221 #, c-format msgid "Not using locking for nfs mounted lock file %s" msgstr "ä¸åœ¨ä»¥ nfs 掛載的檔案 %s 上使用檔案鎖定" -#: apt-pkg/contrib/fileutl.cc:261 +#: apt-pkg/contrib/fileutl.cc:226 #, c-format msgid "Could not get lock %s" msgstr "無法將 %s 鎖定" -#: apt-pkg/contrib/fileutl.cc:398 apt-pkg/contrib/fileutl.cc:512 +#: apt-pkg/contrib/fileutl.cc:363 apt-pkg/contrib/fileutl.cc:477 #, c-format msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-pkg/contrib/fileutl.cc:432 +#: apt-pkg/contrib/fileutl.cc:397 #, c-format msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:450 +#: apt-pkg/contrib/fileutl.cc:415 #, c-format msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:459 +#: apt-pkg/contrib/fileutl.cc:424 #, c-format msgid "" "Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-pkg/contrib/fileutl.cc:862 +#: apt-pkg/contrib/fileutl.cc:827 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "åç¨‹åº %s 收到一個記憶體錯誤。" -#: apt-pkg/contrib/fileutl.cc:864 +#: apt-pkg/contrib/fileutl.cc:829 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "åç¨‹åº %s 收到一個記憶體錯誤。" -#: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:237 +#: apt-pkg/contrib/fileutl.cc:833 apt-pkg/contrib/gpgv.cc:239 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "åç¨‹åº %s 傳回錯誤碼 (%u)" -#: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:230 +#: apt-pkg/contrib/fileutl.cc:835 apt-pkg/contrib/gpgv.cc:232 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "åç¨‹åº %s ä¸é æœŸå¾—çµæŸ" -#: apt-pkg/contrib/fileutl.cc:1016 +#: apt-pkg/contrib/fileutl.cc:916 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "在關閉檔案時發生å•題" + +#: apt-pkg/contrib/fileutl.cc:1104 #, c-format msgid "Could not open file %s" msgstr "無法開啟檔案 %s" -#: apt-pkg/contrib/fileutl.cc:1093 +#: apt-pkg/contrib/fileutl.cc:1163 apt-pkg/contrib/fileutl.cc:1210 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "無法開啟管線給 %s 使用" -#: apt-pkg/contrib/fileutl.cc:1178 +#: apt-pkg/contrib/fileutl.cc:1317 msgid "Failed to create subprocess IPC" msgstr "無法建立åç¨‹åº IPC" -#: apt-pkg/contrib/fileutl.cc:1233 +#: apt-pkg/contrib/fileutl.cc:1372 msgid "Failed to exec compressor " msgstr "無法執行壓縮程å¼" -#: apt-pkg/contrib/fileutl.cc:1326 +#: apt-pkg/contrib/fileutl.cc:1513 #, fuzzy, c-format msgid "read, still have %llu to read but none left" msgstr "讀å–ï¼Œä»æœ‰ %lu 未讀但已無空間" -#: apt-pkg/contrib/fileutl.cc:1413 apt-pkg/contrib/fileutl.cc:1435 +#: apt-pkg/contrib/fileutl.cc:1626 apt-pkg/contrib/fileutl.cc:1648 #, fuzzy, c-format msgid "write, still have %llu to write but couldn't" msgstr "å¯«å…¥ï¼Œä»æœ‰ %lu 待寫入但已沒辨法" -#: apt-pkg/contrib/fileutl.cc:1723 +#: apt-pkg/contrib/fileutl.cc:1918 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "在關閉檔案時發生å•題" -#: apt-pkg/contrib/fileutl.cc:1735 +#: apt-pkg/contrib/fileutl.cc:1930 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "åœ¨åŒæ¥æª”案時發生å•題" -#: apt-pkg/contrib/fileutl.cc:1746 +#: apt-pkg/contrib/fileutl.cc:1941 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "在刪除檔案時發生å•題" -#: apt-pkg/contrib/fileutl.cc:1759 +#: apt-pkg/contrib/fileutl.cc:1954 msgid "Problem syncing the file" msgstr "åœ¨åŒæ¥æª”案時發生å•題" +#: apt-pkg/contrib/fileutl.cc:2050 apt-pkg/acquire-item.cc:148 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "ç„¡æ³•é‡æ–°å‘½å,%s (%s -> %s)。" + #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:70 +#: apt-pkg/contrib/gpgv.cc:72 #, fuzzy, c-format msgid "No keyring installed in %s." msgstr "放棄安è£ã€‚" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:155 msgid "Empty package cache" msgstr "清空套件快å–" -#: apt-pkg/pkgcache.cc:154 +#: apt-pkg/pkgcache.cc:161 msgid "The package cache file is corrupted" msgstr "å¥—ä»¶å¿«å–æª”æå£ž" -#: apt-pkg/pkgcache.cc:159 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache file is an incompatible version" msgstr "å¥—ä»¶å¿«å–æª”版本ä¸ç¬¦" -#: apt-pkg/pkgcache.cc:162 +#: apt-pkg/pkgcache.cc:169 #, fuzzy msgid "The package cache file is corrupted, it is too small" msgstr "å¥—ä»¶å¿«å–æª”æå£ž" -#: apt-pkg/pkgcache.cc:167 +#: apt-pkg/pkgcache.cc:174 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "本 APT 䏿”¯æ´ '%s' 版本系統" -#: apt-pkg/pkgcache.cc:172 +#: apt-pkg/pkgcache.cc:179 msgid "The package cache was built for a different architecture" msgstr "é€™å€‹å¥—ä»¶å¿«å–æ˜¯ç”¨æ–¼å¦ä¸€ç¨®å¹³å°çš„" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Depends" msgstr "相ä¾é—œä¿‚" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "PreDepends" msgstr "é 先相ä¾é—œä¿‚" -#: apt-pkg/pkgcache.cc:314 +#: apt-pkg/pkgcache.cc:321 msgid "Suggests" msgstr "建è°" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Recommends" msgstr "推薦" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Conflicts" msgstr "è¡çª" -#: apt-pkg/pkgcache.cc:315 +#: apt-pkg/pkgcache.cc:322 msgid "Replaces" msgstr "å–代" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Obsoletes" msgstr "廢棄" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Breaks" msgstr "毀æ" -#: apt-pkg/pkgcache.cc:316 +#: apt-pkg/pkgcache.cc:323 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "important" msgstr "é‡è¦" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "required" msgstr "å¿…è¦" -#: apt-pkg/pkgcache.cc:327 +#: apt-pkg/pkgcache.cc:334 msgid "standard" msgstr "標準" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "optional" msgstr "次è¦" -#: apt-pkg/pkgcache.cc:328 +#: apt-pkg/pkgcache.cc:335 msgid "extra" msgstr "é¡å¤–" -#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 msgid "Building dependency tree" msgstr "æ£åœ¨é‡å»ºç›¸ä¾é—œä¿‚" -#: apt-pkg/depcache.cc:133 +#: apt-pkg/depcache.cc:139 msgid "Candidate versions" msgstr "候é¸ç‰ˆæœ¬" -#: apt-pkg/depcache.cc:162 +#: apt-pkg/depcache.cc:168 msgid "Dependency generation" msgstr "建立相ä¾é—œä¿‚" -#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 msgid "Reading state information" msgstr "æ£åœ¨è®€å–狀態資料" -#: apt-pkg/depcache.cc:244 +#: apt-pkg/depcache.cc:250 #, c-format msgid "Failed to open StateFile %s" msgstr "無法開啟 StateFile %s" -#: apt-pkg/depcache.cc:250 +#: apt-pkg/depcache.cc:256 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "無法寫入暫å˜çš„ StateFile %s" -#: apt-pkg/tagfile.cc:138 +#: apt-pkg/tagfile.cc:140 #, c-format msgid "Unable to parse package file %s (1)" msgstr "無法辨è˜å¥—件檔 %s (1)" -#: apt-pkg/tagfile.cc:235 +#: apt-pkg/tagfile.cc:237 #, c-format msgid "Unable to parse package file %s (2)" msgstr "無法辨è˜å¥—件檔 %s (2)" -#: apt-pkg/sourcelist.cc:118 +#: 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-pkg/sourcelist.cc:161 +#: apt-pkg/sourcelist.cc:170 #, fuzzy, c-format msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "來æºåˆ—表 %2$s ä¸çš„ %1$lu è¡Œçš„æ ¼å¼éŒ¯èª¤ï¼ˆç™¼è¡Œç‰ˆåˆ†æžï¼‰" -#: apt-pkg/sourcelist.cc:164 +#: 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-pkg/sourcelist.cc:175 +#: 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-pkg/sourcelist.cc:181 +#: 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-pkg/sourcelist.cc:184 +#: 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-pkg/sourcelist.cc:197 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Malformed line %lu in source list %s (URI)" msgstr "來æºåˆ—表 %2$s ä¸çš„ %1$lu è¡Œçš„æ ¼å¼éŒ¯èª¤ (URI)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:208 #, c-format msgid "Malformed line %lu in source list %s (dist)" msgstr "來æºåˆ—表 %2$s ä¸çš„ %1$lu è¡Œçš„æ ¼å¼éŒ¯èª¤ï¼ˆç™¼è¡Œç‰ˆï¼‰" -#: apt-pkg/sourcelist.cc:202 +#: apt-pkg/sourcelist.cc:211 #, c-format msgid "Malformed line %lu in source list %s (URI parse)" msgstr "來æºåˆ—表 %2$s ä¸çš„ %1$lu è¡Œçš„æ ¼å¼éŒ¯èª¤ï¼ˆURI 分æžï¼‰" -#: apt-pkg/sourcelist.cc:208 +#: apt-pkg/sourcelist.cc:217 #, c-format msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "來æºåˆ—表 %2$s ä¸çš„ %1$lu è¡Œçš„æ ¼å¼éŒ¯èª¤ï¼ˆçµ•å°ç™¼è¡Œç‰ˆï¼‰" -#: apt-pkg/sourcelist.cc:215 +#: apt-pkg/sourcelist.cc:224 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" msgstr "來æºåˆ—表 %2$s ä¸çš„ %1$lu è¡Œçš„æ ¼å¼éŒ¯èª¤ï¼ˆç™¼è¡Œç‰ˆåˆ†æžï¼‰" -#: apt-pkg/sourcelist.cc:326 +#: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" msgstr "æ£åœ¨é–‹å•Ÿ %s" -#: apt-pkg/sourcelist.cc:338 apt-pkg/cdrom.cc:495 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format msgid "Line %u too long in source list %s." msgstr "來æºåˆ—表 %2$s ä¸çš„第 %1$u 行太長。" -#: apt-pkg/sourcelist.cc:362 +#: apt-pkg/sourcelist.cc:371 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "來æºåˆ—表 %2$s ä¸çš„第 %1$u è¡Œçš„æ ¼å¼éŒ¯èª¤ï¼ˆé¡žåž‹ï¼‰" -#: apt-pkg/sourcelist.cc:366 +#: 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 行" -#: apt-pkg/sourcelist.cc:407 +#: 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 行" -#: apt-pkg/packagemanager.cc:296 apt-pkg/packagemanager.cc:922 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:932 #, 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:497 apt-pkg/packagemanager.cc:528 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:535 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "無法開啟檔案 %s" -#: apt-pkg/packagemanager.cc:570 +#: apt-pkg/packagemanager.cc:577 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2781,18 +2816,18 @@ msgstr "" "æ¤å®‰è£å› è¡çªæˆ–é 先相ä¾é—œä¿‚,需暫時刪除 %s é€™å€‹åŸºæœ¬å¥—ä»¶ã€‚é€™é€šå¸¸ä¸æ˜¯å¥½ä¸»æ„,但" "若您執æ„進行,請è¨å®š APT::Force-LoopBreak é¸é …。" -#: apt-pkg/pkgrecords.cc:34 +#: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "ä¸è¢«æ”¯æ´çš„索引檔類型 '%s'" -#: apt-pkg/algorithms.cc:266 +#: 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:1068 +#: apt-pkg/algorithms.cc:1083 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2800,213 +2835,208 @@ msgstr "" "錯誤,pkgProblemResolver::Resolve çš„å»ºç«‹ä¸æ–·äº†ï¼Œé€™å¯èƒ½è‚‡å› æ–¼ä¿ç•™ (hold) 套" "件。" -#: apt-pkg/algorithms.cc:1070 +#: apt-pkg/algorithms.cc:1085 msgid "Unable to correct problems, you have held broken packages." msgstr "無法修æ£å•題,您ä¿ç•™ (hold) äº†ææ¯€çš„套件。" -#: apt-pkg/acquire.cc:81 apt-pkg/cdrom.cc:811 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:816 #, fuzzy, c-format msgid "List directory %spartial is missing." msgstr "找ä¸åˆ°æ¸…單目錄 %spartial。" -#: apt-pkg/acquire.cc:85 +#: apt-pkg/acquire.cc:91 #, fuzzy, c-format msgid "Archives directory %spartial is missing." msgstr "找ä¸åˆ°å¥—件檔目錄 %spartial。" -#: apt-pkg/acquire.cc:93 +#: 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:893 +#: apt-pkg/acquire.cc:899 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "æ£åœ¨å–得檔案 %li/%li(還有 %s)" -#: apt-pkg/acquire.cc:895 +#: apt-pkg/acquire.cc:901 #, c-format msgid "Retrieving file %li of %li" msgstr "æ£åœ¨å–得檔案 %li/%li" -#: apt-pkg/acquire-worker.cc:113 +#: apt-pkg/acquire-worker.cc:116 #, c-format msgid "The method driver %s could not be found." msgstr "找ä¸åˆ°å®‰è£æ–¹å¼çš„é©…å‹•ç¨‹å¼ %s。" -#: apt-pkg/acquire-worker.cc:115 +#: apt-pkg/acquire-worker.cc:118 #, fuzzy, c-format msgid "Is the package %s installed?" msgstr "請檢查是å¦å·²å®‰è£äº† 'dpkg-dev' 套件。\n" -#: apt-pkg/acquire-worker.cc:166 +#: apt-pkg/acquire-worker.cc:169 #, c-format msgid "Method %s did not start correctly" msgstr "å®‰è£æ–¹å¼ %s 沒有æ£ç¢ºå•Ÿå‹•" -#: apt-pkg/acquire-worker.cc:452 +#: 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] éµã€‚" -#: apt-pkg/init.cc:143 +#: apt-pkg/init.cc:145 #, c-format msgid "Packaging system '%s' is not supported" msgstr "䏿”¯æ´çš„套件包è£ç³»çµ± '%s'" -#: apt-pkg/init.cc:159 +#: apt-pkg/init.cc:161 msgid "Unable to determine a suitable packaging system type" msgstr "無法確èªåˆé©çš„套件包è£ç³»çµ±é¡žåž‹" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:61 #, c-format msgid "Unable to stat %s." msgstr "無法å–å¾— %s 的狀態。" -#: apt-pkg/srcrecords.cc:47 +#: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "在 sources.list ä¸å¿…é ˆåŒ…å«ä¸€äº› 'source' URI" -#: apt-pkg/cachefile.cc:87 +#: apt-pkg/cachefile.cc:94 msgid "The package lists or status file could not be parsed or opened." msgstr "ç„¡æ³•åˆ†æžæˆ–é–‹å•Ÿå¥—ä»¶æ¸…å–®æˆ–ç‹€æ³æª”。" -#: apt-pkg/cachefile.cc:91 +#: 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:109 +#: apt-pkg/cachefile.cc:116 msgid "The list of sources could not be read." msgstr "無法讀å–來æºåˆ—表。" -#: apt-pkg/policy.cc:75 +#: 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 "" -#: apt-pkg/policy.cc:414 +#: 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:436 +#: apt-pkg/policy.cc:444 #, c-format msgid "Did not understand pin type %s" msgstr "無法分æžéŽ–å®šé¡žåž‹ %s" -#: apt-pkg/policy.cc:444 +#: apt-pkg/policy.cc:452 msgid "No priority (or zero) specified for pin" msgstr "éŠ·å®šä¸¦æ²’æœ‰å„ªå…ˆé †åºä¹‹åˆ†ï¼ˆæˆ–零)" -#: apt-pkg/pkgcachegen.cc:87 +#: apt-pkg/pkgcachegen.cc:93 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:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:321 -#: apt-pkg/pkgcachegen.cc:334 apt-pkg/pkgcachegen.cc:376 -#: apt-pkg/pkgcachegen.cc:380 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:405 apt-pkg/pkgcachegen.cc:409 -#: apt-pkg/pkgcachegen.cc:413 apt-pkg/pkgcachegen.cc:434 -#: apt-pkg/pkgcachegen.cc:473 apt-pkg/pkgcachegen.cc:511 -#: apt-pkg/pkgcachegen.cc:518 apt-pkg/pkgcachegen.cc:549 -#: apt-pkg/pkgcachegen.cc:563 +#: 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)" -#: apt-pkg/pkgcachegen.cc:251 +#: apt-pkg/pkgcachegen.cc:257 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "哇呀,您已經超éŽé€™å€‹ APT 所能處ç†çš„套件å稱數é‡äº†ã€‚" -#: apt-pkg/pkgcachegen.cc:254 +#: apt-pkg/pkgcachegen.cc:260 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "哇呀,您已經超éŽé€™å€‹ APT 所能處ç†çš„版本數é‡äº†ã€‚" -#: apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:263 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "哇呀,您已經超éŽé€™å€‹ APT 所能處ç†çš„說明數é‡äº†ã€‚" -#: apt-pkg/pkgcachegen.cc:260 +#: apt-pkg/pkgcachegen.cc:266 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "哇呀,您已經超éŽé€™å€‹ APT 所能處ç†çš„相ä¾é—œä¿‚數é‡äº†ã€‚" -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:576 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "åœ¨è¨ˆç®—æª”æ¡ˆç›¸ä¾æ€§æ™‚找ä¸åˆ°å¥—ä»¶ %s %s" -#: apt-pkg/pkgcachegen.cc:1199 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format msgid "Couldn't stat source package list %s" msgstr "無法å–得來æºå¥—件列表 %s 的狀態" -#: apt-pkg/pkgcachegen.cc:1287 apt-pkg/pkgcachegen.cc:1391 -#: apt-pkg/pkgcachegen.cc:1397 apt-pkg/pkgcachegen.cc:1554 +#: 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:1304 +#: apt-pkg/pkgcachegen.cc:1316 msgid "Collecting File Provides" msgstr "æ£åœ¨æ”¶é›†æª”案æä¾›è€…" -#: apt-pkg/pkgcachegen.cc:1496 apt-pkg/pkgcachegen.cc:1503 +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 msgid "IO Error saving source cache" msgstr "在儲å˜ä¾†æºå¿«å–時 IO 錯誤" -#: apt-pkg/acquire-item.cc:139 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "ç„¡æ³•é‡æ–°å‘½å,%s (%s -> %s)。" - -#: apt-pkg/acquire-item.cc:154 +#: apt-pkg/acquire-item.cc:163 msgid "Hash Sum mismatch" msgstr "Hash Sum ä¸ç¬¦" -#: apt-pkg/acquire-item.cc:159 +#: apt-pkg/acquire-item.cc:168 msgid "Size mismatch" msgstr "大å°ä¸ç¬¦" -#: apt-pkg/acquire-item.cc:164 +#: apt-pkg/acquire-item.cc:173 #, fuzzy msgid "Invalid file format" msgstr "無效的æ“作 %s" -#: apt-pkg/acquire-item.cc:1570 +#: apt-pkg/acquire-item.cc:1579 #, 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:1586 +#: apt-pkg/acquire-item.cc:1595 #, fuzzy, c-format msgid "Unable to find hash sum for '%s' in Release file" msgstr "無法辨別 Release 檔 %s" -#: apt-pkg/acquire-item.cc:1628 +#: apt-pkg/acquire-item.cc:1637 msgid "There is no public key available for the following key IDs:\n" msgstr "無法å–得以下的密鑰 ID 的公鑰:\n" -#: apt-pkg/acquire-item.cc:1666 +#: apt-pkg/acquire-item.cc:1675 #, c-format msgid "" "Release file for %s is expired (invalid since %s). Updates for this " "repository will not be applied." msgstr "" -#: apt-pkg/acquire-item.cc:1688 +#: apt-pkg/acquire-item.cc:1697 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "發行版本è¡çªï¼š%s(應當是 %s 但å»å¾—到 %s)" -#: apt-pkg/acquire-item.cc:1718 +#: apt-pkg/acquire-item.cc:1727 #, c-format msgid "" "An error occurred during the signature verification. The repository is not " @@ -3014,12 +3044,12 @@ msgid "" msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1728 apt-pkg/acquire-item.cc:1733 +#: apt-pkg/acquire-item.cc:1737 apt-pkg/acquire-item.cc:1742 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1856 +#: apt-pkg/acquire-item.cc:1865 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3028,104 +3058,100 @@ msgstr "" "找ä¸åˆ° %s 套件的æŸå€‹æª”案。這æ„味著您å¯èƒ½è¦æ‰‹å‹•ä¿®å¾©é€™å€‹å¥—ä»¶ã€‚ï¼ˆå› ç‚ºæ‰¾ä¸åˆ°å¹³" "å°ï¼‰" -#: apt-pkg/acquire-item.cc:1922 +#: apt-pkg/acquire-item.cc:1931 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:1980 +#: apt-pkg/acquire-item.cc:1989 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "這個套件的索引檔æå£žäº†ã€‚沒有套件 %s çš„ Filename: 欄ä½ã€‚" -#: apt-pkg/indexrecords.cc:73 +#: apt-pkg/indexrecords.cc:78 #, c-format msgid "Unable to parse Release file %s" msgstr "無法辨別 Release 檔 %s" -#: apt-pkg/indexrecords.cc:81 +#: apt-pkg/indexrecords.cc:86 #, c-format msgid "No sections in Release file %s" msgstr "在 Release 檔 %s è£¡æ²’æœ‰å€æ®µ" -#: apt-pkg/indexrecords.cc:112 +#: apt-pkg/indexrecords.cc:117 #, c-format msgid "No Hash entry in Release file %s" msgstr "在 Release 檔 %s 裡沒有 Hash é …ç›®" -#: apt-pkg/indexrecords.cc:125 +#: apt-pkg/indexrecords.cc:130 #, fuzzy, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "在 Release 檔 %s 裡沒有 Hash é …ç›®" -#: apt-pkg/indexrecords.cc:144 +#: apt-pkg/indexrecords.cc:149 #, fuzzy, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "在 Release 檔 %s 裡沒有 Hash é …ç›®" -#: apt-pkg/vendorlist.cc:78 +#: apt-pkg/vendorlist.cc:85 #, c-format msgid "Vendor block %s contains no fingerprint" msgstr "æä¾›è€…å€å¡Š %s æ²’æœ‰åŒ…å«æŒ‡ç´‹ç¢¼" -#: apt-pkg/cdrom.cc:575 +#: apt-pkg/cdrom.cc:577 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "使用光碟機掛載點 %s\n" -#: apt-pkg/cdrom.cc:583 -msgid "Unmounting CD-ROM\n" -msgstr "æ£åœ¨å¸è¼‰å…‰ç¢Ÿæ©Ÿ\n" +#: apt-pkg/cdrom.cc:587 apt-pkg/cdrom.cc:657 apt-pkg/cdrom.cc:893 +msgid "Unmounting CD-ROM...\n" +msgstr "æ£åœ¨å¸è¼‰å…‰ç¢Ÿæ©Ÿ...\n" -#: apt-pkg/cdrom.cc:588 +#: apt-pkg/cdrom.cc:592 msgid "Waiting for disc...\n" msgstr "æ£åœ¨ç‰å¾…碟片...\n" -#: apt-pkg/cdrom.cc:597 +#: apt-pkg/cdrom.cc:602 msgid "Mounting CD-ROM...\n" msgstr "æ£åœ¨æŽ›è¼‰å…‰ç¢Ÿæ©Ÿ... \n" -#: apt-pkg/cdrom.cc:605 -msgid "Identifying.. " -msgstr "æ£åœ¨è˜åˆ¥.." +#: apt-pkg/cdrom.cc:610 +msgid "Identifying... " +msgstr "æ£åœ¨è˜åˆ¥..." -#: apt-pkg/cdrom.cc:643 +#: apt-pkg/cdrom.cc:648 #, c-format msgid "Stored label: %s\n" msgstr "ä¿å˜æ¨™ç±¤ï¼š%s\n" -#: apt-pkg/cdrom.cc:652 apt-pkg/cdrom.cc:888 -msgid "Unmounting CD-ROM...\n" -msgstr "æ£åœ¨å¸è¼‰å…‰ç¢Ÿæ©Ÿ...\n" - -#: apt-pkg/cdrom.cc:667 -msgid "Scanning disc for index files..\n" -msgstr "æ£åœ¨æŽƒæç¢Ÿç‰‡ä¸çš„索引檔..\n" +#: apt-pkg/cdrom.cc:672 +msgid "Scanning disc for index files...\n" +msgstr "æ£åœ¨æŽƒæç¢Ÿç‰‡ä¸çš„索引檔...\n" -#: apt-pkg/cdrom.cc:717 +#: apt-pkg/cdrom.cc:722 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " "%zu signatures\n" msgstr "找到了 %zu 個套件索引,%zu 個原始碼索引,%zu 個翻è¯ç´¢å¼•åŠ %zu å€‹ç°½ç« \n" -#: apt-pkg/cdrom.cc:728 +#: apt-pkg/cdrom.cc:733 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:755 +#: apt-pkg/cdrom.cc:760 #, c-format msgid "Found label '%s'\n" msgstr "找到標籤 '%s'\n" -#: apt-pkg/cdrom.cc:784 +#: apt-pkg/cdrom.cc:789 msgid "That is not a valid name, try again.\n" msgstr "這䏦䏿˜¯æ£ç¢ºçš„å稱,請é‡è©¦ã€‚\n" -#: apt-pkg/cdrom.cc:801 +#: apt-pkg/cdrom.cc:806 #, c-format msgid "" "This disc is called: \n" @@ -3134,34 +3160,34 @@ msgstr "" "這個碟片å為:\n" "'%s'\n" -#: apt-pkg/cdrom.cc:803 +#: apt-pkg/cdrom.cc:808 msgid "Copying package lists..." msgstr "æ£åœ¨è¤‡è£½å¥—件清單..." -#: apt-pkg/cdrom.cc:838 +#: apt-pkg/cdrom.cc:843 msgid "Writing new source list\n" msgstr "æ£åœ¨å¯«å…¥æ–°çš„來æºåˆ—表\n" -#: apt-pkg/cdrom.cc:846 +#: apt-pkg/cdrom.cc:851 msgid "Source list entries for this disc are:\n" msgstr "該碟片的來æºåˆ—è¡¨é …ç›®ç‚ºï¼š\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#: 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:777 +#: 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:780 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "寫入 %i ç†ç´€ç¶ ï¼Œå…¶ä¸æœ‰ %i 個檔案ä¸ç¬¦\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#: 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" @@ -3176,255 +3202,255 @@ msgstr "" msgid "Hash mismatch for: %s" msgstr "Hash Sum ä¸ç¬¦" -#: apt-pkg/cacheset.cc:479 +#: apt-pkg/cacheset.cc:487 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "找ä¸åˆ° '%2$s' çš„ '%1$s' 發行版" -#: apt-pkg/cacheset.cc:482 +#: apt-pkg/cacheset.cc:490 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "找ä¸åˆ° '%s' 版的 '%s'" -#: apt-pkg/cacheset.cc:593 +#: apt-pkg/cacheset.cc:601 #, fuzzy, c-format msgid "Couldn't find task '%s'" msgstr "無法找到主題 %s" -#: apt-pkg/cacheset.cc:599 +#: apt-pkg/cacheset.cc:607 #, fuzzy, c-format msgid "Couldn't find any package by regex '%s'" msgstr "無法找到套件 %s" -#: apt-pkg/cacheset.cc:605 +#: apt-pkg/cacheset.cc:613 #, fuzzy, c-format msgid "Couldn't find any package by glob '%s'" msgstr "無法找到套件 %s" -#: apt-pkg/cacheset.cc:616 +#: apt-pkg/cacheset.cc:624 #, c-format msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:623 apt-pkg/cacheset.cc:630 +#: apt-pkg/cacheset.cc:631 apt-pkg/cacheset.cc:638 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " "neither of them" msgstr "" -#: apt-pkg/cacheset.cc:637 +#: apt-pkg/cacheset.cc:645 #, c-format msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -#: apt-pkg/cacheset.cc:645 +#: apt-pkg/cacheset.cc:653 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -#: apt-pkg/cacheset.cc:653 +#: apt-pkg/cacheset.cc:661 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "" -#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +#: apt-pkg/edsp.cc:50 apt-pkg/edsp.cc:70 msgid "Send scenario to solver" msgstr "" -#: apt-pkg/edsp.cc:209 +#: apt-pkg/edsp.cc:216 msgid "Send request to solver" msgstr "" -#: apt-pkg/edsp.cc:279 +#: apt-pkg/edsp.cc:286 msgid "Prepare for receiving solution" msgstr "" -#: apt-pkg/edsp.cc:286 +#: apt-pkg/edsp.cc:293 msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 +#: apt-pkg/edsp.cc:563 apt-pkg/edsp.cc:566 apt-pkg/edsp.cc:571 msgid "Execute external solver" msgstr "" -#: apt-pkg/install-progress.cc:51 +#: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" msgstr "" -#: apt-pkg/install-progress.cc:85 apt-pkg/install-progress.cc:168 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" msgstr "" -#: apt-pkg/update.cc:110 apt-pkg/update.cc:112 +#: 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/deb/dpkgpm.cc:91 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" msgstr "æ£åœ¨å®‰è£ %s" -#: apt-pkg/deb/dpkgpm.cc:92 apt-pkg/deb/dpkgpm.cc:977 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" msgstr "æ£åœ¨è¨å®š %s" -#: apt-pkg/deb/dpkgpm.cc:93 apt-pkg/deb/dpkgpm.cc:984 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" msgstr "æ£åœ¨ç§»é™¤ %s" -#: apt-pkg/deb/dpkgpm.cc:94 +#: apt-pkg/deb/dpkgpm.cc:98 #, fuzzy, c-format msgid "Completely removing %s" msgstr "已完整移除 %s" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format msgid "Noting disappearance of %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:96 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" msgstr "æ£åœ¨åŸ·è¡Œå®‰è£å¾Œå¥—件後續處ç†ç¨‹å¼ %s" #. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:808 +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format msgid "Directory '%s' missing" msgstr "找ä¸åˆ° '%s' 目錄" -#: apt-pkg/deb/dpkgpm.cc:823 apt-pkg/deb/dpkgpm.cc:845 +#: 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:970 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" msgstr "æ£åœ¨æº–å‚™ %s" -#: apt-pkg/deb/dpkgpm.cc:971 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" msgstr "æ£åœ¨è§£é–‹ %s" -#: apt-pkg/deb/dpkgpm.cc:976 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" msgstr "æ£åœ¨æº–å‚™è¨å®š %s" -#: apt-pkg/deb/dpkgpm.cc:978 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format msgid "Installed %s" msgstr "å·²å®‰è£ %s" -#: apt-pkg/deb/dpkgpm.cc:983 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" msgstr "æ£åœ¨æº–備移除 %s" -#: apt-pkg/deb/dpkgpm.cc:985 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format msgid "Removed %s" msgstr "已移除 %s" -#: apt-pkg/deb/dpkgpm.cc:990 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" msgstr "æ£åœ¨æº–備完整移除 %s" -#: apt-pkg/deb/dpkgpm.cc:991 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format msgid "Completely removed %s" msgstr "已完整移除 %s" -#: apt-pkg/deb/dpkgpm.cc:1046 +#: apt-pkg/deb/dpkgpm.cc:1065 msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1049 apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1068 apt-pkg/deb/dpkgpm.cc:1089 #, fuzzy, c-format msgid "Can not write log (%s)" msgstr "無法寫入 %s" -#: apt-pkg/deb/dpkgpm.cc:1049 +#: apt-pkg/deb/dpkgpm.cc:1068 msgid "Is /dev/pts mounted?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1089 msgid "Is stdout a terminal?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1558 +#: apt-pkg/deb/dpkgpm.cc:1567 msgid "Operation was interrupted before it could finish" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1620 +#: apt-pkg/deb/dpkgpm.cc:1629 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1625 +#: apt-pkg/deb/dpkgpm.cc:1634 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1627 +#: apt-pkg/deb/dpkgpm.cc:1636 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1633 +#: apt-pkg/deb/dpkgpm.cc:1642 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1640 +#: apt-pkg/deb/dpkgpm.cc:1649 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1647 apt-pkg/deb/dpkgpm.cc:1653 +#: apt-pkg/deb/dpkgpm.cc:1656 apt-pkg/deb/dpkgpm.cc:1662 msgid "" "No apport report written because the error message indicates an issue on the " "local system" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1674 +#: apt-pkg/deb/dpkgpm.cc:1683 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" -#: apt-pkg/deb/debsystem.cc:84 +#: apt-pkg/deb/debsystem.cc:91 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " "it?" msgstr "" -#: apt-pkg/deb/debsystem.cc:87 +#: 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:103 +#: apt-pkg/deb/debsystem.cc:110 #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " msgstr "" -#: apt-pkg/deb/debsystem.cc:121 +#: apt-pkg/deb/debsystem.cc:128 msgid "Not locked" msgstr "" diff --git a/prepare-release b/prepare-release index 6141ce6e4..7b7fd1224 100755 --- a/prepare-release +++ b/prepare-release @@ -1,6 +1,7 @@ #!/bin/sh set -e +cd "$(readlink -f $(dirname $0))" dpkg-checkbuilddeps -d 'libxml2-utils' if [ -n "${GBP_BUILD_DIR}" ]; then @@ -10,7 +11,7 @@ fi VERSION=$(dpkg-parsechangelog | sed -n -e '/^Version:/s/^Version: //p') DISTRIBUTION=$(dpkg-parsechangelog | sed -n -e '/^Distribution:/s/^Distribution: //p') -LIBAPTPKGVERSION="$(awk -v ORS='.' '/^\#define APT_PKG_M/ {print $3}' apt-pkg/init.h | sed 's/\.$//')" +LIBAPTPKGVERSION="$(awk -v ORS='.' '/^\#define APT_PKG_M/ {print $3}' apt-pkg/contrib/macros.h | sed 's/\.$//')" LIBAPTINSTVERSION="$(egrep '^MAJOR=' apt-inst/makefile |cut -d '=' -f 2)" librarysymbolsfromfile() { diff --git a/test/integration/framework b/test/integration/framework index f8868c9d8..3b900a960 100644 --- a/test/integration/framework +++ b/test/integration/framework @@ -90,18 +90,22 @@ msgdone() { echo "${CDONE}DONE${CNORMAL}"; fi } - +getaptconfig() { + if [ -f ./aptconfig.conf ]; then + echo "./aptconfig.conf" + elif [ -f ../aptconfig.conf ]; then + echo "../aptconfig.conf" + fi +} runapt() { msgdebug "Executing: ${CCMD}$*${CDEBUG} " local CMD="$1" shift - if [ -f ./aptconfig.conf ]; then - MALLOC_PERTURB_=21 MALLOC_CHECK_=2 APT_CONFIG=aptconfig.conf LD_LIBRARY_PATH=${BUILDDIRECTORY} ${BUILDDIRECTORY}/$CMD "$@" - elif [ -f ../aptconfig.conf ]; then - MALLOC_PERTURB_=21 MALLOC_CHECK_=2 APT_CONFIG=../aptconfig.conf LD_LIBRARY_PATH=${BUILDDIRECTORY} ${BUILDDIRECTORY}/$CMD "$@" - else - MALLOC_PERTURB_=21 MALLOC_CHECK_=2 LD_LIBRARY_PATH=${BUILDDIRECTORY} ${BUILDDIRECTORY}/$CMD "$@" - fi + case $CMD in + sh|aptitude|*/*) ;; + *) CMD="${BUILDDIRECTORY}/$CMD";; + esac + MALLOC_PERTURB_=21 MALLOC_CHECK_=2 APT_CONFIG="$(getaptconfig)" LD_LIBRARY_PATH=${BUILDDIRECTORY} $CMD "$@" } aptconfig() { runapt apt-config "$@"; } aptcache() { runapt apt-cache "$@"; } @@ -111,27 +115,20 @@ aptftparchive() { runapt apt-ftparchive "$@"; } aptkey() { runapt apt-key "$@"; } aptmark() { runapt apt-mark "$@"; } apt() { runapt apt "$@"; } -aptwebserver() { - LD_LIBRARY_PATH=${APTWEBSERVERBINDIR} ${APTWEBSERVERBINDIR}/aptwebserver "$@"; -} +apthelper() { runapt "${APTHELPERBINDIR}/apt-helper" "$@"; } +aptwebserver() { runapt "${APTWEBSERVERBINDIR}/aptwebserver" "$@"; } +aptitude() { runapt aptitude "$@"; } +aptextracttemplates() { runapt apt-extracttemplates "$@"; } + dpkg() { command dpkg --root=${TMPWORKINGDIRECTORY}/rootdir --force-not-root --force-bad-path --log=${TMPWORKINGDIRECTORY}/rootdir/var/log/dpkg.log "$@" } -aptitude() { - if [ -f ./aptconfig.conf ]; then - APT_CONFIG=aptconfig.conf LD_LIBRARY_PATH=${BUILDDIRECTORY} command aptitude "$@" - elif [ -f ../aptconfig.conf ]; then - APT_CONFIG=../aptconfig.conf LD_LIBRARY_PATH=${BUILDDIRECTORY} command aptitude "$@" - else - LD_LIBRARY_PATH=${BUILDDIRECTORY} command aptitude "$@" - fi +dpkgcheckbuilddeps() { + command dpkg-checkbuilddeps --admindir=${TMPWORKINGDIRECTORY}/rootdir/var/lib/dpkg "$@" } gdb() { echo "gdb: run »$*«" - APT_CONFIG=aptconfig.conf LD_LIBRARY_PATH=${BUILDDIRECTORY} command gdb ${BUILDDIRECTORY}/$1 --args "$@" -} -http() { - LD_LIBRARY_PATH=${BUILDDIRECTORY} ${BUILDDIRECTORY}/methods/http + APT_CONFIG=aptconfig.conf LD_LIBRARY_PATH=${LIBRARYPATH} command gdb ${BUILDDIRECTORY}/$1 --args "$@" } gpg() { # see apt-key for the whole trickery. Setup is done in setupenvironment @@ -176,7 +173,9 @@ setupenvironment() { # allow overriding the default BUILDDIR location BUILDDIRECTORY=${APT_INTEGRATION_TESTS_BUILD_DIR:-"${TESTDIRECTORY}/../../build/bin"} + LIBRARYPATH=${APT_INTEGRATION_TESTS_LIBRARY_PATH:-"${BUILDDIRECTORY}"} METHODSDIR=${APT_INTEGRATION_TESTS_METHODS_DIR:-"${BUILDDIRECTORY}/methods"} + APTHELPERBINDIR=${APT_INTEGRATION_TESTS_LIBEXEC_DIR:-"${BUILDDIRECTORY}"} APTWEBSERVERBINDIR=${APT_INTEGRATION_TESTS_WEBSERVER_BIN_DIR:-"${BUILDDIRECTORY}"} test -x "${BUILDDIRECTORY}/apt-get" || msgdie "You need to build tree first" # ----- @@ -186,11 +185,18 @@ setupenvironment() { mkdir rootdir aptarchive keys cd rootdir mkdir -p etc/apt/apt.conf.d etc/apt/sources.list.d etc/apt/trusted.gpg.d etc/apt/preferences.d - mkdir -p var/cache var/lib var/log tmp + mkdir -p var/cache var/lib/apt var/log tmp mkdir -p var/lib/dpkg/info var/lib/dpkg/updates var/lib/dpkg/triggers touch var/lib/dpkg/available mkdir -p usr/lib/apt ln -s ${METHODSDIR} usr/lib/apt/methods + # use the autoremove from the BUILDDIRECTORY if its there, otherwise + # system + if [ -e ${BUILDDIRECTORY}/../../debian/apt.conf.autoremove ]; then + ln -s ${BUILDDIRECTORY}/../../debian/apt.conf.autoremove etc/apt/apt.conf.d/01autoremove + else + ln -s /etc/apt/apt.conf.d/01autoremove etc/apt/apt.conf.d/01autoremove + fi cd .. local PACKAGESFILE=$(echo "$(basename $0)" | sed -e 's/^test-/Packages-/' -e 's/^skip-/Packages-/') if [ -f "${TESTDIRECTORY}/${PACKAGESFILE}" ]; then @@ -219,8 +225,6 @@ setupenvironment() { echo 'quiet::NoUpdate "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 - export LC_ALL=C.UTF-8 - export PATH="${PATH}:/usr/local/sbin:/usr/sbin:/sbin" configcompression '.' 'gz' #'bz2' 'lzma' 'xz' # gpg needs a trustdb to function, but it can't be invalid (not even empty) @@ -236,6 +240,12 @@ setupenvironment() { # newer gpg versions are fine without it, but play it safe for now 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" + export LC_ALL=C.UTF-8 + unset LANGUAGE APT_CONFIG + unset GREP_OPTIONS DEB_BUILD_PROFILES + msgdone "info" } @@ -256,6 +266,10 @@ getarchitectures() { echo "$(aptconfig dump | grep APT::Architecture | cut -d'"' -f 2 | sed '/^$/ d' | sort | uniq | tr '\n' ' ')" } +getarchitecturesfromcommalist() { + echo "$1" | sed -e 's#,#\n#g' | sed -e "s/^native\$/$(getarchitecture 'native')/" +} + configarchitecture() { { echo "APT::Architecture \"$(getarchitecture $1)\";" @@ -429,7 +443,7 @@ Package: $NAME" >> ${BUILDDIR}/debian/control # fi done - for arch in $(echo "$ARCH" | sed -e 's#,#\n#g' | sed -e "s#^native\$#$(getarchitecture 'native')#"); do + for arch in $(getarchitecturesfromcommalist "$ARCH"); do rm -rf ${BUILDDIR}/debian/tmp mkdir -p ${BUILDDIR}/debian/tmp/DEBIAN ${BUILDDIR}/debian/tmp/usr/share/doc/${NAME} ${BUILDDIR}/debian/tmp/usr/bin cp ${BUILDDIR}/debian/copyright ${BUILDDIR}/debian/changelog ${BUILDDIR}/FEATURES ${BUILDDIR}/debian/tmp/usr/share/doc/${NAME} @@ -584,7 +598,7 @@ insertpackage() { something went horribly wrong! They are autogenerated und used only by testcases and surf no other propose…"}" local ARCHS="" - for arch in $(echo "$ARCH" | sed -e 's#,#\n#g' | sed -e "s#^native\$#$(getarchitecture 'native')#"); do + for arch in $(getarchitecturesfromcommalist "$ARCH"); do if [ "$arch" = 'all' -o "$arch" = 'none' ]; then ARCHS="$(getarchitectures)" else @@ -646,7 +660,7 @@ insertinstalledpackage() { local FILE='rootdir/var/lib/dpkg/status' local INFO='rootdir/var/lib/dpkg/info' - for arch in $(echo "$ARCH" | sed -e 's#,#\n#g' | sed -e "s#^native\$#$(getarchitecture 'native')#"); do + for arch in $(getarchitecturesfromcommalist "$ARCH"); do echo "Package: $NAME Status: $STATUS Priority: $PRIORITY @@ -852,18 +866,16 @@ signreleasefiles() { webserverconfig() { msgtest "Set webserver config option '${1}' to" "$2" - downloadfile "http://localhost:8080/_config/set/${1}/${2}" '/dev/null' >/dev/null - local DOWNLOG='download-testfile.log' - rm -f "$DOWNLOG" - local STATUS="${TMPWORKINGDIRECTORY}/rootdir/tmp/webserverconfig.status" - downloadfile "http://localhost:8080/_config/find/aptwebserver::last-status-code" "$STATUS" > "$DOWNLOG" - if [ "$(cat "$STATUS")" = '200' ]; then + local DOWNLOG='rootdir/tmp/download-testfile.log' + local STATUS='rootdir/tmp/webserverconfig.status' + rm -f "$STATUS" "$DOWNLOG" + if downloadfile "http://localhost:8080/_config/set/${1}/${2}" "$STATUS" > "$DOWNLOG"; then msgpass else - cat >&2 "$DOWNLOG" - msgfail "Statuscode was $(cat "$STATUS")" + cat "$DOWNLOG" "$STATUS" + msgfail fi - rm "$STATUS" + testwebserverlaststatuscode '200' } rewritesourceslist() { @@ -873,6 +885,20 @@ rewritesourceslist() { done } +# wait for up to 10s for a pid file to appear to avoid possible race +# when a helper is started and dosn't write the PID quick enough +waitforpidfile() { + local PIDFILE="$1" + for i in $(seq 10); do + if test -s "$PIDFILE"; then + return 0 + fi + sleep 1 + done + msgdie "waiting for $PIDFILE failed" + return 1 +} + changetowebserver() { if [ "$1" != '--no-rewrite' ]; then rewritesourceslist 'http://localhost:8080/' @@ -886,6 +912,7 @@ changetowebserver() { cat $LOG false fi + waitforpidfile aptwebserver.pid local PID="$(cat aptwebserver.pid)" if [ -z "$PID" ]; then msgdie 'Could not fork aptwebserver successfully' @@ -913,7 +940,11 @@ accept = 4433 connect = 8080 " > ${TMPWORKINGDIRECTORY}/stunnel.conf stunnel4 "${TMPWORKINGDIRECTORY}/stunnel.conf" + waitforpidfile "${TMPWORKINGDIRECTORY}/aptarchive/stunnel.pid" local PID="$(cat ${TMPWORKINGDIRECTORY}/aptarchive/stunnel.pid)" + if [ -z "$PID" ]; then + msgdie 'Could not fork stunnel4 successfully' + fi addtrap 'prefix' "kill ${PID};" rewritesourceslist 'https://localhost:4433/' } @@ -921,54 +952,29 @@ connect = 8080 changetocdrom() { mkdir -p rootdir/media/cdrom/.disk local CD="$(readlink -f rootdir/media/cdrom)" - echo "acquire::cdrom::mount \"${CD}\";" > rootdir/etc/apt/apt.conf.d/00cdrom - echo 'acquire::cdrom::autodetect 0;' >> rootdir/etc/apt/apt.conf.d/00cdrom + echo "acquire::cdrom::mount \"${CD}\"; +acquire::cdrom::${CD}/::mount \"mv ${CD}-unmounted ${CD}\"; +acquire::cdrom::${CD}/::umount \"mv ${CD} ${CD}-unmounted\"; +acquire::cdrom::autodetect 0;" > rootdir/etc/apt/apt.conf.d/00cdrom echo -n "$1" > ${CD}/.disk/info if [ ! -d aptarchive/dists ]; then msgdie 'Flat file archive cdroms can not be created currently' return 1 fi - mv aptarchive/dists $CD + mv aptarchive/dists "$CD" ln -s "$(readlink -f ./incoming)" $CD/pool find rootdir/etc/apt/sources.list.d/ -name 'apt-test-*.list' -delete + # start with an unmounted disk + mv "${CD}" "${CD}-unmounted" + # we don't want the disk to be modifiable + addtrap 'prefix' "chmod -f -R +w $PWD/rootdir/media/cdrom/dists/ $PWD/rootdir/media/cdrom-unmounted/dists/ || true;" + chmod -R -w rootdir/media/cdrom-unmounted/dists } downloadfile() { - PROTO="$(echo "$1" | cut -d':' -f 1)" - if [ ! -x "${METHODSDIR}/${PROTO}" ]; then - msgwarn "can not find ${METHODSDIR}/${PROTO}" - return 1 - fi - local DOWNLOG="${TMPWORKINGDIRECTORY}/download.log" - rm -f "$DOWNLOG" - touch "$DOWNLOG" - { - echo "601 Configuration -Config-Item: Acquire::https::CaInfo=${TESTDIR}/apt.pem -Config-Item: Debug::Acquire::${PROTO}=1 - -600 Acquire URI -URI: $1 -Filename: ${2} -" - # simple worker keeping stdin open until we are done (201) or error (400) - # and requesting new URIs on try-agains/redirects in-between - { tail -n 999 -f "$DOWNLOG" & echo "TAILPID: $!"; } | while read f1 f2; do - if [ "$f1" = 'TAILPID:' ]; then - TAILPID="$f2" - elif [ "$f1" = 'New-URI:' ]; then - echo "600 Acquire URI -URI: $f2 -Filename: ${2} -" - elif [ "$f1" = '201' ] || [ "$f1" = '400' ]; then - # tail would only die on next read – which never happens - test -z "$TAILPID" || kill -s HUP "$TAILPID" - break - fi - done - } | LD_LIBRARY_PATH=${BUILDDIRECTORY} ${METHODSDIR}/${PROTO} 2>&1 | tee "$DOWNLOG" - rm "$DOWNLOG" + local PROTO="$(echo "$1" | cut -d':' -f 1 )" + apthelper -o Debug::Acquire::${PROTO}=1 \ + download-file "$1" "$2" 2>&1 || true # only if the file exists the download was successful if [ -e "$2" ]; then return 0 @@ -980,8 +986,8 @@ Filename: ${2} checkdiff() { local DIFFTEXT="$(command diff -u "$@" | sed -e '/^---/ d' -e '/^+++/ d' -e '/^@@/ d')" if [ -n "$DIFFTEXT" ]; then - echo - echo "$DIFFTEXT" + echo >&2 + echo >&2 "$DIFFTEXT" return 1 else return 0 @@ -1030,7 +1036,9 @@ testequalor2() { shift 2 msgtest "Test for equality OR of" "$*" $* >$COMPAREAGAINST 2>&1 || true - if checkdiff $COMPAREFILE1 $COMPAREAGAINST 1> /dev/null || checkdiff $COMPAREFILE2 $COMPAREAGAINST 1> /dev/null; then + if checkdiff $COMPAREFILE1 $COMPAREAGAINST >/dev/null 2>&1 || \ + checkdiff $COMPAREFILE2 $COMPAREAGAINST >/dev/null 2>&1 + then msgpass else echo -n "\n${CINFO}Diff against OR 1${CNORMAL}" @@ -1064,24 +1072,24 @@ testnopackage() { msgtest "Test for non-existent packages" "apt-cache show $*" local SHOWPKG="$(aptcache show "$@" 2>&1 | grep '^Package: ')" if [ -n "$SHOWPKG" ]; then - echo - echo "$SHOWPKG" + echo >&2 + echo >&2 "$SHOWPKG" msgfail - return 1 + else + msgpass fi - msgpass } testdpkginstalled() { msgtest "Test for correctly installed package(s) with" "dpkg -l $*" local PKGS="$(dpkg -l "$@" 2>/dev/null | grep '^i' | wc -l)" if [ "$PKGS" != $# ]; then - echo $PKGS - dpkg -l "$@" | grep '^[a-z]' + echo >&2 $PKGS + dpkg -l "$@" | grep '^[a-z]' >&2 msgfail - return 1 + else + msgpass fi - msgpass } testdpkgnotinstalled() { @@ -1089,11 +1097,11 @@ testdpkgnotinstalled() { local PKGS="$(dpkg -l "$@" 2> /dev/null | grep '^i' | wc -l)" if [ "$PKGS" != 0 ]; then echo - dpkg -l "$@" | grep '^[a-z]' + dpkg -l "$@" | grep '^[a-z]' >&2 msgfail - return 1 + else + msgpass fi - msgpass } testmarkedauto() { @@ -1118,8 +1126,8 @@ testsuccess() { if $@ >${OUTPUT} 2>&1; then msgpass else - echo - cat $OUTPUT + echo >&2 + cat >&2 $OUTPUT msgfail fi } @@ -1132,14 +1140,35 @@ testfailure() { fi local OUTPUT="${TMPWORKINGDIRECTORY}/rootdir/tmp/testfailure.output" if $@ >${OUTPUT} 2>&1; then - echo - cat $OUTPUT + echo >&2 + cat >&2 $OUTPUT msgfail else msgpass fi } +testwebserverlaststatuscode() { + local DOWNLOG='rootdir/tmp/webserverstatus-testfile.log' + local STATUS='rootdir/tmp/webserverstatus-statusfile.log' + rm -f "$DOWNLOG" "$STATUS" + msgtest 'Test last status code from the webserver was' "$1" + downloadfile "http://localhost:8080/_config/find/aptwebserver::last-status-code" "$STATUS" > "$DOWNLOG" + if [ "$(cat "$STATUS")" = "$1" ]; then + msgpass + else + echo >&2 + if [ -n "$2" ]; then + shift + echo >&2 '#### Additionally provided output files contain:' + cat >&2 "$@" + fi + echo >&2 '#### Download log of the status code:' + cat >&2 "$DOWNLOG" + msgfail "Status was $(cat "$STATUS")" + fi +} + pause() { echo "STOPPED execution. Press enter to continue" local IGNORE diff --git a/test/integration/test-allow-scores-for-all-dependency-types b/test/integration/test-allow-scores-for-all-dependency-types new file mode 100755 index 000000000..a5c98f3d6 --- /dev/null +++ b/test/integration/test-allow-scores-for-all-dependency-types @@ -0,0 +1,144 @@ +#!/bin/sh +set -e + +TESTDIR=$(readlink -f $(dirname $0)) +. $TESTDIR/framework +setupenvironment +configarchitecture 'amd64' + +insertpackage 'unversioned' 'libdb-dev' 'amd64' '5.3.0' 'Depends: libdb5.3-dev +Conflicts: libdb5.1-dev' +insertpackage 'unversioned' 'libdb5.1-dev' 'amd64' '5.1.29-7' +insertpackage 'unversioned' 'libdb5.3-dev' 'amd64' '5.3.28-3' 'Conflicts: libdb5.1-dev' + +insertpackage 'unversioned' 'foo' 'amd64' '1' +insertpackage 'unversioned' 'bar' 'amd64' '1' +insertpackage 'unversioned' 'foo' 'amd64' '2' 'Conflicts: bar' +insertpackage 'unversioned' 'bar' 'amd64' '2' 'Conflicts: foo' +insertpackage 'unversioned' 'baz' 'amd64' '2' 'Depends: bar | foo' + +insertpackage 'versioned' 'libdb-dev' 'amd64' '5.3.0' 'Depends: libdb5.3-dev +Conflicts: libdb5.1-dev (<< 5.2)' +insertpackage 'versioned' 'libdb5.3-dev' 'amd64' '5.3.28-3' 'Conflicts: libdb5.1-dev (<< 5.2)' + +insertpackage 'versioned' 'foo' 'amd64' '2' 'Conflicts: bar (<= 2)' +insertpackage 'versioned' 'bar' 'amd64' '2' 'Conflicts: foo (<= 2)' +insertpackage 'versioned' 'baz' 'amd64' '2' 'Depends: bar (>= 2) | foo (>= 2)' + +insertpackage 'multipleno' 'foo' 'amd64' '2.1' 'Conflicts: bar (<= 3)' +insertpackage 'multipleno' 'bar' 'amd64' '2.1' 'Conflicts: foo (<= 3), foo (<= 1)' + +insertpackage 'multipleyes' 'foo' 'amd64' '2.2' 'Conflicts: bar (<= 3)' +# having foo multiple times as conflict is a non-advisable hack in general +insertpackage 'multipleyes' 'bar' 'amd64' '2.2' 'Conflicts: foo (<= 3), foo (<= 3)' + +cp rootdir/var/lib/dpkg/status rootdir/var/lib/dpkg/status-backup +setupaptarchive + +insertinstalledpackage 'libdb-dev' 'amd64' '5.1.7' 'Depends: libdb5.1-dev' +insertinstalledpackage 'libdb5.1-dev' 'amd64' '5.1.29-7' +testequal 'Reading package lists... +Building dependency tree... +The following packages will be REMOVED: + libdb5.1-dev +The following NEW packages will be installed: + libdb5.3-dev +The following packages will be upgraded: + libdb-dev +1 upgraded, 1 newly installed, 1 to remove and 0 not upgraded. +Remv libdb5.1-dev [5.1.29-7] [libdb-dev:amd64 ] +Inst libdb-dev [5.1.7] (5.3.0 unversioned [amd64]) [] +Inst libdb5.3-dev (5.3.28-3 unversioned [amd64]) +Conf libdb5.3-dev (5.3.28-3 unversioned [amd64]) +Conf libdb-dev (5.3.0 unversioned [amd64])' aptget dist-upgrade -st unversioned +testequal 'Reading package lists... +Building dependency tree... +The following packages will be REMOVED: + libdb5.1-dev +The following NEW packages will be installed: + libdb5.3-dev +The following packages will be upgraded: + libdb-dev +1 upgraded, 1 newly installed, 1 to remove and 0 not upgraded. +Remv libdb5.1-dev [5.1.29-7] [libdb-dev:amd64 ] +Inst libdb-dev [5.1.7] (5.3.0 versioned [amd64]) [] +Inst libdb5.3-dev (5.3.28-3 versioned [amd64]) +Conf libdb5.3-dev (5.3.28-3 versioned [amd64]) +Conf libdb-dev (5.3.0 versioned [amd64])' aptget dist-upgrade -st versioned + +cp -f rootdir/var/lib/dpkg/status-backup rootdir/var/lib/dpkg/status +insertinstalledpackage 'foo' 'amd64' '1' +insertinstalledpackage 'bar' 'amd64' '1' +testequal 'Reading package lists... +Building dependency tree... +The following packages have been kept back: + bar foo +0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.' aptget dist-upgrade -st unversioned +testequal 'Reading package lists... +Building dependency tree... +The following packages have been kept back: + bar foo +0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.' aptget dist-upgrade -st versioned +testequal 'Reading package lists... +Building dependency tree... +The following packages have been kept back: + bar foo +0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.' aptget dist-upgrade -st multipleno +testequal 'Reading package lists... +Building dependency tree... +The following packages will be REMOVED: + foo +The following packages will be upgraded: + bar +1 upgraded, 0 newly installed, 1 to remove and 0 not upgraded. +Remv foo [1] +Inst bar [1] (2.2 multipleyes [amd64]) +Conf bar (2.2 multipleyes [amd64])' aptget dist-upgrade -st multipleyes + +testequal 'Reading package lists... +Building dependency tree... +The following NEW packages will be installed: + baz +0 upgraded, 1 newly installed, 0 to remove and 2 not upgraded. +Inst baz (2 unversioned [amd64]) +Conf baz (2 unversioned [amd64])' aptget install baz -st unversioned +testequal 'Reading package lists... +Building dependency tree... +The following extra packages will be installed: + foo +The following packages will be REMOVED: + bar +The following NEW packages will be installed: + baz +The following packages will be upgraded: + foo +1 upgraded, 1 newly installed, 1 to remove and 0 not upgraded. +Remv bar [1] +Inst foo [1] (2 versioned [amd64]) +Inst baz (2 versioned [amd64]) +Conf foo (2 versioned [amd64]) +Conf baz (2 versioned [amd64])' aptget install baz -st versioned + +testequal 'Reading package lists... +Building dependency tree... +The following NEW packages will be installed: + baz +0 upgraded, 1 newly installed, 0 to remove and 2 not upgraded. +Inst baz (2 unversioned [amd64]) +Conf baz (2 unversioned [amd64])' aptget install baz -st unversioned +testequal 'Reading package lists... +Building dependency tree... +The following extra packages will be installed: + foo +The following packages will be REMOVED: + bar +The following NEW packages will be installed: + baz +The following packages will be upgraded: + foo +1 upgraded, 1 newly installed, 1 to remove and 0 not upgraded. +Remv bar [1] +Inst foo [1] (2 versioned [amd64]) +Inst baz (2 versioned [amd64]) +Conf foo (2 versioned [amd64]) +Conf baz (2 versioned [amd64])' aptget install baz -st versioned diff --git a/test/integration/test-apt-cdrom b/test/integration/test-apt-cdrom index cc3483f9b..8d8fdf167 100755 --- a/test/integration/test-apt-cdrom +++ b/test/integration/test-apt-cdrom @@ -12,31 +12,60 @@ setupaptarchive --no-update changetocdrom 'Debian APT Testdisk 0.8.15' # -de is not in the Release file, but picked up anyway for compatibility -cd rootdir/media/cdrom/dists/stable/main/i18n +cd rootdir/media/cdrom-unmounted/dists/stable/main/i18n +chmod +w . sed -e '/^Description-en:/ d' -e '/^ / d' -e '/^$/ d' Translation-en > Translation-de echo 'Description-de: automatisch generiertes Testpaket testing=0.8.15/stable Diese Pakete sind nur für das testen von APT gedacht, sie erfüllen keinen Zweck auf einem normalen System… ' >> Translation-de compressfile Translation-de -rm Translation-en Translation-de +rm -f Translation-en Translation-de +chmod -R -w . cd - > /dev/null -addtrap 'prefix' "chmod -R +w $PWD/rootdir/media/cdrom/dists/;" -chmod -R -w rootdir/media/cdrom/dists -aptcdrom add -m -o quiet=1 > apt-cdrom.log 2>&1 -sed -i -e '/^Using CD-ROM/ d' -e '/gpgv/ d' -e '/^Identifying/ d' -e '/Reading / d' apt-cdrom.log -testfileequal apt-cdrom.log "Scanning disc for index files.. -Found 2 package indexes, 1 source indexes, 1 translation indexes and 1 signatures -Found label 'Debian APT Testdisk 0.8.15' -This disc is called: +aptcdromlog() { + rm -f rootdir/tmp/apt-cdrom.log + test ! -e rootdir/media/cdrom || echo "CD-ROM is mounted, but shouldn't be!" + test -e rootdir/media/cdrom-unmounted || echo "Unmounted CD-ROM doesn't exist, but it should!" + aptcdrom "$@" -o quiet=1 >rootdir/tmp/apt-cdrom.log 2>&1 </dev/null + sed -e '/gpgv/ d' -e '/^Identifying/ d' -e '/Reading / d' rootdir/tmp/apt-cdrom.log + test ! -e rootdir/media/cdrom || echo "CD-ROM is mounted, but shouldn't be!" + test -e rootdir/media/cdrom-unmounted || echo "Unmounted CD-ROM doesn't exist, but it should!" +} + +CDROM_PRE="Using CD-ROM mount point $(readlink -f ./rootdir/media)/cdrom/ +Unmounting CD-ROM... +Waiting for disc... +Please insert a Disc in the drive and press enter +Mounting CD-ROM... +Scanning disc for index files..." +CDROM_POST="This disc is called: 'Debian APT Testdisk 0.8.15' Writing new source list Source list entries for this disc are: deb cdrom:[Debian APT Testdisk 0.8.15]/ stable main deb-src cdrom:[Debian APT Testdisk 0.8.15]/ stable main +Unmounting CD-ROM... Repeat this process for the rest of the CDs in your set." +testequal "$CDROM_PRE +Found 2 package indexes, 1 source indexes, 1 translation indexes and 1 signatures +Found label 'Debian APT Testdisk 0.8.15' +$CDROM_POST" aptcdromlog add + +testequal "Using CD-ROM mount point $(readlink -f ./rootdir/media)/cdrom/ +Mounting CD-ROM... +Stored label: Debian APT Testdisk 0.8.15 +Unmounting CD-ROM..." aptcdromlog ident + +# apt-setup uses these commands (expect the tr in the id) to find id and label +ident="$(LC_ALL=C aptcdrom ident 2>&1 )" +CD_ID="$(echo "$ident" | grep "^Identifying" | head -n1 | cut -d" " -f2 | tr --delete '[]')" +CD_LABEL="$(echo "$ident" | grep "^Stored label:" | head -n1 | sed "s/^[^:]*: //")" +testequal "CD::${CD_ID} \"${CD_LABEL}\"; +CD::${CD_ID}::Label \"${CD_LABEL}\";" cat rootdir/var/lib/apt/cdroms.list + testequal 'Reading package lists... Building dependency tree... The following NEW packages will be installed: @@ -54,49 +83,24 @@ Inst testing:i386 (0.8.15 stable [i386]) Conf testing:i386 (0.8.15 stable [i386])' aptget install testing:i386 -s # check Idempotence of apt-cdrom (and disabling of Translation dropping) -aptcdrom add -m -o quiet=1 -o APT::CDROM::DropTranslation=0 > apt-cdrom.log 2>&1 -sed -i -e '/^Using CD-ROM/ d' -e '/gpgv/ d' -e '/^Identifying/ d' -e '/Reading / d' apt-cdrom.log -testfileequal apt-cdrom.log "Scanning disc for index files.. +testequal "$CDROM_PRE Found 2 package indexes, 1 source indexes, 2 translation indexes and 1 signatures -This disc is called: -'Debian APT Testdisk 0.8.15' -Writing new source list -Source list entries for this disc are: -deb cdrom:[Debian APT Testdisk 0.8.15]/ stable main -deb-src cdrom:[Debian APT Testdisk 0.8.15]/ stable main -Repeat this process for the rest of the CDs in your set." +$CDROM_POST" aptcdromlog add -o APT::CDROM::DropTranslation=0 # take Translations from previous runs as needed -aptcdrom add -m -o quiet=1 > apt-cdrom.log 2>&1 -sed -i -e '/^Using CD-ROM/ d' -e '/gpgv/ d' -e '/^Identifying/ d' -e '/Reading / d' apt-cdrom.log -testfileequal apt-cdrom.log "Scanning disc for index files.. +testequal "$CDROM_PRE Found 2 package indexes, 1 source indexes, 2 translation indexes and 1 signatures -This disc is called: -'Debian APT Testdisk 0.8.15' -Writing new source list -Source list entries for this disc are: -deb cdrom:[Debian APT Testdisk 0.8.15]/ stable main -deb-src cdrom:[Debian APT Testdisk 0.8.15]/ stable main -Repeat this process for the rest of the CDs in your set." +$CDROM_POST" aptcdromlog add msgtest 'Test for the german description translation of' 'testing' aptcache show testing -o Acquire::Languages=de | grep -q '^Description-de: ' && msgpass || msgfail rm -rf rootdir/var/lib/apt/lists mkdir -p rootdir/var/lib/apt/lists/partial -aptcdrom add -m -o quiet=1 > apt-cdrom.log 2>&1 -sed -i -e '/^Using CD-ROM/ d' -e '/gpgv/ d' -e '/^Identifying/ d' -e '/Reading / d' apt-cdrom.log -testfileequal apt-cdrom.log "Scanning disc for index files.. +testequal "$CDROM_PRE Found 2 package indexes, 1 source indexes, 1 translation indexes and 1 signatures -This disc is called: -'Debian APT Testdisk 0.8.15' -Writing new source list -Source list entries for this disc are: -deb cdrom:[Debian APT Testdisk 0.8.15]/ stable main -deb-src cdrom:[Debian APT Testdisk 0.8.15]/ stable main -Repeat this process for the rest of the CDs in your set." +$CDROM_POST" aptcdromlog add msgtest 'Test for the english description translation of' 'testing' aptcache show testing -o Acquire::Languages=en | grep -q '^Description-en: ' && msgpass || msgfail - # check that we really can install from a 'cdrom' testdpkgnotinstalled testing testsuccess aptget install testing -y diff --git a/test/integration/test-apt-cli-search b/test/integration/test-apt-cli-search index 84650b366..58613717b 100755 --- a/test/integration/test-apt-cli-search +++ b/test/integration/test-apt-cli-search @@ -13,7 +13,7 @@ if [ ! -x ${BUILDDIRECTORY}/apt ]; then exit 0 fi -DESCR='Some description that has a unusual word xxyyzz and aabbcc' +DESCR='Some description that has a unusual word xxyyzz and aabbcc and a UPPERCASE' DESCR2='Some other description with the unusual aabbcc only' insertpackage 'unstable' 'foo' 'all' '1.0' '' '' "$DESCR" insertpackage 'testing' 'bar' 'i386' '2.0' '' '' "$DESCR2" @@ -39,6 +39,11 @@ testequal "foo/unstable 1.0 all $DESCR " apt search -qq aabbcc xxyyzz +# search is not case-sensitive by default +testequal "foo/unstable 1.0 all + $DESCR +" apt search -qq uppercase + # output is sorted and search word finds both package testequal "bar/testing 2.0 i386 $DESCR2 diff --git a/test/integration/test-apt-extracttemplates b/test/integration/test-apt-extracttemplates new file mode 100755 index 000000000..ae2cc8bc2 --- /dev/null +++ b/test/integration/test-apt-extracttemplates @@ -0,0 +1,45 @@ +#!/bin/sh +set -e + +TESTDIR=$(readlink -f $(dirname $0)) +. $TESTDIR/framework + +setupenvironment +configarchitecture 'amd64' + +# apt-extracttemplates needs this +insertinstalledpackage 'debconf' 'amd64' '1.5' +insertinstalledpackage 'pkg-with-template' 'amd64' '1.0' + +# build a simple package that contains a config and a tempalte +mkdir -p DEBIAN +TEMPLATE_STR="Template: foo/bar +Type: string +Description: Some bar var +" +echo "$TEMPLATE_STR" > DEBIAN/templates + +CONFIG_STR="#!/bin/sh +random shell stuff +" +echo "$CONFIG_STR" > DEBIAN/config + +buildsimplenativepackage 'pkg-with-template' 'amd64' '0.8.15' 'stable' '' 'pkg with template' '' '' './DEBIAN' + +# ensure we get the right stuff out of the file +mkdir extracttemplates-out +OUT="$(aptextracttemplates -t ./extracttemplates-out incoming/pkg-with-template*.deb)" + +PKG=$(printf "$OUT" | cut -f1 -d' ') +INSTALLED_VER=$(printf "$OUT" | cut -f2 -d' ') +TEMPLATE=$(printf "$OUT" | cut -f3 -d' ') +CONFIG=$(printf "$OUT" | cut -f4 -d' ') + +testequal "$CONFIG_STR" cat $CONFIG +testequal "$TEMPLATE_STR" cat $TEMPLATE + +# ensure that the format of the output string has the right number of dots +for s in "$CONFIG" "$TEMPLATE"; do + NR_DOTS=$(basename "$s" | tr -c -d .) + testequal ".." echo $NR_DOTS +done diff --git a/test/integration/test-apt-helper b/test/integration/test-apt-helper new file mode 100755 index 000000000..6505b5956 --- /dev/null +++ b/test/integration/test-apt-helper @@ -0,0 +1,39 @@ +#!/bin/sh +set -e + +TESTDIR=$(readlink -f $(dirname $0)) +. $TESTDIR/framework + +setupenvironment +configarchitecture "i386" + +changetohttpswebserver + +echo "foo" > aptarchive/foo + +msgtest 'apt-file download-file md5sum' +apthelper -qq download-file http://localhost:8080/foo foo2 MD5Sum:d3b07384d113edec49eaa6238ad5ff00 && msgpass || msgfail +testfileequal foo2 'foo' + +msgtest 'apt-file download-file sha1' +apthelper -qq download-file http://localhost:8080/foo foo1 SHA1:f1d2d2f924e986ac86fdf7b36c94bcdf32beec15 && msgpass || msgfail +testfileequal foo1 'foo' + +msgtest 'apt-file download-file sha256' +apthelper -qq download-file http://localhost:8080/foo foo3 SHA256:b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c && msgpass || msgfail +testfileequal foo3 'foo' + +msgtest 'apt-file download-file no-hash' +apthelper -qq download-file http://localhost:8080/foo foo4 && msgpass || msgfail +testfileequal foo4 'foo' + +msgtest 'apt-file download-file wrong hash' +if ! apthelper -qq download-file http://localhost:8080/foo foo5 MD5Sum:aabbcc 2>&1 2> download.stderr; then + msgpass +else + msgfail +fi +testfileequal download.stderr 'E: Failed to fetch http://localhost:8080/foo Hash Sum mismatch + +E: Download Failed' +testfileequal foo5.FAILED 'foo' diff --git a/test/integration/test-apt-https-no-redirect b/test/integration/test-apt-https-no-redirect index c405d1167..73352a28c 100755 --- a/test/integration/test-apt-https-no-redirect +++ b/test/integration/test-apt-https-no-redirect @@ -7,18 +7,24 @@ TESTDIR=$(readlink -f $(dirname $0)) setupenvironment configarchitecture "i386" -buildsimplenativepackage 'apt' 'all' '1.0' 'stable' +insertpackage 'stable' 'apt' 'all' '1' setupaptarchive --no-update +echo 'alright' > aptarchive/working changetohttpswebserver -o 'aptwebserver::redirect::replace::/redirectme/=http://localhost:8080/' -msgtest 'normal http download works' -downloadfile 'http://localhost:8080/pool/apt_1.0/changelog' changelog2 >/dev/null 2>/dev/null && msgpass || msgfail +msgtest 'download of a file works via' 'http' +downloadfile 'http://localhost:8080/working' httpfile >/dev/null 2>&1 && msgpass || msgfail +testfileequal httpfile 'alright' -msgtest 'normal https download works' -downloadfile 'https://localhost:4433/pool/apt_1.0/changelog' changelog >/dev/null 2>/dev/null && msgpass || msgfail +msgtest 'download of a file works via' 'https' +downloadfile 'https://localhost:4433/working' httpsfile >/dev/null 2>&1 && msgpass || msgfail +testfileequal httpsfile 'alright' -msgtest 'redirecting https to http does not work' -downloadfile 'https://localhost:4433/redirectme/pool/apt_1.0/changelog' changelog3 2>&1 | grep "Protocol http not supported or disabled in libcurl" > /dev/null && msgpass +msgtest 'download of a file does not work if' 'https redirected to http' +downloadfile 'https://localhost:4433/redirectme/working' redirectfile >curloutput 2>&1 && msgfail || msgpass + +msgtest 'libcurl has forbidden access in last request to' 'http resource' +grep -q -- 'Protocol http not supported or disabled in libcurl' curloutput && msgpass || msgfail diff --git a/test/integration/test-bug-612958-use-dpkg-multiarch-config b/test/integration/test-bug-612958-use-dpkg-multiarch-config index 4d1f00ca0..7bf5781e8 100755 --- a/test/integration/test-bug-612958-use-dpkg-multiarch-config +++ b/test/integration/test-bug-612958-use-dpkg-multiarch-config @@ -43,6 +43,15 @@ testpass 'apt config' 'armel' rm $CONFFILE echo '#clear APT::Architectures;' >> $CONFFILE +echo 'APT::Architectures "i386,amd64";' >> $CONFFILE + +testpass 'apt config' 'i386' +testpass 'apt config' 'amd64' +testfail 'apt config' 'armel' + +rm $CONFFILE + +echo '#clear APT::Architectures;' >> $CONFFILE echo 'Dir::Bin::dpkg "./dpkg-printer";' >> $CONFFILE echo '#! /bin/sh diff --git a/test/integration/test-bug-661537-build-profiles-support b/test/integration/test-bug-661537-build-profiles-support new file mode 100755 index 000000000..ae1403f71 --- /dev/null +++ b/test/integration/test-bug-661537-build-profiles-support @@ -0,0 +1,147 @@ +#!/bin/sh +set -e + +TESTDIR=$(readlink -f $(dirname $0)) +. $TESTDIR/framework +setupenvironment +configarchitecture 'amd64' 'i386' 'armel' + +insertinstalledpackage 'build-essential' 'all' '0' 'Multi-Arch: foreign' + +insertpackage 'unstable' 'foo' 'all' '1.0' +insertpackage 'unstable' 'bar' 'all' '1.0' + +insertsource 'unstable' 'buildprofiles' 'any' '1' 'Build-Depends: foo (>= 1.0) [i386 arm] <!profile.stage1 !profile.cross>, bar' + +# table from https://wiki.debian.org/BuildProfileSpec +insertsource 'unstable' 'spec-1' 'any' '1' 'Build-Depends: foo <!profile.stage1>' +insertsource 'unstable' 'spec-2' 'any' '1' 'Build-Depends: foo <profile.stage1>' +insertsource 'unstable' 'spec-3' 'any' '1' 'Build-Depends: foo <!profile.stage1 !profile.notest>' +insertsource 'unstable' 'spec-4' 'any' '1' 'Build-Depends: foo <profile.stage1 profile.notest>' +insertsource 'unstable' 'spec-5' 'any' '1' 'Build-Depends: foo <!profile.stage1 profile.notest>' +insertsource 'unstable' 'spec-6' 'any' '1' 'Build-Depends: foo <profile.stage1 !profile.notest>' +# multiple stanzas not supported: error out +insertsource 'unstable' 'spec-7' 'any' '1' 'Build-Depends: foo <profile.stage1><!profile.notest>' +insertsource 'unstable' 'spec-8' 'any' '1' 'Build-Depends: foo <profile.stage1> <!profile.notest>' + +setupaptarchive + +testequal 'Reading package lists... +Building dependency tree... +The following NEW packages will be installed: + bar +0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. +Inst bar (1.0 unstable [all]) +Conf bar (1.0 unstable [all])' aptget build-dep buildprofiles -s + +testequal 'Reading package lists... +Building dependency tree... +The following NEW packages will be installed: + bar foo +0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded. +Inst bar (1.0 unstable [all]) +Inst foo (1.0 unstable [all]) +Conf bar (1.0 unstable [all]) +Conf foo (1.0 unstable [all])' aptget build-dep buildprofiles -s -o APT::Architecture=i386 + +testequal 'Reading package lists... +Building dependency tree... +The following NEW packages will be installed: + bar +0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. +Inst bar (1.0 unstable [all]) +Conf bar (1.0 unstable [all])' aptget build-dep buildprofiles -s -o APT::Architecture=armel + +testequal 'Reading package lists... +Building dependency tree... +The following NEW packages will be installed: + bar +0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. +Inst bar (1.0 unstable [all]) +Conf bar (1.0 unstable [all])' aptget build-dep buildprofiles -s -o APT::Architecture=i386 -P stage1 + +KEEP='Reading package lists... +Building dependency tree... +The following NEW packages will be installed: + foo +0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. +Inst foo (1.0 unstable [all]) +Conf foo (1.0 unstable [all])' +DROP='Reading package lists... +Building dependency tree... +0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.' + +msgtest 'Check if version of installed dpkg is high enough for' 'build profiles support' +if dpkg --compare-versions "$(command dpkg-query --showformat='${Version}' --show dpkg)" 'ge' '1.17.2'; then + msgpass + testwithdpkg() { + msgtest "Test with" "dpkg-checkbuilddeps -d '$1' -P '$2'" + local OUTPUT="${TMPWORKINGDIRECTORY}/rootdir/tmp/testwithdpkg.output" + if dpkgcheckbuilddeps -d "$1" -P "$2" /dev/null >$OUTPUT 2>&1; then + if [ "$3" = "$DROP" ]; then + msgpass + else + cat $OUTPUT + msgfail + fi + else + if [ "$3" = "$KEEP" ]; then + msgpass + else + cat $OUTPUT + msgfail + fi + fi + } +else + msgskip + testwithdpkg() { + msgtest "Test with" "dpkg-checkbuilddeps -d '$1' -P '$2'" + msgskip + } +fi + +testprofile() { + if [ -n "$3" ]; then + testequal "$4" aptget build-dep "$1" -s -P "$3" + export DEB_BUILD_PROFILES="$(echo "$3" | tr ',' ' ')" + testequal "$4" aptget build-dep "$1" -s -o with::environment=1 + unset DEB_BUILD_PROFILES + else + testequal "$4" aptget build-dep "$1" -s + fi + testwithdpkg "$2" "$3" "$4" +} + +testprofile 'spec-1' 'foo <!profile.stage1>' '' "$KEEP" +testprofile 'spec-1' 'foo <!profile.stage1>' 'stage1' "$DROP" +testprofile 'spec-1' 'foo <!profile.stage1>' 'notest' "$KEEP" +testprofile 'spec-1' 'foo <!profile.stage1>' 'stage1,notest' "$DROP" + +testprofile 'spec-2' 'foo <profile.stage1>' '' "$DROP" +testprofile 'spec-2' 'foo <profile.stage1>' 'stage1' "$KEEP" +testprofile 'spec-2' 'foo <profile.stage1>' 'notest' "$DROP" +testprofile 'spec-2' 'foo <profile.stage1>' 'stage1,notest' "$KEEP" + +testprofile 'spec-3' 'foo <!profile.stage1 !profile.notest>' '' "$KEEP" +testprofile 'spec-3' 'foo <!profile.stage1 !profile.notest>' 'stage1' "$DROP" +testprofile 'spec-3' 'foo <!profile.stage1 !profile.notest>' 'notest' "$DROP" +testprofile 'spec-3' 'foo <!profile.stage1 !profile.notest>' 'stage1,notest' "$DROP" + +testprofile 'spec-4' 'foo <profile.stage1 profile.notest>' '' "$DROP" +testprofile 'spec-4' 'foo <profile.stage1 profile.notest>' 'stage1' "$KEEP" +testprofile 'spec-4' 'foo <profile.stage1 profile.notest>' 'notest' "$KEEP" +testprofile 'spec-4' 'foo <profile.stage1 profile.notest>' 'stage1,notest' "$KEEP" + +testprofile 'spec-5' 'foo <!profile.stage1 profile.notest>' '' "$KEEP" +testprofile 'spec-5' 'foo <!profile.stage1 profile.notest>' 'stage1' "$DROP" +testprofile 'spec-5' 'foo <!profile.stage1 profile.notest>' 'notest' "$KEEP" +testprofile 'spec-5' 'foo <!profile.stage1 profile.notest>' 'stage1,notest' "$DROP" + +testprofile 'spec-6' 'foo <profile.stage1 !profile.notest>' '' "$KEEP" +testprofile 'spec-6' 'foo <profile.stage1 !profile.notest>' 'stage1' "$KEEP" +testprofile 'spec-6' 'foo <profile.stage1 !profile.notest>' 'notest' "$DROP" +testprofile 'spec-6' 'foo <profile.stage1 !profile.notest>' 'stage1,notest' "$KEEP" + +testfailure aptget build-dep spec-7 -s +testfailure aptget build-dep spec-8 -s diff --git a/test/integration/test-bug-735967-lib32-to-i386-unavailable b/test/integration/test-bug-735967-lib32-to-i386-unavailable index 4dbe1d25d..e9f3bf96d 100755 --- a/test/integration/test-bug-735967-lib32-to-i386-unavailable +++ b/test/integration/test-bug-735967-lib32-to-i386-unavailable @@ -12,6 +12,9 @@ insertpackage 'unstable' 'libnss-mdns' 'amd64,i386' '0.10-6' 'Multi-Arch: same Breaks: lib32nss-mdns (<< 0.10-6)' insertpackage 'unstable' 'libnss-mdns-i386' 'i386' '0.10-6' 'Multi-Arch: foreign Depends: libnss-mdns' +# introduce some dummies so that there are versions, but none works +insertpackage 'unstable' 'libnss-mdns-i386' 'amd64' '0.1-6' +insertpackage 'experimental' 'libnss-mdns-amd64' 'i386,amd64' '0.10-6' 'Provides: libnss-mdns-i386' insertpackage 'unstable' 'foo' 'amd64' '1' 'Depends: libfoo' insertpackage 'unstable' 'libfoo' 'amd64' '1' 'Depends: libfoo-bin' diff --git a/test/integration/test-compressed-indexes b/test/integration/test-compressed-indexes index c6f5ab49e..67ca0ba27 100755 --- a/test/integration/test-compressed-indexes +++ b/test/integration/test-compressed-indexes @@ -5,6 +5,7 @@ TESTDIR=$(readlink -f $(dirname $0)) . $TESTDIR/framework setupenvironment +configcompression '.' 'gz' # only gz is supported for this, so ensure it is used configarchitecture "i386" buildsimplenativepackage "testpkg" "i386" "1.0" diff --git a/test/integration/test-kernel-helper-autoremove b/test/integration/test-kernel-helper-autoremove index 2b165d100..c51caa758 100755 --- a/test/integration/test-kernel-helper-autoremove +++ b/test/integration/test-kernel-helper-autoremove @@ -1,55 +1,101 @@ #!/bin/sh - set -e -# setup testdir TESTDIR=$(readlink -f $(dirname $0)) . $TESTDIR/framework +setupenvironment +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 + msgpass +else + msgskip + exit 0 +fi + +CURRENTKERNEL="linux-image-$(uname -r)" +insertinstalledpackage "$CURRENTKERNEL" 'amd64' '1' +insertinstalledpackage 'linux-image-1.0.0-2-generic' 'amd64' '1.0.0-2' +insertinstalledpackage 'linux-image-100.0.0-1-generic' 'amd64' '100.0.0-1' +insertinstalledpackage 'linux-image-amd64' 'amd64' '100.0.0-1' +# ensure that the '.' is really a dot and not a wildcard +insertinstalledpackage 'linux-headers-1000000-1-generic' 'amd64' '100.0.0-1' -TMPDIR=$(mktemp -d) -cd $TMPDIR -addtrap "cd /; rm -rf $TMPDIR" +testsuccess aptmark auto "$CURRENTKERNEL" 'linux-image-1.0.0-2-generic' 'linux-image-100.0.0-1-generic' 'linux-headers-1000000-1-generic' -# create mock environment -mkdir apt.conf.d -cat > aptconfig.conf <<EOF -Dir::Etc::parts "$TMPDIR/apt.conf.d"; -Dir::bin::dpkg "$TMPDIR/fake-dpkg"; +cat > ./fake-dpkg <<EOF +#!/bin/sh +exec $(aptconfig dump --no-empty --format='%v ' 'DPKG::options') "\$@" EOF -APT_CONFIG=aptconfig.conf -export APT_CONFIG +chmod +x ./fake-dpkg +echo 'Dir::Bin::dpkg "./fake-dpkg";' > rootdir/etc/apt/apt.conf.d/99fakedpkg # install fake-dpkg into it -install -m755 $TESTDIR/test-kernel-helper-autoremove.fake-dpkg $TMPDIR/fake-dpkg +catfail() { + echo >&2 + echo >&2 '### List of protected kernels:' + cat >&2 protected.list + msgfail +} -# run the helper -sh ${TESTDIR}/../../debian/apt.auto-removal.sh +testprotected() { + rm -f rootdir/etc/apt/apt.conf.d/01autoremove-kernels protected.list -msgtest 'Check that kernel autoremoval list is correctly created' -# and ensure its there, valid and version 10.0.0-1 is there too -test -e $TMPDIR/apt.conf.d/01autoremove-kernels && msgpass || msgfail + testsuccess runapt sh ${TESTDIR}/../../debian/apt.auto-removal.sh "$@" -msgtest 'Check that most recent kernel is saved from autoremoval' -apt-config -c ${APT_CONFIG} dump|grep -q "APT::NeverAutoRemove::.*\^linux-image-10.0.0-1-generic" && msgpass || msgfail + msgtest 'Check kernel autoremoval protection list' 'is created' + test -e rootdir/etc/apt/apt.conf.d/01autoremove-kernels && msgpass || msgfail -# ... and also that the running kernel is excluded -msgtest 'Check that running kernel is saved from autoremoval' -apt-config -c ${APT_CONFIG} dump|grep -q "APT::NeverAutoRemove::.*\^linux-image-$(uname -r)" && msgpass || msgfail + msgtest 'Check kernel autoremoval protection list' 'can be dumped' + aptconfig dump --no-empty --format '%v%n' 'APT::NeverAutoRemove' >protected.list 2>&1 && msgpass || catfail -# and that the old kernel is *not* excluded from autoremoval -msgtest 'Check that older kernels are not excluded from autoremoval' -apt-config -c ${APT_CONFIG} dump|grep -q "APT::NeverAutoRemove::.*\^linux-image-1\.0\.01-2-generic" && msgfail || msgpass + msgtest 'Check kernel autoremoval protection list' 'can be parsed' + grep -q '^[A-Z]: ' protected.list && catfail || msgpass -msgtest "Check that the older kernel is retained when it's being installed" -sh ${TESTDIR}/../../debian/apt.auto-removal.sh 1.0.01-2-generic -test -e $TMPDIR/apt.conf.d/01autoremove-kernels -if ! apt-config -c ${APT_CONFIG} dump|grep -q "APT::NeverAutoRemove::.*\^linux-image-10.0.0-1-generic" \ - || ! apt-config -c ${APT_CONFIG} dump|grep -q "APT::NeverAutoRemove::.*\^linux-image-$(uname -r)" \ - || ! apt-config -c ${APT_CONFIG} dump|grep -q "APT::NeverAutoRemove::.*\^linux-image-1\.0\.01-2-generic" -then - msgfail -else - msgpass -fi + msgtest 'Check kernel autoremoval protection list includes' 'most recent kernel' + grep -q '^\^linux-image-100\\\.0\\\.0-1-generic\$$' protected.list && msgpass || catfail + + msgtest 'Check kernel autoremoval protection list includes' 'running kernel' + grep -q "^\\^linux-image-$(uname -r | sed -e 's#\.#\\\\.#g')\\\$\$" protected.list && msgpass || catfail +} + +testequal "Reading package lists... +Building dependency tree... +Reading state information... +The following packages will be REMOVED: + linux-headers-1000000-1-generic (100.0.0-1) + linux-image-1.0.0-2-generic (1.0.0-2) + linux-image-100.0.0-1-generic (100.0.0-1) + $CURRENTKERNEL (1) +0 upgraded, 0 newly installed, 4 to remove and 0 not upgraded. +Remv linux-headers-1000000-1-generic [100.0.0-1] +Remv linux-image-1.0.0-2-generic [1.0.0-2] +Remv linux-image-100.0.0-1-generic [100.0.0-1] +Remv $CURRENTKERNEL [1]" aptget autoremove -sV + +testprotected +msgtest 'Check kernel autoremoval protection list does not include' 'old kernel' +grep -q '^\^linux-image-1\\\.0\\\.0-2-generic\$$' protected.list && catfail || msgpass + +testequal 'Reading package lists... +Building dependency tree... +Reading state information... +The following packages will be REMOVED: + linux-headers-1000000-1-generic linux-image-1.0.0-2-generic +0 upgraded, 0 newly installed, 2 to remove and 0 not upgraded. +Remv linux-headers-1000000-1-generic [100.0.0-1] +Remv linux-image-1.0.0-2-generic [1.0.0-2]' aptget autoremove -s -# done +testprotected 1.0.0-2-generic +msgtest 'Check kernel autoremoval protection list includes' 'installed kernel' +grep -q '^\^linux-image-1\\\.0\\\.0-2-generic\$$' protected.list && msgpass || catfail +testequal 'Reading package lists... +Building dependency tree... +Reading state information... +The following packages will be REMOVED: + linux-headers-1000000-1-generic +0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded. +Remv linux-headers-1000000-1-generic [100.0.0-1]' aptget autoremove -s diff --git a/test/integration/test-kernel-helper-autoremove.fake-dpkg b/test/integration/test-kernel-helper-autoremove.fake-dpkg deleted file mode 100644 index a365c5370..000000000 --- a/test/integration/test-kernel-helper-autoremove.fake-dpkg +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -set -e - -if [ "$1" = "-l" ]; then - echo "ii linux-image-1.0.0-2-generic 1.0.01-2 amd64" - echo "ii linux-image-$(uname -r) not-used amd64" - echo "ii linux-image-10.0.0-1-generic 10.0.0.1-1 amd64" -elif [ "$1" = "--compare-versions" ]; then - dpkg "$1" "$2" "$3" "$4" -else - dpkg $@ -fi - diff --git a/test/integration/test-partial-file-support b/test/integration/test-partial-file-support index 382789e68..5ab326def 100755 --- a/test/integration/test-partial-file-support +++ b/test/integration/test-partial-file-support @@ -13,17 +13,18 @@ copysource() { touch -d "$(stat --format '%y' "${TESTFILE}")" "$3" } +DOWNLOADLOG='rootdir/tmp/testdownloadfile.log' + testdownloadfile() { - local DOWNLOG='download-testfile.log' - rm -f "$DOWNLOG" + rm -f "$DOWNLOADLOG" msgtest "Testing download of file $2 with" "$1" - if ! downloadfile "$2" "$3" > "$DOWNLOG"; then - cat >&2 "$DOWNLOG" + if ! downloadfile "$2" "$3" > "$DOWNLOADLOG"; then + cat >&2 "$DOWNLOADLOG" msgfail else msgpass fi - cat "$DOWNLOG" | while read field hash; do + cat "$DOWNLOADLOG" | while read field hash; do local EXPECTED case "$field" in 'MD5Sum-Hash:') EXPECTED="$(md5sum "$TESTFILE" | cut -d' ' -f 1)";; @@ -40,28 +41,12 @@ testdownloadfile() { if [ "$EXPECTED" "$4" "$hash" ]; then msgpass else - cat >&2 "$DOWNLOG" + cat >&2 "$DOWNLOADLOG" msgfail "expected: $EXPECTED ; got: $hash" fi done } -testwebserverlaststatuscode() { - local DOWNLOG='download-testfile.log' - rm -f "$DOWNLOG" - local STATUS="$(mktemp)" - addtrap "rm $STATUS;" - msgtest 'Test last status code from the webserver was' "$1" - downloadfile "http://localhost:8080/_config/find/aptwebserver::last-status-code" "$STATUS" > "$DOWNLOG" - if [ "$(cat "$STATUS")" = "$1" ]; then - msgpass - else - cat >&2 "$DOWNLOG" - msgfail "Status was $(cat "$STATUS")" - fi -} - - TESTFILE='aptarchive/testfile' cp -a ${TESTDIR}/framework $TESTFILE @@ -70,34 +55,34 @@ testrun() { copysource $TESTFILE 0 ./testfile testdownloadfile 'no data' "${1}/testfile" './testfile' '=' - testwebserverlaststatuscode '200' + testwebserverlaststatuscode '200' "$DOWNLOADLOG" copysource $TESTFILE 20 ./testfile testdownloadfile 'valid partial data' "${1}/testfile" './testfile' '=' - testwebserverlaststatuscode '206' + testwebserverlaststatuscode '206' "$DOWNLOADLOG" copysource /dev/zero 20 ./testfile testdownloadfile 'invalid partial data' "${1}/testfile" './testfile' '!=' - testwebserverlaststatuscode '206' + testwebserverlaststatuscode '206' "$DOWNLOADLOG" copysource $TESTFILE 1M ./testfile testdownloadfile 'completely downloaded file' "${1}/testfile" './testfile' '=' - testwebserverlaststatuscode '416' + testwebserverlaststatuscode '416' "$DOWNLOADLOG" copysource /dev/zero 1M ./testfile testdownloadfile 'too-big partial file' "${1}/testfile" './testfile' '=' - testwebserverlaststatuscode '200' + testwebserverlaststatuscode '200' "$DOWNLOADLOG" copysource /dev/zero 20 ./testfile touch ./testfile testdownloadfile 'old data' "${1}/testfile" './testfile' '=' - testwebserverlaststatuscode '200' + testwebserverlaststatuscode '200' "$DOWNLOADLOG" webserverconfig 'aptwebserver::support::range' 'false' copysource $TESTFILE 20 ./testfile testdownloadfile 'no server support' "${1}/testfile" './testfile' '=' - testwebserverlaststatuscode '200' + testwebserverlaststatuscode '200' "$DOWNLOADLOG" } testrun 'http://localhost:8080' diff --git a/test/integration/test-bug-1078697-missing-source-hashes b/test/integration/test-ubuntu-bug-1078697-missing-source-hashes index 6fcb856b5..6fcb856b5 100755 --- a/test/integration/test-bug-1078697-missing-source-hashes +++ b/test/integration/test-ubuntu-bug-1078697-missing-source-hashes diff --git a/test/interactive-helper/aptwebserver.cc b/test/interactive-helper/aptwebserver.cc index 992f802a6..34476e1af 100644 --- a/test/interactive-helper/aptwebserver.cc +++ b/test/interactive-helper/aptwebserver.cc @@ -1,29 +1,31 @@ #include <config.h> -#include <apt-pkg/strutl.h> -#include <apt-pkg/fileutl.h> -#include <apt-pkg/error.h> #include <apt-pkg/cmndline.h> #include <apt-pkg/configuration.h> -#include <apt-pkg/init.h> - -#include <vector> -#include <string> -#include <list> -#include <sstream> +#include <apt-pkg/error.h> +#include <apt-pkg/fileutl.h> +#include <apt-pkg/strutl.h> +#include <dirent.h> +#include <errno.h> +#include <netinet/in.h> +#include <pthread.h> +#include <regex.h> +#include <signal.h> +#include <stddef.h> +#include <stdlib.h> +#include <string.h> #include <sys/socket.h> -#include <sys/types.h> #include <sys/stat.h> -#include <netinet/in.h> -#include <unistd.h> -#include <errno.h> #include <time.h> -#include <stdlib.h> -#include <dirent.h> -#include <signal.h> +#include <unistd.h> +#include <iostream> +#include <sstream> +#include <list> +#include <string> +#include <vector> -char const * const httpcodeToStr(int const httpcode) /*{{{*/ +static char const * httpcodeToStr(int const httpcode) /*{{{*/ { switch (httpcode) { @@ -77,7 +79,7 @@ char const * const httpcodeToStr(int const httpcode) /*{{{*/ return NULL; } /*}}}*/ -void addFileHeaders(std::list<std::string> &headers, FileFd &data) /*{{{*/ +static void addFileHeaders(std::list<std::string> &headers, FileFd &data)/*{{{*/ { std::ostringstream contentlength; contentlength << "Content-Length: " << data.FileSize(); @@ -88,14 +90,14 @@ void addFileHeaders(std::list<std::string> &headers, FileFd &data) /*{{{*/ headers.push_back(lastmodified); } /*}}}*/ -void addDataHeaders(std::list<std::string> &headers, std::string &data) /*{{{*/ +static void addDataHeaders(std::list<std::string> &headers, std::string &data)/*{{{*/ { std::ostringstream contentlength; contentlength << "Content-Length: " << data.size(); headers.push_back(contentlength.str()); } /*}}}*/ -bool sendHead(int const client, int const httpcode, std::list<std::string> &headers)/*{{{*/ +static bool sendHead(int const client, int const httpcode, std::list<std::string> &headers)/*{{{*/ { std::string response("HTTP/1.1 "); response.append(httpcodeToStr(httpcode)); @@ -128,7 +130,7 @@ bool sendHead(int const client, int const httpcode, std::list<std::string> &head return Success; } /*}}}*/ -bool sendFile(int const client, FileFd &data) /*{{{*/ +static bool sendFile(int const client, FileFd &data) /*{{{*/ { bool Success = true; char buffer[500]; @@ -144,7 +146,7 @@ bool sendFile(int const client, FileFd &data) /*{{{*/ return Success; } /*}}}*/ -bool sendData(int const client, std::string const &data) /*{{{*/ +static bool sendData(int const client, std::string const &data) /*{{{*/ { if (FileFd::Write(client, data.c_str(), data.size()) == false) { @@ -154,7 +156,7 @@ bool sendData(int const client, std::string const &data) /*{{{*/ return true; } /*}}}*/ -void sendError(int const client, int const httpcode, std::string const &request,/*{{{*/ +static void sendError(int const client, int const httpcode, std::string const &request,/*{{{*/ bool content, std::string const &error = "") { std::list<std::string> headers; @@ -179,13 +181,13 @@ void sendError(int const client, int const httpcode, std::string const &request, if (content == true) sendData(client, response); } -void sendSuccess(int const client, std::string const &request, +static void sendSuccess(int const client, std::string const &request, bool content, std::string const &error = "") { sendError(client, 200, request, content, error); } /*}}}*/ -void sendRedirect(int const client, int const httpcode, std::string const &uri,/*{{{*/ +static void sendRedirect(int const client, int const httpcode, std::string const &uri,/*{{{*/ std::string const &request, bool content) { std::list<std::string> headers; @@ -222,7 +224,7 @@ void sendRedirect(int const client, int const httpcode, std::string const &uri,/ sendData(client, response); } /*}}}*/ -int filter_hidden_files(const struct dirent *a) /*{{{*/ +static int filter_hidden_files(const struct dirent *a) /*{{{*/ { if (a->d_name[0] == '.') return 0; @@ -236,7 +238,7 @@ int filter_hidden_files(const struct dirent *a) /*{{{*/ #endif return 1; } -int grouped_alpha_case_sort(const struct dirent **a, const struct dirent **b) { +static int grouped_alpha_case_sort(const struct dirent **a, const struct dirent **b) { #ifdef _DIRENT_HAVE_D_TYPE if ((*a)->d_type == DT_DIR && (*b)->d_type == DT_DIR); else if ((*a)->d_type == DT_DIR && (*b)->d_type == DT_REG) @@ -260,7 +262,7 @@ int grouped_alpha_case_sort(const struct dirent **a, const struct dirent **b) { return strcasecmp((*a)->d_name, (*b)->d_name); } /*}}}*/ -void sendDirectoryListing(int const client, std::string const &dir, /*{{{*/ +static void sendDirectoryListing(int const client, std::string const &dir,/*{{{*/ std::string const &request, bool content) { std::list<std::string> headers; @@ -312,7 +314,7 @@ void sendDirectoryListing(int const client, std::string const &dir, /*{{{*/ sendData(client, response); } /*}}}*/ -bool parseFirstLine(int const client, std::string const &request, /*{{{*/ +static bool parseFirstLine(int const client, std::string const &request,/*{{{*/ std::string &filename, std::string ¶ms, bool &sendContent, bool &closeConnection) { @@ -432,7 +434,7 @@ bool parseFirstLine(int const client, std::string const &request, /*{{{*/ return true; } /*}}}*/ -bool handleOnTheFlyReconfiguration(int const client, std::string const &request, std::vector<std::string> const &parts)/*{{{*/ +static bool handleOnTheFlyReconfiguration(int const client, std::string const &request, std::vector<std::string> const &parts)/*{{{*/ { size_t const pcount = parts.size(); if (pcount == 4 && parts[1] == "set") @@ -475,7 +477,7 @@ bool handleOnTheFlyReconfiguration(int const client, std::string const &request, return false; } /*}}}*/ -void * handleClient(void * voidclient) /*{{{*/ +static void * handleClient(void * voidclient) /*{{{*/ { int client = *((int*)(voidclient)); std::clog << "ACCEPT client " << client << std::endl; diff --git a/test/interactive-helper/extract-control.cc b/test/interactive-helper/extract-control.cc index 3f7feabcb..852ec4ee9 100644 --- a/test/interactive-helper/extract-control.cc +++ b/test/interactive-helper/extract-control.cc @@ -1,13 +1,16 @@ +#include <config.h> + #include <apt-pkg/debfile.h> #include <apt-pkg/error.h> #include <apt-pkg/fileutl.h> +#include <string> #include <iostream> #include <unistd.h> using namespace std; -bool ExtractMember(const char *File,const char *Member) +static bool ExtractMember(const char *File,const char *Member) { FileFd Fd(File,FileFd::ReadOnly); debDebFile Deb(Fd); diff --git a/test/interactive-helper/mthdcat.cc b/test/interactive-helper/mthdcat.cc index 25d09a3f5..2961b2080 100644 --- a/test/interactive-helper/mthdcat.cc +++ b/test/interactive-helper/mthdcat.cc @@ -2,6 +2,8 @@ All this does is cat a file into the method without closing the FD when the file ends */ +#include <config.h> + #include <unistd.h> int main() diff --git a/test/interactive-helper/rpmver.cc b/test/interactive-helper/rpmver.cc index 15c96cbbe..017c92fba 100644 --- a/test/interactive-helper/rpmver.cc +++ b/test/interactive-helper/rpmver.cc @@ -1,3 +1,5 @@ +#include <config.h> + #include <apt-pkg/debversion.h> #include <rpm/rpmio.h> #include <rpm/misc.h> diff --git a/test/interactive-helper/test_udevcdrom.cc b/test/interactive-helper/test_udevcdrom.cc index 88f5f0153..b87dcd935 100644 --- a/test/interactive-helper/test_udevcdrom.cc +++ b/test/interactive-helper/test_udevcdrom.cc @@ -1,7 +1,10 @@ +#include <config.h> + #include <apt-pkg/cdrom.h> -#include <stdio.h> -#include <assert.h> +#include <stddef.h> +#include <string> +#include <assert.h> #include <vector> #include <iostream> @@ -17,5 +20,4 @@ int main() std::cerr << l[i].DeviceName << " " << l[i].Mounted << " " << l[i].MountPath << std::endl; - } diff --git a/test/interactive-helper/testdeb.cc b/test/interactive-helper/testdeb.cc index d28f20114..6aae9f563 100644 --- a/test/interactive-helper/testdeb.cc +++ b/test/interactive-helper/testdeb.cc @@ -1,15 +1,22 @@ +#include <config.h> + #include <apt-pkg/dirstream.h> #include <apt-pkg/debfile.h> #include <apt-pkg/error.h> #include <apt-pkg/extracttar.h> +#include <apt-pkg/arfile.h> +#include <apt-pkg/fileutl.h> + +#include <iostream> +#include <string> class NullStream : public pkgDirStream { public: - virtual bool DoItem(Item &Itm,int &Fd) {return true;}; + virtual bool DoItem(Item &/*Itm*/, int &/*Fd*/) {return true;}; }; -bool Test(const char *File) +static bool Test(const char *File) { FileFd Fd(File,FileFd::ReadOnly); debDebFile Deb(Fd); @@ -33,6 +40,11 @@ bool Test(const char *File) int main(int argc, const char *argv[]) { + if (argc != 2) { + std::cout << "One parameter expected - given " << argc << std::endl; + return 100; + } + Test(argv[1]); _error->DumpErrors(); return 0; diff --git a/test/libapt/assert.h b/test/libapt/assert.h index 113c057ed..357801592 100644 --- a/test/libapt/assert.h +++ b/test/libapt/assert.h @@ -1,11 +1,18 @@ #include <iostream> #include <cstdlib> +#include <apt-pkg/macros.h> + +#if __GNUC__ >= 4 + #pragma GCC diagnostic push + #pragma GCC diagnostic ignored "-Wmissing-declarations" +#endif + #define equals(x,y) assertEquals(y, x, __LINE__) #define equalsNot(x,y) assertEqualsNot(y, x, __LINE__) template < typename X, typename Y > -void OutputAssertEqual(X expect, char const* compare, Y get, unsigned long const &line) { +APT_NORETURN void OutputAssertEqual(X expect, char const* compare, Y get, unsigned long const &line) { std::cerr << "Test FAILED: »" << expect << "« " << compare << " »" << get << "« at line " << line << std::endl; std::exit(EXIT_FAILURE); } @@ -111,3 +118,7 @@ void dumpVector(X vec) { v != vec.end(); ++v) std::cout << *v << std::endl; } + +#if __GNUC__ >= 4 + #pragma GCC diagnostic pop +#endif diff --git a/test/libapt/cdromfindmountpointfordevice_test.cc b/test/libapt/cdromfindmountpointfordevice_test.cc new file mode 100644 index 000000000..26dcd1459 --- /dev/null +++ b/test/libapt/cdromfindmountpointfordevice_test.cc @@ -0,0 +1,26 @@ +#include <config.h> + +#include <apt-pkg/cdromutl.h> +#include <apt-pkg/configuration.h> + +#include <string> +#include <vector> + +#include "assert.h" + +int main(int argc, char const *argv[]) { + if (argc != 2) { + std::cout << "One parameter expected - given " << argc << std::endl; + return 100; + } + + _config->Set("Dir::state::Mountpoints", argv[1]); + equals("/", FindMountPointForDevice("rootfs")); + equals("/", FindMountPointForDevice("/dev/disk/by-uuid/fadcbc52-6284-4874-aaaa-dcee1f05fe21")); + equals("/sys", FindMountPointForDevice("sysfs")); + equals("/sys0", FindMountPointForDevice("sysfs0")); + equals("/boot/efi", FindMountPointForDevice("/dev/sda1")); + equals("/tmp", FindMountPointForDevice("tmpfs")); + + return 0; +} diff --git a/test/libapt/cdromfindpackages_test.cc b/test/libapt/cdromfindpackages_test.cc index e9f5a51b0..583de1423 100644 --- a/test/libapt/cdromfindpackages_test.cc +++ b/test/libapt/cdromfindpackages_test.cc @@ -1,9 +1,13 @@ +#include <config.h> + #include <apt-pkg/cdrom.h> #include <apt-pkg/error.h> #include <algorithm> #include <string> #include <vector> +#include <stddef.h> +#include <iostream> #include "assert.h" diff --git a/test/libapt/cdromreducesourcelist_test.cc b/test/libapt/cdromreducesourcelist_test.cc index 729da23a6..196d0136e 100644 --- a/test/libapt/cdromreducesourcelist_test.cc +++ b/test/libapt/cdromreducesourcelist_test.cc @@ -1,7 +1,7 @@ +#include <config.h> + #include <apt-pkg/cdrom.h> -#include <apt-pkg/error.h> -#include <algorithm> #include <string> #include <vector> @@ -15,7 +15,7 @@ public: } }; -int main(int argc, char const *argv[]) { +int main() { Cdrom cd; std::vector<std::string> List; std::string CD("/media/cdrom/"); diff --git a/test/libapt/commandline_test.cc b/test/libapt/commandline_test.cc index de8a30bd6..d8c5bc5bd 100644 --- a/test/libapt/commandline_test.cc +++ b/test/libapt/commandline_test.cc @@ -1,4 +1,7 @@ +#include <config.h> + #include <apt-pkg/cmndline.h> +#include <apt-pkg/configuration.h> #include "assert.h" diff --git a/test/libapt/commandlineasstring_test.cc b/test/libapt/commandlineasstring_test.cc index a38957d7e..5c005e956 100644 --- a/test/libapt/commandlineasstring_test.cc +++ b/test/libapt/commandlineasstring_test.cc @@ -1,3 +1,5 @@ +#include <config.h> + #include <apt-pkg/cmndline.h> #include <apt-pkg/configuration.h> diff --git a/test/libapt/compareversion_test.cc b/test/libapt/compareversion_test.cc index fdb1d5674..43b98f240 100644 --- a/test/libapt/compareversion_test.cc +++ b/test/libapt/compareversion_test.cc @@ -16,22 +16,21 @@ ##################################################################### */ /*}}}*/ -#include <apt-pkg/macros.h> +#include <config.h> + #include <apt-pkg/error.h> -#include <apt-pkg/version.h> #include <apt-pkg/debversion.h> #include <apt-pkg/fileutl.h> -#include <iostream> -#include <fstream> +#include <fstream> +#include <string> #include <stdlib.h> #include <unistd.h> -#include <sys/types.h> #include <sys/wait.h> using namespace std; -bool callDPkg(const char *val, const char *ref, const char &op) { +static bool callDPkg(const char *val, const char *ref, const char &op) { pid_t Process = ExecFork(); if (Process == 0) { @@ -50,7 +49,7 @@ bool callDPkg(const char *val, const char *ref, const char &op) { return WIFEXITED(Ret) == true && WEXITSTATUS(Ret) == 0; } -void assertVersion(int const &CurLine, string const &A, string const &B, int const &Expected) { +static void assertVersion(int const &CurLine, string const &A, string const &B, int const &Expected) { int Res = debVS.CmpVersion(A.c_str(), B.c_str()); bool const dpkg = callDPkg(A.c_str(),B.c_str(), Expected); Res = (Res < 0) ? -1 : ( (Res > 0) ? 1 : Res); @@ -61,7 +60,7 @@ void assertVersion(int const &CurLine, string const &A, string const &B, int con _error->Error("DPkg differ with line: %u. '%s' '%s' '%s' == false",CurLine,A.c_str(),((Expected == 1) ? "<<" : ( (Expected == 0) ? "=" : ">>")),B.c_str()); } -bool RunTest(const char *File) +static bool RunTest(const char *File) { if (FileExists(File) == false) return _error->Error("Versiontestfile %s doesn't exist!", File); diff --git a/test/libapt/configuration_test.cc b/test/libapt/configuration_test.cc index 2c974ee0a..c9235500c 100644 --- a/test/libapt/configuration_test.cc +++ b/test/libapt/configuration_test.cc @@ -1,3 +1,5 @@ +#include <config.h> + #include <apt-pkg/configuration.h> #include <string> @@ -5,7 +7,7 @@ #include "assert.h" -int main(int argc,const char *argv[]) { +int main() { Configuration Cnf; std::vector<std::string> fds; @@ -98,9 +100,37 @@ int main(int argc,const char *argv[]) { equals(Cnf.FindDir("Dir::State"), "/rootdir/dev/null"); equals(Cnf.FindDir("Dir::State::lists"), "/rootdir/dev/null"); - Cnf.Set("Moo::Bar", "1"); - Cnf.Clear(); - equals(Cnf.Find("Moo::Bar"), ""); + Cnf.Set("Moo::Bar", "1"); + Cnf.Clear(); + equals(Cnf.Find("Moo::Bar"), ""); + + std::vector<std::string> vec = Cnf.FindVector("Test::Vector", ""); + equals(vec.size(), 0); + vec = Cnf.FindVector("Test::Vector", "foo"); + equals(vec.size(), 1); + equals(vec[0], "foo"); + vec = Cnf.FindVector("Test::Vector", "foo,bar"); + equals(vec.size(), 2); + equals(vec[0], "foo"); + equals(vec[1], "bar"); + Cnf.Set("Test::Vector::", "baz"); + Cnf.Set("Test::Vector::", "bob"); + Cnf.Set("Test::Vector::", "dob"); + vec = Cnf.FindVector("Test::Vector"); + equals(vec.size(), 3); + equals(vec[0], "baz"); + equals(vec[1], "bob"); + equals(vec[2], "dob"); + vec = Cnf.FindVector("Test::Vector", "foo,bar"); + equals(vec.size(), 3); + equals(vec[0], "baz"); + equals(vec[1], "bob"); + equals(vec[2], "dob"); + Cnf.Set("Test::Vector", "abel,bravo"); + vec = Cnf.FindVector("Test::Vector", "foo,bar"); + equals(vec.size(), 2); + equals(vec[0], "abel"); + equals(vec[1], "bravo"); //FIXME: Test for configuration file parsing; // currently only integration/ tests test them implicitly diff --git a/test/libapt/fileutl_test.cc b/test/libapt/fileutl_test.cc index 462bdefd9..1d1a1a1b8 100644 --- a/test/libapt/fileutl_test.cc +++ b/test/libapt/fileutl_test.cc @@ -1,19 +1,49 @@ +#include <config.h> + #include <apt-pkg/error.h> #include <apt-pkg/fileutl.h> -#include "assert.h" #include <string> #include <vector> - -#include <stdio.h> -#include <iostream> #include <stdlib.h> +#include <sys/stat.h> +#include "assert.h" -int main(int argc,char *argv[]) +// regression test for permission bug LP: #1304657 +static bool +TestFileFdOpenPermissions(mode_t a_umask, mode_t ExpectedFilePermission) +{ + FileFd f; + struct stat buf; + static const char* fname = "test.txt"; + + umask(a_umask); + f.Open(fname, FileFd::ReadWrite|FileFd::Atomic); + f.Close(); + if (stat(fname, &buf) < 0) + { + _error->Errno("stat", "failed to stat"); + _error->DumpErrors(); + return false; + } + unlink(fname); + equals(buf.st_mode & 0777, ExpectedFilePermission); + return true; +} + +int main() { std::vector<std::string> files; + if (TestFileFdOpenPermissions(0002, 0664) == false || + TestFileFdOpenPermissions(0022, 0644) == false || + TestFileFdOpenPermissions(0077, 0600) == false || + TestFileFdOpenPermissions(0026, 0640) == false) + { + return 1; + } + // normal match files = Glob("*.lst"); if (files.size() != 1) diff --git a/test/libapt/getarchitectures_test.cc b/test/libapt/getarchitectures_test.cc index 807469263..f4dfc6ae8 100644 --- a/test/libapt/getarchitectures_test.cc +++ b/test/libapt/getarchitectures_test.cc @@ -1,13 +1,14 @@ +#include <config.h> + #include <apt-pkg/aptconfiguration.h> #include <apt-pkg/configuration.h> -#include "assert.h" #include <string> #include <vector> -#include <iostream> +#include "assert.h" -int main(int argc,char *argv[]) +int main() { std::vector<std::string> vec; diff --git a/test/libapt/getlanguages_test.cc b/test/libapt/getlanguages_test.cc index cef89bde6..15aa4e879 100644 --- a/test/libapt/getlanguages_test.cc +++ b/test/libapt/getlanguages_test.cc @@ -1,3 +1,5 @@ +#include <config.h> + #include <apt-pkg/aptconfiguration.h> #include <apt-pkg/configuration.h> @@ -105,6 +107,14 @@ int main(int argc,char *argv[]) vec = APT::Configuration::getLanguages(false, false, env); equals(vec.size(), 1); equals(vec[0], "fr"); + + _config->Set("Acquire::Languages", "environment,en"); + env[0] = "de_DE.UTF-8"; + vec = APT::Configuration::getLanguages(false, false, env); + equals(vec.size(), 3); + equals(vec[0], "de_DE"); + equals(vec[1], "de"); + equals(vec[2], "en"); _config->Set("Acquire::Languages", ""); _config->Set("Acquire::Languages::1", "environment"); diff --git a/test/libapt/getlistoffilesindir_test.cc b/test/libapt/getlistoffilesindir_test.cc index b2c95e840..df125fc83 100644 --- a/test/libapt/getlistoffilesindir_test.cc +++ b/test/libapt/getlistoffilesindir_test.cc @@ -1,12 +1,13 @@ +#include <config.h> + #include <apt-pkg/fileutl.h> -#include "assert.h" #include <string> #include <vector> - -#include <stdio.h> #include <iostream> +#include "assert.h" + #define P(x) std::string(argv[1]).append("/").append(x) int main(int argc,char *argv[]) diff --git a/test/libapt/globalerror_test.cc b/test/libapt/globalerror_test.cc index b6939231d..e913fdc12 100644 --- a/test/libapt/globalerror_test.cc +++ b/test/libapt/globalerror_test.cc @@ -1,11 +1,15 @@ +#include <config.h> + #include <apt-pkg/error.h> -#include "assert.h" +#include <stddef.h> #include <string> #include <errno.h> #include <string.h> -int main(int argc,char *argv[]) +#include "assert.h" + +int main() { std::string const textOfErrnoZero(strerror(0)); diff --git a/test/libapt/hashsums_test.cc b/test/libapt/hashsums_test.cc index 3da89052b..d743faec6 100644 --- a/test/libapt/hashsums_test.cc +++ b/test/libapt/hashsums_test.cc @@ -1,12 +1,15 @@ +#include <config.h> + #include <apt-pkg/md5.h> #include <apt-pkg/sha1.h> #include <apt-pkg/sha2.h> #include <apt-pkg/strutl.h> #include <apt-pkg/hashes.h> #include <apt-pkg/fileutl.h> -#include <iostream> -#include <stdio.h> +#include <iostream> +#include <stdlib.h> +#include <string> #include "assert.h" @@ -43,24 +46,29 @@ template <class T> void TestMill(const char *Out) int main(int argc, char** argv) { + if (argc != 6) { + std::cout << "Five parameter expected - given " << argc << std::endl; + return 100; + } + // test HashSumValue which doesn't calculate but just stores sums { - string md5sum = argv[2]; + std::string md5sum = argv[2]; MD5SumValue md5(md5sum); equals(md5.Value(), md5sum); } { - string sha1sum = argv[3]; + std::string sha1sum = argv[3]; SHA1SumValue sha1(sha1sum); equals(sha1.Value(), sha1sum); } { - string sha2sum = argv[4]; + std::string sha2sum = argv[4]; SHA256SumValue sha2(sha2sum); equals(sha2.Value(), sha2sum); } { - string sha2sum = argv[5]; + std::string sha2sum = argv[5]; SHA512SumValue sha2(sha2sum); equals(sha2.Value(), sha2sum); } diff --git a/test/libapt/indexcopytosourcelist_test.cc b/test/libapt/indexcopytosourcelist_test.cc index 69d8fae86..e04ab261b 100644 --- a/test/libapt/indexcopytosourcelist_test.cc +++ b/test/libapt/indexcopytosourcelist_test.cc @@ -1,8 +1,11 @@ +#include <config.h> + #include <apt-pkg/configuration.h> #include <apt-pkg/aptconfiguration.h> #include <apt-pkg/indexcopy.h> #include <string> +#include <stdio.h> #include "assert.h" @@ -12,14 +15,14 @@ public: IndexCopy::ConvertToSourceList(CD, Path); return Path; } - bool GetFile(std::string &Filename,unsigned long long &Size) { return false; } - bool RewriteEntry(FILE *Target,std::string File) { return false; } + bool GetFile(std::string &/*Filename*/, unsigned long long &/*Size*/) { return false; } + bool RewriteEntry(FILE * /*Target*/, std::string /*File*/) { return false; } const char *GetFileName() { return NULL; } const char *Type() { return NULL; } }; -int main(int argc, char const *argv[]) { +int main() { NoCopy ic; std::string const CD("/media/cdrom/"); diff --git a/test/libapt/install_progress_test.cc b/test/libapt/install_progress_test.cc new file mode 100644 index 000000000..be1a3411e --- /dev/null +++ b/test/libapt/install_progress_test.cc @@ -0,0 +1,30 @@ +#include <config.h> + +#include <apt-pkg/install-progress.h> + +#include <string> + +#include "assert.h" + +int main() { + APT::Progress::PackageManagerFancy p; + std::string s; + + s= p.GetTextProgressStr(0.5, 60); + equals(s.size(), 60); + + s= p.GetTextProgressStr(0.5, 4); + equals(s, "[#.]"); + + s= p.GetTextProgressStr(0.1, 12); + equals(s, "[#.........]"); + + s= p.GetTextProgressStr(0.9, 12); + equals(s, "[#########.]"); + + // deal with incorrect inputs gracefully (or should we die instead?) + s= p.GetTextProgressStr(-999, 12); + equals(s, ""); + + return 0; +} diff --git a/test/libapt/makefile b/test/libapt/makefile index a8e053d6e..e03b5e6aa 100644 --- a/test/libapt/makefile +++ b/test/libapt/makefile @@ -94,6 +94,12 @@ SLIBS = -lapt-pkg SOURCE = cdromreducesourcelist_test.cc include $(PROGRAM_H) +# test cdroms FindMountPointForDevice for udev autodetection +PROGRAM = CdromFindMountPointForDevice${BASENAME} +SLIBS = -lapt-pkg +SOURCE = cdromfindmountpointfordevice_test.cc +include $(PROGRAM_H) + # test IndexCopy::ConvertToSourceList PROGRAM = IndexCopyToSourceList${BASENAME} SLIBS = -lapt-pkg @@ -117,3 +123,9 @@ SLIBS = -lapt-pkg SOURCE = sourcelist_test.cc include $(PROGRAM_H) +# test install-progress +PROGRAM = InstallProgress${BASENAME} +SLIBS = -lapt-pkg +SOURCE = install_progress_test.cc +include $(PROGRAM_H) + diff --git a/test/libapt/parsedepends_test.cc b/test/libapt/parsedepends_test.cc index e95016240..5564e2bc0 100644 --- a/test/libapt/parsedepends_test.cc +++ b/test/libapt/parsedepends_test.cc @@ -1,16 +1,24 @@ +#include <config.h> + #include <apt-pkg/deblistparser.h> #include <apt-pkg/configuration.h> +#include <apt-pkg/pkgcache.h> + +#include <string.h> +#include <string> #include "assert.h" -int main(int argc,char *argv[]) { +int main() { std::string Package; std::string Version; unsigned int Op = 5; unsigned int Null = 0; bool StripMultiArch = true; bool ParseArchFlags = false; + bool ParseRestrictionsList = false; _config->Set("APT::Architecture","amd64"); + _config->Set("APT::Build-Profiles","stage1"); const char* Depends = "debhelper:any (>= 5.0), " @@ -27,6 +35,9 @@ int main(int argc,char *argv[]) { "os-for-me [ linux-any ], " "cpu-not-for-me [ any-armel ], " "os-not-for-me [ kfreebsd-any ], " + "not-in-stage1 <!profile.stage1>, " + "not-in-stage1-or-nodoc <!profile.nodoc !profile.stage1>, " + "only-in-stage1 <unknown.unknown profile.stage1>, " "overlord-dev:any (= 7.15.3~) | overlord-dev:native (>> 7.15.5), " ; @@ -39,7 +50,7 @@ test: const char* Start = Depends; const char* End = Depends + strlen(Depends); - Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch); + Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch, ParseRestrictionsList); if (StripMultiArch == true) equals("debhelper", Package); else @@ -47,7 +58,7 @@ test: equals("5.0", Version); equals(Null | pkgCache::Dep::GreaterEq, Op); - Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch); + Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch, ParseRestrictionsList); if (StripMultiArch == true) equals("libdb-dev", Package); else @@ -55,7 +66,7 @@ test: equals("", Version); equals(Null | pkgCache::Dep::NoOp, Op); - Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch); + Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch, ParseRestrictionsList); if (StripMultiArch == true) equals("gettext", Package); else @@ -63,7 +74,7 @@ test: equals("0.12", Version); equals(Null | pkgCache::Dep::LessEq, Op); - Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch); + Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch, ParseRestrictionsList); if (StripMultiArch == true) equals("libcurl4-gnutls-dev", Package); else @@ -71,104 +82,131 @@ test: equals("", Version); equals(Null | pkgCache::Dep::Or, Op); - Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch); + Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch, ParseRestrictionsList); equals("libcurl3-gnutls-dev", Package); equals("7.15.5", Version); equals(Null | pkgCache::Dep::Greater, Op); - Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch); + Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch, ParseRestrictionsList); equals("debiandoc-sgml", Package); equals("", Version); equals(Null | pkgCache::Dep::NoOp, Op); - Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch); + Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch, ParseRestrictionsList); equals("apt", Package); equals("0.7.25", Version); equals(Null | pkgCache::Dep::GreaterEq, Op); if (ParseArchFlags == true) { - Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch); + Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch, ParseRestrictionsList); equals("", Package); // not-for-me } else { - equals(true, 0 == debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch)); + equals(true, 0 == debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch, ParseRestrictionsList)); Start = strstr(Start, ","); Start++; } if (ParseArchFlags == true) { - Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch); + Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch, ParseRestrictionsList); equals("only-for-me", Package); equals("", Version); equals(Null | pkgCache::Dep::NoOp, Op); } else { - equals(true, 0 == debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch)); + equals(true, 0 == debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch, ParseRestrictionsList)); Start = strstr(Start, ","); Start++; } if (ParseArchFlags == true) { - Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch); + Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch, ParseRestrictionsList); equals("any-for-me", Package); equals("", Version); equals(Null | pkgCache::Dep::NoOp, Op); } else { - equals(true, 0 == debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch)); + equals(true, 0 == debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch, ParseRestrictionsList)); Start = strstr(Start, ","); Start++; } if (ParseArchFlags == true) { - Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch); + Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch, ParseRestrictionsList); equals("not-for-darwin", Package); equals("", Version); equals(Null | pkgCache::Dep::NoOp, Op); } else { - equals(true, 0 == debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch)); + equals(true, 0 == debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch, ParseRestrictionsList)); Start = strstr(Start, ","); Start++; } if (ParseArchFlags == true) { - Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch); + Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch, ParseRestrictionsList); equals("cpu-for-me", Package); equals("", Version); equals(Null | pkgCache::Dep::NoOp, Op); } else { - equals(true, 0 == debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch)); + equals(true, 0 == debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch, ParseRestrictionsList)); Start = strstr(Start, ","); Start++; } if (ParseArchFlags == true) { - Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch); + Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch, ParseRestrictionsList); equals("os-for-me", Package); equals("", Version); equals(Null | pkgCache::Dep::NoOp, Op); } else { - equals(true, 0 == debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch)); + equals(true, 0 == debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch, ParseRestrictionsList)); Start = strstr(Start, ","); Start++; } if (ParseArchFlags == true) { - Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch); + Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch, ParseRestrictionsList); equals("", Package); // cpu-not-for-me } else { - equals(true, 0 == debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch)); + equals(true, 0 == debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch, ParseRestrictionsList)); Start = strstr(Start, ","); Start++; } if (ParseArchFlags == true) { - Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch); + Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch, ParseRestrictionsList); equals("", Package); // os-not-for-me } else { - equals(true, 0 == debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch)); + equals(true, 0 == debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch, ParseRestrictionsList)); + Start = strstr(Start, ","); + Start++; + } + + if (ParseRestrictionsList == true) { + Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch, ParseRestrictionsList); + equals("", Package); // not-in-stage1 + } else { + equals(true, 0 == debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch, ParseRestrictionsList)); + Start = strstr(Start, ","); + Start++; + } + + if (ParseRestrictionsList == true) { + Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch, ParseRestrictionsList); + equals("", Package); // not-in-stage1-or-in-nodoc + } else { + equals(true, 0 == debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch, ParseRestrictionsList)); + Start = strstr(Start, ","); + Start++; + } + + if (ParseRestrictionsList == true) { + Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch, ParseRestrictionsList); + equals("only-in-stage1", Package); + } else { + equals(true, 0 == debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch, ParseRestrictionsList)); Start = strstr(Start, ","); Start++; } - Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch); + Start = debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch, ParseRestrictionsList); if (StripMultiArch == true) equals("overlord-dev", Package); else @@ -176,7 +214,7 @@ test: equals("7.15.3~", Version); equals(Null | pkgCache::Dep::Equals | pkgCache::Dep::Or, Op); - debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch); + debListParser::ParseDepends(Start, End, Package, Version, Op, ParseArchFlags, StripMultiArch, ParseRestrictionsList); if (StripMultiArch == true) equals("overlord-dev", Package); else @@ -185,11 +223,13 @@ test: equals(Null | pkgCache::Dep::Greater, Op); if (StripMultiArch == false) - ParseArchFlags = true; + if (ParseArchFlags == false) + ParseRestrictionsList = !ParseRestrictionsList; + ParseArchFlags = !ParseArchFlags; StripMultiArch = !StripMultiArch; runner++; - if (runner < 4) + if (runner < 8) goto test; // this is the prove: tests are really evil ;) return 0; diff --git a/test/libapt/run-tests b/test/libapt/run-tests index a056f31f9..0baedcf9e 100755 --- a/test/libapt/run-tests +++ b/test/libapt/run-tests @@ -108,6 +108,14 @@ do "${tmppath}/dists/unstable/InRelease" \ "${tmppath}/dists/broken/Release.gpg" ln -s "${tmppath}/dists/unstable" "${tmppath}/dists/sid" + elif [ $name = "CdromFindMountPointForDevice${EXT}" ]; then + tmppath=$(mktemp) + echo 'rootfs / rootfs rw 0 0 +sysfs /sys sysfs rw,nosuid,nodev,noexec,relatime 0 0 +sysfs0 /sys0 sysfs rw,nosuid,nodev,noexec,relatime 0 0 +/dev/disk/by-uuid/fadcbc52-6284-4874-aaaa-dcee1f05fe21 / ext4 rw,relatime,errors=remount-ro,data=ordered 0 0 +/dev/sda1 /boot/efi vfat rw,nosuid,nodev,noexec,relatime,fmask=0000,dmask=0000,allow_utime=0022,codepage=437,iocharset=utf8,shortname=lower,quiet,utf8,errors=remount-ro,rw,nosuid,nodev,noexec,relatime,fmask=0000,dmask=0000,allow_utime=0022,codepage=437,iocharset=utf8,shortname=lower,quiet,utf8,errors=remount-ro,rw,nosuid,nodev,noexec,relatime,fmask=0000,dmask=0000,allow_utime=0022,codepage=437,iocharset=utf8,shortname=lower,quiet,utf8,errors=remount-ro,rw,nosuid,nodev,noexec,relatime,fmask=0000,dmask=0000,allow_utime=0022,codepage=437,iocharset=utf8,shortname=lower,quiet,utf8,errors=remount-ro 0 0 +tmpfs /tmp tmpfs rw,nosuid,nodev,relatime 0 0' > $tmppath fi echo -n "Testing with ${NAME} " diff --git a/test/libapt/sourcelist_test.cc b/test/libapt/sourcelist_test.cc index 0300ce929..71aa54f1e 100644 --- a/test/libapt/sourcelist_test.cc +++ b/test/libapt/sourcelist_test.cc @@ -1,15 +1,20 @@ +#include <config.h> + +#include <apt-pkg/configuration.h> #include <apt-pkg/sourcelist.h> -#include <apt-pkg/tagfile.h> +#include <apt-pkg/fileutl.h> -#include "assert.h" +#include <string> #include <stdlib.h> #include <string.h> #include <unistd.h> +#include "assert.h" + char *tempfile = NULL; int tempfile_fd = -1; -void remove_tmpfile(void) +static void remove_tmpfile(void) { if (tempfile_fd > 0) close(tempfile_fd); @@ -19,7 +24,7 @@ void remove_tmpfile(void) } } -int main(int argc, char *argv[]) +int main() { _config->Set("APT::Sources::Use-Deb822", true); diff --git a/test/libapt/strutil_test.cc b/test/libapt/strutil_test.cc index 8215654d0..618f4daba 100644 --- a/test/libapt/strutil_test.cc +++ b/test/libapt/strutil_test.cc @@ -1,8 +1,13 @@ +#include <config.h> + #include <apt-pkg/strutl.h> +#include <string> +#include <vector> + #include "assert.h" -int main(int argc,char *argv[]) +int main() { std::string input, output, expected; @@ -44,7 +49,7 @@ int main(int argc,char *argv[]) // Split input = "status: libnet1:amd64: unpacked"; - vector<std::string> result = StringSplit(input, ": "); + std::vector<std::string> result = StringSplit(input, ": "); equals(result[0], "status"); equals(result[1], "libnet1:amd64"); equals(result[2], "unpacked"); diff --git a/test/libapt/tagfile_test.cc b/test/libapt/tagfile_test.cc index d12c74c95..aaf46e3e9 100644 --- a/test/libapt/tagfile_test.cc +++ b/test/libapt/tagfile_test.cc @@ -1,15 +1,19 @@ +#include <config.h> + #include <apt-pkg/fileutl.h> #include <apt-pkg/tagfile.h> -#include "assert.h" +#include <string> #include <stdlib.h> #include <string.h> #include <unistd.h> +#include "assert.h" + char *tempfile = NULL; int tempfile_fd = -1; -void remove_tmpfile(void) +static void remove_tmpfile(void) { if (tempfile_fd > 0) close(tempfile_fd); @@ -19,7 +23,7 @@ void remove_tmpfile(void) } } -int main(int argc, char *argv[]) +int main() { FileFd fd; const char contents[] = "FieldA-12345678: the value of the field"; diff --git a/test/libapt/uri_test.cc b/test/libapt/uri_test.cc index 8216ade71..6559f1390 100644 --- a/test/libapt/uri_test.cc +++ b/test/libapt/uri_test.cc @@ -1,5 +1,9 @@ +#include <config.h> + #include <apt-pkg/strutl.h> +#include <string> + #include "assert.h" int main() { diff --git a/vendor/debian/makefile b/vendor/debian/makefile deleted file mode 100644 index 25bc0350c..000000000 --- a/vendor/debian/makefile +++ /dev/null @@ -1,17 +0,0 @@ -# -*- make -*- -BASE=../.. -SUBDIR=vendor/debian - -# Bring in the default rules -include ../../buildlib/defaults.mak - -doc binary manpages: sources.list - -sources.list: sources.list.in ../../doc/apt-verbatim.ent - sed -e 's#&stable-codename;#$(shell ../getinfo debian-stable-codename)#g' $< > $@ - -clean: clean/sources.list - -clean/sources.list: - rm -f sources.list - diff --git a/vendor/debian/sources.list.in b/vendor/debian/sources.list.in index 00db2f8cd..2e430296a 100644 --- a/vendor/debian/sources.list.in +++ b/vendor/debian/sources.list.in @@ -1,10 +1,8 @@ # See sources.list(5) manpage for more information # Remember that CD-ROMs, DVDs and such are managed through the apt-cdrom tool. -deb http://us.archive.ubuntu.com/ubuntu &ubuntu-codename; main restricted -deb-src http://us.archive.ubuntu.com/ubuntu &ubuntu-codename; main restricted +deb http://ftp.us.debian.org/debian &debian-stable-codename; main contrib non-free +deb http://security.debian.org &debian-stable-codename;/updates main contrib non-free -deb http://security.ubuntu.com/ubuntu &ubuntu-codename;-security main restricted -deb-src http://security.ubuntu.com/ubuntu &ubuntu-codename;-security main restricted - -deb http://us.archive.ubuntu.com/ubuntu &ubuntu-codename;-updates main restricted -deb-src http://us.archive.ubuntu.com/ubuntu &ubuntu-codename;-updates main restricted +# Uncomment if you want the apt-get source function to work +#deb-src http://ftp.us.debian.org/debian &debian-stable-codename; main contrib non-free +#deb-src http://security.debian.org &debian-stable-codename;/updates main contrib non-free diff --git a/vendor/getinfo b/vendor/getinfo index 4422f5d78..d45c0fca2 100755 --- a/vendor/getinfo +++ b/vendor/getinfo @@ -3,6 +3,7 @@ BASEDIR="$(readlink -f "$(dirname $0)")" INFO="$(readlink -f "${BASEDIR}/current/apt-vendor.ent")" +VERBATIM="${BASEDIR}/../doc/apt-verbatim.ent" if [ -z "$INFO" ] || [ ! -e "$INFO" ]; then echo >&2 'The current vendor is not valid or not chosen by the buildsystem yet.' @@ -20,17 +21,20 @@ getfield() { } case "$1" in -debian-stable-codename) - getrawfield 'stable-codename' "${BASEDIR}/../doc/apt-verbatim.ent" - ;; -tanglu-codename) - getrawfield 'tanglu-codename' "${BASEDIR}/../doc/apt-verbatim.ent" +debian-stable-codename|debian-oldstable-codename|debian-testing-codename) + getrawfield "${1#*-}" "$VERBATIM" ;; ubuntu-codename) - getrawfield 'ubuntu-codename' "${BASEDIR}/../doc/apt-verbatim.ent" + getrawfield "$1" "$VERBATIM" + ;; +keyring-package|keyring-filename|keyring-master-filename|keyring-removed-filename|keyring-uri|current-codename) + exec $0 'vendor' "$@" + ;; +vendor) + getfield "$2" ;; -keyring-package|keyring-filename|keyring-master-filename|keyring-removed-filename|keyring-uri|current-distro-codename) - getfield "$1" +verbatim) + getfield "$2" "$VERBATIM" ;; *) echo >&2 "Unknown data field $1 requested" diff --git a/vendor/makefile b/vendor/makefile index 619c603fb..0701a03eb 100644 --- a/vendor/makefile +++ b/vendor/makefile @@ -14,11 +14,9 @@ veryclean: veryclean/subdirs dirs: dirs/subdirs manpages: manpages/subdirs -all/subdirs binary/subdirs doc/subdirs dirs/subdirs manpages/subdirs: - $(MAKE) -C current $(patsubst %/subdirs,%,$@) - -clean/subdirs veryclean/subdirs: - test ! -e current || $(MAKE) -C current $(patsubst %/subdirs,%,$@) +all/subdirs binary/subdirs doc/subdirs dirs/subdirs manpages/subdirs clean/subdirs veryclean/subdirs: + test ! -e current/makefile || $(MAKE) -C current $(patsubst %/subdirs,%,$@) + test ! -e current/makefile.auto || $(MAKE) -C current -f makefile.auto $(patsubst %/subdirs,%,$@) current: rm -f $@ @@ -29,17 +27,29 @@ current: break; \ fi; \ done - # if we haven't found a specific, look for a deriving in hardcoded order - test -e $@ || \ - (dpkg-vendor --derives-from ubuntu && cp ln -s ubuntu $@ ) || \ - (dpkg-vendor --derives-from tanglu && cp ln -s tanglu $@ ) || \ - ln -s debian $@ + # if we haven't found a specific, look for a deriving + # we do ubuntu and debian last as those are the biggest families + # and would therefore potentially 'shadow' smaller families + # (especially debian as it sorts quiet early) + if ! test -e $@; then \ + find -mindepth 1 -maxdepth 1 -type d | cut -d'/' -f 2 | while read DISTRO; do \ + if [ "$$DISTRO" = 'debian' -o "$$DISTRO" = 'ubuntu' ]; then continue; fi; \ + if dpkg-vendor --derives-from $$DISTRO; then \ + ln -s $$DISTRO $@; \ + break; \ + fi; \ + done; \ + test -e $@ || \ + (dpkg-vendor --derives-from ubuntu && cp ln -s ubuntu $@ ) || \ + ln -s debian $@; \ + fi + if test ! -e current/makefile; then \ + sed "s#@@VENDOR@@#$(notdir $(shell readlink -f current))#" vendor.makefile > current/makefile.auto; \ + fi .PHONY: clean veryclean all binary vendor -.NOPARALLEL: clean: clean/current -clean/current: - test ! -e current || $(MAKE) -C current clean - rm -f current +clean/current: clean/subdirs + rm -f current/makefile.auto current diff --git a/vendor/raspbian/makefile b/vendor/raspbian/makefile deleted file mode 100644 index c4464900f..000000000 --- a/vendor/raspbian/makefile +++ /dev/null @@ -1,16 +0,0 @@ -# -*- make -*- -BASE=../.. -SUBDIR=vendor/raspbian - -# Bring in the default rules -include ../../buildlib/defaults.mak - -doc binary manpages: sources.list - -sources.list: sources.list.in ../../doc/apt-verbatim.ent - sed -e 's#&stable-codename;#$(shell ../getinfo debian-stable-codename)#g' $< > $@ - -clean: clean/sources.list - -clean/sources.list: - rm -f sources.list diff --git a/vendor/steamos/apt-vendor.ent b/vendor/steamos/apt-vendor.ent index 69bb254ef..dc1b798e6 100644 --- a/vendor/steamos/apt-vendor.ent +++ b/vendor/steamos/apt-vendor.ent @@ -3,6 +3,6 @@ <!ENTITY keyring-package "<package>valve-archive-keyring</package>"> <!ENTITY keyring-filename "<filename>/usr/share/keyrings/valve-archive-keyring.gpg</filename>"> <!ENTITY keyring-removed-filename "<filename>/usr/share/keyrings/valve-archive-removed-keys.gpg</filename>"> -<!ENTITY current-distro-codename "alchemist"> <!ENTITY keyring-master-filename ""> <!ENTITY keyring-uri ""> +<!ENTITY current-codename "alchemist"> diff --git a/vendor/steamos/makefile b/vendor/steamos/makefile deleted file mode 100644 index 9ee0e65a2..000000000 --- a/vendor/steamos/makefile +++ /dev/null @@ -1,17 +0,0 @@ -# -*- make -*- -BASE=../.. -SUBDIR=vendor/steamos - -# Bring in the default rules -include ../../buildlib/defaults.mak - -doc binary manpages: sources.list - -sources.list: sources.list.in ../../doc/apt-verbatim.ent - sed -e 's#&stable-codename;#$(shell ../getinfo debian-stable-codename)#g' $< | sed -e 's#&steamos-codename;#$(shell ../getinfo current-distro-codename)#g' > $@ - -clean: clean/sources.list - -clean/sources.list: - rm -f sources.list - diff --git a/vendor/steamos/sources.list.in b/vendor/steamos/sources.list.in index fed6c3818..69174d090 100644 --- a/vendor/steamos/sources.list.in +++ b/vendor/steamos/sources.list.in @@ -1,5 +1,5 @@ # See sources.list(5) manpage for more information # Remember that CD-ROMs, DVDs and such are managed through the apt-cdrom tool. -deb http://repo.steampowered.com/steamos &steamos-codename; main contrib non-free -deb-src http://repo.steampowered.com/steamos &steamos-codename; main contrib non-free +deb http://repo.steampowered.com/steamos ¤t-codename; main contrib non-free +deb-src http://repo.steampowered.com/steamos ¤t-codename; main contrib non-free diff --git a/vendor/tanglu/apt-vendor.ent b/vendor/tanglu/apt-vendor.ent index 4b70a5f82..d2442209c 100644 --- a/vendor/tanglu/apt-vendor.ent +++ b/vendor/tanglu/apt-vendor.ent @@ -5,3 +5,4 @@ <!ENTITY keyring-removed-filename "<filename>/usr/share/keyrings/tanglu-archive-removed-keys.gpg</filename>"> <!ENTITY keyring-master-filename ""> <!ENTITY keyring-uri ""> +<!ENTITY current-codename "bartholomea"> diff --git a/vendor/tanglu/makefile b/vendor/tanglu/makefile deleted file mode 100644 index 9fe680bc6..000000000 --- a/vendor/tanglu/makefile +++ /dev/null @@ -1,16 +0,0 @@ -# -*- make -*- -BASE=../.. -SUBDIR=vendor/tanglu - -# Bring in the default rules -include ../../buildlib/defaults.mak - -doc binary manpages: sources.list - -sources.list: sources.list.in ../../doc/apt-verbatim.ent - sed -e 's#&tanglu-codename;#$(shell ../getinfo tanglu-codename)#g' $< > $@ - -clean: clean/sources.list - -clean/sources.list: - rm -f sources.list diff --git a/vendor/tanglu/sources.list.in b/vendor/tanglu/sources.list.in index dfa219046..ce95e70c2 100644 --- a/vendor/tanglu/sources.list.in +++ b/vendor/tanglu/sources.list.in @@ -1,7 +1,7 @@ # See sources.list(5) manpage for more information -deb http://archive.tanglu.org/tanglu &tanglu-codename; main contrib non-free -#deb-src http://archive.tanglu.org/tanglu &tanglu-codename; main contrib non-free +deb http://archive.tanglu.org/tanglu ¤t-codename; main contrib non-free +#deb-src http://archive.tanglu.org/tanglu ¤t-codename; main contrib non-free -#deb http://archive.tanglu.org/tanglu &tanglu-codename;-updates main contrib non-free -#deb-src http://archive.tanglu.org/tanglu &tanglu-codename;-updates main contrib non-free +#deb http://archive.tanglu.org/tanglu ¤t-codename;-updates main contrib non-free +#deb-src http://archive.tanglu.org/tanglu ¤t-codename;-updates main contrib non-free diff --git a/vendor/ubuntu/makefile b/vendor/ubuntu/makefile deleted file mode 100644 index afcaaf718..000000000 --- a/vendor/ubuntu/makefile +++ /dev/null @@ -1,16 +0,0 @@ -# -*- make -*- -BASE=../.. -SUBDIR=vendor/ubuntu - -# Bring in the default rules -include ../../buildlib/defaults.mak - -doc binary manpages: sources.list - -sources.list: sources.list.in ../../doc/apt-verbatim.ent - sed -e 's#&ubuntu-codename;#$(shell ../getinfo ubuntu-codename)#g' $< > $@ - -clean: clean/sources.list - -clean/sources.list: - rm -f sources.list diff --git a/vendor/vendor.makefile b/vendor/vendor.makefile new file mode 100644 index 000000000..40b35ea3d --- /dev/null +++ b/vendor/vendor.makefile @@ -0,0 +1,21 @@ +# -*- make -*- +BASE=../.. +SUBDIR=vendor/@@VENDOR@@ + +# Bring in the default rules +include ../../buildlib/defaults.mak + +doc binary manpages: sources.list + +sources.list: sources.list.in ../../doc/apt-verbatim.ent + sed -e 's#&debian-stable-codename;#$(shell ../getinfo debian-stable-codename)#g' \ + -e 's#&debian-oldstable-codename;#$(shell ../getinfo debian-oldstable-codename)#g' \ + -e 's#&debian-testing-codename;#$(shell ../getinfo debian-testing-codename)#g' \ + -e 's#&ubuntu-codename;#$(shell ../getinfo ubuntu-codename)#g' \ + -e 's#¤t-codename;#$(shell ../getinfo current-codename)#g' \ + $< > $@ + +clean: clean/sources.list + +clean/sources.list: + rm -f sources.list |