diff options
96 files changed, 23661 insertions, 16546 deletions
diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc index 752bc6a99..2c4ce91a0 100644 --- a/apt-pkg/acquire-item.cc +++ b/apt-pkg/acquire-item.cc @@ -1060,12 +1060,6 @@ void pkgAcqMetaIndex::Done(string Message,unsigned long Size,string Hash, /*{{{* // all cool, move Release file into place Complete = true; - - string FinalFile = _config->FindDir("Dir::State::lists"); - FinalFile += URItoFileName(RealURI); - Rename(DestFile,FinalFile); - chmod(FinalFile.c_str(),0644); - DestFile = FinalFile; } else { @@ -1092,8 +1086,18 @@ void pkgAcqMetaIndex::Done(string Message,unsigned long Size,string Hash, /*{{{* Desc.URI = "gpgv:" + SigFile; QueueURI(Desc); Mode = "gpgv"; + return; } } + + if (Complete == true) + { + string FinalFile = _config->FindDir("Dir::State::lists"); + FinalFile += URItoFileName(RealURI); + Rename(DestFile,FinalFile); + chmod(FinalFile.c_str(),0644); + DestFile = FinalFile; + } } /*}}}*/ void pkgAcqMetaIndex::RetrievalDone(string Message) /*{{{*/ @@ -1323,7 +1327,7 @@ void pkgAcqMetaIndex::Failed(string Message,pkgAcquire::MethodConfig *Cnf) Status = StatTransientNetworkError; _error->Warning(_("A error occurred during the signature " "verification. The repository is not updated " - "and the previous index files will be used." + "and the previous index files will be used. " "GPG error: %s: %s\n"), Desc.Description.c_str(), LookupTag(Message,"Message").c_str()); diff --git a/apt-pkg/acquire.cc b/apt-pkg/acquire.cc index 6ec557397..9478cdfb4 100644 --- a/apt-pkg/acquire.cc +++ b/apt-pkg/acquire.cc @@ -74,12 +74,12 @@ bool pkgAcquire::Setup(pkgAcquireStatus *Progress, string const &Lock) string const archivesDir = _config->FindDir("Dir::Cache::Archives"); string const partialArchivesDir = archivesDir + "partial/"; - if (CheckDirectory(_config->FindDir("Dir::State"), partialListDir) == false && - CheckDirectory(listDir, partialListDir) == false) + if (CreateAPTDirectoryIfNeeded(_config->FindDir("Dir::State"), partialListDir) == false && + CreateAPTDirectoryIfNeeded(listDir, partialListDir) == false) return _error->Errno("Acquire", _("List directory %spartial is missing."), listDir.c_str()); - if (CheckDirectory(_config->FindDir("Dir::Cache"), partialArchivesDir) == false && - CheckDirectory(archivesDir, partialArchivesDir) == false) + if (CreateAPTDirectoryIfNeeded(_config->FindDir("Dir::Cache"), partialArchivesDir) == false && + CreateAPTDirectoryIfNeeded(archivesDir, partialArchivesDir) == false) return _error->Errno("Acquire", _("Archives directory %spartial is missing."), archivesDir.c_str()); if (Lock.empty() == true || _config->FindB("Debug::NoLocking", false) == true) diff --git a/apt-pkg/algorithms.cc b/apt-pkg/algorithms.cc index 3c8711b74..961f5c2fa 100644 --- a/apt-pkg/algorithms.cc +++ b/apt-pkg/algorithms.cc @@ -987,6 +987,23 @@ bool pkgProblemResolver::Resolve(bool BrokenFix) pkgCache::VerIterator Ver(Cache,*V); pkgCache::PkgIterator Pkg = Ver.ParentPkg(); + /* This is a conflicts, and the version we are looking + at is not the currently selected version of the + package, which means it is not necessary to + remove/keep */ + if (Cache[Pkg].InstallVer != Ver && + (Start->Type == pkgCache::Dep::Conflicts || + Start->Type == pkgCache::Dep::DpkgBreaks || + Start->Type == pkgCache::Dep::Obsoletes)) + { + if (Debug) + clog << " Conflicts//Breaks against version " + << Ver.VerStr() << " for " << Pkg.Name() + << " but that is not InstVer, ignoring" + << endl; + continue; + } + if (Debug == true) clog << " Considering " << Pkg.FullName(false) << ' ' << (int)Scores[Pkg->ID] << " as a solution to " << I.FullName(false) << ' ' << (int)Scores[I->ID] << endl; @@ -1069,22 +1086,14 @@ bool pkgProblemResolver::Resolve(bool BrokenFix) } else { - /* This is a conflicts, and the version we are looking - at is not the currently selected version of the - package, which means it is not necessary to - remove/keep */ - if (Cache[Pkg].InstallVer != Ver && - (Start->Type == pkgCache::Dep::Conflicts || - Start->Type == pkgCache::Dep::Obsoletes)) - continue; - if (Start->Type == pkgCache::Dep::DpkgBreaks) { // first, try upgradring the package, if that // does not help, the breaks goes onto the // kill list + // // FIXME: use DoUpgrade(Pkg) instead? - if (Cache[End] & pkgDepCache::DepGCVer) + if (Cache[End] & pkgDepCache::DepGCVer) { if (Debug) clog << " Upgrading " << Pkg.FullName(false) << " due to Breaks field in " << I.FullName(false) << endl; diff --git a/apt-pkg/contrib/fileutl.cc b/apt-pkg/contrib/fileutl.cc index 94d994e8b..bf07f6008 100644 --- a/apt-pkg/contrib/fileutl.cc +++ b/apt-pkg/contrib/fileutl.cc @@ -251,11 +251,11 @@ bool CreateDirectory(string const &Parent, string const &Path) return true; } /*}}}*/ -// CheckDirectory - ensure that the given directory exists /*{{{*/ +// CreateAPTDirectoryIfNeeded - ensure that the given directory exists /*{{{*/ // --------------------------------------------------------------------- /* a small wrapper around CreateDirectory to check if it exists and to remove the trailing "/apt/" from the parent directory if needed */ -bool CheckDirectory(string const &Parent, string const &Path) +bool CreateAPTDirectoryIfNeeded(string const &Parent, string const &Path) { if (DirectoryExists(Path) == true) return true; @@ -915,8 +915,27 @@ unsigned long FileFd::Tell() /* */ unsigned long FileFd::Size() { - //TODO: For gz, do we need the actual file size here or the uncompressed length? struct stat Buf; + long size; + off_t orig_pos; + + if (gz) + { + /* unfortunately zlib.h doesn't provide a gzsize(), so we have to do + * this ourselves; the original (uncompressed) file size is the last 32 + * bits of the file */ + orig_pos = lseek(iFd, 0, SEEK_CUR); + if (lseek(iFd, -4, SEEK_END) < 0) + return _error->Errno("lseek","Unable to seek to end of gzipped file"); + if (read(iFd, &size, 4) != 4) + return _error->Errno("read","Unable to read original size of gzipped file"); + size &= 0xFFFFFFFF; + + if (lseek(iFd, orig_pos, SEEK_SET) < 0) + return _error->Errno("lseek","Unable to seek in gzipped file"); + return size; + } + if (fstat(iFd,&Buf) != 0) return _error->Errno("fstat","Unable to determine the file size"); return Buf.st_size; diff --git a/apt-pkg/contrib/fileutl.h b/apt-pkg/contrib/fileutl.h index f79c9032f..419506273 100644 --- a/apt-pkg/contrib/fileutl.h +++ b/apt-pkg/contrib/fileutl.h @@ -101,7 +101,7 @@ bool CreateDirectory(string const &Parent, string const &Path); * /apt/ will be removed before CreateDirectory call. * \param Path which should exist after (successful) call */ -bool CheckDirectory(string const &Parent, string const &Path); +bool CreateAPTDirectoryIfNeeded(string const &Parent, string const &Path); std::vector<string> GetListOfFilesInDir(string const &Dir, string const &Ext, bool const &SortList, bool const &AllowNoExt=false); diff --git a/apt-pkg/contrib/strutl.cc b/apt-pkg/contrib/strutl.cc index c1844de40..987f4c3a4 100644 --- a/apt-pkg/contrib/strutl.cc +++ b/apt-pkg/contrib/strutl.cc @@ -340,13 +340,13 @@ string SizeToStr(double Size) { if (ASize < 100 && I != 0) { - sprintf(S,"%'.1f%c",ASize,Ext[I]); + sprintf(S,"%'.1f %c",ASize,Ext[I]); break; } if (ASize < 10000) { - sprintf(S,"%'.0f%c",ASize,Ext[I]); + sprintf(S,"%'.0f %c",ASize,Ext[I]); break; } ASize /= 1000.0; diff --git a/apt-pkg/deb/debindexfile.cc b/apt-pkg/deb/debindexfile.cc index ba5b3f266..a89a2574f 100644 --- a/apt-pkg/deb/debindexfile.cc +++ b/apt-pkg/deb/debindexfile.cc @@ -149,10 +149,11 @@ bool debSourcesIndex::Exists() const /* */ unsigned long debSourcesIndex::Size() const { - struct stat S; - if (stat(IndexFile("Sources").c_str(),&S) != 0) + FileFd f = FileFd (IndexFile("Sources"), FileFd::ReadOnlyGzip); + + if (f.Failed()) return 0; - return S.st_size; + return f.Size(); } /*}}}*/ @@ -268,10 +269,11 @@ bool debPackagesIndex::Exists() const /* This is really only used for progress reporting. */ unsigned long debPackagesIndex::Size() const { - struct stat S; - if (stat(IndexFile("Packages").c_str(),&S) != 0) + FileFd f = FileFd (IndexFile("Packages"), FileFd::ReadOnlyGzip); + + if (f.Failed()) return 0; - return S.st_size; + return f.Size(); } /*}}}*/ // PackagesIndex::Merge - Load the index file into a cache /*{{{*/ @@ -458,10 +460,12 @@ bool debTranslationsIndex::Exists() const /* This is really only used for progress reporting. */ unsigned long debTranslationsIndex::Size() const { - struct stat S; - if (stat(IndexFile(Language).c_str(),&S) != 0) + FileFd f = FileFd (IndexFile(Language), FileFd::ReadOnlyGzip); + + if (f.Failed()) return 0; - return S.st_size; + + return f.Size(); } /*}}}*/ // TranslationsIndex::Merge - Load the index file into a cache /*{{{*/ diff --git a/apt-pkg/deb/deblistparser.cc b/apt-pkg/deb/deblistparser.cc index 5fb737970..da8b0271b 100644 --- a/apt-pkg/deb/deblistparser.cc +++ b/apt-pkg/deb/deblistparser.cc @@ -815,6 +815,12 @@ bool debListParser::LoadReleaseInfo(pkgCache::PkgFileIterator &FileI, if (Section.FindFlag("NotAutomatic",FileI->Flags, pkgCache::Flag::NotAutomatic) == false) _error->Warning("Bad NotAutomatic flag"); + if (Section.FindFlag("ButAutomaticUpgrades",FileI->Flags, + pkgCache::Flag::ButAutomaticUpgrades) == false) + _error->Warning("Bad ButAutomaticUpgrades flag"); + // overrule the NotAutomatic setting if needed as they are both present for compatibility + else if ((FileI->Flags & pkgCache::Flag::ButAutomaticUpgrades) == pkgCache::Flag::ButAutomaticUpgrades) + FileI->Flags &= ~pkgCache::Flag::NotAutomatic; return !_error->PendingError(); } diff --git a/apt-pkg/deb/dpkgpm.cc b/apt-pkg/deb/dpkgpm.cc index d3c432ce1..395c3fb1a 100644 --- a/apt-pkg/deb/dpkgpm.cc +++ b/apt-pkg/deb/dpkgpm.cc @@ -641,7 +641,7 @@ void pkgDPkgPM::WriteHistoryTag(string const &tag, string value) bool pkgDPkgPM::OpenLog() { string const logdir = _config->FindDir("Dir::Log"); - if(CheckDirectory(logdir, logdir) == false) + if(CreateAPTDirectoryIfNeeded(logdir, logdir) == false) // FIXME: use a better string after freeze return _error->Error(_("Directory '%s' missing"), logdir.c_str()); diff --git a/apt-pkg/depcache.cc b/apt-pkg/depcache.cc index 018b05e65..0b5d6d8e6 100644 --- a/apt-pkg/depcache.cc +++ b/apt-pkg/depcache.cc @@ -1192,6 +1192,16 @@ bool pkgDepCache::IsDeleteOk(PkgIterator const &Pkg,bool rPurge, std::clog << OutputInDepth(Depth) << "Hold prevents MarkDelete of " << Pkg << " FU=" << FromUser << std::endl; return false; } + else if (FromUser == false && Pkg->CurrentVer == 0) + { + StateCache &P = PkgState[Pkg->ID]; + if (P.InstallVer != 0 && P.Status == 2 && (P.Flags & Flag::Auto) != Flag::Auto) + { + if (DebugMarker == true) + std::clog << OutputInDepth(Depth) << "Manual install request prevents MarkDelete of " << Pkg << std::endl; + return false; + } + } return true; } /*}}}*/ @@ -1615,7 +1625,8 @@ pkgCache::VerIterator pkgDepCache::Policy::GetCandidateVer(PkgIterator const &Pk /* Stash the highest version of a not-automatic source, we use it if there is nothing better */ - if ((J.File()->Flags & Flag::NotAutomatic) != 0) + if ((J.File()->Flags & Flag::NotAutomatic) != 0 || + (J.File()->Flags & Flag::ButAutomaticUpgrades) != 0) { if (Last.end() == true) Last = I; diff --git a/apt-pkg/depcache.h b/apt-pkg/depcache.h index 08e683558..2d3dbdf77 100644 --- a/apt-pkg/depcache.h +++ b/apt-pkg/depcache.h @@ -189,7 +189,7 @@ class pkgDepCache : protected pkgCache::Namespace DefaultRootSetFunc() : Configuration::MatchAgainstConfig("APT::NeverAutoRemove") {}; virtual ~DefaultRootSetFunc() {}; - bool InRootSet(const pkgCache::PkgIterator &pkg) { return pkg.end() == true && Match(pkg.Name()); }; + bool InRootSet(const pkgCache::PkgIterator &pkg) { return pkg.end() == false && Match(pkg.Name()); }; }; struct StateCache diff --git a/apt-pkg/indexcopy.cc b/apt-pkg/indexcopy.cc index 3156778d4..f88d51fc5 100644 --- a/apt-pkg/indexcopy.cc +++ b/apt-pkg/indexcopy.cc @@ -666,7 +666,7 @@ bool SigVerify::RunGPGV(std::string const &File, std::string const &FileGPG, { string const gpgvpath = _config->Find("Dir::Bin::gpg", "/usr/bin/gpgv"); // FIXME: remove support for deprecated APT::GPGV setting - string const trustedFile = _config->FindFile("Dir::Etc::Trusted"); + string const trustedFile = _config->Find("APT::GPGV::TrustedKeyring", _config->FindFile("Dir::Etc::Trusted")); string const trustedPath = _config->FindDir("Dir::Etc::TrustedParts"); bool const Debug = _config->FindB("Debug::Acquire::gpgv", false); diff --git a/apt-pkg/init.cc b/apt-pkg/init.cc index 846b27313..f0bad78df 100644 --- a/apt-pkg/init.cc +++ b/apt-pkg/init.cc @@ -70,8 +70,7 @@ bool pkgInitConfig(Configuration &Cnf) Cnf.Set("Dir::Etc::parts","apt.conf.d"); Cnf.Set("Dir::Etc::preferences","preferences"); Cnf.Set("Dir::Etc::preferencesparts","preferences.d"); - string const deprecated = _config->Find("APT::GPGV::TrustedKeyring"); - Cnf.Set("Dir::Etc::trusted", deprecated.empty() ? "trusted.gpg" : deprecated); + Cnf.Set("Dir::Etc::trusted", "trusted.gpg"); Cnf.Set("Dir::Etc::trustedparts","trusted.gpg.d"); Cnf.Set("Dir::Bin::methods","/usr/lib/apt/methods"); Cnf.Set("Dir::Media::MountPath","/media/apt"); diff --git a/apt-pkg/init.h b/apt-pkg/init.h index 6e7340dfe..15a1165b9 100644 --- a/apt-pkg/init.h +++ b/apt-pkg/init.h @@ -23,7 +23,7 @@ // See also buildlib/libversion.mak #define APT_PKG_MAJOR 4 #define APT_PKG_MINOR 10 -#define APT_PKG_RELEASE 0 +#define APT_PKG_RELEASE 1 extern const char *pkgVersion; extern const char *pkgLibVersion; diff --git a/apt-pkg/packagemanager.cc b/apt-pkg/packagemanager.cc index 49776aac7..cff34058c 100644 --- a/apt-pkg/packagemanager.cc +++ b/apt-pkg/packagemanager.cc @@ -328,7 +328,7 @@ bool pkgPackageManager::SmartConfigure(PkgIterator Pkg) // Sanity Check if (List->IsFlag(Pkg,pkgOrderList::Configured) == false) - return _error->Error(_("Could not perform immediate configuration on '%s'." + return _error->Error(_("Could not perform immediate configuration on '%s'. " "Please see man 5 apt.conf under APT::Immediate-Configure for details. (%d)"),Pkg.Name(),1); return true; @@ -492,7 +492,7 @@ bool pkgPackageManager::SmartUnPack(PkgIterator Pkg) List->Flag(Pkg,pkgOrderList::UnPacked,pkgOrderList::States); if (List->IsFlag(Pkg,pkgOrderList::Immediate) == true) if (SmartConfigure(Pkg) == false) - return _error->Error(_("Could not perform immediate configuration on already unpacked '%s'." + return _error->Error(_("Could not perform immediate configuration on already unpacked '%s'. " "Please see man 5 apt.conf under APT::Immediate-Configure for details."),Pkg.Name()); return true; } @@ -613,7 +613,7 @@ bool pkgPackageManager::SmartUnPack(PkgIterator Pkg) // Perform immedate configuration of the package. if (List->IsFlag(Pkg,pkgOrderList::Immediate) == true) if (SmartConfigure(Pkg) == false) - return _error->Error(_("Could not perform immediate configuration on '%s'." + return _error->Error(_("Could not perform immediate configuration on '%s'. " "Please see man 5 apt.conf under APT::Immediate-Configure for details. (%d)"),Pkg.Name(),2); return true; diff --git a/apt-pkg/pkgcache.cc b/apt-pkg/pkgcache.cc index a66a5198d..324445fa7 100644 --- a/apt-pkg/pkgcache.cc +++ b/apt-pkg/pkgcache.cc @@ -731,6 +731,7 @@ bool pkgCache::VerIterator::Automatic() const { VerFileIterator Files = FileList(); for (; Files.end() == false; Files++) + // Do not check ButAutomaticUpgrades here as it is kind of automatic… if ((Files.File()->Flags & pkgCache::Flag::NotAutomatic) != pkgCache::Flag::NotAutomatic) return true; return false; diff --git a/apt-pkg/pkgcache.h b/apt-pkg/pkgcache.h index 799521784..82a69b2ca 100644 --- a/apt-pkg/pkgcache.h +++ b/apt-pkg/pkgcache.h @@ -146,7 +146,7 @@ class pkgCache /*{{{*/ struct Flag { enum PkgFlags {Auto=(1<<0),Essential=(1<<3),Important=(1<<4)}; - enum PkgFFlags {NotSource=(1<<0),NotAutomatic=(1<<1)}; + enum PkgFFlags {NotSource=(1<<0),NotAutomatic=(1<<1),ButAutomaticUpgrades=(1<<2)}; }; protected: diff --git a/apt-pkg/policy.cc b/apt-pkg/policy.cc index a3286391b..4f9d56775 100644 --- a/apt-pkg/policy.cc +++ b/apt-pkg/policy.cc @@ -16,7 +16,7 @@ 990 = Config file override package files 989 = Start for preference auto-priorities 500 = Default package files - 100 = The status file + 100 = The status file and ButAutomaticUpgrades sources 0 -> 100 = NotAutomatic sources like experimental -inf -> 0 = Never selected @@ -70,9 +70,10 @@ bool pkgPolicy::InitDefaults() PFPriority[I->ID] = 500; if ((I->Flags & pkgCache::Flag::NotSource) == pkgCache::Flag::NotSource) PFPriority[I->ID] = 100; - else - if ((I->Flags & pkgCache::Flag::NotAutomatic) == pkgCache::Flag::NotAutomatic) - PFPriority[I->ID] = 1; + else if ((I->Flags & pkgCache::Flag::ButAutomaticUpgrades) == pkgCache::Flag::ButAutomaticUpgrades) + PFPriority[I->ID] = 100; + else if ((I->Flags & pkgCache::Flag::NotAutomatic) == pkgCache::Flag::NotAutomatic) + PFPriority[I->ID] = 1; } // Apply the defaults.. diff --git a/buildlib/debiandoc.mak b/buildlib/debiandoc.mak index f33474107..a97af0caf 100644 --- a/buildlib/debiandoc.mak +++ b/buildlib/debiandoc.mak @@ -27,7 +27,7 @@ vpath %.sgml $(SUBDIRS) $(DOC)/%.html: %.sgml echo Creating html for $< to $@ -rm -rf $@ - (HERE=`pwd`; cd $(@D) && $(DEBIANDOC_HTML) $(DEBIANDOC_HTML_OPTIONS) $$HERE/$<) + (HERE=`pwd`; cd $(@D) && $(DEBIANDOC_HTML) $(DEBIANDOC_HTML_OPTIONS) $$HERE/$<) || exit 199 # Clean rule .PHONY: veryclean/html/$(LOCAL) @@ -48,7 +48,7 @@ veryclean: veryclean/text/$(LOCAL) vpath %.sgml $(SUBDIRS) $(DOC)/%.text: %.sgml echo Creating text for $< to $@ - $(DEBIANDOC_TEXT) -O $< > $@ + $(DEBIANDOC_TEXT) -O $< > $@ || exit 198 # Clean rule .PHONY: veryclean/text/$(LOCAL) diff --git a/buildlib/po4a_manpage.mak b/buildlib/po4a_manpage.mak index 6eec9d031..11dc11d28 100644 --- a/buildlib/po4a_manpage.mak +++ b/buildlib/po4a_manpage.mak @@ -27,7 +27,7 @@ veryclean: veryclean/$(LOCAL) $($(LOCAL)-LIST) :: % : %.xml $(INCLUDES) echo Creating man page $@ - $(XSLTPROC) -o $@ $(STYLESHEET) $< # why xsltproc doesn't respect the -o flag here??? + $(XSLTPROC) -o $@ $(STYLESHEET) $< || exit 200 # why xsltproc doesn't respect the -o flag here??? test -f $(subst .$(LC),,$@) || echo FIXME: xsltproc respect the -o flag now, workaround can be removed mv -f $(subst .$(LC),,$@) $@ diff --git a/cmdline/apt-cache.cc b/cmdline/apt-cache.cc index ba4ad1943..79654f477 100644 --- a/cmdline/apt-cache.cc +++ b/cmdline/apt-cache.cc @@ -1321,7 +1321,7 @@ bool Search(CommandLine &CmdL) continue; pkgCache::VerIterator V = Plcy->GetCandidateVer(P); if (V.end() == false) - DFList[G->ID].Df = V.DescriptionList().FileList(); + DFList[G->ID].Df = V.TranslatedDescription().FileList(); if (DFList[G->ID].NameMatch == false) continue; @@ -1334,7 +1334,7 @@ bool Search(CommandLine &CmdL) continue; unsigned long id = Prv.OwnerPkg().Group()->ID; - DFList[id].Df = V.DescriptionList().FileList(); + DFList[id].Df = V.TranslatedDescription().FileList(); DFList[id].NameMatch = true; } } diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index d1c010e49..8efcd0e2e 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -1106,17 +1106,25 @@ bool InstallPackages(CacheFile &Cache,bool ShwKept,bool Ask = true, // Number of bytes if (DebBytes != FetchBytes) + //TRANSLATOR: The required space between number and unit is already included + // in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB ioprintf(c1out,_("Need to get %sB/%sB of archives.\n"), SizeToStr(FetchBytes).c_str(),SizeToStr(DebBytes).c_str()); else if (DebBytes != 0) + //TRANSLATOR: The required space between number and unit is already included + // in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB ioprintf(c1out,_("Need to get %sB of archives.\n"), SizeToStr(DebBytes).c_str()); // Size delta if (Cache->UsrSize() >= 0) + //TRANSLATOR: The required space between number and unit is already included + // in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB ioprintf(c1out,_("After this operation, %sB of additional disk space will be used.\n"), SizeToStr(Cache->UsrSize()).c_str()); else + //TRANSLATOR: The required space between number and unit is already included + // in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB ioprintf(c1out,_("After this operation, %sB disk space will be freed.\n"), SizeToStr(-1*Cache->UsrSize()).c_str()); @@ -2340,9 +2348,13 @@ bool DoSource(CommandLine &CmdL) // Number of bytes if (DebBytes != FetchBytes) + //TRANSLATOR: The required space between number and unit is already included + // in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB ioprintf(c1out,_("Need to get %sB/%sB of source archives.\n"), SizeToStr(FetchBytes).c_str(),SizeToStr(DebBytes).c_str()); else + //TRANSLATOR: The required space between number and unit is already included + // in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB ioprintf(c1out,_("Need to get %sB of source archives.\n"), SizeToStr(DebBytes).c_str()); diff --git a/cmdline/apt-key b/cmdline/apt-key index 27731ef7d..b39ab12e4 100755 --- a/cmdline/apt-key +++ b/cmdline/apt-key @@ -147,11 +147,13 @@ else #echo "generate list" TRUSTEDFILE="/etc/apt/trusted.gpg" eval $(apt-config shell TRUSTEDFILE Apt::GPGV::TrustedKeyring) + eval $(apt-config shell TRUSTEDFILE Dir::Etc::Trusted/f) if [ -r "$TRUSTEDFILE" ]; then GPG="$GPG --keyring $TRUSTEDFILE" fi GPG="$GPG --primary-keyring $TRUSTEDFILE" TRUSTEDPARTS="/etc/apt/trusted.gpg.d" + eval $(apt-config shell TRUSTEDPARTS Dir::Etc::TrustedParts/d) if [ -d "$TRUSTEDPARTS" ]; then #echo "parts active" for trusted in $(run-parts --list $TRUSTEDPARTS --regex '^.*\.gpg$'); do diff --git a/configure.in b/configure.in index 151885d66..b2880c99c 100644 --- a/configure.in +++ b/configure.in @@ -18,7 +18,7 @@ AC_CONFIG_AUX_DIR(buildlib) AC_CONFIG_HEADER(include/config.h:buildlib/config.h.in include/apti18n.h:buildlib/apti18n.h.in) dnl -- SET THIS TO THE RELEASE VERSION -- -AC_DEFINE_UNQUOTED(VERSION,"0.8.1") +AC_DEFINE_UNQUOTED(VERSION,"0.8.2") PACKAGE="apt" AC_DEFINE_UNQUOTED(PACKAGE,"$PACKAGE") AC_SUBST(PACKAGE) diff --git a/debian/apt.cron.daily b/debian/apt.cron.daily index 3da279c13..c61bfb9bb 100644 --- a/debian/apt.cron.daily +++ b/debian/apt.cron.daily @@ -11,7 +11,7 @@ # Dir::Cache "var/apt/cache/"; # - Set apt package cache directory # -# Dir::Cache::Archive "archives/"; +# Dir::Cache::Archives "archives/"; # - Set package archive directory # # APT::Periodic::Enable "1"; @@ -147,21 +147,14 @@ check_size_constraints() eval $(apt-config shell MaxSize APT::Archives::MaxSize) eval $(apt-config shell MaxSize APT::Periodic::MaxSize) - CacheDir="var/cache/apt/" - eval $(apt-config shell CacheDir Dir::Cache) - CacheDir=${CacheDir%/} - - CacheArchive="archives/" - eval $(apt-config shell CacheArchive Dir::Cache::archives) - CacheArchive=${CacheArchive%/} + Cache="/var/cache/apt/archives/" + eval $(apt-config shell Cache Dir::Cache::archives/d) # sanity check - if [ -z "$CacheDir" -o -z "$CacheArchive" ]; then - echo "empty Dir::Cache or Dir::Cache::archives, exiting" + if [ -z "$Cache" ]; then + echo "empty Dir::Cache::archives, exiting" exit fi - - Cache="${Dir%/}/${CacheDir%/}/${CacheArchive%/}/" # check age if [ ! $MaxAge -eq 0 ] && [ ! $MinAge -eq 0 ]; then @@ -225,22 +218,17 @@ do_cache_backup() fi # Set default values and normalize - Dir="/" - eval $(apt-config shell Dir Dir) - Dir=${Dir%/} - - CacheDir="var/cache/apt/" - eval $(apt-config shell CacheDir Dir::Cache) + CacheDir="/var/cache/apt" + eval $(apt-config shell CacheDir Dir::Cache/d) CacheDir=${CacheDir%/} if [ -z "$CacheDir" ]; then debug_echo "practically empty Dir::Cache, exiting" return 0 fi - CacheArchive="archives/" - eval $(apt-config shell CacheArchive Dir::Cache::Archives) - CacheArchive=${CacheArchive%/} - if [ -z "$CacheArchive" ]; then + Cache="${CacheDir}/archives/" + eval $(apt-config shell Cache Dir::Cache::Archives/d) + if [ -z "$Cache" ]; then debug_echo "practically empty Dir::Cache::archives, exiting" return 0 fi @@ -251,16 +239,15 @@ do_cache_backup() BackupLevel=2 ; fi - CacheBackup="backup/" - eval $(apt-config shell CacheBackup Dir::Cache::Backup) - CacheBackup=${CacheBackup%/} - if [ -z "$CacheBackup" ]; then + Back="${CacheDir}/backup/" + eval $(apt-config shell Back Dir::Cache::Backup/d) + if [ -z "$Back" ]; then echo "practically empty Dir::Cache::Backup, exiting" 1>&2 return fi - Cache="${Dir}/${CacheDir}/${CacheArchive}/" - Back="${Dir}/${CacheDir}/${CacheBackup}/" + CacheArchive="$(basename "${Cache}")" + test -n "${CacheArchive}" || CacheArchive="archives" BackX="${Back}${CacheArchive}/" for x in $(seq 0 1 $((${BackupLevel}-1))); do eval "Back${x}=${Back}${x}/" diff --git a/debian/changelog b/debian/changelog index feafede86..739f1b425 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,22 +1,154 @@ -apt (0.8.2) unstable; urgency=low +apt (0.8.7) UNRELEASED; urgency=low - * apt-pkg/indexcopy.cc: - - only use trusted.gpg.d directory if it exists - - do not replace /dev/null when running in APT::CDROM::NoAct - mode (LP: #612666), thanks to Colin Watson + [ Manpages translations ] + * Typo fixed in French (extra "Z"). Thanks to Florentin Duneau. + * Another typo fixed in French ("Anfin"). Thanks to bubulle + * Wrong translation for "showauto" fixed. Thanks to Raphaël Hertzog + Closes: #599265 + + [ Michael Vogt ] + * debian/apt.cron.daily: + - source /etc/default/locale (if available) so that the + apt-get update cron job fetches the right translated package + descriptions + * fix test failure on amd64 + * apt-pkg/deb/debsystem.cc: + - fix issues with dir::state::status and dir::state::extended_states + when alternative rootdirs are used + + [ Martin Pitt ] + * apt-pkg/deb/debindexfile.cc: + - Use FileFd::Size() instead of stat()ing the sources/binary/translations + indexes directly, so that we have transparent handling of gzipped + indexes. + * apt-pkg/contrib/fileutl.cc: + - Fix FileFd::Size() for gzipped files to give the size of the + uncompressed data. This fixes cache building progress going way + over 100%. + + -- Christian Perrier <bubulle@debian.org> Tue, 05 Oct 2010 05:35:58 +0200 + +apt (0.8.6) unstable; urgency=low + + [ Programs translations ] + * Vietnamese update by Clytie Siddall (Closes: #598489) + * Asturian update by Maacub (Closes: #599057) + + [ David Kalnischkies ] + * cmdline/apt-cache.cc: + - use the TranslatedDescription for searching and not the first + available one as it is maybe not an expected language (Closes: #597925) + * apt-pkg/contrib/strutl.cc: + - add a space between number and unit as required by SI (Closes: #598352) + * apt-pkg/depcache.cc: + - do not check endpointer packages instead of only those which prevented + NeverAutoRemove settings from having an effect (Closes: #598452) + - do not remove packages which the user requested for installation + explicitly while satisfying other install requests (Closes: #598669) + * apt-pkg/packagemanager.cc: + - Add a space between period and 'Please' and unfuzzy all translations + * doc/po/de.po: + - remove the duplicated "angefertigt" in translation-holder string + + -- Michael Vogt <mvo@debian.org> Mon, 04 Oct 2010 11:52:19 +0200 + +apt (0.8.5) unstable; urgency=low + + [ Manpages translations ] + * German (Chris Leick). Closes: #597163 + + [ Michael Vogt ] + * merged lp:~mvo/apt/conflicts-on-virtuals to better deal with + conflicts/breaks against virtual packages (LP: #614993) + + [ David Kalnischkies ] + * apt-pkg/policy.cc: + - support 100-pinning in Release file with ButAutomaticUpgrades + as requested by the backports crew (Closes: #596097) + * apt-pkg/deb/deblistparser.cc: + - overrule NotAutomatic in case of ButAutomaticUpgrades + * debian/apt.cron.daily: + - handle absolut directory paths correctly by loading directories + directly instead of building the paths on our own (Closes: #596421) + * debian/control: + - build-depend on docbook-xml to ensure that the xml DTDs are always + available on the buildds (Closes: #597145) + * buildlib/debiandoc.mak, buildlib/po4a_manpage.mak: + - ensure that the build fails if documentation building fails + * doc/po/fr.po: + - correct two syntax issues to ensure we can build fine + + -- Michael Vogt <mvo@debian.org> Fri, 17 Sep 2010 22:05:06 +0200 + +apt (0.8.4) unstable; urgency=low + + [ Michael vogt ] + * ftparchive/writer.cc: + - write out {Files,Checksum-Sha1,Checksum-Sha256} only if + available LP: #633967. Thanks to Colin Watson * apt-pkg/contrib/cdromutl.cc: - if apt-cdrom is used on writable media (like usb-sticks), do not use the root directory to identify the medium (as all changes there change the ident id). Use the .disk directory instead - * debian/apt.cron.daily: - - source /etc/default/locale (if available) so that the - apt-get update cron job fetches the right translated package - descriptions - -- Michael Vogt <michael.vogt@ubuntu.com> Fri, 03 Sep 2010 20:21:43 +0200 + [ David Kalnischkies ] + * ftparchive/writer.cc: + - null the valid string instead of the date if Valid-Until is not set + * apt-pkg/acquire-item.cc: + - use also unsigned Release files again (Closes: #596189) + + [ Christian Perrier ] + * Fix missing space after dot in a message from apt-pkg + Translations unfuzzied. Thanks to Holger Wansing. + + -- Michael Vogt <mvo@debian.org> Fri, 10 Sep 2010 20:45:15 +0200 + +apt (0.8.3) unstable; urgency=low + + [ Programs translations ] + * German (Holger Wansing). Closes: #596141 + + [ Manpages translations ] + * Japanese (KURASAWA Nozomu). Closes: #595862 + + [ Michael Vogt ] + * apt-pkg/indexcopy.cc: + - only use trusted.gpg.d directory if it exists + - do not replace /dev/null when running in APT::CDROM::NoAct + mode (LP: #612666), thanks to Colin Watson + + [ David Kalnischkies ] + * ftparchive/apt-ftparchive.cc: + - ensure that BinDirectory as well as Tree settings get + the correct default FileMode setting (Closes: #595922) + + -- Michael Vogt <mvo@debian.org> Tue, 07 Sep 2010 15:28:41 +0200 -apt (0.8.1) UNRELEASED; urgency=low +apt (0.8.2) unstable; urgency=low + + [ Manpages translations ] + * Spanish (Omar Campagne). Closes: #595557 + + [ David Kalnischkies ] + * apt-pkg/versionmatch.cc: + - do not accept 'Pin: origin "' (missing closing ") as a valid + way to pin a local archive: either "" or none… + * apt-pkg/deb/dpkgpm.cc: + - create Dir::Log if needed to support /var/log as tmpfs or similar, + inspired by Thomas Bechtold, thanks! (Closes: #523919, LP: #220239) + * apt-pkg/indexcopy.cc: + - support really still the APT::GPGV::TrustedKeyring setting, + as it breaks d-i badly otherwise (Closes: #595428) + * cmdline/apt-key: + - support also Dir::Etc::Trusted so that apt-key works in the same + way as the library part which works with the trusted files + * methods/{gzip,bzip2}.cc: + - empty files can never be valid archives (Closes: #595691) + + -- Michael Vogt <mvo@debian.org> Mon, 06 Sep 2010 18:10:06 +0200 + +apt (0.8.1) unstable; urgency=low [ Programs translations ] * Thai (Theppitak Karoonboonyanan). Closes: #592695 @@ -30,6 +162,9 @@ apt (0.8.1) UNRELEASED; urgency=low * Bulgarian (Damyan Ivanov). Closes: #594627 * Portuguese (Miguel Figueiredo). Closes: #594668 * Korean (Changwoo Ryu). Closes: #594809 + * Norwegian BokmÃ¥l (Hans Nordhaug). Closes: #595182 + * Danish (Joe Hansen). Closes: #595176 + * Catalan (Agustà Grau). Closes: #595234 [ Christian Perrier ] * Fix spelling error in cmdline/apt-get.cc. Thanks to Osamu Aoki @@ -58,11 +193,8 @@ apt (0.8.1) UNRELEASED; urgency=low - let the pin origin actually work as advertised in the manpage which means "" are optional and pinning a local archive does work - even if it is a non-flat archive (Closes: #594435) - * apt-pkg/deb/dpkgpm.cc: - - create Dir::Log if needed to support /var/log as tmpfs or similar, - inspired by Thomas Bechtold, thanks! (Closes: #523919, LP: #220239) - -- David Kalnischkies <kalnischkies@gmail.com> Thu, 02 Sep 2010 12:41:32 +0200 + -- Michael Vogt <mvo@debian.org> Fri, 03 Sep 2010 18:36:11 +0200 apt (0.8.0) unstable; urgency=low diff --git a/debian/control b/debian/control index f03b96f67..87e885f6a 100644 --- a/debian/control +++ b/debian/control @@ -6,7 +6,7 @@ Uploaders: Michael Vogt <mvo@debian.org>, Otavio Salvador <otavio@debian.org>, Christian Perrier <bubulle@debian.org>, Daniel Burrows <dburrows@debian.org>, Luca Bruno <lethalman88@gmail.com>, Julian Andres Klode <jak@debian.org> Standards-Version: 3.9.0 -Build-Depends: debhelper (>= 5.0), libdb-dev, gettext (>= 0.12), libcurl4-gnutls-dev (>= 7.19.0), zlib1g-dev | libz-dev, debiandoc-sgml, xsltproc, docbook-xsl, po4a (>= 0.34-2), autotools-dev, autoconf, automake, doxygen +Build-Depends: debhelper (>= 5.0), libdb-dev, gettext (>= 0.12), libcurl4-gnutls-dev (>= 7.19.0), zlib1g-dev | libz-dev, debiandoc-sgml, xsltproc, docbook-xsl, docbook-xml, po4a (>= 0.34-2), autotools-dev, autoconf, automake, doxygen Build-Conflicts: autoconf2.13, automake1.4 Vcs-Bzr: http://bzr.debian.org/apt/debian-sid/ diff --git a/doc/po/de.po b/doc/po/de.po index cbb712b39..2a9b1357a 100644 --- a/doc/po/de.po +++ b/doc/po/de.po @@ -1,14 +1,14 @@ # Translation of apt-doc to German # Copyright (C) 1997, 1998, 1999 Jason Gunthorpe and others. # This file is distributed under the same license as the apt-doc package. -# Chris Leick <c.leick@vollbio.de>, 2009. +# Chris Leick <c.leick@vollbio.de>, 2009, 2010. # msgid "" msgstr "" -"Project-Id-Version: apt-doc 0.7.24\n" +"Project-Id-Version: apt-doc 0.7.25.3\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" "POT-Creation-Date: 2010-07-30 12:46+0300\n" -"PO-Revision-Date: 2010-04-21 14:04+0200\n" +"PO-Revision-Date: 2010-09-16 19:04+0100\n" "Last-Translator: Chris Leick <c.leick@vollbio.de>\n" "Language-Team: German <debian-l10n-german@lists.debian.org>\n" "Language: de\n" @@ -791,17 +791,7 @@ msgstr "" #. type: Plain text #: apt.ent:264 -#, fuzzy, no-wrap -#| msgid "" -#| " <varlistentry>\n" -#| " <term><option>-c</option></term>\n" -#| " <term><option>--config-file</option></term>\n" -#| " <listitem><para>Configuration File; Specify a configuration file to use. \n" -#| " The program will read the default configuration file and then this \n" -#| " configuration file. See &apt-conf; for syntax information. \n" -#| " </para>\n" -#| " </listitem>\n" -#| " </varlistentry>\n" +#, no-wrap msgid "" " <varlistentry>\n" " <term><option>-c</option></term>\n" @@ -820,7 +810,10 @@ msgstr "" " <term><option>--config-file</option></term>\n" " <listitem><para>Konfigurationsdatei; Gibt eine Konfigurationssdatei zum Benutzen an.\n" " Das Programm wird die Vorgabe-Konfigurationsdatei und dann diese\n" -" Konfigurationsdatei lesen. Lesen Sie &apt-conf;, um Syntax-Informationen zu erhalten \n" +" Konfigurationsdatei lesen. Falls Konfigurationseinstellungen vor der\n" +" Vorgabe-Konfiguration ausgewertet werden müssen, geben Sie eine Datei\n" +" der Umgebungsvariable <envar>APT_CONFIG</envar> an\n" +" Lesen Sie &apt-conf;, um Syntax-Informationen zu erhalten \n" " </para>\n" " </listitem>\n" " </varlistentry>\n" @@ -1050,13 +1043,7 @@ msgstr "" #. type: Plain text #: apt.ent:358 -#, fuzzy, no-wrap -#| msgid "" -#| "<!ENTITY file-sourceslist \"\n" -#| " <varlistentry><term><filename>/etc/apt/sources.list</filename></term>\n" -#| " <listitem><para>Locations to fetch packages from.\n" -#| " Configuration Item: <literal>Dir::Etc::SourceList</literal>.</para></listitem>\n" -#| " </varlistentry>\n" +#, no-wrap msgid "" "<!ENTITY file-trustedgpg \"\n" " <varlistentry><term><filename>/etc/apt/trusted.gpg</filename></term>\n" @@ -1064,21 +1051,16 @@ msgid "" " Configuration Item: <literal>Dir::Etc::Trusted</literal>.</para></listitem>\n" " </varlistentry>\n" msgstr "" -"<!ENTITY file-sourceslist \"\n" -" <varlistentry><term><filename>/etc/apt/sources.list</filename></term>\n" -" <listitem><para>Orte, von denen Pakete geladen werden.\n" -" Konfigurationselement: <literal>Dir::Etc::SourceList</literal>.</para></listitem>\n" +"<!ENTITY file-trustedgpg \"\n" +" <varlistentry><term><filename>/etc/apt/trusted.gpg</filename></term>\n" +" <listitem><para>Schlüsselbund lokaler vertrauenswürdiger Schlüssel,\n" +" neue Schlüssel werden hier hinzugefügt.\n" +" Konfigurationselement: <literal>Dir::Etc::Trusted</literal>.</para></listitem>\n" " </varlistentry>\n" #. type: Plain text #: apt.ent:365 -#, fuzzy, no-wrap -#| msgid "" -#| " <varlistentry><term><filename>/etc/apt/sources.list.d/</filename></term>\n" -#| " <listitem><para>File fragments for locations to fetch packages from.\n" -#| " Configuration Item: <literal>Dir::Etc::SourceParts</literal>.</para></listitem>\n" -#| " </varlistentry>\n" -#| "\">\n" +#, no-wrap msgid "" " <varlistentry><term><filename>/etc/apt/trusted.gpg.d/</filename></term>\n" " <listitem><para>File fragments for the trusted keys, additional keyrings can\n" @@ -1087,21 +1069,17 @@ msgid "" " </varlistentry>\n" "\">\n" msgstr "" -" <varlistentry><term><filename>/etc/apt/sources.list.d/</filename></term>\n" -" <listitem><para>Dateifragmente für Orte, von denen Pakete geladen werden.\n" -" Konfigurationselement: <literal>Dir::Etc::SourceParts</literal>.</para></listitem>\n" +" <varlistentry><term><filename>/etc/apt/trusted.gpg.d/</filename></term>\n" +" <listitem><para>Dateifragmente für vertrauenswürdige Schlüssel, zusätzliche\n" +" Schlüsselbunde können hier (von anderen Paketen oder dem Administrator)\n" +" gespeichert werden.\n" +" Konfigurationselement: <literal>Dir::Etc::TrustedParts</literal>.</para></listitem>\n" " </varlistentry>\n" "\">\n" #. type: Plain text #: apt.ent:373 -#, fuzzy, no-wrap -#| msgid "" -#| "<!ENTITY file-sourceslist \"\n" -#| " <varlistentry><term><filename>/etc/apt/sources.list</filename></term>\n" -#| " <listitem><para>Locations to fetch packages from.\n" -#| " Configuration Item: <literal>Dir::Etc::SourceList</literal>.</para></listitem>\n" -#| " </varlistentry>\n" +#, no-wrap msgid "" "<!ENTITY file-extended_states \"\n" " <varlistentry><term><filename>/var/lib/apt/extended_states</filename></term>\n" @@ -1111,11 +1089,13 @@ msgid "" " </varlistentry>\n" "\">\n" msgstr "" -"<!ENTITY file-sourceslist \"\n" -" <varlistentry><term><filename>/etc/apt/sources.list</filename></term>\n" -" <listitem><para>Orte, von denen Pakete geladen werden.\n" -" Konfigurationselement: <literal>Dir::Etc::SourceList</literal>.</para></listitem>\n" -" </varlistentry>\n" +"<!ENTITY file-extended_states \"\n" +" <varlistentry><term><filename>/var/lib/apt/extended_states</filename></term>\n" +" <listitem><para>Statusliste automatisch installierter Pakete.\n" +" Konfigurationselement: <literal>Dir::State::extended_states</literal>.\n" +" </para></listitem>\n" +" </varlistentry>\n" +"\">\n" #. type: Plain text #: apt.ent:377 @@ -1140,8 +1120,10 @@ msgid "" "\">\n" msgstr "" "<!ENTITY translation-holder \"\n" -" Die deutsche Ãœbersetzung wurde 2009 von Chris Leick <email>c.leick@vollbio.de</email> angefertigt\n" -" in Zusammenarbeit mit dem Deutschen l10n-Team von Debian <email>debian-l10n-german@lists.debian.org</email>.\n" +" Die deutsche Ãœbersetzung wurde 2009 von Chris Leick\n" +" <email>c.leick@vollbio.de</email> in Zusammenarbeit mit dem\n" +" deutschen l10n-Team von Debian\n" +" <email>debian-l10n-german@lists.debian.org</email> angefertigt.\n" "\">\n" #. type: Plain text @@ -1159,6 +1141,11 @@ msgid "" " translation is lagging behind the original content.\n" "\">\n" msgstr "" +"<!ENTITY translation-english \"\n" +" Beachten Sie, dass diese Ãœbersetzung Teile enthalten kann, die nicht\n" +" übersetzt wurden. Dies ist so, damit kein Inhalt verloren geht, wenn\n" +" die Ãœbersetzung hinter dem Originalinhalt hinterherhängt.\n" +"\">\n" #. type: Plain text #: apt.ent:400 @@ -1166,6 +1153,8 @@ msgid "" "<!ENTITY oldstable-codename \"etch\"> <!ENTITY stable-codename \"lenny\"> <!" "ENTITY testing-codename \"squeeze\">" msgstr "" +"<!ENTITY oldstable-codename \"etch\"> <!ENTITY stable-codename \"lenny\"> <!" +"ENTITY testing-codename \"squeeze\">" #. The last update date #. type: Content of: <refentry><refentryinfo> @@ -1888,67 +1877,47 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:312 -#, fuzzy -#| msgid "<option>--no-upgrade</option>" msgid "<option>--no-pre-depends</option>" -msgstr "<option>--no-upgrade</option>" +msgstr "<option>--no-pre-depends</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:313 -#, fuzzy -#| msgid "<option>--no-download</option>" msgid "<option>--no-depends</option>" -msgstr "<option>--no-download</option>" +msgstr "<option>--no-depends</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:314 -#, fuzzy -#| msgid "<option>--install-recommends</option>" msgid "<option>--no-recommends</option>" -msgstr "<option>--install-recommends</option>" +msgstr "<option>--no-recommends</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:315 -#, fuzzy -#| msgid "<option>--no-upgrade</option>" msgid "<option>--no-suggests</option>" -msgstr "<option>--no-upgrade</option>" +msgstr "<option>--no-suggests</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:316 -#, fuzzy -#| msgid "<option>--no-mount</option>" msgid "<option>--no-conflicts</option>" -msgstr "<option>--no-mount</option>" +msgstr "<option>--no-conflicts</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:317 -#, fuzzy -#| msgid "<option>--no-act</option>" msgid "<option>--no-breaks</option>" -msgstr "<option>--no-act</option>" +msgstr "<option>--no-breaks</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:318 -#, fuzzy -#| msgid "<option>--no-act</option>" msgid "<option>--no-replaces</option>" -msgstr "<option>--no-act</option>" +msgstr "<option>--no-replaces</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:319 -#, fuzzy -#| msgid "<option>--no-act</option>" msgid "<option>--no-enhances</option>" -msgstr "<option>--no-act</option>" +msgstr "<option>--no-enhances</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:320 -#, fuzzy -#| msgid "" -#| "Make <literal>depends</literal> and <literal>rdepends</literal> recursive " -#| "so that all packages mentioned are printed once. Configuration Item: " -#| "<literal>APT::Cache::RecurseDepends</literal>." +# FIXME s/twicked/tricked/ msgid "" "Per default the <literal>depends</literal> and <literal>rdepends</literal> " "print all dependencies. This can be twicked with these flags which will omit " @@ -1956,9 +1925,11 @@ msgid "" "Show<replaceable>DependencyType</replaceable></literal> e.g. <literal>APT::" "Cache::ShowRecommends</literal>." msgstr "" -"Macht <literal>depends</literal> und <literal>rdepends</literal> rekursiv, " -"so dass alle erwähnten Pakete einmal ausgegeben werden. " -"Konfigurationselement: <literal>APT::Cache::RecurseDepends</literal>." +"Standardmäßig geben <literal>depends</literal> und <literal>rdepends</literal> " +"alle Abhängigkeiten aus. Dies kann mit diesen Schaltern überlistet werden, " +"die den angegebenen Abhängigkeitstyp weglassen. Konfigurationselement: " +"<literal>APT::Cache::Show<replaceable>DependencyType</replaceable></literal> " +"z.B. <literal>APT::Cache::ShowRecommends</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:326 apt-cdrom.8.xml:121 apt-get.8.xml:319 @@ -2209,13 +2180,6 @@ msgstr "add" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt-cdrom.8.xml:66 -#, fuzzy -#| msgid "" -#| "<literal>add</literal> is used to add a new disc to the source list. It " -#| "will unmount the CDROM device, prompt for a disk to be inserted and then " -#| "procceed to scan it and copy the index files. If the disc does not have a " -#| "proper <filename>disk</filename> directory you will be prompted for a " -#| "descriptive title." msgid "" "<literal>add</literal> is used to add a new disc to the source list. It will " "unmount the CDROM device, prompt for a disk to be inserted and then proceed " @@ -2645,27 +2609,6 @@ msgstr "Hilfsprogramm zum Generieren von Indexdateien" #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> #: apt-ftparchive.1.xml:36 -#, fuzzy -#| msgid "" -#| "<command>apt-ftparchive</command> <arg><option>-hvdsq</option></arg> " -#| "<arg><option>--md5</option></arg> <arg><option>--delink</option></arg> " -#| "<arg><option>--readonly</option></arg> <arg><option>--contents</option></" -#| "arg> <arg><option>-o <replaceable>config</" -#| "replaceable>=<replaceable>string</replaceable></option></arg> " -#| "<arg><option>-c=<replaceable>file</replaceable></option></arg> <group " -#| "choice=\"req\"> <arg>packages<arg choice=\"plain\" rep=\"repeat" -#| "\"><replaceable>path</replaceable></arg><arg><replaceable>override</" -#| "replaceable><arg><replaceable>pathprefix</replaceable></arg></arg></arg> " -#| "<arg>sources<arg choice=\"plain\" rep=\"repeat\"><replaceable>path</" -#| "replaceable></arg><arg><replaceable>override</" -#| "replaceable><arg><replaceable>pathprefix</replaceable></arg></arg></arg> " -#| "<arg>contents <arg choice=\"plain\"><replaceable>path</replaceable></" -#| "arg></arg> <arg>release <arg choice=\"plain\"><replaceable>path</" -#| "replaceable></arg></arg> <arg>generate <arg choice=\"plain" -#| "\"><replaceable>config-file</replaceable></arg> <arg choice=\"plain\" rep=" -#| "\"repeat\"><replaceable>section</replaceable></arg></arg> <arg>clean <arg " -#| "choice=\"plain\"><replaceable>config-file</replaceable></arg></arg> </" -#| "group>" msgid "" "<command>apt-ftparchive</command> <arg><option>-hvdsq</option></arg> " "<arg><option>--md5</option></arg> <arg><option>--delink</option></arg> " @@ -2689,22 +2632,22 @@ msgstr "" "<command>apt-ftparchive</command> <arg><option>-hvdsq</option></arg> " "<arg><option>--md5</option></arg> <arg><option>--delink</option></arg> " "<arg><option>--readonly</option></arg> <arg><option>--contents</option></" -"arg> <arg><option>-o=<replaceable>Konfiguration</" -"replaceable>=<replaceable>Zeichenkette</replaceable></option></arg> " -"<arg><option>-c=<replaceable>Datei</replaceable></option></arg> <group " -"choice=\"req\"> <arg>packages<arg choice=\"plain\" rep=\"repeat" -"\"><replaceable>Pfad</replaceable></arg><arg><replaceable>überschreiben</" -"replaceable><arg><replaceable>Pfadvorsilbe</replaceable></arg></arg></arg> " -"<arg>sources<arg choice=\"plain\" rep=\"repeat\"><replaceable>Pfad</" -"replaceable></arg><arg><replaceable>überschreiben</" -"replaceable><arg><replaceable>Pfadvorsilbe</replaceable></arg></arg></arg> " -"<arg>contents <arg choice=\"plain\"><replaceable>Pfad</replaceable></arg></" -"arg><arg>release <arg choice=\"plain\"><replaceable>Pfad</replaceable></" -"arg></arg> <arg>generate <arg choice=\"plain" -"\"><replaceable>Konfigurationsdatei</replaceable></arg><arg choice=\"plain\" " +"arg> <arg><option>--arch <replaceable>Architektur</replaceable></option></" +"arg> <arg><option>-o <replaceable>Konfiguration</replaceable>=<replaceable>" +"Zeichenkette</replaceable></option></arg> <arg><option>-c=<replaceable>Datei" +"</replaceable></option></arg> <group choice=\"req\"> <arg>packages<arg " +"choice=\"plain\" rep=\"repeat\"><replaceable>Pfad</replaceable></arg><arg>" +"<replaceable>überschreiben</replaceable><arg><replaceable>Pfad-Präfix" +"</replaceable></arg></arg></arg> <arg>sources<arg choice=\"plain\" " +"rep=\"repeat\"><replaceable>Pfad</replaceable></arg><arg><replaceable>" +"überschreiben</replaceable><arg><replaceable>Pfad-Präfix</replaceable></arg>" +"</arg></arg> <arg>contents <arg choice=\"plain\"><replaceable>Pfad" +"</replaceable></arg></arg> <arg>release <arg choice=\"plain\"><replaceable>" +"Pfad</replaceable></arg></arg> <arg>generate <arg choice=\"plain\">" +"<replaceable>Konfigurationsdatei</replaceable></arg> <arg choice=\"plain\" " "rep=\"repeat\"><replaceable>Abschnitt</replaceable></arg></arg> <arg>clean " -"<arg choice=\"plain\"><replaceable>Konfigurationsdatei</replaceable></arg></" -"arg></group>" +"<arg choice=\"plain\"><replaceable>Konfigurationsdatei</replaceable></arg>" +"</arg> </group>" #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:57 @@ -2845,21 +2788,11 @@ msgstr "" "Der <literal>release</literal>-Befehl generiert eine Release-Datei aus einem " "Verzeichnisbaum. Er durchsucht das vorgegebene Verzeichnis rekursiv nach " "Packages-, Packages.gz-, Packages.bz2-, Sources-, Sources.gz-, Sources.bz2-, " -"Release- und md5sum.txt-Dateien. Dann schreibt es eine Releasedatei nach " +"Release- und md5sum.txt-Dateien. Dann schreibt es eine Release-Datei nach " "stdout, die einen MD5- und SHA1-Hash für jede Datei enthält." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:119 -#, fuzzy -#| msgid "" -#| "Values for the additional metadata fields in the Release file are taken " -#| "from the corresponding variables under <literal>APT::FTPArchive::Release</" -#| "literal>, e.g. <literal>APT::FTPArchive::Release::Origin</literal>. The " -#| "supported fields are: <literal>Origin</literal>, <literal>Label</" -#| "literal>, <literal>Suite</literal>, <literal>Version</literal>, " -#| "<literal>Codename</literal>, <literal>Date</literal>, " -#| "<literal>Architectures</literal>, <literal>Components</literal>, " -#| "<literal>Description</literal>." msgid "" "Values for the additional metadata fields in the Release file are taken from " "the corresponding variables under <literal>APT::FTPArchive::Release</" @@ -2875,8 +2808,8 @@ msgstr "" "entnommen, z.B. <literal>APT::FTPArchive::Release::Origin</literal>. Die " "unterstützten Felder sind: <literal>Origin</literal>, <literal>Label</" "literal>, <literal>Suite</literal>, <literal>Version</literal>, " -"<literal>Codename</literal>, <literal>Date</literal>, " -"<literal>Architectures</literal>, <literal>Components</literal>, " +"<literal>Codename</literal>, <literal>Date</literal>, <literal>Valid-Until" +"</literal>, <literal>Architectures</literal>, <literal>Components</literal>, " "<literal>Description</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> @@ -3044,10 +2977,11 @@ msgid "" "compression), 'gzip' and 'bzip2'. The default for all compression schemes is " "'. gzip'." msgstr "" -"Setzt das Vorgabe-Kompressionsschema, das für die Paketindexdateien benutzt " -"wird. Es ist eine Zeichenkette, die eine durch Leerzeichen getrennte Liste " -"mit mindestens einem der folgenden Dinge enthält: ».« (keine Kompression), " -"»gzip« und »bzip2«. Die Vorgabe für alle Kompressionsschemata ist ». gzip«." +"Setzt das Vorgabe-Kompressionsschema, das für die Package-Indexdateien " +"benutzt wird. Es ist eine Zeichenkette, die eine durch Leerzeichen getrennte " +"Liste mit mindestens einem der folgenden Dinge enthält: ».« (keine " +"Kompression), »gzip« und »bzip2«. Die Vorgabe für alle Kompressionsschemata " +"ist ». gzip«." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:205 @@ -3107,23 +3041,17 @@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:229 -#, fuzzy -#| msgid "Contents::Compress" msgid "Translation::Compress" -msgstr "Contents::Compress" +msgstr "Translation::Compress" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:231 -#, fuzzy -#| msgid "" -#| "This is similar to <literal>Packages::Compress</literal> except that it " -#| "controls the compression for the Contents files." msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Translation-en master file." msgstr "" "Dies ist <literal>Packages::Compress</literal> ähnlich, außer dass es die " -"Kompression der Inhaltsdateien steuert." +"Kompression der Translation-en-Hauptdatei steuert." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:235 @@ -3157,10 +3085,8 @@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:249 apt-ftparchive.1.xml:395 -#, fuzzy -#| msgid "Description" msgid "LongDescription" -msgstr "Beschreibung" +msgstr "LongDescription" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:251 apt-ftparchive.1.xml:397 @@ -3168,6 +3094,8 @@ msgid "" "Sets if long descriptions should be included in the Packages file or split " "out into a master Translation-en file." msgstr "" +"Gesetzt, falls lange Beschreibungen in die Package-Datei eingeschlossen werden " +"oder in eine Translation-en-Hauptdatei unterteilt werden sollen." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt-ftparchive.1.xml:257 @@ -3273,23 +3201,17 @@ msgstr "Sources" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:302 -#, fuzzy -#| msgid "" -#| "Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/" -#| "source/Sources</filename>" msgid "" "Sets the output Sources file. Defaults to <filename>$(DIST)/$(SECTION)/" "source/Sources</filename>" msgstr "" -"Setzt die Ausgabe-Packages-Datei. Vorgabe ist <filename>$(DIST)/$(SECTION)/" +"Setzt die Ausgabe-Quelldatei. Vorgabe ist <filename>$(DIST)/$(SECTION)/" "source/Sources</filename>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:306 -#, fuzzy -#| msgid "Operation" msgid "Translation" -msgstr "Betrieb" +msgstr "Ãœbersetzung" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:308 @@ -3298,6 +3220,9 @@ msgid "" "should be not included in the Packages file. Defaults to <filename>$(DIST)/" "$(SECTION)/i18n/Translation-en</filename>" msgstr "" +"Setzt die Ausgabe der Translation-en-Hauptdatei mit den langen Beschreibungen " +"falls Sie nicht in der Packages-Datei enthalten sind. Vorgabe ist " +"<filename>$(DIST)/$(SECTION)/i18n/Translation-en</filename>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:313 @@ -3330,7 +3255,7 @@ msgid "" msgstr "" "Setzt die Ausgabe-Contens-Datei. Vorgabe ist <filename>$(DIST)/Contents-" "$(ARCH)</filename>. Wenn diese Einstellung bewirkt, dass mehrere " -"Paketdateien auf einer einzelnen Inhaltsdatei abgebildet werden (so wie es " +"Packages-Dateien auf einer einzelnen Inhaltsdatei abgebildet werden (so wie es " "Vorgabe ist), dann wird <command>apt-ftparchive</command> diese Dateien " "automatisch integrieren." @@ -3414,12 +3339,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt-ftparchive.1.xml:364 -#, fuzzy -#| msgid "" -#| "The <literal>Tree</literal> section takes a scope tag which sets the " -#| "<literal>$(DIST)</literal> variable and defines the root of the tree (the " -#| "path is prefixed by <literal>ArchiveDir</literal>). Typically this is a " -#| "setting such as <filename>dists/woody</filename>." msgid "" "The <literal>Tree</literal> section takes a scope tag which sets the " "<literal>$(DIST)</literal> variable and defines the root of the tree (the " @@ -3429,8 +3348,8 @@ msgstr "" "Der <literal>Tree</literal>-Abschnitt nimmt eine scope-Markierung, die die " "<literal>$(DIST)</literal>-Variable setzt und die Wurzel des Baumes " "definiert (der Pfad hat den Präfix von <literal>ArchiveDir</literal>). " -"Typischerweise ist dies eine Einstellung wie <filename>dists/woody</" -"filename>." +"Typischerweise ist dies eine Einstellung wie <filename>dists/&stable-codename;" +"</filename>." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt-ftparchive.1.xml:369 @@ -3445,27 +3364,20 @@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt-ftparchive.1.xml:375 -#, fuzzy, no-wrap -#| msgid "" -#| "for i in Sections do \n" -#| " for j in Architectures do\n" -#| " Generate for DIST=scope SECTION=i ARCH=j\n" +#, no-wrap msgid "" "for i in Sections do \n" " for j in Architectures do\n" " Generate for DIST=scope SECTION=i ARCH=j\n" " " msgstr "" -"for i in Abschnitte do \n" +"for i in Abschnitte do\n" " for j in Architekturen do\n" " Generiere for DIST=Geltungsbereich SECTION=i ARCH=j\n" +" " #. type: Content of: <refentry><refsect1><refsect2><para> #: apt-ftparchive.1.xml:372 -#, fuzzy -#| msgid "" -#| "When processing a <literal>Tree</literal> section <command>apt-" -#| "ftparchive</command> performs an operation similar to:" msgid "" "When processing a <literal>Tree</literal> section <command>apt-ftparchive</" "command> performs an operation similar to: <placeholder type=\"programlisting" @@ -3473,6 +3385,7 @@ msgid "" msgstr "" "Wenn ein <literal>Tree</literal>-Abschnitt bearbeitet wird, führt " "<command>apt-ftparchive</command> eine Operation aus, die folgender ähnelt:" +"<placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:381 @@ -3827,37 +3740,27 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:574 -#, fuzzy -#| msgid "<option>-a</option>" msgid "<option>--arch</option>" -msgstr "<option>-a</option>" +msgstr "<option>--arch</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:575 -#, fuzzy -#| msgid "" -#| "If the command is either <literal>install</literal> or <literal>remove</" -#| "literal>, then this option acts like running <literal>autoremove</" -#| "literal> command, removing the unused dependency packages. Configuration " -#| "Item: <literal>APT::Get::AutomaticRemove</literal>." msgid "" "Accept in the <literal>packages</literal> and <literal>contents</literal> " "commands only package files matching <literal>*_arch.deb</literal> or " "<literal>*_all.deb</literal> instead of all package files in the given " "path. Configuration Item: <literal>APT::FTPArchive::Architecture</literal>." msgstr "" -"Wenn der Befehl entweder <literal>install</literal> oder <literal>remove</" -"literal> lautet, dann bewirkt diese Option wie das Ausführen des " -"<literal>autoremove</literal>-Befehls das Entfernen der nicht benutzten " -"Abhhängigkeitspakete. Konfigurationselement: <literal>APT::Get::" -"AutomaticRemove</literal>." +"In den Befehlen <literal>packages</literal> und <literal>contents</literal> " +"nur Paketdateien akzeptieren, die auf <literal>*_arch.deb</literal> oder " +"<literal>*_all.deb</literal> passen, anstatt aller Paketdateien im " +"angegebenen Pfad. Konfigurationselement: " +"<literal>APT::FTPArchive::Architecture</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:581 -#, fuzzy -#| msgid "<option>APT::FTPArchive::LongDescription</option>" msgid "<option>APT::FTPArchive::AlwaysStat</option>" -msgstr "<option>APT::FTPArchive::LongDescription</option>" +msgstr "<option>APT::FTPArchive::AlwaysStat</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:583 @@ -3872,6 +3775,16 @@ msgid "" "theory nobody will have these problems and therefore all these extra checks " "are useless." msgstr "" +"&apt-ftparchive; speichert so viele Metadaten wie möglich in einer " +"Zwischenspeicherdatenbank. Falls Pakete neu kompiliert und/oder neu mit der " +"gleichen Version veröffentlicht werden, führt dies zu Problemen, da die nun " +"veralteten zwischengespeicherten Metadaten, wie Größe und Prüfsumme benutzt " +"werden. Mit dieser eingeschalteten Option wird dies nicht weiter vorkommen, " +"da geprüft wird, ob die Datei geändert wurde. Beachten Sie, dass diese Option " +"standardmäßig auf »<literal>false</literal>« gesetzt ist, da es nicht " +"empfohlen wird, mehrere Versionen/Builds eines Pakets mit der gleichen " +"Versionsnummer hochzuladen, so dass theoretisch niemand dieses Probleme haben " +"sollte und all diese zusätzlichen Prüfungen daher nutzlos sind." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:593 @@ -3880,13 +3793,6 @@ msgstr "<option>APT::FTPArchive::LongDescription</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:595 -#, fuzzy -#| msgid "" -#| "This configuration option defaults to \"<literal>true</literal>\" and " -#| "should only be set to <literal>\"false\"</literal> if the Archive " -#| "generated with &apt-ftparchive; also provides <filename>Translation</" -#| "filename> files. Note that it is currently not possible to create these " -#| "files with <command>apt-ftparchive</command>." msgid "" "This configuration option defaults to \"<literal>true</literal>\" and should " "only be set to <literal>\"false\"</literal> if the Archive generated with " @@ -3897,8 +3803,9 @@ msgstr "" "Diese Konfigurationsoption ist standardmäßig »<literal>true</literal>« und " "sollte nur auf »<literal>false</literal>« gesetzt werden, wenn das mit &apt-" "ftparchive; generierte Archiv außerdem <filename>Translation</filename>-" -"Dateien bereitstellt. Beachten Sie, dass es derzeit nicht möglich ist, diese " -"Dateien mit <command>apt-ftparchive</command> zu erstellen." +"Dateien bereitstellt. Beachten Sie, dass die Hauptdatei " +"<filename>Translation-en</filename> nur durch den Befehl »generate« erstellt " +"werden kann." #. type: Content of: <refentry><refsect1><title> #: apt-ftparchive.1.xml:607 apt.conf.5.xml:1083 apt_preferences.5.xml:491 @@ -3953,41 +3860,6 @@ msgstr "APT-Werkzeug für den Umgang mit Paketen -- Befehlszeilenschnittstelle" #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> #: apt-get.8.xml:36 -#, fuzzy -#| msgid "" -#| "<command>apt-get</command> <arg><option>-sqdyfmubV</option></arg> <arg> " -#| "<option>-o= <replaceable>config_string</replaceable> </option> </arg> " -#| "<arg> <option>-c= <replaceable>config_file</replaceable> </option> </arg> " -#| "<arg> <option>-t=</option> <group choice='req'> <arg choice='plain'> " -#| "<replaceable>target_release_name</replaceable> </arg> <arg " -#| "choice='plain'> <replaceable>target_release_number_expression</" -#| "replaceable> </arg> <arg choice='plain'> " -#| "<replaceable>target_release_codename</replaceable> </arg> </group> </arg> " -#| "<group choice=\"req\"> <arg choice='plain'>update</arg> <arg " -#| "choice='plain'>upgrade</arg> <arg choice='plain'>dselect-upgrade</arg> " -#| "<arg choice='plain'>dist-upgrade</arg> <arg choice='plain'>install <arg " -#| "choice=\"plain\" rep=\"repeat\"><replaceable>pkg</replaceable> <arg> " -#| "<group choice='req'> <arg choice='plain'> " -#| "=<replaceable>pkg_version_number</replaceable> </arg> <arg " -#| "choice='plain'> /<replaceable>target_release_name</replaceable> </arg> " -#| "<arg choice='plain'> /<replaceable>target_release_codename</replaceable> " -#| "</arg> </group> </arg> </arg> </arg> <arg choice='plain'>remove <arg " -#| "choice=\"plain\" rep=\"repeat\"><replaceable>pkg</replaceable></arg></" -#| "arg> <arg choice='plain'>purge <arg choice=\"plain\" rep=\"repeat" -#| "\"><replaceable>pkg</replaceable></arg></arg> <arg choice='plain'>source " -#| "<arg choice=\"plain\" rep=\"repeat\"><replaceable>pkg</replaceable> <arg> " -#| "<group choice='req'> <arg choice='plain'> " -#| "=<replaceable>pkg_version_number</replaceable> </arg> <arg " -#| "choice='plain'> /<replaceable>target_release_name</replaceable> </arg> " -#| "<arg choice='plain'> /<replaceable>target_release_codename</replaceable> " -#| "</arg> </group> </arg> </arg> </arg> <arg choice='plain'>build-dep <arg " -#| "choice=\"plain\" rep=\"repeat\"><replaceable>pkg</replaceable></arg></" -#| "arg> <arg choice='plain'>check</arg> <arg choice='plain'>clean</arg> <arg " -#| "choice='plain'>autoclean</arg> <arg choice='plain'>autoremove</arg> <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> </group>" msgid "" "<command>apt-get</command> <arg><option>-sqdyfmubV</option></arg> <arg> " "<option>-o= <replaceable>config_string</replaceable> </option> </arg> <arg> " @@ -4017,28 +3889,23 @@ msgid "" "</group> </arg> </group>" msgstr "" "<command>apt-get</command> <arg><option>-sqdyfmubV</option></arg> <arg> " -"<option>-o= <replaceable>Konfigurationszeichenkette</replaceable> </option></" -"arg> <arg> <option>-c= <replaceable>Konfigurationsdatei</replaceable> </" -"option> </arg> <arg> <option>-t=</option> <group choice='req'> <arg " -"choice='plain'> <replaceable>Ziel-Release-Name</replaceable> </arg> <arg " -"choice='plain'> <replaceable>numerischer Ziel-Release-Ausdruck</replaceable> " -"</arg> <arg choice='plain'> <replaceable>Ziel-Release-Codename</replaceable> " -"</arg> </group> </arg> <group choice=\"req\"> <arg choice='plain'>update</" -"arg> <arg choice='plain'>upgrade</arg> <arg choice='plain'>dselect-upgrade</" -"arg> <arg choice='plain'>dist-upgrade</arg> <arg choice='plain'>install <arg " -"choice=\"plain\" rep=\"repeat\"><replaceable>pkg</replaceable> <arg> <group " -"choice='req'> <arg choice='plain'> =<replaceable>Paketversionsnummer</" -"replaceable> </arg> <arg choice='plain'> /<replaceable>Ziel-Release-Name</" -"replaceable> </arg> <arg choice='plain'> /<replaceable>Ziel-Release-" -"Codename</replaceable> </arg> </group> </arg> </arg> </arg> <arg " -"choice='plain'>remove <arg choice=\"plain\" rep=\"repeat" -"\"><replaceable>Paket</replaceable></arg></arg> <arg choice='plain'>purge " -"<arg choice=\"plain\" rep=\"repeat\"><replaceable>Paket</replaceable></arg></" -"arg> <arg choice='plain'>source <arg choice=\"plain\" rep=\"repeat" +"<option>-o= <replaceable>Konfigurationszeichenkette</replaceable> </option> " +"</arg> <arg> <option>-c= <replaceable>Konfigurationsdatei</replaceable> " +"</option> </arg> <arg> <option>-t=</option> <arg choice='plain'> <replaceable>" +"Ziel-Release</replaceable> </arg> </arg> <group choice=\"req\"> <arg " +"choice='plain'>update</arg> <arg choice='plain'>upgrade</arg> <arg " +"choice='plain'>dselect-upgrade</arg> <arg choice='plain'>dist-upgrade</arg> " +"<arg choice='plain'>install <arg choice=\"plain\" rep=\"repeat" "\"><replaceable>Paket</replaceable> <arg> <group choice='req'> <arg " -"choice='plain'> =<replaceable>Paketversionsnummer</replaceable> </arg> <arg " -"choice='plain'> /<replaceable>Ziel-Release-Name</replaceable> </arg> <arg " -"choice='plain'> /<replaceable>Ziel-Release-Codename</replaceable> </arg> </" +"choice='plain'> =<replaceable>Paket-Versionsnummer</replaceable> </arg> <arg " +"choice='plain'> /<replaceable>Ziel-Release</replaceable> </arg> </group> </" +"arg> </arg> </arg> <arg choice='plain'>remove <arg choice=\"plain\" rep=" +"\"repeat\"><replaceable>Paket</replaceable></arg></arg> <arg " +"choice='plain'>purge <arg choice=\"plain\" rep=\"repeat\"><replaceable>Paket</" +"replaceable></arg></arg> <arg choice='plain'>source <arg choice=\"plain\" " +"rep=\"repeat\"><replaceable>Paket</replaceable> <arg> <group choice='req'> " +"<arg choice='plain'> =<replaceable>Paket-Versionsnummer</replaceable> </arg> " +"<arg choice='plain'> /<replaceable>Ziel-Release</replaceable> </arg> </" "group> </arg> </arg> </arg> <arg choice='plain'>build-dep <arg choice=\"plain" "\" rep=\"repeat\"><replaceable>Paket</replaceable></arg></arg> <arg " "choice='plain'>check</arg> <arg choice='plain'>clean</arg> <arg " @@ -4050,12 +3917,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><para> #: apt-get.8.xml:112 -#, 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;, &gnome-apt; and &wajig;." 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 " @@ -4065,8 +3926,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;, &gnome-" -"apt; und &wajig;." +"Oberflächenschnittstellen, wie &dselect;, &aptitude;, &synaptic; und &wajig;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:121 apt-key.8.xml:124 @@ -4532,19 +4392,6 @@ msgstr "<option>--fix-broken</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:320 -#, 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. Any Package that are specified must " -#| "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 " @@ -4561,7 +4408,7 @@ msgstr "" "Beheben; Versucht ein System von vorhandenen beschädigten Abhängigkeiten zu " "korrigieren. Diese Option kann, wenn sie mit »install«/»remove« benutzt " "wird, einige Pakete weglassen, um es APT zu erlauben, eine wahrscheinliche " -"Lösung herzuleiten. Jedes Paket, das angegeben ist, muss das Problem " +"Lösung herzuleiten. Falls Pakete angegeben wurden, müssen diese das Problem " "vollständig korrigieren. Die Option ist manchmal nötig, wenn APT zum ersten " "Mal ausgeführt wird. APT selbst erlaubt es nicht, dass auf einen System " "beschädigte Paketabhängigkeiten existieren. Es ist möglich, dass eine " @@ -4842,19 +4689,11 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:433 -#, fuzzy -#| msgid "<option>--no-upgrade</option>" msgid "<option>--only-upgrade</option>" -msgstr "<option>--no-upgrade</option>" +msgstr "<option>--only-upgrade</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:434 -#, fuzzy -#| msgid "" -#| "Do not upgrade packages; When used in conjunction with <literal>install</" -#| "literal>, <literal>no-upgrade</literal> will prevent packages on the " -#| "command line from being upgraded if they are already installed. " -#| "Configuration Item: <literal>APT::Get::Upgrade</literal>." msgid "" "Do not install new packages; When used in conjunction with <literal>install</" "literal>, <literal>only-upgrade</literal> will prevent packages on the " @@ -4862,9 +4701,9 @@ msgid "" "Configuration Item: <literal>APT::Get::Only-Upgrade</literal>." msgstr "" "Kein Upgrade von Paketen durchführen; Wenn es zusammen mit <literal>install</" -"literal> benutzt wird, wird <literal>no-upgrade</literal> auf der " +"literal> benutzt wird, wird <literal>only-upgrade</literal> auf der " "Befehlszeile ein Upgrade von Paketen verhindern, wenn sie bereits " -"installiert sind. Konfigurationselement: <literal>APT::Get::Upgrade</" +"installiert sind. Konfigurationselement: <literal>APT::Get::Only-Upgrade</" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> @@ -4921,13 +4760,6 @@ msgstr "<option>--purge</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:460 -#, fuzzy -#| 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. <option>remove --purge</option> is equivalent for " -#| "<option>purge</option> command. Configuration Item: <literal>APT::Get::" -#| "Purge</literal>." 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. " @@ -5205,18 +5037,14 @@ msgstr "APT-Schlüsselverwaltungsdienstprogramm" #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> #: apt-key.8.xml:28 -#, fuzzy -#| msgid "" -#| "<command>apt-key</command> <arg><replaceable>command</replaceable>/</arg> " -#| "<arg rep=\"repeat\"><option><replaceable>arguments</replaceable></" -#| "option></arg>" msgid "" "<command>apt-key</command> <arg><option>--keyring <replaceable>filename</" "replaceable></option></arg> <arg><replaceable>command</replaceable></arg> " "<arg rep=\"repeat\"><option><replaceable>arguments</replaceable></option></" "arg>" msgstr "" -"<command>apt-key</command> <arg><replaceable>Befehl</replaceable>/</arg> " +"<command>apt-key</command> <arg><option>--keyring <replaceable>Dateiname</" +"replaceable></option></arg> <arg><replaceable>Befehl</replaceable></arg> " "<arg rep=\"repeat\"><option><replaceable>Argumente</replaceable></option></" "arg>" @@ -5327,8 +5155,8 @@ msgid "" "Update the local keyring with the keyring of Debian archive keys and removes " "from the keyring the archive keys which are no longer valid." msgstr "" -"Den lokalen Schlüsselring mit dem Schlüsselring der Debian-Archivschlüssel " -"aktualisieren und aus dem Schlüsselring die Archivschlüssel entfernen, die " +"Den lokalen Schlüsselbund mit dem Schlüsselbund der Debian-Archivschlüssel " +"aktualisieren und aus dem Schlüsselbund die Archivschlüssel entfernen, die " "nicht länger gültig sind." #. type: Content of: <refentry><refsect1><para> @@ -5337,13 +5165,13 @@ msgid "" "Note that options need to be defined before the commands described in the " "previous section." msgstr "" +"Beachten Sie, dass Optionen vor den im vorherigen Abschnitt beschriebenen " +"Befehlen definiert sein müssen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-key.8.xml:142 -#, fuzzy -#| msgid "add <replaceable>filename</replaceable>" msgid "--keyring <replaceable>filename</replaceable>" -msgstr "add <replaceable>Dateiname</replaceable>" +msgstr "--keyring <replaceable>Dateiname</replaceable>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:143 @@ -5355,11 +5183,17 @@ msgid "" "filename> is the primary keyring which means that e.g. new keys are added to " "this one." msgstr "" +"Mit dieser Option ist es möglich, eine spezielle Schlüsselbunddatei " +"anzugeben, mit der der Befehl arbeitet. Vorgabe ist, dass ein Befehl mit der " +"Datei <filename>trusted.gpg</filename> ausgeführt wird, ebenso wie alle Teile " +"im Verzeichnis <filename>trusted.gpg.d</filename>, wodurch " +"<filename>trusted.gpg</filename> der primäre Schlüsselbund wird, d.h. neue " +"Schlüssel werden zu diesem hinzugefügt." #. type: Content of: <refentry><refsect1><variablelist> #: apt-key.8.xml:156 msgid "&file-trustedgpg;" -msgstr "" +msgstr "&file-trustedgpg;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-key.8.xml:158 @@ -5379,7 +5213,7 @@ msgstr "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:163 msgid "Keyring of Debian archive trusted keys." -msgstr "Schlüsselring vertrauenswürdiger Schlüssel des Debian-Archivs." +msgstr "Schlüsselbund vertrauenswürdiger Schlüssel des Debian-Archivs." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-key.8.xml:166 @@ -5392,7 +5226,7 @@ msgstr "" #: apt-key.8.xml:167 msgid "Keyring of Debian archive removed trusted keys." msgstr "" -"Schlüsselring entfernter vertrauenswürdiger Schlüssel des Debian-Archivs." +"Schlüsselbund entfernter vertrauenswürdiger Schlüssel des Debian-Archivs." #. type: Content of: <refentry><refsect1><para> #: apt-key.8.xml:176 @@ -5571,7 +5405,7 @@ msgstr "Die Programmversion anzeigen." #. type: Content of: <refentry><refsect1><variablelist> #: apt-mark.8.xml:124 msgid " &file-extended_states;" -msgstr "" +msgstr " &file-extended_states;" #. type: Content of: <refentry><refsect1><para> #: apt-mark.8.xml:129 @@ -5684,7 +5518,7 @@ msgstr "" "Die Kette des Vertrauens in Debian beginnt, wenn eine Betreuer ein neues " "Paket oder eine neue Version eines Pakets in das Debian-Archiv hochlädt. " "Dieser Upload muss mit einem Schlüssel des Betreuers, der sich im " -"Schlüsselring der Debian-Betreuer befindet (verfügbar im Paket debian-" +"Schlüsselbund der Debian-Betreuer befindet (verfügbar im Paket debian-" "keyring) signiert werden. Betreuerschlüssel werden von anderen Betreuern " "gemäß vorbestimmter Regeln signiert, um die Identität des Schlüsselinhabers " "sicherzustellen." @@ -5705,7 +5539,7 @@ msgstr "" "Paketdateien berechnet und in die Release-Datei getan. Dann wird die Release-" "Datei durch den Archivschlüssel signiert (der einmal jährlich erzeugt und " "per FTP-Server verteilt wird). Dieser Schlüssel ist außerdem der Debian-" -"Schlüsselring." +"Schlüsselbund." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:102 @@ -5861,7 +5695,7 @@ msgid "" "outlined." msgstr "" "Immer wenn sich die Inhalte des Archivs ändern (neue Pakete hinzugefügt oder " -"entfernt werden), muss der Archivbetreuen den beiden zuerst skizzierten " +"entfernt werden), muss der Archivbetreuer den beiden zuerst skizzierten " "Schritten folgen." #. type: Content of: <refentry><refsect1><para> @@ -5973,12 +5807,6 @@ msgstr "" #. The last update date #. type: Content of: <refentry><refentryinfo> #: apt.conf.5.xml:13 -#, fuzzy -#| msgid "" -#| "&apt-author.jgunthorpe; &apt-author.team; <author> <firstname>Daniel</" -#| "firstname> <surname>Burrows</surname> <contrib>Initial documentation of " -#| "Debug::*.</contrib> <email>dburrows@debian.org</email> </author> &apt-" -#| "email; &apt-product; <date>18 September 2009</date>" msgid "" "&apt-author.jgunthorpe; &apt-author.team; <author> <firstname>Daniel</" "firstname> <surname>Burrows</surname> <contrib>Initial documentation of " @@ -5988,7 +5816,7 @@ msgstr "" "&apt-author.jgunthorpe; &apt-author.team; <author> <firstname>Daniel</" "firstname> <surname>Burrows</surname> <contrib>Erste Dokumentation von " "Debug::*.</contrib> <email>dburrows@debian.org</email> </author> &apt-email; " -"&apt-product; <date>18. September 2009</date>" +"&apt-product; <date>16. Januar 2010</date>" #. type: Content of: <refentry><refnamediv><refname> #: apt.conf.5.xml:28 apt.conf.5.xml:35 @@ -6013,6 +5841,11 @@ msgid "" "made. All tools therefore share the configuration files and also use a " "common command line parser to provide a uniform environment." msgstr "" +"<filename>apt.conf</filename> ist die Hauptkonfigurationsdatei für die " +"APT-Werkzeugsammlung, aber bei weitem nicht der einzige Ort, an dem " +"Änderungen vorgenommen werden können. Alle Werkzeuge nutzen die " +"Konfigurationsdateien daher gemeinsam und außerdem wird ein einheitlicher " +"Befehlszeilenauswerter benutzt, um eine einheitliche Umgebung bereitzustellen." #. type: Content of: <refentry><refsect1><orderedlist><para> #: apt.conf.5.xml:45 @@ -6020,6 +5853,8 @@ msgid "" "When an APT tool starts up it will read the configuration files in the " "following order:" msgstr "" +"Wenn ein APT-Werkzeug startet, wird es die Konfigurationsdateien in der " +"folgenden Reihenfolge lesen:" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> #: apt.conf.5.xml:47 @@ -6027,6 +5862,8 @@ msgid "" "the file specified by the <envar>APT_CONFIG</envar> environment variable (if " "any)" msgstr "" +"die Datei, die durch die Umgebungsvariable <envar>APT_CONFIG</envar> " +"angegeben wird (falls gesetzt)" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> #: apt.conf.5.xml:49 @@ -6036,12 +5873,19 @@ msgid "" "which only contain alphanumeric, hyphen (-), underscore (_) and period (.) " "characters - otherwise they will be silently ignored." msgstr "" +"alle Dateien in <literal>Dir::Etc::Parts</literal> in aufsteigender " +"alphanumerischer Reihenfolge, die kein »<literal>conf</literal>« als " +"Dateinamenserweiterung haben und die alphanumerische Zeichen, Bindestriche " +"(-), Unterstriche (_) und Punkte (.) enthalten – andernfalls werden sie " +"stillschweigend ignoriert." #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> #: apt.conf.5.xml:54 msgid "" "the main configuration file specified by <literal>Dir::Etc::main</literal>" msgstr "" +"die Hauptkonfigurationsdatei, die durch <literal>Dir::Etc::main</literal> " +"angegeben wird" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> #: apt.conf.5.xml:56 @@ -6049,11 +5893,13 @@ msgid "" "the command line options are applied to override the configuration " "directives or to load even more configuration files." msgstr "" +"die Befehlszeilenoptionen werden angewandt, um die Konfigurationsdirektiven " +"zu überschreiben oder um sogar mehrere Konfigurationsdateien zu laden." #. type: Content of: <refentry><refsect1><title> #: apt.conf.5.xml:60 msgid "Syntax" -msgstr "" +msgstr "Syntax" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:61 @@ -6295,12 +6141,6 @@ msgstr "Default-Release" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:153 -#, fuzzy -#| msgid "" -#| "Default release to install packages from if more than one version " -#| "available. Contains release name, codename or release version. Examples: " -#| "'stable', 'testing', 'unstable', 'lenny', 'squeeze', '4.0', '5.0*'. See " -#| "also &apt-preferences;." msgid "" "Default release to install packages from if more than one version available. " "Contains release name, codename or release version. Examples: 'stable', " @@ -6309,8 +6149,8 @@ msgid "" msgstr "" "Standard-Release von dem Pakete installiert werden, wenn mehr als eine " "Version verfügbar ist. Enthält Release-Name, Codename oder Release-Version. " -"Beispiele: »stable«, »testing, »unstable«, »lenny«, »squeeze«, »4.0«, »5.0«. " -"Siehe auch &apt-preferences;." +"Beispiele: »stable«, »testing, »unstable«, »&stable-codename;«, " +"»&testing-codename;«, »4.0«, »5.0*«. Siehe auch &apt-preferences;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:158 @@ -6353,37 +6193,6 @@ msgstr "Immediate-Configure" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:171 -#, fuzzy -#| msgid "" -#| "Defaults to on which will cause APT to install essential and important " -#| "packages as fast as possible in the install/upgrade operation. This is " -#| "done to limit the effect of a failing &dpkg; call: If this option is " -#| "disabled APT does treat an important package in the same way as an extra " -#| "package: Between the unpacking of the important package A and his " -#| "configuration can then be many other unpack or configuration calls, e.g. " -#| "for package B which has no relation to A, but causes the dpkg call to " -#| "fail (e.g. because maintainer script of package B generates an error) " -#| "which results in a system state in which package A is unpacked but " -#| "unconfigured - each package depending on A is now no longer guaranteed to " -#| "work as their dependency on A is not longer satisfied. The immediate " -#| "configuration marker is also applied to all dependencies which can " -#| "generate a problem if the dependencies e.g. form a circle as a dependency " -#| "with the immediate flag is comparable with a Pre-Dependency. So in theory " -#| "it is possible that APT encounters a situation in which it is unable to " -#| "perform immediate configuration, error out and refers to this option so " -#| "the user can deactivate the immediate configuration temporary to be able " -#| "to perform an install/upgrade again. Note the use of the word \"theory\" " -#| "here as this problem was only encountered by now in real world a few " -#| "times in non-stable distribution versions and caused by wrong " -#| "dependencies of the package in question or by a system in an already " -#| "broken state, so you should not blindly disable this option as the " -#| "mentioned scenario above is not the only problem immediate configuration " -#| "can help to prevent in the first place. Before a big operation like " -#| "<literal>dist-upgrade</literal> is run with this option disabled it " -#| "should be tried to explicitly <literal>install</literal> the package APT " -#| "is unable to configure immediately, but please make sure to report your " -#| "problem also to your distribution and to the APT team with the buglink " -#| "below so they can work on improving or correcting the upgrade process." msgid "" "Defaults to on which will cause APT to install essential and important " "packages as fast as possible in the install/upgrade operation. This is done " @@ -6476,7 +6285,7 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:202 msgid "Cache-Start, Cache-Grow and Cache-Limit" -msgstr "" +msgstr "Cache-Start, Cache-Grow und Cache-Limit" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:203 @@ -6497,6 +6306,24 @@ msgid "" "literal> is 0 which stands for no limit. If <literal>Cache-Grow</literal> " "is set to 0 the automatic grow of the cache is disabled." msgstr "" +"APT benutzt seit Version 0.7.26 eine Zwischenspeicherdatei für " +"Speicherabbilder mit veränderlicher Größe um »verfügbare« Informationen zu " +"speichern. <literal>Cache-Start</literal> dient als Hinweis, auf welche " +"Größe der Zwischenspeicher wachsen wird und enthält daher den Betrag, welchen " +"Speicher APT beim Start abruft. Die Vorgabe ist 20971520 Byte (~20 MB). " +"Beachten Sie, dass diese Speichermenge für APT verfügbar sein muss, da es " +"sonst unschön scheitert. Für Geräte mit eingeschränktem Speicher sollten " +"diese Werte vermindert werden, während sie für Systeme mit vielen " +"konfigurierten Quellen erhöht werden könnten. <literal>Cache-Grow</literal> " +"definiert in Byte mit einer Vorgabe von 1048576 (~1 MB) um wieviel die Größe " +"des Zwischenspeichers vergößert werden soll, falls der durch " +"<literal>Cache-Start</literal> vorreservierte nicht ausreicht. Dieser Wert " +"wird wieder und wieder verwandt bis entweder der Zwischenspeicher groß genug " +"ist, um alle Informationen zu speichern oder die Zwischenspeichergröße das " +"<literal>Cache-Limit</literal> erreicht. Vorgabe für " +"<literal>Cache-Limit</literal> ist 0, was bedeutet, dass es kein Limit gibt. " +"Falls <literal>Cache-Grow</literal> auf 0 gesetzt ist, kann der " +"Zwischenspeicher nicht automatisch wachsen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:218 @@ -6563,7 +6390,7 @@ msgstr "Die Erwerbgruppe" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: apt.conf.5.xml:244 msgid "Check-Valid-Until" -msgstr "" +msgstr "Check-Valid-Until" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:245 @@ -6576,11 +6403,20 @@ msgid "" "header, but if they don't or a stricter value is volitional the following " "<literal>Max-ValidTime</literal> option can be used." msgstr "" +"Sicherheitsbezogene Option wird als »true« vorgegeben, da eine verfallende " +"Ãœberprüfung für eine Release-Datei langzeitige Wiederholungsangriffe " +"verhindert und zum Beispiel Anwendern auch helfen kann, länger nicht " +"aktualisierte Spiegel zu erkennen – diese Funktion hängt jedoch von der " +"Richtigkeit der Zeiteinstellung auf dem Anwendersystem ab. Archivbetreuer " +"sind aufgefordert Release-Dateien mit der Kopfzeile " +"<literal>Valid-Until</literal> zu erstellen. Falls sie das nicht tun oder ein " +"strengerer Wert gewollt ist, kann die Option <literal>Max-ValidTime</literal> " +"benutzt werden." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: apt.conf.5.xml:255 msgid "Max-ValidTime" -msgstr "" +msgstr "Max-ValidTime" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:256 @@ -6595,6 +6431,16 @@ msgid "" "settings can be made by appending the label of the archive to the option " "name." msgstr "" +"Sekunden, die die Release-Datei als gültig betrachtet werden sollte, nachdem " +"sie erzeugt wurde. Vorgabe ist »für immer« (0), falls die Release-Datei des " +"Archivs keine <literal>Valid-Until</literal>-Kopfzeile enthält. Falls dies " +"so ist, ist dieses Datum vorgegeben. Das Datum aus der Release-Datei oder das " +"Datum, das durch die Erstellungszeit der Release-Datei angegeben wurde " +"(<literal>Date</literal>-Kopfzeile) plus die mit diesen Optionen angegebenen " +"Sekunden werden benutzt, um zu prüfen, ob die Bestätigung einer Datei " +"abgelaufen ist indem das neuere Datum der beiden benutzt wird. " +"Archivspezifische Einstellungen können durch Anhängen des Archivetiketts an " +"die Option »name« vorgenommen werden." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: apt.conf.5.xml:268 @@ -6621,6 +6467,13 @@ msgid "" "the size of the targeted file. If one of these limits is exceeded the " "complete file is downloaded instead of the patches." msgstr "" +"Es sind außerdem zwei Unteroptionen verfügbar, um die Benutzung von PDiffs zu " +"begrenzen: Mit <literal>FileLimit</literal> kann angegeben werden, wie viele " +"PDiff-Dateien höchstens heruntergeladen werden, um eine Datei zu reparieren. " +"Andererseits gibt <literal>SizeLimit</literal> die maximale Prozentzahl der " +"Größe aller Patches im Vergleich zur Zieldatei an. Wenn eine dieser " +"Begrenzungen überschritten wird, wird die komplette Datei anstelle der Patche " +"heruntergeladen." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: apt.conf.5.xml:281 @@ -7124,16 +6977,6 @@ msgstr "Sprachen" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:460 -#, fuzzy -#| msgid "" -#| "The Languages subsection controls which <filename>Translation</filename> " -#| "files are downloaded and in which order APT tries to display the " -#| "Description-Translations. APT will try to display the first available " -#| "Description for the Language which is listed at first. Languages can be " -#| "defined with their short or long Languagecodes. Note that not all " -#| "archives provide <filename>Translation</filename> files for every " -#| "Language - especially the long Languagecodes are rare, so please inform " -#| "you which ones are available before you set here impossible values." msgid "" "The Languages subsection controls which <filename>Translation</filename> " "files are downloaded and in which order APT tries to display the Description-" @@ -7162,26 +7005,6 @@ msgstr "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:466 -#, fuzzy -#| msgid "" -#| "The default list includes \"environment\" and \"en\". " -#| "\"<literal>environment</literal>\" has a special meaning here: It will be " -#| "replaced at runtime with the languagecodes extracted from the " -#| "<literal>LC_MESSAGES</literal> enviroment variable. It will also ensure " -#| "that these codes are not included twice in the list. If " -#| "<literal>LC_MESSAGES</literal> is set to \"C\" only the " -#| "<filename>Translation-en</filename> file (if available) will be used. To " -#| "force apt to use no Translation file use the setting <literal>Acquire::" -#| "Languages=none</literal>. \"<literal>none</literal>\" is another special " -#| "meaning code which will stop the search for a fitting " -#| "<filename>Translation</filename> file. This can be used by the system " -#| "administrator to let APT know that it should download also this files " -#| "without actually use them if not the environment specifies this " -#| "languages. So the following example configuration will result in the " -#| "order \"en, de\" in an english and in \"de, en\" in a german " -#| "localization. Note that \"fr\" is downloaded, but not used if APT is not " -#| "used in a french localization, in such an environment the order would be " -#| "\"fr, de, en\". <placeholder type=\"programlisting\" id=\"0\"/>" msgid "" "The default list includes \"environment\" and \"en\". " "\"<literal>environment</literal>\" has a special meaning here: It will be " @@ -7355,6 +7178,13 @@ msgid "" "z]+</literal> is silently ignored. As seen in the last default value these " "patterns can use regular expression syntax." msgstr "" +"Die Liste <literal>Ignore-Files-Silently</literal> kann benutzt werden, um " +"anzugeben welche Dateien APT beim Auswerten der Dateien im Verzeichnisteil " +"stillschweigend ignorieren sollte. Standardmäßig werden Dateien, die auf " +"<literal>.disabled</literal>, <literal>~</literal>, <literal>.bak</literal> " +"oder <literal>.dpkg-[a-z]+</literal> endenn stillschweigend ignoriert. Wie " +"bei den letzten Vorgabwerten gesehen, kann die Syntax für reguläre Ausdrücke " +"verwandt werden." #. type: Content of: <refentry><refsect1><title> #: apt.conf.5.xml:541 @@ -8305,11 +8135,10 @@ msgstr "&apt-cache;, &apt-config;, &apt-preferences;." #. The last update date #. type: Content of: <refentry><refentryinfo> #: apt_preferences.5.xml:13 -#, fuzzy -#| msgid "&apt-author.team; &apt-email; &apt-product; <date>04 May 2009</date>" msgid "" "&apt-author.team; &apt-email; &apt-product; <date>16 February 2010</date>" -msgstr "&apt-author.team; &apt-email; &apt-product; <date>04. Mai 2009</date>" +msgstr "" +"&apt-author.team; &apt-email; &apt-product; <date>16. Februar 2010</date>" #. type: Content of: <refentry><refnamediv><refname> #: apt_preferences.5.xml:21 apt_preferences.5.xml:28 @@ -8385,6 +8214,16 @@ msgid "" "expected in older or newer releases or together with other packages from " "different releases. You have been warned." msgstr "" +"Eigenschaften sind in der Hand eines Systemadministrator ein große Stärke, " +"können aber auch sein größter Albtraum werden, wenn sie unvorsichtig benutzt " +"werden. APT wird die Eigenschaften nicht abfragen, so dass deshalb falsche " +"Einstellungen zu nicht installierbaren Paketen oder falschen Entscheidungen " +"während des Upgrades führen. Sogar noch mehr Probleme treten auf, wenn " +"mehrere Distributions-Release ohne gutes Verständnis der folgenden Absätze " +"gemischt werden. Pakete, die in einem speziellen Release enthalten sind, sind " +"nicht in älteren und neueren Releases oder zusammen mit Paketen " +"unterschiedlicher Releases getestet und funktionieren daher erwartungsgemäß " +"nicht. Sind wurden gewarnt." #. type: Content of: <refentry><refsect1><para> #: apt_preferences.5.xml:67 @@ -8450,10 +8289,8 @@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:101 -#, fuzzy -#| msgid "priority 100" msgid "priority 1" -msgstr "Priorität 100" +msgstr "Priorität 1" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:102 @@ -8462,6 +8299,9 @@ msgid "" "filename> files are marked as \"NotAutomatic: yes\" like the debian " "experimental archive." msgstr "" +"zu den Versionen, die von Archiven kommen, deren " +"<filename>Release</filename>-Dateien als »NotAutomatic: yes« markiert sind, " +"wie das Debian-Experimental-Archiv." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:107 @@ -8512,11 +8352,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:123 -#, fuzzy -#| msgid "" -#| "If the target release has not been specified then APT simply assigns " -#| "priority 100 to all installed package versions and priority 500 to all " -#| "uninstalled package versions." msgid "" "If the target release has not been specified then APT simply assigns " "priority 100 to all installed package versions and priority 500 to all " @@ -8526,7 +8361,9 @@ msgid "" msgstr "" "Wenn das Ziel-Release nicht angegeben wurde, dann weist APT einfach allen " "installierten Paketversionen eine Priorität von 100 und allen nicht " -"installierten Paketversionen eine Priorität von 500 zu." +"installierten Paketversionen eine Priorität von 500 zu, außer wenn Versionen " +"aus Archiven kommen, in deren Release-Dateien »NotAutomatic: yes« markiert " +"ist – diese Versionen erhalten die Prirität 1." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:129 @@ -8723,32 +8560,26 @@ msgid "" "high priority to all versions available from the server identified by the " "hostname \"ftp.de.debian.org\"" msgstr "" +"Eine Mahnung zur Vorsicht: Das hier benutzte Schlüsselwort ist " +"»<literal>origin</literal>«, was zum Finden des Rechnernamens benutzt werden " +"kann. Der folgende Eintrag wird allen Versionen eine hohe Priorität " +"zuweisen, die auf dem Server verfügbar sind, der durch den Rechnernamen " +"»ftp.de.debian.org« identifiziert wird." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> #: apt_preferences.5.xml:210 -#, fuzzy, no-wrap -#| msgid "" -#| "Package: *\n" -#| "Pin: origin \"\"\n" -#| "Pin-Priority: 999\n" +#, no-wrap msgid "" "Package: *\n" "Pin: origin \"ftp.de.debian.org\"\n" "Pin-Priority: 999\n" msgstr "" "Package: *\n" -"Pin: origin \"\"\n" +"Pin: origin \"ftp.de.debian.org\"\n" "Pin-Priority: 999\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:214 -#, fuzzy -#| msgid "" -#| "A note of caution: the keyword used here is \"<literal>origin</literal>" -#| "\". This should not be confused with the Origin of a distribution as " -#| "specified in a <filename>Release</filename> file. What follows the " -#| "\"Origin:\" tag in a <filename>Release</filename> file is not an Internet " -#| "address but an author or vendor name, such as \"Debian\" or \"Ximian\"." msgid "" "This should <emphasis>not</emphasis> be confused with the Origin of a " "distribution as specified in a <filename>Release</filename> file. What " @@ -8756,12 +8587,11 @@ msgid "" "Internet address but an author or vendor name, such as \"Debian\" or \"Ximian" "\"." msgstr "" -"Ein Wort der Warnung: Das hier benutzte Schlüsselwort ist »<literal>origin</" -"literal>«. Dies sollte nicht mit der Herkunft einer Distribution verwechselt " -"werden, wie sie in einer <filename>Release</filename>-Datei angegeben wurde. " -"Was dem »Origin:«-Kennzeichen in einer <filename>Release</filename>-Datei " -"folgt, ist keine Internet-Adresse, sondern ein Autoren- oder Anbietername, " -"wie »Debian« oder »Ximian«." +"Dies sollte nicht mit der Herkunft einer Distribution verwechselt werden, wie " +"sie in einer <filename>Release</filename>-Datei angegeben wurde. Was dem " +"»Origin:«-Kennzeichen in einer <filename>Release</filename>-Datei folgt, ist " +"keine Internet-Adresse, sondern ein Autoren- oder Anbietername, wie »Debian« " +"oder »Ximian«." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:219 @@ -8788,34 +8618,25 @@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:228 -#, fuzzy -#| msgid "" -#| "The following record assigns a high priority to all package versions " -#| "belonging to any distribution whose Codename is \"<literal>squeeze</" -#| "literal>\"." msgid "" "The following record assigns a high priority to all package versions " "belonging to any distribution whose Codename is \"<literal>&testing-codename;" "</literal>\"." msgstr "" "Der folgende Datensatz weist allen Paketversionen, die zu einer Distribution " -"gehören, deren Codename »<literal>squeeze</literal>« ist, eine hohe " -"Priorität zu." +"gehören, deren Codename »<literal>&testing-codename;</literal>« ist, eine " +"hohe Priorität zu." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> #: apt_preferences.5.xml:232 -#, fuzzy, no-wrap -#| msgid "" -#| "Package: *\n" -#| "Pin: release n=squeeze\n" -#| "Pin-Priority: 900\n" +#, no-wrap msgid "" "Package: *\n" "Pin: release n=&testing-codename;\n" "Pin-Priority: 900\n" msgstr "" "Package: *\n" -"Pin: release n=squeeze\n" +"Pin: release n=&testing-codename;\n" "Pin-Priority: 900\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> @@ -9127,14 +8948,6 @@ msgstr "die <literal>Codename:</literal>-Zeile" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:392 -#, fuzzy -#| msgid "" -#| "names the codename to which all the packages in the directory tree " -#| "belong. For example, the line \"Codename: squeeze\" specifies that all " -#| "of the packages in the directory tree below the parent of the " -#| "<filename>Release</filename> file belong to a version named " -#| "<literal>squeeze</literal>. Specifying this value in the APT preferences " -#| "file would require the line:" msgid "" "names the codename to which all the packages in the directory tree belong. " "For example, the line \"Codename: &testing-codename;\" specifies that all of " @@ -9144,18 +8957,17 @@ msgid "" "preferences file would require the line:" msgstr "" "benennt den Codenamen, zu dem alle Pakete im Verzeichnisbaum gehören. Die " -"Zeile »Codename: squeeze« gibt zum Beispiel an, dass alle Pakete im " +"Zeile »Codename: &testing-codename;« gibt zum Beispiel an, dass alle Pakete im " "Verzeichnisbaum unterhalb des der <filename>Release</filename>-Datei " -"übergeordneten Verzeichnisses zu einer Version mit Namen <literal>squeeze</" -"literal> gehören. Diesen Wert in der APT-Einstellungsdatei anzugeben würde " -"die folgende Zeile benötigen:" +"übergeordneten Verzeichnisses zu einer Version mit Namen " +"<literal>&testing-codename;</literal> gehören. Diesen Wert in der " +"APT-Einstellungsdatei anzugeben würde die folgende Zeile benötigen:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> #: apt_preferences.5.xml:401 -#, fuzzy, no-wrap -#| msgid "Pin: release a=stable\n" +#, no-wrap msgid "Pin: release n=&testing-codename;\n" -msgstr "Pin: release a=stable\n" +msgstr "Pin: release n=&testing-codename;\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:408 @@ -9263,17 +9075,6 @@ msgstr "Pin: release l=Debian\n" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:363 -#, fuzzy -#| msgid "" -#| "The <filename>Release</filename> file is normally found in the directory " -#| "<filename>.../dists/<replaceable>dist-name</replaceable></filename>: for " -#| "example, <filename>.../dists/stable/Release</filename>, or <filename>.../" -#| "dists/woody/Release</filename>. It consists of a single multi-line " -#| "record which applies to <emphasis>all</emphasis> of the packages in the " -#| "directory tree below its parent. Unlike the <filename>Packages</" -#| "filename> file, nearly all of the lines in a <filename>Release</filename> " -#| "file are relevant for setting APT priorities: <placeholder type=" -#| "\"variablelist\" id=\"0\"/>" msgid "" "The <filename>Release</filename> file is normally found in the directory " "<filename>.../dists/<replaceable>dist-name</replaceable></filename>: for " @@ -9288,12 +9089,12 @@ msgstr "" "Die <filename>Release</filename>-Datei ist normalerweise im Verzeichnis " "<filename>.../dists/<replaceable>Distributionsname</replaceable></filename> " "zu finden, zum Beispiel <filename>.../dists/stable/Release</filename> oder " -"<filename>.../dists/woody/Release</filename>. Sie besteht aus einem " -"einzelnen mehrzeiligen Datensatz, der auf <emphasis>alle</emphasis> Pakete " -"im Verzeichnisbaum unterhalb des übergeordneten Verzeichnisses zutrifft. " -"Anders als die <filename>Packages</filename>-Datei sind nahezu alle Zeilen " -"in einer <filename>Release</filename>-Datei für das Setzen von APT-" -"Prioritäten relevant: <placeholder type=\"variablelist\" id=\"0\"/>" +"<filename>.../dists/&stable-codename;/Release</filename>. Sie besteht aus " +"einem einzelnen mehrzeiligen Datensatz, der auf <emphasis>alle</emphasis> " +"Pakete im Verzeichnisbaum unterhalb des übergeordneten Verzeichnisses " +"zutrifft. Anders als die <filename>Packages</filename>-Datei sind nahezu alle " +"Zeilen in einer <filename>Release</filename>-Datei für das Setzen von " +"APT-Prioritäten relevant: <placeholder type=\"variablelist\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:469 @@ -9523,22 +9324,7 @@ msgstr "Die Entwicklung eines Codename-Releases verfolgen" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:600 -#, fuzzy, no-wrap -#| msgid "" -#| "Explanation: Uninstall or do not install any Debian-originated package versions\n" -#| "Explanation: other than those in the distribution codenamed with squeeze or sid\n" -#| "Package: *\n" -#| "Pin: release n=squeeze\n" -#| "Pin-Priority: 900\n" -#| "\n" -#| "Explanation: Debian unstable is always codenamed with sid\n" -#| "Package: *\n" -#| "Pin: release a=sid\n" -#| "Pin-Priority: 800\n" -#| "\n" -#| "Package: *\n" -#| "Pin: release o=Debian\n" -#| "Pin-Priority: -10\n" +#, no-wrap msgid "" "Explanation: Uninstall or do not install any Debian-originated package versions\n" "Explanation: other than those in the distribution codenamed with &testing-codename; or sid\n" @@ -9556,9 +9342,10 @@ msgid "" "Pin-Priority: -10\n" msgstr "" "Explanation: Deinstallieren oder nicht installieren von anderen von Debian\n" -"Explanation: stammenden Paketversionen als denen der Squeeze- oder Sid-Distribution\n" +"Explanation: stammenden Paketversionen als denen der &testing-codename;-\n" +"Explanation: oder Sid-Distribution\n" "Package: *\n" -"Pin: release n=squeeze\n" +"Pin: release n=&testing-codename;\n" "Pin-Priority: 900\n" "\n" "Explanation: Debian-Unstable hat immer den Codenamen sid\n" @@ -9598,12 +9385,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:617 -#, fuzzy -#| msgid "" -#| "With a suitable &sources-list; file and the above preferences file, any " -#| "of the following commands will cause APT to upgrade to the latest version" -#| "(s) in the release codenamed with <literal>squeeze</literal>. " -#| "<placeholder type=\"programlisting\" id=\"0\"/>" msgid "" "With a suitable &sources-list; file and the above preferences file, any of " "the following commands will cause APT to upgrade to the latest version(s) in " @@ -9612,8 +9393,8 @@ msgid "" msgstr "" "Mit einer geeigneten &sources-list;-Datei und der obigen Einstellungsdatei " "wird jeder der folgenden Befehle APT veranlassen, ein Upgrade auf die letzte" -"(n) Version(en) im Release mit Codenamen <literal>squeeze</literal> " -"durchzuführen. <placeholder type=\"programlisting\" id=\"0\"/>" +"(n) Version(en) im Release mit Codenamen <literal>&testing-codename;" +"</literal> durchzuführen. <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:637 @@ -9623,15 +9404,6 @@ msgstr "apt-get install <replaceable>Paket</replaceable>/sid\n" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:628 -#, fuzzy -#| msgid "" -#| "The following command will cause APT to upgrade the specified package to " -#| "the latest version from the <literal>sid</literal> distribution. " -#| "Thereafter, <command>apt-get upgrade</command> will upgrade the package " -#| "to the most recent <literal>squeeze</literal> version if that is more " -#| "recent than the installed version, otherwise, to the most recent " -#| "<literal>sid</literal> version if that is more recent than the installed " -#| "version. <placeholder type=\"programlisting\" id=\"0\"/>" msgid "" "The following command will cause APT to upgrade the specified package to the " "latest version from the <literal>sid</literal> distribution. Thereafter, " @@ -9644,7 +9416,7 @@ msgstr "" "Der folgende Befehl wird APT veranlassen, ein Upgrade des angegebenen Pakets " "auf die letzte Version der <literal>sid</literal>-Distribution " "durchzuführen. Danach wird <command>apt-get upgrade</command> ein Upgrade " -"des Pakets auf die aktuellste <literal>squeeze</literal>-Version " +"des Pakets auf die aktuellste <literal>&testing-codename;</literal>-Version " "durchführen, wenn diese aktueller als die installierte Version ist, " "andernfalls auf die aktuellste <literal>sid</literal>-Version, wenn diese " "aktueller als die installierte Version ist. <placeholder type=" @@ -9861,18 +9633,14 @@ msgstr "Einige Beispiele:" #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:114 -#, fuzzy, no-wrap -#| msgid "" -#| "deb http://http.us.debian.org/debian stable main contrib non-free\n" -#| "deb http://http.us.debian.org/debian dists/stable-updates/\n" -#| " " +#, no-wrap msgid "" "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n" "deb http://security.debian.org/ &stable-codename;/updates main contrib non-free\n" " " msgstr "" -"deb http://http.us.debian.org/debian stable main contrib non-free\n" -"deb http://http.us.debian.org/debian dists/stable-updates/\n" +"deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n" +"deb http://security.debian.org/ &stable-codename;/updates main contrib non-free\n" " " #. type: Content of: <refentry><refsect1><title> @@ -9988,23 +9756,11 @@ msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: sources.list.5.xml:178 -#, fuzzy -#| msgid "more recongnizable URI types" msgid "more recognizable URI types" msgstr "weitere erkennbare URI-Typen" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: sources.list.5.xml:180 -#, fuzzy -#| msgid "" -#| "APT can be extended with more methods shipped in other optional packages " -#| "which should follow the nameing scheme <literal>apt-transport-" -#| "<replaceable>method</replaceable></literal>. The APT team e.g. maintain " -#| "also the <literal>apt-transport-https</literal> package which provides " -#| "access methods for https-URIs with features similiar to the http method, " -#| "but other methods for using e.g. debtorrent are also available, see " -#| "<citerefentry> <refentrytitle><filename>apt-transport-debtorrent</" -#| "filename></refentrytitle> <manvolnum>1</manvolnum></citerefentry>." msgid "" "APT can be extended with more methods shipped in other optional packages " "which should follow the nameing scheme <literal>apt-transport-" @@ -10090,23 +9846,19 @@ msgstr "deb http://archive.debian.org/debian-archive hamm main" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:208 -#, fuzzy -#| msgid "" -#| "Uses FTP to access the archive at ftp.debian.org, under the debian " -#| "directory, and uses only the stable/contrib area." msgid "" "Uses FTP to access the archive at ftp.debian.org, under the debian " "directory, and uses only the &stable-codename;/contrib area." msgstr "" "Benutzt FTP, um auf das Archiv auf archive.debian.org unter dem debian-" -"Verzeichnis zuzugreifen und nur den stable/contrib-Bereich zu benutzen." +"Verzeichnis zuzugreifen und nur den &stable-codename;/contrib-Bereich zu " +"benutzen." #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:210 -#, fuzzy, no-wrap -#| msgid "deb ftp://ftp.debian.org/debian stable contrib" +#, no-wrap msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib" -msgstr "deb ftp://ftp.debian.org/debian stable contrib" +msgstr "deb ftp://ftp.debian.org/debian &stable-codename; contrib" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:212 @@ -10290,13 +10042,6 @@ msgstr "" #. type: <p></p> #: guide.sgml:63 -#, fuzzy -#| msgid "" -#| "For instance, mailcrypt is an emacs extension that aids in encrypting " -#| "email with GPG. Without GPGP installed mail-crypt is useless, so " -#| "mailcrypt has a simple dependency on GPG. Also, because it is an emacs " -#| "extension it has a simple dependency on emacs, without emacs it is " -#| "completely useless." msgid "" "For instance, mailcrypt is an emacs extension that aids in encrypting email " "with GPG. Without GPGP installed mailcrypt is useless, so mailcrypt has a " @@ -10533,17 +10278,6 @@ msgstr "" #. type: <p></p> #: guide.sgml:184 -#, fuzzy -#| msgid "" -#| "To enable the APT method you need to to select [A]ccess in <prgn>dselect</" -#| "prgn> and then choose the APT method. You will be prompted for a set of " -#| "<em>Sources</em> which are places to fetch archives from. These can be " -#| "remote Internet sites, local Debian mirrors or CDROMs. Each source can " -#| "provide a fragment of the total Debian archive, APT will automatically " -#| "combine them to form a complete set of packages. If you have a CDROM then " -#| "it is a good idea to specify it first and then specify a mirror so that " -#| "you have access to the latest bug fixes. APT will automatically use " -#| "packages on your CDROM before downloading from the Internet." msgid "" "To enable the APT method you need to select [A]ccess in <prgn>dselect</prgn> " "and then choose the APT method. You will be prompted for a set of " @@ -10680,13 +10414,6 @@ msgstr "" #. type: <p></p> #: guide.sgml:247 -#, fuzzy -#| msgid "" -#| "Before starting to use <prgn>dselect</prgn> it is necessary to update the " -#| "available list by selecting [U]pdate from the menu. This is a super-set " -#| "of <tt>apt-get update</tt> that makes the fetched information available " -#| "to <prgn>dselect</prgn>. [U]pdate must be performed even if <tt>apt-get " -#| "update</tt> has been run before." msgid "" "Before starting to use <prgn>dselect</prgn> it is necessary to update the " "available list by selecting [U]pdate from the menu. This is a superset of " @@ -11388,12 +11115,6 @@ msgstr "" #. type: <p></p> #: offline.sgml:57 -#, fuzzy -#| msgid "" -#| "This is achieved by creatively manipulating the APT configuration file. " -#| "The essential premis to tell APT to look on a disc for it's archive " -#| "files. Note that the disc should be formated with a filesystem that can " -#| "handle long file names such as ext2, fat32 or vfat." msgid "" "This is achieved by creatively manipulating the APT configuration file. The " "essential premise to tell APT to look on a disc for it's archive files. Note " @@ -11542,13 +11263,6 @@ msgstr "" #. type: <p><example> #: offline.sgml:136 -#, fuzzy -#| msgid "" -#| "On the target machine the first thing to do is mount the disc and copy " -#| "<em>/var/lib/dpkg/status</em> to it. You will also need to create the " -#| "directories outlined in the Overview, <em>archives/partial/</em> and " -#| "<em>lists/partial/</em> Then take the disc to the remote machine and " -#| "configure the sources.list. On the remote machine execute the following:" msgid "" "On the target machine the first thing to do is mount the disc and copy <em>/" "var/lib/dpkg/status</em> to it. You will also need to create the directories " @@ -11565,13 +11279,7 @@ msgstr "" #. type: <example></example> #: offline.sgml:142 -#, fuzzy, no-wrap -#| msgid "" -#| " # export APT_CONFIG=\"/disc/apt.conf\"\n" -#| " # apt-get update\n" -#| " [ APT fetches the package files ]\n" -#| " apt-get dist-upgrade\n" -#| " [ APT fetches all the packages needed to upgrade the target machine ]" +#, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get update\n" @@ -11588,12 +11296,6 @@ msgstr "" #. type: </example></p> #: offline.sgml:149 -#, fuzzy -#| msgid "" -#| "The dist-upgrade command can be replaced with any-other standard APT " -#| "commands, particularly dselect-upgrade. You can even use an APT front end " -#| "such as <em>dselect</em> However this presents a problem in communicating " -#| "your selections back to the local computer." msgid "" "The dist-upgrade command can be replaced with any other standard APT " "commands, particularly dselect-upgrade. You can even use an APT front end " diff --git a/doc/po/es.po b/doc/po/es.po index cd945219f..3f07f8776 100644 --- a/doc/po/es.po +++ b/doc/po/es.po @@ -37,15 +37,15 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.25\n" "POT-Creation-Date: 2010-07-30 12:46+0300\n" -"PO-Revision-Date: 2010-03-02 18:43+0200\n" -"Last-Translator: Francisco Javier Cuadrado <fcocuadrado@gmail.com>\n" -"Language-Team: Debian Spanish l10n <debian-l10n-spanish@lists.debian.org>\n" +"PO-Revision-Date: 2010-08-25 03:25+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" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Virtaal 0.5.2\n" +"X-Generator: Virtaal 0.6.1\n" #. type: TH #: apt.8:17 @@ -823,17 +823,7 @@ msgstr "" #. type: Plain text #: apt.ent:264 -#, fuzzy, no-wrap -#| msgid "" -#| " <varlistentry>\n" -#| " <term><option>-c</option></term>\n" -#| " <term><option>--config-file</option></term>\n" -#| " <listitem><para>Configuration File; Specify a configuration file to use. \n" -#| " The program will read the default configuration file and then this \n" -#| " configuration file. See &apt-conf; for syntax information. \n" -#| " </para>\n" -#| " </listitem>\n" -#| " </varlistentry>\n" +#, no-wrap msgid "" " <varlistentry>\n" " <term><option>-c</option></term>\n" @@ -850,9 +840,14 @@ msgstr "" " <varlistentry>\n" " <term><option>-c</option></term>\n" " <term><option>--config-file</option></term>\n" -" <listitem><para>Fichero de configuración: Especifica el fichero de configuración a usar. \n" -" El programa leerá el fichero de configuración predeterminado y, después, este \n" -" fichero de configuración. Consulte &apt-conf; para información sobre la sintaxis. \n" +" <listitem><para>Fichero de configuración: Especifica el fichero de \n" +" configuración a usar. \n" +" El programa leerá el fichero de configuración predeterminado y, \n" +" después, este fichero de configuración. Si necesita que ciertas \n" +" opciones de configuración se definan antes que el análisis de los \n" +" de los ficheros de configuración predeterminados, defina un fichero \n" +" con la variable de entorno <envar>APT_CONFIG</envar>. \n" +" Consulte &apt-conf; para información sobre la sintaxis.\n" " </para>\n" " </listitem>\n" " </varlistentry>\n" @@ -1083,13 +1078,7 @@ msgstr "" #. type: Plain text #: apt.ent:358 -#, fuzzy, no-wrap -#| msgid "" -#| "<!ENTITY file-sourceslist \"\n" -#| " <varlistentry><term><filename>/etc/apt/sources.list</filename></term>\n" -#| " <listitem><para>Locations to fetch packages from.\n" -#| " Configuration Item: <literal>Dir::Etc::SourceList</literal>.</para></listitem>\n" -#| " </varlistentry>\n" +#, no-wrap msgid "" "<!ENTITY file-trustedgpg \"\n" " <varlistentry><term><filename>/etc/apt/trusted.gpg</filename></term>\n" @@ -1097,21 +1086,16 @@ msgid "" " Configuration Item: <literal>Dir::Etc::Trusted</literal>.</para></listitem>\n" " </varlistentry>\n" msgstr "" -"<!ENTITY file-sourceslist \"\n" -" <varlistentry><term><filename>/etc/apt/sources.list</filename></term>\n" -" <listitem><para>Ubicaciones de dónde conseguir los paquetes.\n" -" Opción de configuración: <literal>Dir::Etc::SourceList</literal>.</para></listitem>\n" +"<!ENTITY file-trustedgpg \"\n" +" <varlistentry><term><filename>/etc/apt/trusted.gpg</filename></term>\n" +" <listitem><para>Registro de claves de las claves locales de confianza,\n" +" las claves nuevas se añadirán aquÃ.\n" +" Elemento de configuración: <literal>Dir::Etc::Trusted</literal>.</para></listitem>\n" " </varlistentry>\n" #. type: Plain text #: apt.ent:365 -#, fuzzy, no-wrap -#| msgid "" -#| " <varlistentry><term><filename>/etc/apt/sources.list.d/</filename></term>\n" -#| " <listitem><para>File fragments for locations to fetch packages from.\n" -#| " Configuration Item: <literal>Dir::Etc::SourceParts</literal>.</para></listitem>\n" -#| " </varlistentry>\n" -#| "\">\n" +#, no-wrap msgid "" " <varlistentry><term><filename>/etc/apt/trusted.gpg.d/</filename></term>\n" " <listitem><para>File fragments for the trusted keys, additional keyrings can\n" @@ -1120,21 +1104,17 @@ msgid "" " </varlistentry>\n" "\">\n" msgstr "" -" <varlistentry><term><filename>/etc/apt/sources.list.d/</filename></term>\n" -" <listitem><para>Fragmentos de fichero para las ubicaciones de dónde descargar los paquetes.\n" -" Opción de configuración: <literal>Dir::Etc::SourceParts</literal>.</para></listitem>\n" +" <varlistentry><term><filename>/etc/apt/trusted.gpg.d/</filename></term>\n" +" <listitem><para>Fragmentos de fichero de claves de confianza, se pueden\n" +" añadir en este directorio registros de claves adicionales (por otros\n" +" paquetes o el administrador.\n" +" Elemento de configuración: <literal>Dir::Etc::TrustedParts</literal>.</para></listitem>\n" " </varlistentry>\n" "\">\n" #. type: Plain text #: apt.ent:373 -#, fuzzy, no-wrap -#| msgid "" -#| "<!ENTITY file-sourceslist \"\n" -#| " <varlistentry><term><filename>/etc/apt/sources.list</filename></term>\n" -#| " <listitem><para>Locations to fetch packages from.\n" -#| " Configuration Item: <literal>Dir::Etc::SourceList</literal>.</para></listitem>\n" -#| " </varlistentry>\n" +#, no-wrap msgid "" "<!ENTITY file-extended_states \"\n" " <varlistentry><term><filename>/var/lib/apt/extended_states</filename></term>\n" @@ -1144,11 +1124,13 @@ msgid "" " </varlistentry>\n" "\">\n" msgstr "" -"<!ENTITY file-sourceslist \"\n" -" <varlistentry><term><filename>/etc/apt/sources.list</filename></term>\n" -" <listitem><para>Ubicaciones de dónde conseguir los paquetes.\n" -" Opción de configuración: <literal>Dir::Etc::SourceList</literal>.</para></listitem>\n" -" </varlistentry>\n" +"<!ENTITY file-extended_states \"\n" +" <varlistentry><term><filename>/var/lib/apt/extended_states</filename></term>\n" +" <listitem><para>Lista de estado de paquetes automáticamente instalados.\n" +" Elemento de configuración: <literal>Dir::State::extended_states</literal>.\n" +" </para></listitem>\n" +" </varlistentry>\n" +"\">\n" #. type: Plain text #: apt.ent:377 @@ -1158,6 +1140,9 @@ msgid "" " to the other headers like NAME and DESCRIPTION and should therefore be uppercase. -->\n" "<!ENTITY translation-title \"TRANSLATION\">\n" msgstr "" +"<!-- TRANSLATOR: This is the section header for the following paragraphs - comparable\n" +" to the other headers like NAME and DESCRIPTION and should therefore be uppercase. -->\n" +"<!ENTITY translation-title \"TRADUCCIÓN\">\n" #. type: Plain text #: apt.ent:386 @@ -1172,6 +1157,16 @@ msgid "" " Debian Dummy l10n Team <email>debian-l10n-dummy@lists.debian.org</email>.\n" "\">\n" msgstr "" +"<!-- TRANSLATOR: This is a placeholder. You should write here who has contributed\n" +" to the translation in the past, who is responsible now and maybe further information\n" +" specially related to your translation. -->\n" +"<!ENTITY translation-holder \"\n" +" La traducción al español la realizaron Ismael Fanlo, Carlos Mestre,\n" +" Rudy Godoy, Gustavo Saldumbide, Javier Fernández-Sanguino y Rubén\n" +" Porras Campo entre los años 2003 y 2004. La traducción fue actualizada\n" +" por Francisco Javier Cuadrado y Omar Campagne Polaino entre los años\n" +" 2009 y 2010.\n" +"\">\n" #. type: Plain text #: apt.ent:397 @@ -1188,6 +1183,16 @@ msgid "" " translation is lagging behind the original content.\n" "\">\n" msgstr "" +"<!-- TRANSLATOR: As a translation is allowed to have 20% of untranslated/fuzzy strings\n" +" in a shipped manpage newer/modified paragraphs will maybe appear in english in\n" +" the generated manpage. This sentence is therefore here to tell the reader that this\n" +" is not a mistake by the translator - obviously the target is that at least for stable\n" +" releases this sentence is not needed. :) -->\n" +"<!ENTITY translation-english \"\n" +" Tenga en cuenta que este documento puede contener secciones sin\n" +" traducir. Esto es intencionado para evitar perder contenido cuando\n" +" la traducción no está actualizada con respecto al documento original.\n" +"\">\n" #. type: Plain text #: apt.ent:400 @@ -1195,6 +1200,8 @@ msgid "" "<!ENTITY oldstable-codename \"etch\"> <!ENTITY stable-codename \"lenny\"> <!" "ENTITY testing-codename \"squeeze\">" msgstr "" +"<!ENTITY oldstable-codename \"etch\"> <!ENTITY stable-codename \"lenny\"> <!" +"ENTITY testing-codename \"squeeze\">" #. The last update date #. type: Content of: <refentry><refentryinfo> @@ -1911,67 +1918,46 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:312 -#, fuzzy -#| msgid "<option>--no-upgrade</option>" msgid "<option>--no-pre-depends</option>" -msgstr "<option>--no-upgrade</option>" +msgstr "<option>--no-pre-depends</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:313 -#, fuzzy -#| msgid "<option>--no-download</option>" msgid "<option>--no-depends</option>" -msgstr "<option>--no-download</option>" +msgstr "<option>--no-depends</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:314 -#, fuzzy -#| msgid "<option>--install-recommends</option>" msgid "<option>--no-recommends</option>" -msgstr "<option>--install-recommends</option>" +msgstr "<option>--no-recommends</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:315 -#, fuzzy -#| msgid "<option>--no-upgrade</option>" msgid "<option>--no-suggests</option>" -msgstr "<option>--no-upgrade</option>" +msgstr "<option>--no-suggests</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:316 -#, fuzzy -#| msgid "<option>--no-mount</option>" msgid "<option>--no-conflicts</option>" -msgstr "<option>--no-mount</option>" +msgstr "<option>--no-conflicts</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:317 -#, fuzzy -#| msgid "<option>--no-act</option>" msgid "<option>--no-breaks</option>" -msgstr "<option>--no-act</option>" +msgstr "<option>--no-breaks</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:318 -#, fuzzy -#| msgid "<option>--no-act</option>" msgid "<option>--no-replaces</option>" -msgstr "<option>--no-act</option>" +msgstr "<option>--no-replaces</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:319 -#, fuzzy -#| msgid "<option>--no-act</option>" msgid "<option>--no-enhances</option>" -msgstr "<option>--no-act</option>" +msgstr "<option>--no-enhances</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:320 -#, fuzzy -#| msgid "" -#| "Make <literal>depends</literal> and <literal>rdepends</literal> recursive " -#| "so that all packages mentioned are printed once. Configuration Item: " -#| "<literal>APT::Cache::RecurseDepends</literal>." msgid "" "Per default the <literal>depends</literal> and <literal>rdepends</literal> " "print all dependencies. This can be twicked with these flags which will omit " @@ -1979,9 +1965,12 @@ msgid "" "Show<replaceable>DependencyType</replaceable></literal> e.g. <literal>APT::" "Cache::ShowRecommends</literal>." msgstr "" -"Hace que <literal>depends</literal> y <literal>rdepends</literal> sean " -"recursivos de modo que todos los paquetes mencionados se muestran sólo una " -"vez. Opción de configuración <literal>APT::Cache::RecurseDepends</literal>." +"Por omisión, <literal>depends</literal> y <literal>rdepends</literal> " +"muestran todas las dependencias. Este comportamiento se puede modificar con " +"los siguientes parámetros, los cuales omitirán el tipo de dependencia " +"especificado. Elemento de configuración: <literal>APT::Cache::" +"Show<replaceable>Tipo-de Dependencia</replaceable></literal>. Por ejemplo, " +"<literal>APT::Cache::ShowRecommends</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:326 apt-cdrom.8.xml:121 apt-get.8.xml:319 @@ -2232,13 +2221,6 @@ msgstr "add" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt-cdrom.8.xml:66 -#, fuzzy -#| msgid "" -#| "<literal>add</literal> is used to add a new disc to the source list. It " -#| "will unmount the CDROM device, prompt for a disk to be inserted and then " -#| "procceed to scan it and copy the index files. If the disc does not have a " -#| "proper <filename>disk</filename> directory you will be prompted for a " -#| "descriptive title." msgid "" "<literal>add</literal> is used to add a new disc to the source list. It will " "unmount the CDROM device, prompt for a disk to be inserted and then proceed " @@ -2670,27 +2652,6 @@ msgstr "Herramienta para generar ficheros de Ãndice" #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> #: apt-ftparchive.1.xml:36 -#, fuzzy -#| msgid "" -#| "<command>apt-ftparchive</command> <arg><option>-hvdsq</option></arg> " -#| "<arg><option>--md5</option></arg> <arg><option>--delink</option></arg> " -#| "<arg><option>--readonly</option></arg> <arg><option>--contents</option></" -#| "arg> <arg><option>-o <replaceable>config</" -#| "replaceable>=<replaceable>string</replaceable></option></arg> " -#| "<arg><option>-c=<replaceable>file</replaceable></option></arg> <group " -#| "choice=\"req\"> <arg>packages<arg choice=\"plain\" rep=\"repeat" -#| "\"><replaceable>path</replaceable></arg><arg><replaceable>override</" -#| "replaceable><arg><replaceable>pathprefix</replaceable></arg></arg></arg> " -#| "<arg>sources<arg choice=\"plain\" rep=\"repeat\"><replaceable>path</" -#| "replaceable></arg><arg><replaceable>override</" -#| "replaceable><arg><replaceable>pathprefix</replaceable></arg></arg></arg> " -#| "<arg>contents <arg choice=\"plain\"><replaceable>path</replaceable></" -#| "arg></arg> <arg>release <arg choice=\"plain\"><replaceable>path</" -#| "replaceable></arg></arg> <arg>generate <arg choice=\"plain" -#| "\"><replaceable>config-file</replaceable></arg> <arg choice=\"plain\" rep=" -#| "\"repeat\"><replaceable>section</replaceable></arg></arg> <arg>clean <arg " -#| "choice=\"plain\"><replaceable>config-file</replaceable></arg></arg> </" -#| "group>" msgid "" "<command>apt-ftparchive</command> <arg><option>-hvdsq</option></arg> " "<arg><option>--md5</option></arg> <arg><option>--delink</option></arg> " @@ -2714,22 +2675,23 @@ msgstr "" "<command>apt-ftparchive</command> <arg><option>-hvdsq</option></arg> " "<arg><option>--md5</option></arg> <arg><option>--delink</option></arg> " "<arg><option>--readonly</option></arg> <arg><option>--contents</option></" +"arg> <arg><option>--arch <replaceable>arquitectura</replaceable></option></" "arg> <arg><option>-o <replaceable>configuración</" "replaceable>=<replaceable>cadena</replaceable></option></arg> <arg><option>-" "c=<replaceable>fichero</replaceable></option></arg> <group choice=\"req\"> " "<arg>packages<arg choice=\"plain\" rep=\"repeat\"><replaceable>ruta</" -"replaceable></arg><arg><replaceable>alternativo</" -"replaceable><arg><replaceable>prefijo-de-la-ruta</replaceable></arg></arg></" -"arg> <arg>sources<arg choice=\"plain\" rep=\"repeat\"><replaceable>ruta</" -"replaceable></arg><arg><replaceable>alternativo</" -"replaceable><arg><replaceable>prefijo-de-la-ruta</replaceable></arg></arg></" -"arg> <arg>contents <arg choice=\"plain\"><replaceable>ruta</replaceable></" -"arg></arg> <arg>release <arg choice=\"plain\"><replaceable>ruta</" -"replaceable></arg></arg> <arg>generate <arg choice=\"plain" -"\"><replaceable>fichero-de-configuración</replaceable></arg> <arg choice=" -"\"plain\" rep=\"repeat\"><replaceable>sección</replaceable></arg></arg> " -"<arg>clean <arg choice=\"plain\"><replaceable>fichero-de-configuración</" -"replaceable></arg></arg> </group>" +"replaceable></arg><arg><replaceable>fichero-alternativo</" +"replaceable><arg><replaceable>prefijo-ruta</replaceable></arg></arg></arg> " +"<arg>sources<arg choice=\"plain\" rep=\"repeat\"><replaceable>ruta</" +"replaceable></arg><arg><replaceable>fichero-alternativo</" +"replaceable><arg><replaceable>prefijo-ruta</replaceable></arg></arg></arg> " +"<arg>contents <arg choice=\"plain\"><replaceable>ruta</replaceable></arg></" +"arg> <arg>release <arg choice=\"plain\"><replaceable>ruta</replaceable></" +"arg></arg> <arg>generate <arg choice=\"plain\"><replaceable>fichero-" +"configuración</replaceable></arg> <arg choice=\"plain\" rep=\"repeat" +"\"><replaceable>sección</replaceable></arg></arg> <arg>clean <arg choice=" +"\"plain\"><replaceable>fichero-configuración</replaceable></arg></arg> </" +"group>" #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:57 @@ -2875,16 +2837,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:119 -#, fuzzy -#| msgid "" -#| "Values for the additional metadata fields in the Release file are taken " -#| "from the corresponding variables under <literal>APT::FTPArchive::Release</" -#| "literal>, e.g. <literal>APT::FTPArchive::Release::Origin</literal>. The " -#| "supported fields are: <literal>Origin</literal>, <literal>Label</" -#| "literal>, <literal>Suite</literal>, <literal>Version</literal>, " -#| "<literal>Codename</literal>, <literal>Date</literal>, " -#| "<literal>Architectures</literal>, <literal>Components</literal>, " -#| "<literal>Description</literal>." msgid "" "Values for the additional metadata fields in the Release file are taken from " "the corresponding variables under <literal>APT::FTPArchive::Release</" @@ -2901,8 +2853,8 @@ msgstr "" "literal>. Los campos permitidos son: <literal>Origin</literal>, " "<literal>Label</literal>, <literal>Suite</literal>, <literal>Version</" "literal>, <literal>Codename</literal>, <literal>Date</literal>, " -"<literal>Architectures</literal>, <literal>Components</literal>, " -"<literal>Description</literal>." +"<literal>Valid-Until</literal>, <literal>Architectures</literal>, " +"<literal>Components</literal> y <literal>Description</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:130 @@ -3132,23 +3084,17 @@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:229 -#, fuzzy -#| msgid "Contents::Compress" msgid "Translation::Compress" -msgstr "Contents::Compress" +msgstr "Translation::Compress" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:231 -#, fuzzy -#| msgid "" -#| "This is similar to <literal>Packages::Compress</literal> except that it " -#| "controls the compression for the Contents files." msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Translation-en master file." msgstr "" "Esta opción es similar a <literal>Packages::Compress</literal> excepto que " -"controla la compresión para los ficheros «Contents»." +"controla la compresión para el fichero maestro Translation-en." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:235 @@ -3183,10 +3129,8 @@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:249 apt-ftparchive.1.xml:395 -#, fuzzy -#| msgid "Description" msgid "LongDescription" -msgstr "Descripción" +msgstr "LongDescription" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:251 apt-ftparchive.1.xml:397 @@ -3194,6 +3138,9 @@ msgid "" "Sets if long descriptions should be included in the Packages file or split " "out into a master Translation-en file." msgstr "" +"Define si se deben incluir las descripciones largas en el fichero " +"«Packages», o si se deben separar, guardándolo en el fichero «Translation-" +"en»." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt-ftparchive.1.xml:257 @@ -3300,23 +3247,17 @@ msgstr "Sources" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:302 -#, fuzzy -#| msgid "" -#| "Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/" -#| "source/Sources</filename>" msgid "" "Sets the output Sources file. Defaults to <filename>$(DIST)/$(SECTION)/" "source/Sources</filename>" msgstr "" -"Define el fichero «Packages» de salida. El valor predeterminado es <filename>" +"Define el fichero «Sources» de salida. El valor predeterminado es <filename>" "$(DIST)/$(SECTION)/source/Sources</filename>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:306 -#, fuzzy -#| msgid "Operation" msgid "Translation" -msgstr "Operación" +msgstr "Translation" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:308 @@ -3325,6 +3266,10 @@ msgid "" "should be not included in the Packages file. Defaults to <filename>$(DIST)/" "$(SECTION)/i18n/Translation-en</filename>" msgstr "" +"Define el fichero maestro «Translation-en» que contiene las descripciones " +"maestras en el caso de que no se deban incluir en el fichero «Packages». El " +"valor predeterminado es <filename>$(DIST)/$(SECTION)/i18n/Translation-en</" +"filename>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:313 @@ -3444,12 +3389,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt-ftparchive.1.xml:364 -#, fuzzy -#| msgid "" -#| "The <literal>Tree</literal> section takes a scope tag which sets the " -#| "<literal>$(DIST)</literal> variable and defines the root of the tree (the " -#| "path is prefixed by <literal>ArchiveDir</literal>). Typically this is a " -#| "setting such as <filename>dists/woody</filename>." msgid "" "The <literal>Tree</literal> section takes a scope tag which sets the " "<literal>$(DIST)</literal> variable and defines the root of the tree (the " @@ -3459,7 +3398,7 @@ msgstr "" "La sección <literal>Tree</literal> toma un ámbito de una etiqueta que define " "la variable <literal>$(DIST)</literal> y la raÃz del árbol (a la ruta se le " "añade el prefijo <literal>ArchiveDir</literal>). Normalmente esto es un " -"valor como <filename>dists/woody</filename>." +"valor como <filename>dists/&stable-codename;</filename>." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt-ftparchive.1.xml:369 @@ -3474,34 +3413,28 @@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt-ftparchive.1.xml:375 -#, fuzzy, no-wrap -#| msgid "" -#| "for i in Sections do \n" -#| " for j in Architectures do\n" -#| " Generate for DIST=scope SECTION=i ARCH=j\n" +#, no-wrap msgid "" "for i in Sections do \n" " for j in Architectures do\n" " Generate for DIST=scope SECTION=i ARCH=j\n" " " msgstr "" -"for i in Secciones do \n" -" for j in Arquitecturas do\n" +"for i in Sections do \n" +" for j in Architectures do\n" " Generar con DIST=scope SECTION=i ARCH=j\n" +" " #. type: Content of: <refentry><refsect1><refsect2><para> #: apt-ftparchive.1.xml:372 -#, fuzzy -#| msgid "" -#| "When processing a <literal>Tree</literal> section <command>apt-" -#| "ftparchive</command> performs an operation similar to:" msgid "" "When processing a <literal>Tree</literal> section <command>apt-ftparchive</" "command> performs an operation similar to: <placeholder type=\"programlisting" "\" id=\"0\"/>" msgstr "" "Cuando se procesa una sección <literal>Tree</literal> <command>apt-" -"ftparchive</command> realiza una operación similar a la siguiente:" +"ftparchive</command> realiza una operación similar a la siguiente: " +"<placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:381 @@ -3855,36 +3788,27 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:574 -#, fuzzy -#| msgid "<option>-a</option>" msgid "<option>--arch</option>" -msgstr "<option>-a</option>" +msgstr "<option>--arch</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:575 -#, fuzzy -#| msgid "" -#| "If the command is either <literal>install</literal> or <literal>remove</" -#| "literal>, then this option acts like running <literal>autoremove</" -#| "literal> command, removing the unused dependency packages. Configuration " -#| "Item: <literal>APT::Get::AutomaticRemove</literal>." msgid "" "Accept in the <literal>packages</literal> and <literal>contents</literal> " "commands only package files matching <literal>*_arch.deb</literal> or " "<literal>*_all.deb</literal> instead of all package files in the given " "path. Configuration Item: <literal>APT::FTPArchive::Architecture</literal>." msgstr "" -"Si la orden es <literal>install</literal> o <literal>remove</literal>, esta " -"opción se ejecutará como <literal>autoremove</literal>, eliminando los " -"paquetes que son dependencia de otro, pero que estén en desuso. Opción de " -"configuración: <literal>APT::Get::AutomaticRemove</literal>." +"Hace que las órdenes <literal>packages</literal> y <literal>contents</" +"literal> sólo acepten aquellos paquetes que coinciden con <literal>*_arch." +"deb</literal> o <literal>*_all.deb</literal>, en lugar de todos los ficheros " +"de paquete en la ruta dada. Elemento de configuración: <literal>APT::" +"FTPArchive::Architecture</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:581 -#, fuzzy -#| msgid "<option>APT::FTPArchive::LongDescription</option>" msgid "<option>APT::FTPArchive::AlwaysStat</option>" -msgstr "<option>APT::FTPArchive::LongDescription</option>" +msgstr "<option>APT::FTPArchive::AlwaysStat</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:583 @@ -3899,6 +3823,16 @@ msgid "" "theory nobody will have these problems and therefore all these extra checks " "are useless." msgstr "" +"&apt-ftparchive; almacena tantos metadatos como sea posible en una base de " +"datos de almacenamiento. Si los paquetes se recompilan o publican otra vez " +"con la misma versión aparecerán problemas ya que se usarán los metadatos " +"almacenados y ahora obsoletos tales como el tamaño o la suma de control. " +"Esta situación se evitará si se activa esta opción ya que se comprobará si " +"el fichero ha cambiado. Tenga en cuenta que esta opción está definida como " +"«<literal>false</literal>» por omisión, ya que no se recomienda subir varias " +"versiones o compilaciones de un paquete con el mismo número de versión, asà " +"que en teorÃa nadie deberÃa tener problemas y por ello todas estas " +"comprobaciones adicionales son innecesarias." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:593 @@ -3907,13 +3841,6 @@ msgstr "<option>APT::FTPArchive::LongDescription</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:595 -#, fuzzy -#| msgid "" -#| "This configuration option defaults to \"<literal>true</literal>\" and " -#| "should only be set to <literal>\"false\"</literal> if the Archive " -#| "generated with &apt-ftparchive; also provides <filename>Translation</" -#| "filename> files. Note that it is currently not possible to create these " -#| "files with <command>apt-ftparchive</command>." msgid "" "This configuration option defaults to \"<literal>true</literal>\" and should " "only be set to <literal>\"false\"</literal> if the Archive generated with " @@ -3925,8 +3852,8 @@ msgstr "" "«<literal>true</literal>» y sólo se deberÃa definir como «<literal>false</" "literal>» si el archivo de paquetes generado con &apt-ftparchive; también " "proporciona ficheros <filename>Translation</filename>. Tenga en cuenta que " -"actualmente no es posible crear esos ficheros con <command>apt-ftparchive</" -"command>." +"el fichero maestro <filename>Translation-en</filename> sólo se puede crear " +"con la orden «generate»." #. type: Content of: <refentry><refsect1><title> #: apt-ftparchive.1.xml:607 apt.conf.5.xml:1083 apt_preferences.5.xml:491 @@ -3981,41 +3908,6 @@ msgstr "" #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> #: apt-get.8.xml:36 -#, fuzzy -#| msgid "" -#| "<command>apt-get</command> <arg><option>-sqdyfmubV</option></arg> <arg> " -#| "<option>-o= <replaceable>config_string</replaceable> </option> </arg> " -#| "<arg> <option>-c= <replaceable>config_file</replaceable> </option> </arg> " -#| "<arg> <option>-t=</option> <group choice='req'> <arg choice='plain'> " -#| "<replaceable>target_release_name</replaceable> </arg> <arg " -#| "choice='plain'> <replaceable>target_release_number_expression</" -#| "replaceable> </arg> <arg choice='plain'> " -#| "<replaceable>target_release_codename</replaceable> </arg> </group> </arg> " -#| "<group choice=\"req\"> <arg choice='plain'>update</arg> <arg " -#| "choice='plain'>upgrade</arg> <arg choice='plain'>dselect-upgrade</arg> " -#| "<arg choice='plain'>dist-upgrade</arg> <arg choice='plain'>install <arg " -#| "choice=\"plain\" rep=\"repeat\"><replaceable>pkg</replaceable> <arg> " -#| "<group choice='req'> <arg choice='plain'> " -#| "=<replaceable>pkg_version_number</replaceable> </arg> <arg " -#| "choice='plain'> /<replaceable>target_release_name</replaceable> </arg> " -#| "<arg choice='plain'> /<replaceable>target_release_codename</replaceable> " -#| "</arg> </group> </arg> </arg> </arg> <arg choice='plain'>remove <arg " -#| "choice=\"plain\" rep=\"repeat\"><replaceable>pkg</replaceable></arg></" -#| "arg> <arg choice='plain'>purge <arg choice=\"plain\" rep=\"repeat" -#| "\"><replaceable>pkg</replaceable></arg></arg> <arg choice='plain'>source " -#| "<arg choice=\"plain\" rep=\"repeat\"><replaceable>pkg</replaceable> <arg> " -#| "<group choice='req'> <arg choice='plain'> " -#| "=<replaceable>pkg_version_number</replaceable> </arg> <arg " -#| "choice='plain'> /<replaceable>target_release_name</replaceable> </arg> " -#| "<arg choice='plain'> /<replaceable>target_release_codename</replaceable> " -#| "</arg> </group> </arg> </arg> </arg> <arg choice='plain'>build-dep <arg " -#| "choice=\"plain\" rep=\"repeat\"><replaceable>pkg</replaceable></arg></" -#| "arg> <arg choice='plain'>check</arg> <arg choice='plain'>clean</arg> <arg " -#| "choice='plain'>autoclean</arg> <arg choice='plain'>autoremove</arg> <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> </group>" msgid "" "<command>apt-get</command> <arg><option>-sqdyfmubV</option></arg> <arg> " "<option>-o= <replaceable>config_string</replaceable> </option> </arg> <arg> " @@ -4047,45 +3939,33 @@ msgstr "" "<command>apt-get</command> <arg><option>-sqdyfmubV</option></arg> <arg> " "<option>-o= <replaceable>cadena-de-configuración</replaceable> </option> </" "arg> <arg> <option>-c= <replaceable>fichero-de-configuración</replaceable> </" -"option> </arg> <arg> <option>-t=</option> <group choice='req'> <arg " -"choice='plain'> <replaceable>nombre-de-la-versión-objetivo</replaceable> </" -"arg> <arg choice='plain'> <replaceable>expresión-del-número-de-la-versión-" -"objetivo</replaceable> </arg> <arg choice='plain'> <replaceable>nombre-en-" -"código-de-la-versión-objetivo</replaceable> </arg> </group> </arg> <group " -"choice=\"req\"> <arg choice='plain'>update</arg> <arg " +"option> </arg> <arg> <option>-t=</option> <arg choice='plain'> " +"<replaceable>nombre-de-la-versión-objetivo</replaceable> </arg> </arg> " +"<group choice=\"req\"> <arg choice='plain'>update</arg> <arg " "choice='plain'>upgrade</arg> <arg choice='plain'>dselect-upgrade</arg> <arg " "choice='plain'>dist-upgrade</arg> <arg choice='plain'>install <arg choice=" "\"plain\" rep=\"repeat\"><replaceable>paquete</replaceable> <arg> <group " "choice='req'> <arg choice='plain'> =<replaceable>versión-del-paquete</" "replaceable> </arg> <arg choice='plain'> /<replaceable>nombre-de-la-versión-" -"objetivo</replaceable> </arg> <arg choice='plain'> /<replaceable>nombre-en-" -"código-de-la-versión-objetivo</replaceable> </arg> </group> </arg> </arg> </" -"arg> <arg choice='plain'>remove <arg choice=\"plain\" rep=\"repeat" +"objetivo</replaceable> </arg> </group> </arg> </arg> </arg> <arg " +"choice='plain'>remove <arg choice=\"plain\" rep=\"repeat" "\"><replaceable>paquete</replaceable></arg></arg> <arg choice='plain'>purge " "<arg choice=\"plain\" rep=\"repeat\"><replaceable>paquete</replaceable></" "arg></arg> <arg choice='plain'>source <arg choice=\"plain\" rep=\"repeat" "\"><replaceable>paquete</replaceable> <arg> <group choice='req'> <arg " "choice='plain'> =<replaceable>versión-del-paquete</replaceable> </arg> <arg " "choice='plain'> /<replaceable>nombre-de-la-versión-objetivo</replaceable> </" -"arg> <arg choice='plain'> /<replaceable>nombre-en-código-de-la-versión-" -"objetivo</replaceable> </arg> </group> </arg> </arg> </arg> <arg " -"choice='plain'>build-dep <arg choice=\"plain\" rep=\"repeat" -"\"><replaceable>paquete</replaceable></arg></arg> <arg choice='plain'>check</" -"arg> <arg choice='plain'>clean</arg> <arg choice='plain'>autoclean</arg> " -"<arg choice='plain'>autoremove</arg> <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> </" -"group>" +"arg> </group> </arg> </arg> </arg> <arg choice='plain'>build-dep <arg choice=" +"\"plain\" rep=\"repeat\"><replaceable>paquete</replaceable></arg></arg> <arg " +"choice='plain'>check</arg> <arg choice='plain'>clean</arg> <arg " +"choice='plain'>autoclean</arg> <arg choice='plain'>autoremove</arg> <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> </group>" #. type: Content of: <refentry><refsect1><para> #: apt-get.8.xml:112 -#, 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;, &gnome-apt; and &wajig;." 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 " @@ -4096,7 +3976,7 @@ msgstr "" "desde la lÃnea de órdenes, y se puede considerar el sistema de «bajo nivel» " "de otras herramientas de usuario que usan la biblioteca de APT. Existen " "varias interfaces de «alto nivel», tales como &dselect;, &aptitude;, " -"&synaptic;, &gnome-apt; y &wajig;." +"&synaptic; y &wajig;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:121 apt-key.8.xml:124 @@ -4555,19 +4435,6 @@ msgstr "<option>--fix-broken</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:320 -#, 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. Any Package that are specified must " -#| "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 " @@ -4583,9 +4450,9 @@ msgid "" msgstr "" "Intenta arreglar un sistema con dependencias actualmente rotas. Si se usa " "esta opción junto a «install»/«remove» se puede omitir cualquier paquete " -"para permitir a APT deducir una posible solución. Cualquier paquete que se " -"especifique debe corregir totalmente el problema. La opción, a veces, se " -"necesita cuando se ejecuta apt por primera vez, APT no permite que existan " +"para permitir a APT deducir una posible solución. Si se especifican " +"problemas, deben corregir totalmente el problema. La opción, a veces, se " +"necesita cuando se ejecuta APT por primera vez, APT no permite que existan " "dependencias de paquetes rotas en un sistema. Es posible que la estructura " "de dependencias de un sistema esté tan deteriorada que requiera una " "intervención manual (generalmente puede ejecutar &dselect; o <command>dpkg --" @@ -4862,29 +4729,21 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:433 -#, fuzzy -#| msgid "<option>--no-upgrade</option>" msgid "<option>--only-upgrade</option>" -msgstr "<option>--no-upgrade</option>" +msgstr "<option>--only-upgrade</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:434 -#, fuzzy -#| msgid "" -#| "Do not upgrade packages; When used in conjunction with <literal>install</" -#| "literal>, <literal>no-upgrade</literal> will prevent packages on the " -#| "command line from being upgraded if they are already installed. " -#| "Configuration Item: <literal>APT::Get::Upgrade</literal>." msgid "" "Do not install new packages; When used in conjunction with <literal>install</" "literal>, <literal>only-upgrade</literal> will prevent packages on the " "command line from being upgraded if they are not already installed. " "Configuration Item: <literal>APT::Get::Only-Upgrade</literal>." msgstr "" -"No actualiza los paquetes. Cuando se usa junto a <literal>install</literal>, " -"<literal>no-upgrade</literal> evita que se actualicen los paquetes listados " -"en la lÃnea de órdenes si ya están instalados. Opción de configuración: " -"<literal>APT::Get::Upgrade</literal>." +"No instala paquetes nuevos. Cuando se usa junto a <literal>install</" +"literal>, <literal>only-upgrade</literal> evita que se actualicen los " +"paquetes listados en la lÃnea de órdenes si no están ya instalados. Opción " +"de configuración: <literal>APT::Get::Only-Upgrade</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:440 @@ -4941,13 +4800,6 @@ msgstr "<option>--purge</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:460 -#, fuzzy -#| 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. <option>remove --purge</option> is equivalent for " -#| "<option>purge</option> command. Configuration Item: <literal>APT::Get::" -#| "Purge</literal>." 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. " @@ -5225,19 +5077,16 @@ msgstr "Herramienta para gestionar las claves de APT" #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> #: apt-key.8.xml:28 -#, fuzzy -#| msgid "" -#| "<command>apt-key</command> <arg><replaceable>command</replaceable>/</arg> " -#| "<arg rep=\"repeat\"><option><replaceable>arguments</replaceable></" -#| "option></arg>" msgid "" "<command>apt-key</command> <arg><option>--keyring <replaceable>filename</" "replaceable></option></arg> <arg><replaceable>command</replaceable></arg> " "<arg rep=\"repeat\"><option><replaceable>arguments</replaceable></option></" "arg>" msgstr "" -"<command>apt-key</command> <arg><replaceable>orden</replaceable>/</arg> <arg " -"rep=\"repeat\"><option><replaceable>argumentos</replaceable></option></arg>" +"<command>apt-key</command> <arg><option>--keyring <replaceable>nombre-de-" +"fichero</replaceable></option></arg> <arg><replaceable>orden</replaceable></" +"arg> <arg rep=\"repeat\"><option><replaceable>argumentis</replaceable></" +"option></arg>" #. type: Content of: <refentry><refsect1><para> #: apt-key.8.xml:37 @@ -5353,13 +5202,13 @@ msgid "" "Note that options need to be defined before the commands described in the " "previous section." msgstr "" +"Tenga en cuenta que las opciones se deben definir antes de las órdenes " +"descritas en el sección anterior." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-key.8.xml:142 -#, fuzzy -#| msgid "add <replaceable>filename</replaceable>" msgid "--keyring <replaceable>filename</replaceable>" -msgstr "add <replaceable>nombre-de-fichero</replaceable>" +msgstr "--keyring <replaceable>nombre-de-fichero</replaceable>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:143 @@ -5371,11 +5220,17 @@ msgid "" "filename> is the primary keyring which means that e.g. new keys are added to " "this one." msgstr "" +"Con esta opción es posible definir un fichero de registro de claves " +"especÃfico con el que la orden deberÃa operar. El valor predeterminado es " +"que la orden se ejecuta con el fichero <filename>trusted.gpg</filename> asà " +"como con los fragmentos en el directorio <filename>trusted.gpg.d</filename>, " +"aunque <filename>trusted.gpg</filename> es el registro de claves principal, " +"esto es, por ejemplo, que las claves nuevas se añaden a este fichero." #. type: Content of: <refentry><refsect1><variablelist> #: apt-key.8.xml:156 msgid "&file-trustedgpg;" -msgstr "" +msgstr "&file-trustedgpg;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-key.8.xml:158 @@ -5586,7 +5441,7 @@ msgstr "Muestra la versión del programa." #. type: Content of: <refentry><refsect1><variablelist> #: apt-mark.8.xml:124 msgid " &file-extended_states;" -msgstr "" +msgstr " &file-extended_states;" #. type: Content of: <refentry><refsect1><para> #: apt-mark.8.xml:129 @@ -5985,12 +5840,6 @@ msgstr "" #. The last update date #. type: Content of: <refentry><refentryinfo> #: apt.conf.5.xml:13 -#, fuzzy -#| msgid "" -#| "&apt-author.jgunthorpe; &apt-author.team; <author> <firstname>Daniel</" -#| "firstname> <surname>Burrows</surname> <contrib>Initial documentation of " -#| "Debug::*.</contrib> <email>dburrows@debian.org</email> </author> &apt-" -#| "email; &apt-product; <date>18 September 2009</date>" msgid "" "&apt-author.jgunthorpe; &apt-author.team; <author> <firstname>Daniel</" "firstname> <surname>Burrows</surname> <contrib>Initial documentation of " @@ -6000,7 +5849,7 @@ msgstr "" "&apt-author.jgunthorpe; &apt-author.team; <author> <firstname>Daniel</" "firstname> <surname>Burrows</surname> <contrib>Documentación inicial de " "Debug::*.</contrib> <email>dburrows@debian.org</email> </author> &apt-email; " -"&apt-product; <date>18 de Septiembre de 2009</date>" +"&apt-product; <date>16 de Enero de 2009</date>" #. type: Content of: <refentry><refnamediv><refname> #: apt.conf.5.xml:28 apt.conf.5.xml:35 @@ -6025,6 +5874,11 @@ msgid "" "made. All tools therefore share the configuration files and also use a " "common command line parser to provide a uniform environment." msgstr "" +"<filename>apt.conf</filename> es el fichero de configuración principal del " +"conjunto de herramientas APT, pero no es ni mucho menos donde se pueden " +"ubicar cambios a las opciones. Por ello, todas las herramientas comparten " +"los ficheros de configuración y también usan un analizador de lÃnea de " +"órdenes común para ofrecer un entorno uniforme." #. type: Content of: <refentry><refsect1><orderedlist><para> #: apt.conf.5.xml:45 @@ -6032,6 +5886,8 @@ msgid "" "When an APT tool starts up it will read the configuration files in the " "following order:" msgstr "" +"Cuando se inicia una herramienta de APT, leerá los ficheros de configuración " +"en el siguiente orden:" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> #: apt.conf.5.xml:47 @@ -6039,6 +5895,8 @@ msgid "" "the file specified by the <envar>APT_CONFIG</envar> environment variable (if " "any)" msgstr "" +"El fichero definido por la variable de entorno <envar>APT_CONFIG</envar> (de " +"existir)." #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> #: apt.conf.5.xml:49 @@ -6048,12 +5906,19 @@ msgid "" "which only contain alphanumeric, hyphen (-), underscore (_) and period (.) " "characters - otherwise they will be silently ignored." msgstr "" +"Todos los ficheros en <literal>Dir::Etc::Parts</literal> en orden " +"alfanumérico ascendente que no tienen extensión o la extensión " +"«<literal>conf</literal>», y que sólo contiene caracteres alfanuméricos, " +"guiones (-), y guión bajo (_) y punto (.). De otra forma, se ignorarán " +"silenciosamente." #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> #: apt.conf.5.xml:54 msgid "" "the main configuration file specified by <literal>Dir::Etc::main</literal>" msgstr "" +"El fichero de configuración principal definido por <literal>Dir::Etc::main</" +"literal>." #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> #: apt.conf.5.xml:56 @@ -6061,11 +5926,13 @@ msgid "" "the command line options are applied to override the configuration " "directives or to load even more configuration files." msgstr "" +"Las opciones de lÃnea de órdenes se aplican para anular directivas de " +"configuración o para cargar más ficheros de configuración." #. type: Content of: <refentry><refsect1><title> #: apt.conf.5.xml:60 msgid "Syntax" -msgstr "" +msgstr "Sintaxis" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:61 @@ -6301,12 +6168,6 @@ msgstr "Default-Release" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:153 -#, fuzzy -#| msgid "" -#| "Default release to install packages from if more than one version " -#| "available. Contains release name, codename or release version. Examples: " -#| "'stable', 'testing', 'unstable', 'lenny', 'squeeze', '4.0', '5.0*'. See " -#| "also &apt-preferences;." msgid "" "Default release to install packages from if more than one version available. " "Contains release name, codename or release version. Examples: 'stable', " @@ -6316,8 +6177,8 @@ msgstr "" "La versión predeterminada de la que se instalarán los paquetes, si hay más " "de una versión disponible. Contiene el nombre de la versión, ya sea el " "nombre en código o el número de la versión. Por ejemplo: «stable», " -"«testing», «unstable», «lenny», «squeeze», «4.0», «5.0*». Vea también &apt-" -"preferences;." +"«testing», «unstable», «&stable-codename;», «&testing-codename;», «4.0», " +"«5.0*». Vea también &apt-preferences;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:158 @@ -6359,37 +6220,6 @@ msgstr "Immediate-Configure" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:171 -#, fuzzy -#| msgid "" -#| "Defaults to on which will cause APT to install essential and important " -#| "packages as fast as possible in the install/upgrade operation. This is " -#| "done to limit the effect of a failing &dpkg; call: If this option is " -#| "disabled APT does treat an important package in the same way as an extra " -#| "package: Between the unpacking of the important package A and his " -#| "configuration can then be many other unpack or configuration calls, e.g. " -#| "for package B which has no relation to A, but causes the dpkg call to " -#| "fail (e.g. because maintainer script of package B generates an error) " -#| "which results in a system state in which package A is unpacked but " -#| "unconfigured - each package depending on A is now no longer guaranteed to " -#| "work as their dependency on A is not longer satisfied. The immediate " -#| "configuration marker is also applied to all dependencies which can " -#| "generate a problem if the dependencies e.g. form a circle as a dependency " -#| "with the immediate flag is comparable with a Pre-Dependency. So in theory " -#| "it is possible that APT encounters a situation in which it is unable to " -#| "perform immediate configuration, error out and refers to this option so " -#| "the user can deactivate the immediate configuration temporary to be able " -#| "to perform an install/upgrade again. Note the use of the word \"theory\" " -#| "here as this problem was only encountered by now in real world a few " -#| "times in non-stable distribution versions and caused by wrong " -#| "dependencies of the package in question or by a system in an already " -#| "broken state, so you should not blindly disable this option as the " -#| "mentioned scenario above is not the only problem immediate configuration " -#| "can help to prevent in the first place. Before a big operation like " -#| "<literal>dist-upgrade</literal> is run with this option disabled it " -#| "should be tried to explicitly <literal>install</literal> the package APT " -#| "is unable to configure immediately, but please make sure to report your " -#| "problem also to your distribution and to the APT team with the buglink " -#| "below so they can work on improving or correcting the upgrade process." msgid "" "Defaults to on which will cause APT to install essential and important " "packages as fast as possible in the install/upgrade operation. This is done " @@ -6437,7 +6267,7 @@ msgstr "" "configuración inmediata, lo cual lo califica casi como Pre-Dependencia. AsÃ, " "en teorÃa es posible que APT encuentre una situación en la que es incapaz de " "llevar a cabo una configuración inmediata, devuelva un error y mencione esta " -"opción para que asà el usuario puede desactivar la configuración inmediata " +"opción para que asà el usuario pueda desactivar la configuración inmediata " "temporalmente para llevar a cabo una vez más la instalación y/o " "actualización. Observe el uso de la expresión «en teorÃa», ya que esta " "situación sólo se ha visto algunas veces con versiones de distribución no " @@ -6446,10 +6276,10 @@ msgstr "" "opción ya que la situación mencionada anteriormente no es el único problema " "que la configuración inmediata puede resolver. Antes de llevar a cabo una " "operación grande como <literal>dist-upgrade</literal> con esta opción " -"desactivada deberÃa intentar un <literal>install</literal> explÃcito con el " -"paquete que APT es incapaz de configurar inmediatamente, pero asegúrese de " -"informar del fallo a su distribución y al equipo de APT mediante el enlace a " -"informes de fallo para que asà puedan mejorar o corregir el proceso de " +"desactivada deberÃa intentar un <literal>install</literal> con el paquete " +"que APT es incapaz de configurar inmediatamente, pero asegúrese de informar " +"del fallo a su distribución y al equipo de APT mediante el enlace a informes " +"de fallo a continuación para que asà puedan mejorar o corregir el proceso de " "actualización." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> @@ -6477,7 +6307,7 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:202 msgid "Cache-Start, Cache-Grow and Cache-Limit" -msgstr "" +msgstr "Cache-Start, Cache-Grow y Cache-Limit" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:203 @@ -6498,6 +6328,23 @@ msgid "" "literal> is 0 which stands for no limit. If <literal>Cache-Grow</literal> " "is set to 0 the automatic grow of the cache is disabled." msgstr "" +"A partir de la versión 0.7.26, APT usa un fichero de caché mapeado («mapped " +"cache file») redimensionable para almacenar la información disponible. " +"<literal>Cache-Start</literal> actúa como una indicación del tamaño que el " +"caché alcanzará y por ello es la cantidad de memoria que APT solicitará al " +"iniciarse. El valor predeterminado es 20971520 bytes (~20 MB). Tenga en " +"cuenta que esta cantidad de espacio debe estar disponible para APT, o " +"fallará. Por ello, este valor se deberÃa disminuir para los dispositivos con " +"memoria restringida, mientras que se deberÃa aumentar en sistemas con varias " +"fuentes configuradas. <literal>Cache-Grow</literal> define en bytes, con el " +"valor predeterminado de 1048576 (~1 MB) cuánto se aumentará el caché en el " +"caso de que el espacio definido por <literal>Cache-Start</literal> no sea " +"suficiente. Este valor se aplicará repetidamente hasta que el caché sea " +"suficientemente grande para almacenar toda la información o si el caché " +"alcanza <literal>Cache-Limit</literal>. El valor predeterminado de " +"<literal>Cache-Limit</literal> es cero, esto es, ilimitado. Si define " +"<literal>Cache-Grow</literal> con un valor de cero se desactivará el " +"crecimiento automático del cache." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:218 @@ -6560,7 +6407,7 @@ msgstr "El grupo Acquire" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: apt.conf.5.xml:244 msgid "Check-Valid-Until" -msgstr "" +msgstr "Check-Valid-Until" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:245 @@ -6573,11 +6420,19 @@ msgid "" "header, but if they don't or a stricter value is volitional the following " "<literal>Max-ValidTime</literal> option can be used." msgstr "" +"Opción relacionada con la seguridad, cuyo valor predeterminado de «true», ya " +"que una validación temporal para un fichero «Release» evita ataques " +"«longtime replay» y puede, por ejemplo, ayudar a identificar las réplicas no " +"actualizadas, aunque esta función depende de la corrección de la hora del " +"sistema del usuario. Se recomienda a los responsables de archivos que creen " +"ficheros «Release» con la cabecera <literal>Valid-Until</literal>, pero si " +"se hace, o si un valor más estricto es opcional, se puede usar la opción " +"<literal>Max-ValidTime</literal>." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: apt.conf.5.xml:255 msgid "Max-ValidTime" -msgstr "" +msgstr "Max-ValidTime" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:256 @@ -6592,6 +6447,17 @@ msgid "" "settings can be made by appending the label of the archive to the option " "name." msgstr "" +"Los segundos que el fichero «Release» se considerará válido después de su " +"creación. El valor predeterminado es «para siempre» (cero) si el fichero " +"«Release» del archivo no incluye una cabecera <literal>Valid-Until</" +"literal>. Si lo incluye, el valor predeterminado es esta fecha. La fecha del " +"fichero «Release» o la fecha definida por la hora de creación del fichero " +"«Release» (cabecera <literal>Date</literal>), a lo que se añaden los " +"segundos definidos con estas opciones, se usan para comprobar si la validez " +"de un fichero a expirado, usando la fecha más antigua de las dos " +"anteriormente mencionadas. Se pueden definir opciones de configuración " +"especÃficas al archivo añadiendo la etiqueta del archivo al nombre de la " +"opción." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: apt.conf.5.xml:268 @@ -6618,6 +6484,12 @@ msgid "" "the size of the targeted file. If one of these limits is exceeded the " "complete file is downloaded instead of the patches." msgstr "" +"Se ofrecen dos opciones secundarias para limitar el uso de «PDiffs»: " +"<literal>FileLimit</literal> permite definir cuántos ficheros «PDiff» como " +"máximo se descargarán para parchear un fichero. Por otra parte, " +"<literal>SizeLimit</literal> es el porcentaje de tamaño máximo de todos los " +"parches comparados con el tamaño del fichero destino. Si se supera uno de " +"estos lÃmites, se descargará el fichero completo en lugar de los parches." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: apt.conf.5.xml:281 @@ -7087,7 +6959,7 @@ msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: apt.conf.5.xml:450 msgid "GzipIndexes" -msgstr "" +msgstr "GzipIndexes" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:452 @@ -7097,6 +6969,11 @@ msgid "" "unpacking them. This saves quite a lot of disk space at the expense of more " "CPU requirements when building the local package caches. False by default." msgstr "" +"Al descargar ficheros de Ãndice comprimidos con <literal>gzip</literal>, " +"(«Packages», «Sources», o «Translations»), los mantiene comprimidos " +"localmente en lugar de desempaquetarlos. Esto ahorra mucho espacio en disco " +"a costa de mayores requerimientos del procesador al generar los almacenes de " +"paquetes locales. El valor predeterminado es «false»." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: apt.conf.5.xml:459 @@ -7105,16 +6982,6 @@ msgstr "Languages" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:460 -#, fuzzy -#| msgid "" -#| "The Languages subsection controls which <filename>Translation</filename> " -#| "files are downloaded and in which order APT tries to display the " -#| "Description-Translations. APT will try to display the first available " -#| "Description for the Language which is listed at first. Languages can be " -#| "defined with their short or long Languagecodes. Note that not all " -#| "archives provide <filename>Translation</filename> files for every " -#| "Language - especially the long Languagecodes are rare, so please inform " -#| "you which ones are available before you set here impossible values." msgid "" "The Languages subsection controls which <filename>Translation</filename> " "files are downloaded and in which order APT tries to display the Description-" @@ -7127,7 +6994,7 @@ msgid "" msgstr "" "La subsección «Languages» controla qué ficheros <filename>Translation</" "filename> se descargan y en qué orden APT intentará mostrar las traducciones " -"de la descripción. APT intentará mostrar la primera descripción del idioma " +"de la descripción. APT intentará mostrar la primera descripción en el idioma " "que esté primero en la lista. Los idiomas se pueden definir con sus códigos " "de idioma cortos o largos. Tenga en cuenta que no todos los archivos de " "paquetes proporcionan ficheros <filename>Translation</filename> para cada " @@ -7142,26 +7009,6 @@ msgstr "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:466 -#, fuzzy -#| msgid "" -#| "The default list includes \"environment\" and \"en\". " -#| "\"<literal>environment</literal>\" has a special meaning here: It will be " -#| "replaced at runtime with the languagecodes extracted from the " -#| "<literal>LC_MESSAGES</literal> enviroment variable. It will also ensure " -#| "that these codes are not included twice in the list. If " -#| "<literal>LC_MESSAGES</literal> is set to \"C\" only the " -#| "<filename>Translation-en</filename> file (if available) will be used. To " -#| "force apt to use no Translation file use the setting <literal>Acquire::" -#| "Languages=none</literal>. \"<literal>none</literal>\" is another special " -#| "meaning code which will stop the search for a fitting " -#| "<filename>Translation</filename> file. This can be used by the system " -#| "administrator to let APT know that it should download also this files " -#| "without actually use them if not the environment specifies this " -#| "languages. So the following example configuration will result in the " -#| "order \"en, de\" in an english and in \"de, en\" in a german " -#| "localization. Note that \"fr\" is downloaded, but not used if APT is not " -#| "used in a french localization, in such an environment the order would be " -#| "\"fr, de, en\". <placeholder type=\"programlisting\" id=\"0\"/>" msgid "" "The default list includes \"environment\" and \"en\". " "\"<literal>environment</literal>\" has a special meaning here: It will be " @@ -7187,19 +7034,20 @@ msgstr "" "ejecución con los códigos de idioma extraÃdos de la variable de entorno " "<literal>LC_MESSAGES</literal>. También se asegurará de que estos códigos no " "se incluyan dos veces en la lista. Si <literal>LC_MESSAGES</literal> está " -"definida con «C» sólo se usará el fichero <filename>Translation-en</" +"definida como «C» sólo se usará el fichero <filename>Translation-en</" "filename> (si está disponible). Puede usar la opción <literal>Acquire::" "Languages=none</literal> para forzar apt a que no use ficheros " "«Translation» . «<literal>none</literal>» es otro código especial que " "significa que detendrá la búsqueda de un fichero <filename>Translation</" "filename> adecuado. El administrador del sistema puede usar esto para " "permitir que APT sepa que deberÃa descargar estos ficheros sin tener que " -"usarlos si no se definen en «environment». De modo que la siguiente " -"configuración de ejemplo resultará en el orden «en, de» en una localización " -"inglesa y «de, en» en una localización alemana. Tenga en cuenta que «fr» se " -"descargará, pero no se usará si APT no se usa en una localización francesa " -"de modo que la orden en este entorno («environment») serÃa «fr, de, en». " -"<placeholder type=\"programlisting\" id=\"0\"/>" +"usarlos si no se definen con «environment». De modo que el siguiente ejemplo " +"de configuración resultará en el orden «en, de» en una configuración " +"regional inglesa y «de, en» en una configuración regional alemana. Tenga en " +"cuenta que «fr» se descargará, pero no se usará si APT no se usa con una " +"configuración regional francesa, de modo que la orden en este entorno " +"(«environment») serÃa «fr, de, en». <placeholder type=\"programlisting\" id=" +"\"0\"/>" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:240 @@ -7332,6 +7180,13 @@ msgid "" "z]+</literal> is silently ignored. As seen in the last default value these " "patterns can use regular expression syntax." msgstr "" +"La lista <literal>Ignore-Files-Silently</literal> se puede usar para definir " +"qué fichero deberÃa ignorar APT silenciosamente al analizar ficheros en los " +"directorios de fragmentos. Por omisión, se ignora silenciosamente un fichero " +"que termina con <literal>.disabled</literal>, <literal>~</literal>, " +"<literal>.bak</literal> o <literal>.dpkg-[a-z]+</literal>. Como se puede ver " +"con el último valor predeterminado, estos patrones pueden usar la sintaxis " +"de expresiones regulares." #. type: Content of: <refentry><refsect1><title> #: apt.conf.5.xml:541 @@ -8275,12 +8130,10 @@ msgstr "&apt-cache;, &apt-config;, &apt-preferences;." #. The last update date #. type: Content of: <refentry><refentryinfo> #: apt_preferences.5.xml:13 -#, fuzzy -#| msgid "&apt-author.team; &apt-email; &apt-product; <date>04 May 2009</date>" msgid "" "&apt-author.team; &apt-email; &apt-product; <date>16 February 2010</date>" msgstr "" -"&apt-author.team; &apt-email; &apt-product; <date>4 de Mayo 2009</date>" +"&apt-author.team; &apt-email; &apt-product; <date>16 de Febrero 2010</date>" #. type: Content of: <refentry><refnamediv><refname> #: apt_preferences.5.xml:21 apt_preferences.5.xml:28 @@ -8355,6 +8208,16 @@ msgid "" "expected in older or newer releases or together with other packages from " "different releases. You have been warned." msgstr "" +"Las preferencias («preferences») son un gran poder en las manos de un " +"administrador de sistemas, ¡pero también se pueden convertir en su mayor " +"pesadilla si se usan sin cuidado! APT no se cuestionará si las preferencias " +"contienen opciones erróneas, y por ello puede llevar a paquetes no " +"instalables o tomar decisiones erróneas al actualizar paquetes. Pueden " +"surgir más problemas si se mezclan varias publicaciones de distribución sin " +"un correcto entendimiento de los siguientes párrafos. Los paquetes incluidos " +"en una distribución especÃfica no se revisan en combinación con otras " +"distribuciones más antiguas o más recientes, y puede que no funcionen como " +"esperado. Queda avisado." #. type: Content of: <refentry><refsect1><para> #: apt_preferences.5.xml:67 @@ -8366,6 +8229,12 @@ msgid "" "underscore (_) and period (.) characters - otherwise they will be silently " "ignored." msgstr "" +"Tenga en cuenta los ficheros en el directorio <filename>/etc/apt/preferences." +"d</filename> se analizan en orden alfanumérico ascendente y deben seguir las " +"convenciones de nombre a continuación: Los ficheros no tienen extensión o la " +"extensión «<literal>pref</literal>» y sólo deben contener caracteres " +"alfanuméricos, guión (-), guión bajo (_) y punto (.). De no ser asÃ, se " +"ignorarán silenciosamente." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:74 @@ -8414,10 +8283,8 @@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:101 -#, fuzzy -#| msgid "priority 100" msgid "priority 1" -msgstr "prioridad 100" +msgstr "priority 1" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:102 @@ -8426,6 +8293,9 @@ msgid "" "filename> files are marked as \"NotAutomatic: yes\" like the debian " "experimental archive." msgstr "" +"para las versiones procedentes de archivos que en sus ficheros " +"<filename>Release</filename> están marcados como «NotAutomatic:yes», como en " +"el archivo «experimental» de Debian." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:107 @@ -8477,11 +8347,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:123 -#, fuzzy -#| msgid "" -#| "If the target release has not been specified then APT simply assigns " -#| "priority 100 to all installed package versions and priority 500 to all " -#| "uninstalled package versions." msgid "" "If the target release has not been specified then APT simply assigns " "priority 100 to all installed package versions and priority 500 to all " @@ -8491,7 +8356,9 @@ msgid "" msgstr "" "Si no se especifica ninguna distribución objetivo APT asigna prioridad 100 a " "todas las versiones de los paquetes instalados y 500 a las versiones no " -"instaladas de paquetes." +"instaladas de paquetes. Las versiones procedentes de archivos que en sus " +"ficheros <filename>Release</filename> están marcados como «NotAutomatic:yes» " +"- estas versiones reciben la prioridad 1." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:129 @@ -8684,32 +8551,26 @@ msgid "" "high priority to all versions available from the server identified by the " "hostname \"ftp.de.debian.org\"" msgstr "" +"Una nota de aviso: la palabra clave usada aquà es «<literal>origin</" +"literal>», el cual se puede usar para coincidir con un nombre de sistema. El " +"siguiente registro asignará una prioridad alta a todas las versiones " +"disponibles desde el servidor identificado con el nombre de sistema «ftp.de." +"debian.org»." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> #: apt_preferences.5.xml:210 -#, fuzzy, no-wrap -#| msgid "" -#| "Package: *\n" -#| "Pin: origin \"\"\n" -#| "Pin-Priority: 999\n" +#, no-wrap msgid "" "Package: *\n" "Pin: origin \"ftp.de.debian.org\"\n" "Pin-Priority: 999\n" msgstr "" "Package: *\n" -"Pin: origin \"\"\n" +"Pin: origin \"ftp.de.debian.org\"\n" "Pin-Priority: 999\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:214 -#, fuzzy -#| msgid "" -#| "A note of caution: the keyword used here is \"<literal>origin</literal>" -#| "\". This should not be confused with the Origin of a distribution as " -#| "specified in a <filename>Release</filename> file. What follows the " -#| "\"Origin:\" tag in a <filename>Release</filename> file is not an Internet " -#| "address but an author or vendor name, such as \"Debian\" or \"Ximian\"." msgid "" "This should <emphasis>not</emphasis> be confused with the Origin of a " "distribution as specified in a <filename>Release</filename> file. What " @@ -8717,12 +8578,11 @@ msgid "" "Internet address but an author or vendor name, such as \"Debian\" or \"Ximian" "\"." msgstr "" -"Aviso: la palabra clave usada aquà es «<literal>origin</literal>». No se " -"debe confundir con el origen («Origin:») de una distribución tal y como se " -"especifica en el fichero <filename>Release</filename>. Lo que sigue a la " -"etiqueta «Origin:» en un fichero <filename>Release</filename> no es la " -"dirección de un sitio de Internet, sino el autor o el nombre del proveedor, " -"tales como «Debian» o «Ximian»." +"<emphasis>No</emphasis> se debe confundir con el origen («Origin») de una " +"distribución tal y como se especifica un fichero <filename>Release</" +"filename>. Lo que sigue a la etiqueta «Origin:» en un fichero " +"<filename>Release</filename> no es la dirección de un sitio de Internet, " +"sino el autor o el nombre del proveedor, tales como «Debian» o «Ximian»." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:219 @@ -8749,11 +8609,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:228 -#, fuzzy -#| msgid "" -#| "The following record assigns a high priority to all package versions " -#| "belonging to any distribution whose Codename is \"<literal>squeeze</" -#| "literal>\"." msgid "" "The following record assigns a high priority to all package versions " "belonging to any distribution whose Codename is \"<literal>&testing-codename;" @@ -8761,22 +8616,18 @@ msgid "" msgstr "" "El siguiente registro asigna una prioridad alta a todas las versiones de los " "paquetes pertenecientes a cualquier distribución que tenga como nombre clave " -"«<literal>squeeze</literal>»." +"«<literal>&testing-codename;</literal>»." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> #: apt_preferences.5.xml:232 -#, fuzzy, no-wrap -#| msgid "" -#| "Package: *\n" -#| "Pin: release n=squeeze\n" -#| "Pin-Priority: 900\n" +#, no-wrap msgid "" "Package: *\n" "Pin: release n=&testing-codename;\n" "Pin-Priority: 900\n" msgstr "" "Package: *\n" -"Pin: release n=squeeze\n" +"Pin: release n=&testing-codename;\n" "Pin-Priority: 900\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> @@ -9087,14 +8938,6 @@ msgstr "La lÃnea <literal>Codename:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:392 -#, fuzzy -#| msgid "" -#| "names the codename to which all the packages in the directory tree " -#| "belong. For example, the line \"Codename: squeeze\" specifies that all " -#| "of the packages in the directory tree below the parent of the " -#| "<filename>Release</filename> file belong to a version named " -#| "<literal>squeeze</literal>. Specifying this value in the APT preferences " -#| "file would require the line:" msgid "" "names the codename to which all the packages in the directory tree belong. " "For example, the line \"Codename: &testing-codename;\" specifies that all of " @@ -9104,19 +8947,19 @@ msgid "" "preferences file would require the line:" msgstr "" "indica el nombre de la distribución a la que pertenecen todos los paquetes " -"del árbol de directorios. Por ejemplo, la lÃnea «Codename: squeeze» " -"especifica que todos los paquetes en el árbol de directorios por debajo del " -"directorio padre marcado en el fichero <filename>Release</filename> " -"pertenecen a la versión llamada <literal>squeeze</literal>. Para especificar " -"una preferencia de acuerdo con este parámetro tendrá que poner una de las " -"siguientes lÃneas en el fichero de preferencias de APT:" +"del árbol de directorios. Por ejemplo, la lÃnea «Codename: &testing-" +"codename;» especifica que todos los paquetes en el árbol de directorios por " +"debajo del directorio padre marcado en el fichero <filename>Release</" +"filename> pertenecen a la versión llamada <literal>&testing-codename;</" +"literal>. Para especificar una preferencia de acuerdo con este parámetro " +"tendrá que poner una de las siguientes lÃneas en el fichero de preferencias " +"de APT:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> #: apt_preferences.5.xml:401 -#, fuzzy, no-wrap -#| msgid "Pin: release a=stable\n" +#, no-wrap msgid "Pin: release n=&testing-codename;\n" -msgstr "Pin: release a=stable\n" +msgstr "Pin: release n=&testing-codename;\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:408 @@ -9226,17 +9069,6 @@ msgstr "Pin: release l=Debian\n" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:363 -#, fuzzy -#| msgid "" -#| "The <filename>Release</filename> file is normally found in the directory " -#| "<filename>.../dists/<replaceable>dist-name</replaceable></filename>: for " -#| "example, <filename>.../dists/stable/Release</filename>, or <filename>.../" -#| "dists/woody/Release</filename>. It consists of a single multi-line " -#| "record which applies to <emphasis>all</emphasis> of the packages in the " -#| "directory tree below its parent. Unlike the <filename>Packages</" -#| "filename> file, nearly all of the lines in a <filename>Release</filename> " -#| "file are relevant for setting APT priorities: <placeholder type=" -#| "\"variablelist\" id=\"0\"/>" msgid "" "The <filename>Release</filename> file is normally found in the directory " "<filename>.../dists/<replaceable>dist-name</replaceable></filename>: for " @@ -9251,12 +9083,12 @@ msgstr "" "El fichero <filename>Release</filename> se suele encontrar en el directorio " "<filename>.../dists/<replaceable>nombre-dist</replaceable></filename>, por " "ejemplo <filename>.../dists/stable/Release</filename> o <filename>.../dists/" -"woody/Release</filename>. El fichero consiste en registros de una sola lÃnea " -"que se aplican a <emphasis>todos</emphasis> los paquetes por debajo del " -"directorio padre. Al contrario que el fichero <filename>Packages</filename>, " -"casi todas las lÃneas del fichero <filename>Release</filename> son " -"relevantes para las prioridades de APT: <placeholder type=\"variablelist\" " -"id=\"0\"/>" +"&stable-codename;/Release</filename>. El fichero consiste en registros de " +"una sola lÃnea que se aplican a <emphasis>todos</emphasis> los paquetes por " +"debajo del directorio padre. Al contrario que el fichero <filename>Packages</" +"filename>, casi todas las lÃneas del fichero <filename>Release</filename> " +"son relevantes para las prioridades de APT: <placeholder type=\"variablelist" +"\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:469 @@ -9484,22 +9316,7 @@ msgstr "Seguir la evolución de una publicación por el nombre" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:600 -#, fuzzy, no-wrap -#| msgid "" -#| "Explanation: Uninstall or do not install any Debian-originated package versions\n" -#| "Explanation: other than those in the distribution codenamed with squeeze or sid\n" -#| "Package: *\n" -#| "Pin: release n=squeeze\n" -#| "Pin-Priority: 900\n" -#| "\n" -#| "Explanation: Debian unstable is always codenamed with sid\n" -#| "Package: *\n" -#| "Pin: release a=sid\n" -#| "Pin-Priority: 800\n" -#| "\n" -#| "Package: *\n" -#| "Pin: release o=Debian\n" -#| "Pin-Priority: -10\n" +#, no-wrap msgid "" "Explanation: Uninstall or do not install any Debian-originated package versions\n" "Explanation: other than those in the distribution codenamed with &testing-codename; or sid\n" @@ -9519,12 +9336,12 @@ msgstr "" "Explanation: Eliminar o no instalar cualquier paquete de Debian cuya versión sea\n" "Explanation: distinta a aquellos en las distribuciones de nombre squeeze o sid\n" "Package: *\n" -"Pin: release n=squeeze\n" +"Pin: release n=&testing-codename;\n" "Pin-Priority: 900\n" "\n" -"Explanation: El nombre clave de Debian unstable siempre es sid\n" +"Explanation: El nombre clave de Debian «unstable» siempre es sid\n" "Package: *\n" -"Pin: release a=sid\n" +"Pin: release n=sid\n" "Pin-Priority: 800\n" "\n" "Package: *\n" @@ -9560,12 +9377,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:617 -#, fuzzy -#| msgid "" -#| "With a suitable &sources-list; file and the above preferences file, any " -#| "of the following commands will cause APT to upgrade to the latest version" -#| "(s) in the release codenamed with <literal>squeeze</literal>. " -#| "<placeholder type=\"programlisting\" id=\"0\"/>" msgid "" "With a suitable &sources-list; file and the above preferences file, any of " "the following commands will cause APT to upgrade to the latest version(s) in " @@ -9575,7 +9386,8 @@ msgstr "" "Con un fichero «&sources-list;» adecuado y el fichero de preferencias " "mostrado anteriormente, cualquiera de las siguientes órdenes provocará que " "APT actualice los paquetes a la última versión de la distribución llamada " -"<literal>squeeze</literal>. <placeholder type=\"programlisting\" id=\"0\"/>" +"<literal>&testing-codename;</literal>. <placeholder type=\"programlisting\" " +"id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:637 @@ -9585,15 +9397,6 @@ msgstr "apt-get install <replaceable>paquete</replaceable>/sid\n" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:628 -#, fuzzy -#| msgid "" -#| "The following command will cause APT to upgrade the specified package to " -#| "the latest version from the <literal>sid</literal> distribution. " -#| "Thereafter, <command>apt-get upgrade</command> will upgrade the package " -#| "to the most recent <literal>squeeze</literal> version if that is more " -#| "recent than the installed version, otherwise, to the most recent " -#| "<literal>sid</literal> version if that is more recent than the installed " -#| "version. <placeholder type=\"programlisting\" id=\"0\"/>" msgid "" "The following command will cause APT to upgrade the specified package to the " "latest version from the <literal>sid</literal> distribution. Thereafter, " @@ -9606,8 +9409,8 @@ msgstr "" "La siguiente orden hace que APT actualice un determinado paquete a la última " "versión de la distribución <literal>sid</literal>. Más tarde, <command>apt-" "get upgrade</command> actualizará el paquete a la última versión de la " -"distribución<literal>squeeze</literal> si es más reciente que la versión " -"instalada. De otro modo, se instalará la versión más reciente de la " +"distribución<literal>&testing-codename;</literal> si es más reciente que la " +"versión instalada. De otro modo, se instalará la versión más reciente de la " "distribución <literal>sid</literal> si es más reciente que la versión " "instalada. <placeholder type=\"programlisting\" id=\"0\"/>" @@ -9818,18 +9621,14 @@ msgstr "Algunos ejemplos:" #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:114 -#, fuzzy, no-wrap -#| msgid "" -#| "deb http://http.us.debian.org/debian stable main contrib non-free\n" -#| "deb http://http.us.debian.org/debian dists/stable-updates/\n" -#| " " +#, no-wrap msgid "" "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n" "deb http://security.debian.org/ &stable-codename;/updates main contrib non-free\n" " " msgstr "" -"deb http://http.us.debian.org/debian stable main contrib non-free\n" -"deb http://http.us.debian.org/debian dists/stable-updates/\n" +"deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n" +"deb http://security.debian.org/ &stable-codename;/updates main contrib non-free\n" " " #. type: Content of: <refentry><refsect1><title> @@ -9942,23 +9741,11 @@ msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: sources.list.5.xml:178 -#, fuzzy -#| msgid "more recongnizable URI types" msgid "more recognizable URI types" msgstr "Otros tipos de URI reconocidos." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: sources.list.5.xml:180 -#, fuzzy -#| msgid "" -#| "APT can be extended with more methods shipped in other optional packages " -#| "which should follow the nameing scheme <literal>apt-transport-" -#| "<replaceable>method</replaceable></literal>. The APT team e.g. maintain " -#| "also the <literal>apt-transport-https</literal> package which provides " -#| "access methods for https-URIs with features similiar to the http method, " -#| "but other methods for using e.g. debtorrent are also available, see " -#| "<citerefentry> <refentrytitle><filename>apt-transport-debtorrent</" -#| "filename></refentrytitle> <manvolnum>1</manvolnum></citerefentry>." msgid "" "APT can be extended with more methods shipped in other optional packages " "which should follow the nameing scheme <literal>apt-transport-" @@ -10042,23 +9829,18 @@ msgstr "deb http://archive.debian.org/debian-archive hamm main" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:208 -#, fuzzy -#| msgid "" -#| "Uses FTP to access the archive at ftp.debian.org, under the debian " -#| "directory, and uses only the stable/contrib area." msgid "" "Uses FTP to access the archive at ftp.debian.org, under the debian " "directory, and uses only the &stable-codename;/contrib area." msgstr "" "Usa FTP para acceder al archivo de Debian en «ftp.debian.org», debajo del " -"directorio «debian», y usa sólo la sección «stable/contrib»." +"directorio «debian», y usa sólo la sección «&stable-codename;/contrib»." #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:210 -#, fuzzy, no-wrap -#| msgid "deb ftp://ftp.debian.org/debian stable contrib" +#, no-wrap msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib" -msgstr "deb ftp://ftp.debian.org/debian stable contrib" +msgstr "deb ftp://ftp.debian.org/debian &stable-codename; contrib" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:212 @@ -10238,13 +10020,6 @@ msgstr "" #. type: <p></p> #: guide.sgml:63 -#, fuzzy -#| msgid "" -#| "For instance, mailcrypt is an emacs extension that aids in encrypting " -#| "email with GPG. Without GPGP installed mail-crypt is useless, so " -#| "mailcrypt has a simple dependency on GPG. Also, because it is an emacs " -#| "extension it has a simple dependency on emacs, without emacs it is " -#| "completely useless." msgid "" "For instance, mailcrypt is an emacs extension that aids in encrypting email " "with GPG. Without GPGP installed mailcrypt is useless, so mailcrypt has a " @@ -10469,17 +10244,6 @@ msgstr "" #. type: <p></p> #: guide.sgml:184 -#, fuzzy -#| msgid "" -#| "To enable the APT method you need to to select [A]ccess in <prgn>dselect</" -#| "prgn> and then choose the APT method. You will be prompted for a set of " -#| "<em>Sources</em> which are places to fetch archives from. These can be " -#| "remote Internet sites, local Debian mirrors or CDROMs. Each source can " -#| "provide a fragment of the total Debian archive, APT will automatically " -#| "combine them to form a complete set of packages. If you have a CDROM then " -#| "it is a good idea to specify it first and then specify a mirror so that " -#| "you have access to the latest bug fixes. APT will automatically use " -#| "packages on your CDROM before downloading from the Internet." msgid "" "To enable the APT method you need to select [A]ccess in <prgn>dselect</prgn> " "and then choose the APT method. You will be prompted for a set of " @@ -10616,13 +10380,6 @@ msgstr "" #. type: <p></p> #: guide.sgml:247 -#, fuzzy -#| msgid "" -#| "Before starting to use <prgn>dselect</prgn> it is necessary to update the " -#| "available list by selecting [U]pdate from the menu. This is a super-set " -#| "of <tt>apt-get update</tt> that makes the fetched information available " -#| "to <prgn>dselect</prgn>. [U]pdate must be performed even if <tt>apt-get " -#| "update</tt> has been run before." msgid "" "Before starting to use <prgn>dselect</prgn> it is necessary to update the " "available list by selecting [U]pdate from the menu. This is a superset of " @@ -10631,8 +10388,8 @@ msgid "" "tt> has been run before." msgstr "" "Es necesario actualizar la lista disponible mediante el elemento de menú [A]" -"ctualizar antes de iniciar <prgn>dselect</prgn>. Éste es un super-conjunto " -"de <tt>apt-get update</tt> que permite a <prgn>dselect</prgn> disponer de la " +"ctualizar antes de iniciar <prgn>dselect</prgn>. Éste es un superconjunto de " +"<tt>apt-get update</tt> que permite a <prgn>dselect</prgn> disponer de la " "información obtenida. Debe ejecutar [A]ctualizar aunque haya ejecutado " "<tt>apt-get update</tt> con anterioridad." @@ -11311,12 +11068,6 @@ msgstr "" #. type: <p></p> #: offline.sgml:57 -#, fuzzy -#| msgid "" -#| "This is achieved by creatively manipulating the APT configuration file. " -#| "The essential premis to tell APT to look on a disc for it's archive " -#| "files. Note that the disc should be formated with a filesystem that can " -#| "handle long file names such as ext2, fat32 or vfat." msgid "" "This is achieved by creatively manipulating the APT configuration file. The " "essential premise to tell APT to look on a disc for it's archive files. Note " @@ -11465,13 +11216,6 @@ msgstr "" #. type: <p><example> #: offline.sgml:136 -#, fuzzy -#| msgid "" -#| "On the target machine the first thing to do is mount the disc and copy " -#| "<em>/var/lib/dpkg/status</em> to it. You will also need to create the " -#| "directories outlined in the Overview, <em>archives/partial/</em> and " -#| "<em>lists/partial/</em> Then take the disc to the remote machine and " -#| "configure the sources.list. On the remote machine execute the following:" msgid "" "On the target machine the first thing to do is mount the disc and copy <em>/" "var/lib/dpkg/status</em> to it. You will also need to create the directories " @@ -11482,8 +11226,8 @@ msgstr "" "Lo primero que debe hacer en el sistema destino es montar el disco y guardar " "en él una copia de <em>/var/lib/dpkg/status</em>. También debe crear los " "directorios definidos en el Resumen, <em>archives/partial/</em> y <em>lists/" -"partial/</em>. Lleve el disco hasta el sistema remoto y configure «sources." -"list». Ejecute lo siguiente en el sistema remoto:" +"partial/</em>. Después, lleve el disco hasta el sistema remoto y configure " +"«sources.list». Ejecute lo siguiente en el sistema remoto:" #. type: <example></example> #: offline.sgml:142 @@ -11504,12 +11248,6 @@ msgstr "" #. type: </example></p> #: offline.sgml:149 -#, fuzzy -#| msgid "" -#| "The dist-upgrade command can be replaced with any-other standard APT " -#| "commands, particularly dselect-upgrade. You can even use an APT front end " -#| "such as <em>dselect</em> However this presents a problem in communicating " -#| "your selections back to the local computer." msgid "" "The dist-upgrade command can be replaced with any other standard APT " "commands, particularly dselect-upgrade. You can even use an APT front end " diff --git a/doc/po/fr.po b/doc/po/fr.po index 43f8b87ee..2de064707 100644 --- a/doc/po/fr.po +++ b/doc/po/fr.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2010-08-23 18:46-0300\n" -"PO-Revision-Date: 2010-08-23 14:04-0400\n" +"PO-Revision-Date: 2010-10-06 22:33+0200\n" "Last-Translator: Christian Perrier <bubulle@debian.org>\n" "Language-Team: French <debian-l10n-french@lists.debian.org>\n" "Language: \n" @@ -936,7 +936,7 @@ msgid "" " </varlistentry>\n" "\">\n" msgstr "" -"Z <varlistentry><term><filename>&cachedir;/archives/partial/</filename></term>\n" +" <varlistentry><term><filename>&cachedir;/archives/partial/</filename></term>\n" " <listitem><para>Zone de stockage pour les paquets en transit.\n" " Élément de configuration : <literal>Dir::Cache::Archives</literal> (implicitement, partial). </para></listitem>\n" " </varlistentry>\n" @@ -1095,6 +1095,7 @@ msgstr "" " <listitem><para>Liste d'état des paquets installés automatiquement.\n" " Élément de configuration : <literal>Dir::State::extended_states</literal>.</para></listitem>\n" " </varlistentry>\n" +"\">\n" #. type: Plain text #: apt.ent:377 @@ -3882,30 +3883,32 @@ msgid "" "</group> </arg> </group>" msgstr "" "<command>apt-get</command> <arg><option>-sqdyfmubV</option></arg> <arg> " -"<option>-o= <replaceable>option_de_configuration</replaceable> </option> </" +"<option>-o= <replaceable>options_de_configuration</replaceable> </option> </" "arg> <arg> <option>-c= <replaceable>fichier_de_configuration</replaceable> </" -"option> </arg> <arg> <option>-t=</option> <group choice='req'> <arg " -"choice='plain'> <replaceable>nom_version_cible</replaceable> </arg> <group " -"choice=\"req\"> <arg choice='plain'>update</arg> <arg " -"choice='plain'>upgrade</arg> <arg choice='plain'>dselect-upgrade</arg> <arg " -"choice='plain'>dist-upgrade</arg> <arg choice='plain'>install <arg choice=" -"\"plain\" rep=\"repeat\"><replaceable>pkg</replaceable> <arg> <group " -"choice='req'> <arg choice='plain'> =<replaceable>numero_version_paquet</" -"replaceable> </arg> <arg choice='plain'> /<replaceable>nom_version_cible</" -"replaceable> </arg> <arg choice='plain'>remove <arg choice=\"plain\" rep=" -"\"repeat\"><replaceable>pkg</replaceable></arg></arg> <arg " -"choice='plain'>purge <arg choice=\"plain\" rep=\"repeat\"><replaceable>pkg</" -"replaceable></arg></arg> <arg choice='plain'>source <arg choice=\"plain\" " -"rep=\"repeat\"><replaceable>paquet</replaceable> <arg> " -"=<replaceable>numéro_version_paquet</replaceable> </arg> </arg> </arg> <arg " -"choice='plain'>build-dep <arg choice=\"plain\" rep=\"repeat" -"\"><replaceable>paquet</replaceable></arg></arg> <arg choice='plain'>check</" -"arg> <arg choice='plain'>clean</arg> <arg choice='plain'>autoclean</arg> " -"<arg choice='plain'>autoremove</arg> <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> </" -"group>" +"option> </arg> <arg> <option>-t=</option> <arg choice='plain'> " +"<replaceable>nom_version_cible</replaceable> </arg> </arg> <group choice=" +"\"req\"> <arg choice='plain'>update</arg> <arg choice='plain'>upgrade</arg> " +"<arg choice='plain'>dselect-upgrade</arg> <arg choice='plain'>dist-upgrade</" +"arg> <arg choice='plain'>install <arg choice=\"plain\" rep=\"repeat" +"\"><replaceable>paquet</replaceable> <arg> <group choice='req'> <arg " +"choice='plain'> =<replaceable>numéro_version_paquet</replaceable> </arg> " +"<arg choice='plain'> /<replaceable>nom_version_cible</replaceable> </arg> </" +"group> </arg> </arg> </arg> <arg choice='plain'>remove <arg choice=\"plain\" " +"rep=\"repeat\"><replaceable>paquet</replaceable></arg></arg> <arg " +"choice='plain'>purge <arg choice=\"plain\" rep=\"repeat" +"\"><replaceable>paquet</replaceable></arg></arg> <arg choice='plain'>source " +"<arg choice=\"plain\" rep=\"repeat\"><replaceable>paquet</replaceable> <arg> " +"<group choice='req'> <arg choice='plain'> " +"=<replaceable>numéro_version_paquet</replaceable> </arg> <arg " +"choice='plain'> /<replaceable>nom_version_cible</replaceable> </arg> </" +"group> </arg> </arg> </arg> <arg choice='plain'>build-dep <arg choice=\"plain" +"\" rep=\"repeat\"><replaceable>paquet</replaceable></arg></arg> <arg " +"choice='plain'>check</arg> <arg choice='plain'>clean</arg> <arg " +"choice='plain'>autoclean</arg> <arg choice='plain'>autoremove</arg> <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> </group>" #. type: Content of: <refentry><refsect1><para> #: apt-get.8.xml:112 @@ -5321,8 +5324,8 @@ msgid "" "<literal>showauto</literal> is used to print a list of automatically " "installed packages with each package on a new line." msgstr "" -"<literal>showauto</literal>, affiche les paquets installés manuellement, un " -"paquet par ligne." +"<literal>showauto</literal>, affiche les paquets installés automatiquement, " +"un paquet par ligne." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-mark.8.xml:93 @@ -7150,7 +7153,7 @@ msgstr "" "La liste <literal>Ignore-Files-Silently</literal> permet d'indiquer quels " "sont les fichiers qu'APT peut ignorer sans avertissement dans les " "répertoires contenant des fragments de configuration. Par défaut, les " -"fichiers qui se terminent par literal>.disabled</literal>, <literal>~</" +"fichiers qui se terminent par <literal>.disabled</literal>, <literal>~</" "literal>, <literal>.bak</literal> ou <literal>.dpkg-[a-z]+</literal> sont " "ignorés. Comme cela est visible dans le dernier élément de cette liste, il " "est possible d'utiliser la syntaxe des expressions rationnelles." @@ -10801,7 +10804,7 @@ msgstr "Résumé final" msgid "" "Finally, APT will print out a summary of all the changes that will occur." msgstr "" -"Anfin, APT affichera un résumé de toutes les opérations qui prendront place." +"Enfin, APT affichera un résumé de toutes les opérations qui prendront place." #. type: <example></example> #: guide.sgml:452 diff --git a/doc/po/ja.po b/doc/po/ja.po index 11a0d446f..3b8fa75de 100644 --- a/doc/po/ja.po +++ b/doc/po/ja.po @@ -1,35 +1,34 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# Translation of apt package man pages +# Copyright (C) 2003-2010 Debian Japanese List <debian-japanese@lists.debian.org> +# This file is distributed under the same license as the apt package. # +# Translators: +# KURASAWA Nozomu, 2003-2006, 2009-2010. msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2010-07-30 12:46+0300\n" -"PO-Revision-Date: 2009-07-30 22:55+0900\n" +"Project-Id-Version: apt 0.7.25.3\n" +"POT-Creation-Date: 2010-08-23 18:46-0300\n" +"PO-Revision-Date: 2010-09-07 07:38+0900\n" "Last-Translator: KURASAWA Nozomu <nabetaro@caldron.jp>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" +"Language-Team: Debian Japanese List <debian-japanese@lists.debian.org>\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" -# type: TH #. type: TH #: apt.8:17 #, no-wrap msgid "apt" msgstr "apt" -# type: TH #. type: TH #: apt.8:17 #, no-wrap msgid "16 June 1998" msgstr "16 June 1998" -# type: TH #. type: TH #: apt.8:17 #, no-wrap @@ -41,7 +40,7 @@ msgstr "Debian GNU/Linux" #: apt.8:18 #, no-wrap msgid "NAME" -msgstr "å称" +msgstr "åå‰" # type: Plain text #. type: Plain text @@ -78,10 +77,10 @@ msgid "" "(8) for the command line or B<synaptic>(8) for the X Window System. Some " "options are only implemented in B<apt-get>(8) though." msgstr "" -"APT ã¯ã‚½ãƒ•ãƒˆã‚¦ã‚§ã‚¢ãƒ‘ッケージã®ç®¡ç†ã‚·ã‚¹ãƒ†ãƒ ã§ã™ã€‚日々ã®ãƒ‘ッケージ管ç†ã«ã¯ã€ã‚³" -"マンドライン用ã«ã¯ B<aptitude>(8)ã€X Window System 用ã«ã¯ B<synaptic>(8) ã¨" -"ã„ã£ãŸã€ã„ãã¤ã‹ã®ãƒ•ãƒãƒ³ãƒˆã‚¨ãƒ³ãƒ‰ãŒç”¨æ„ã•ã‚Œã¦ã„ã¾ã™ã€‚ã—ã‹ã—ã€ã„ãã¤ã‹ã®ã‚ªãƒ—" -"ション㯠B<apt-get>(8) ã«ã—ã‹å®Ÿè£…ã•ã‚Œã¦ã„ã¾ã›ã‚“。" +"APT ã¯ã‚½ãƒ•ãƒˆã‚¦ã‚§ã‚¢ãƒ‘ッケージã®ç®¡ç†ã‚·ã‚¹ãƒ†ãƒ ã§ã™ã€‚日々ã®ãƒ‘ッケージ管ç†ã®ãŸã‚" +"ã«ã€ã‚³ãƒžãƒ³ãƒ‰ãƒ©ã‚¤ãƒ³ç”¨ã® B<aptitude>(8) ã‚„ã€X Window System 用㮠B<synaptic>" +"(8) ã¨ã„ã£ãŸã€ã„ãã¤ã‹ã®ãƒ•ãƒãƒ³ãƒˆã‚¨ãƒ³ãƒ‰ãŒç”¨æ„ã•ã‚Œã¦ã„ã¾ã™ã€‚ã„ãã¤ã‹ã®ã‚ªãƒ—ショ" +"ン㯠B<apt-get>(8) ã«ã—ã‹å®Ÿè£…ã•ã‚Œã¦ã„ã¾ã›ã‚“。" # type: SH #. type: SH @@ -170,7 +169,7 @@ msgstr "著者" #: apt.8:56 msgid "apt was written by the APT team E<lt>apt@packages.debian.orgE<gt>." msgstr "" -"apt 㯠the APT team E<lt>apt@packages.debian.orgE<gt> ã«ã‚ˆã£ã¦æ›¸ã‹ã‚Œã¾ã—ãŸã€‚" +"apt 㯠APT ãƒãƒ¼ãƒ E<lt>apt@packages.debian.orgE<gt> ã«ã‚ˆã£ã¦æ›¸ã‹ã‚Œã¾ã—ãŸã€‚" #. type: Plain text #: apt.ent:2 @@ -372,13 +371,7 @@ msgstr "" #. type: Plain text #: apt.ent:84 -#, fuzzy, no-wrap -#| msgid "" -#| "<!ENTITY dpkg \"<citerefentry>\n" -#| " <refentrytitle><command>dpkg</command></refentrytitle>\n" -#| " <manvolnum>8</manvolnum>\n" -#| " </citerefentry>\"\n" -#| ">\n" +#, no-wrap msgid "" "<!ENTITY dpkg \"<citerefentry>\n" " <refentrytitle><command>dpkg</command></refentrytitle>\n" @@ -388,7 +381,7 @@ msgid "" msgstr "" "<!ENTITY dpkg \"<citerefentry>\n" " <refentrytitle><command>dpkg</command></refentrytitle>\n" -" <manvolnum>8</manvolnum>\n" +" <manvolnum>1</manvolnum>\n" " </citerefentry>\"\n" ">\n" @@ -426,13 +419,7 @@ msgstr "" #. type: Plain text #: apt.ent:102 -#, fuzzy, no-wrap -#| msgid "" -#| "<!ENTITY dpkg-scanpackages \"<citerefentry>\n" -#| " <refentrytitle><command>dpkg-scanpackages</command></refentrytitle>\n" -#| " <manvolnum>8</manvolnum>\n" -#| " </citerefentry>\"\n" -#| ">\n" +#, no-wrap msgid "" "<!ENTITY dpkg-scanpackages \"<citerefentry>\n" " <refentrytitle><command>dpkg-scanpackages</command></refentrytitle>\n" @@ -442,19 +429,13 @@ msgid "" msgstr "" "<!ENTITY dpkg-scanpackages \"<citerefentry>\n" " <refentrytitle><command>dpkg-scanpackages</command></refentrytitle>\n" -" <manvolnum>8</manvolnum>\n" +" <manvolnum>1</manvolnum>\n" " </citerefentry>\"\n" ">\n" #. type: Plain text #: apt.ent:108 -#, fuzzy, no-wrap -#| msgid "" -#| "<!ENTITY dpkg-scansources \"<citerefentry>\n" -#| " <refentrytitle><command>dpkg-scansources</command></refentrytitle>\n" -#| " <manvolnum>8</manvolnum>\n" -#| " </citerefentry>\"\n" -#| ">\n" +#, no-wrap msgid "" "<!ENTITY dpkg-scansources \"<citerefentry>\n" " <refentrytitle><command>dpkg-scansources</command></refentrytitle>\n" @@ -464,19 +445,13 @@ msgid "" msgstr "" "<!ENTITY dpkg-scansources \"<citerefentry>\n" " <refentrytitle><command>dpkg-scansources</command></refentrytitle>\n" -" <manvolnum>8</manvolnum>\n" +" <manvolnum>1</manvolnum>\n" " </citerefentry>\"\n" ">\n" #. type: Plain text #: apt.ent:114 -#, fuzzy, no-wrap -#| msgid "" -#| "<!ENTITY dselect \"<citerefentry>\n" -#| " <refentrytitle><command>dselect</command></refentrytitle>\n" -#| " <manvolnum>8</manvolnum>\n" -#| " </citerefentry>\"\n" -#| ">\n" +#, no-wrap msgid "" "<!ENTITY dselect \"<citerefentry>\n" " <refentrytitle><command>dselect</command></refentrytitle>\n" @@ -486,7 +461,7 @@ msgid "" msgstr "" "<!ENTITY dselect \"<citerefentry>\n" " <refentrytitle><command>dselect</command></refentrytitle>\n" -" <manvolnum>8</manvolnum>\n" +" <manvolnum>1</manvolnum>\n" " </citerefentry>\"\n" ">\n" @@ -588,16 +563,7 @@ msgstr "" #. type: Plain text #: apt.ent:162 -#, fuzzy, no-wrap -#| msgid "" -#| "<!-- Boiler plate docinfo section -->\n" -#| "<!ENTITY apt-docinfo \"\n" -#| " <refentryinfo>\n" -#| " <address><email>apt@packages.debian.org</email></address>\n" -#| " <author><firstname>Jason</firstname> <surname>Gunthorpe</surname></author>\n" -#| " <copyright><year>1998-2001</year> <holder>Jason Gunthorpe</holder></copyright>\n" -#| " <date>28 October 2008</date>\n" -#| " <productname>Linux</productname>\n" +#, no-wrap msgid "" "<!-- Boiler plate docinfo section -->\n" "<!ENTITY apt-docinfo \"\n" @@ -615,7 +581,10 @@ msgstr "" "<!ENTITY apt-docinfo \"\n" " <refentryinfo>\n" " <address><email>apt@packages.debian.org</email></address>\n" -" <author><firstname>Jason</firstname> <surname>Gunthorpe</surname></author>\n" +" <author>\n" +" <firstname>Jason</firstname> <surname>Gunthorpe</surname>\n" +" <contrib></contrib>\n" +" </author>\n" " <copyright><year>1998-2001</year> <holder>Jason Gunthorpe</holder></copyright>\n" " <date>28 October 2008</date>\n" " <productname>Linux</productname>\n" @@ -648,14 +617,7 @@ msgstr "" #. type: Plain text #: apt.ent:179 -#, fuzzy, no-wrap -#| msgid "" -#| "<!ENTITY apt-author.jgunthorpe \"\n" -#| " <author>\n" -#| " <firstname>Jason</firstname>\n" -#| " <surname>Gunthorpe</surname>\n" -#| " </author>\n" -#| "\">\n" +#, no-wrap msgid "" "<!ENTITY apt-author.jgunthorpe \"\n" " <author>\n" @@ -669,19 +631,13 @@ msgstr "" " <author>\n" " <firstname>Jason</firstname>\n" " <surname>Gunthorpe</surname>\n" +" <contrib></contrib>\n" " </author>\n" "\">\n" #. type: Plain text #: apt.ent:187 -#, fuzzy, no-wrap -#| msgid "" -#| "<!ENTITY apt-author.moconnor \"\n" -#| " <author>\n" -#| " <firstname>Mike</firstname>\n" -#| " <surname>O'Connor</surname>\n" -#| " </author>\n" -#| "\">\n" +#, no-wrap msgid "" "<!ENTITY apt-author.moconnor \"\n" " <author>\n" @@ -695,18 +651,13 @@ msgstr "" " <author>\n" " <firstname>Mike</firstname>\n" " <surname>O'Connor</surname>\n" +" <contrib></contrib>\n" " </author>\n" "\">\n" #. type: Plain text #: apt.ent:194 -#, fuzzy, no-wrap -#| msgid "" -#| "<!ENTITY apt-author.team \"\n" -#| " <author>\n" -#| " <othername>APT team</othername>\n" -#| " </author>\n" -#| "\">\n" +#, no-wrap msgid "" "<!ENTITY apt-author.team \"\n" " <author>\n" @@ -717,7 +668,8 @@ msgid "" msgstr "" "<!ENTITY apt-author.team \"\n" " <author>\n" -" <othername>APT team</othername>\n" +" <othername>APT ãƒãƒ¼ãƒ </othername>\n" +" <contrib></contrib>\n" " </author>\n" "\">\n" @@ -763,7 +715,7 @@ msgid "" msgstr "" "<!ENTITY apt-qapage \"\n" "\t<para>\n" -"\t\t<ulink url='http://packages.qa.debian.org/a/apt.html'>QA Page</ulink>\n" +"\t\t<ulink url='http://packages.qa.debian.org/a/apt.html'>QA ページ</ulink>\n" "\t</para>\n" "\">\n" @@ -808,7 +760,7 @@ msgstr "" "<!-- Boiler plate Author section -->\n" "<!ENTITY manauthor \"\n" " <refsect1><title>著者</title>\n" -" <para>APT 㯠APT team <email>apt@packages.debian.org</email> ã«ã‚ˆã£ã¦æ›¸ã‹ã‚Œã¾ã—ãŸã€‚\n" +" <para>APT 㯠APT ãƒãƒ¼ãƒ <email>apt@packages.debian.org</email> ã«ã‚ˆã£ã¦æ›¸ã‹ã‚Œã¾ã—ãŸã€‚\n" " </para>\n" " </refsect1>\n" "\">\n" @@ -849,7 +801,7 @@ msgid "" " </listitem>\n" " </varlistentry>\n" msgstr "" -" <varlistentry>\n" +" <varlistentry>\n" " <term><option>-v</option></term>\n" " <term><option>--version</option></term>\n" " <listitem><para>プãƒã‚°ãƒ©ãƒ ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‚’表示ã—ã¾ã™ã€‚\n" @@ -859,17 +811,7 @@ msgstr "" #. type: Plain text #: apt.ent:264 -#, fuzzy, no-wrap -#| msgid "" -#| " <varlistentry>\n" -#| " <term><option>-c</option></term>\n" -#| " <term><option>--config-file</option></term>\n" -#| " <listitem><para>Configuration File; Specify a configuration file to use. \n" -#| " The program will read the default configuration file and then this \n" -#| " configuration file. See &apt-conf; for syntax information. \n" -#| " </para>\n" -#| " </listitem>\n" -#| " </varlistentry>\n" +#, no-wrap msgid "" " <varlistentry>\n" " <term><option>-c</option></term>\n" @@ -887,8 +829,9 @@ msgstr "" " <term><option>-c</option></term>\n" " <term><option>--config-file</option></term>\n" " <listitem><para>è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã€‚ 使用ã™ã‚‹è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã‚’指定ã—ã¾ã™ã€‚\n" -" ã“ã®è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ãŒèªã‚ãªã„å ´åˆã¯ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã®è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã‚’èªã¿è¾¼ã¿ã¾ã™ã€‚\n" -" 文法ã«ã¤ã„ã¦ã¯ &apt-conf; ã‚’å‚ç…§ã—ã¦ãã ã•ã„。\n" +" ã“ã®ãƒ—ãƒã‚°ãƒ©ãƒ ã¯ã€ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆè¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã‚’èªã‚“ã§ã‹ã‚‰ã€ã“ã®è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã‚’èªã¿ã¾ã™ã€‚\n" +" ã“ã®è¨å®šã‚’デフォルトè¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã‚ˆã‚Šã‚‚å‰ã«èªã‚€å¿…è¦ãŒã‚ã‚‹å ´åˆã€\n" +" <envar>APT_CONFIG</envar> 環境変数ã«æŒ‡å®šã—ã¦ãã ã•ã„。構文ã«ã¤ã„ã¦ã¯ &apt-conf; ã‚’ã”覧ãã ã•ã„。\n" " </para>\n" " </listitem>\n" " </varlistentry>\n" @@ -909,13 +852,14 @@ msgid "" " </varlistentry>\n" "\">\n" msgstr "" -" <varlistentry>\n" +" <varlistentry>\n" " <term><option>-o</option></term>\n" " <term><option>--option</option></term>\n" " <listitem><para>è¨å®šã‚ªãƒ—ションã®ã‚»ãƒƒãƒˆã€‚ä»»æ„ã®è¨å®šã‚ªãƒ—ションをセットã—ã¾ã™ã€‚\n" -" 文法㯠<option>-o Foo::Bar=bar</option> ã¨ãªã‚Šã¾ã™ã€‚\n" +" 構文 <option>-o Foo::Bar=bar</option> ã¨ãªã‚Šã¾ã™ã€‚\n" " ç•°ãªã‚‹ã‚ªãƒ—ションをè¨å®šã™ã‚‹ãŸã‚ã€<option>-o</option> 㨠<option>--option</option> ã¯ã€\n" -" 複数回使用ã§ãã¾ã™ã€‚ </para>\n" +" 複数回使用ã§ãã¾ã™ã€‚\n" +" </para>\n" " </listitem>\n" " </varlistentry>\n" "\">\n" @@ -945,6 +889,7 @@ msgstr "" " ãªã©ã®ã‚ˆã†ã«ã—ã¦ä¸Šæ›¸ãã§ãã¾ã™ã€‚\n" " </para>\n" "\">\n" +"\n" #. type: Plain text #: apt.ent:293 @@ -956,6 +901,11 @@ msgid "" " Configuration Item: <literal>Dir::Etc::Main</literal>.</para></listitem>\n" " </varlistentry>\n" msgstr "" +"<!ENTITY file-aptconf \"\n" +" <varlistentry><term><filename>/etc/apt/apt.conf</filename></term>\n" +" <listitem><para>APT è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã€‚\n" +" è¨å®šé …ç›® - <literal>Dir::Etc::Main</literal></para></listitem>\n" +" </varlistentry>\n" #. type: Plain text #: apt.ent:299 @@ -967,6 +917,11 @@ msgid "" " </varlistentry>\n" "\">\n" msgstr "" +" <varlistentry><term><filename>/etc/apt/apt.conf.d/</filename></term>\n" +" <listitem><para>APT è¨å®šãƒ•ã‚¡ã‚¤ãƒ«æ–片。\n" +" è¨å®šé …ç›® - <literal>Dir::Etc::Parts</literal></para></listitem>\n" +" </varlistentry>\n" +"\">\n" #. type: Plain text #: apt.ent:305 @@ -978,25 +933,33 @@ msgid "" " Configuration Item: <literal>Dir::Cache::Archives</literal>.</para></listitem>\n" " </varlistentry>\n" msgstr "" +"<!ENTITY file-cachearchives \"\n" +" <varlistentry><term><filename>&cachedir;/archives/</filename></term>\n" +" <listitem><para>å–得済ã¿ãƒ‘ãƒƒã‚±ãƒ¼ã‚¸ãƒ•ã‚¡ã‚¤ãƒ«æ ¼ç´ã‚¨ãƒªã‚¢ã€‚\n" +" è¨å®šé …ç›® - <literal>Dir::Cache::Archives</literal></para></listitem>\n" +" </varlistentry>\n" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Plain text #: apt.ent:311 -#, fuzzy, no-wrap -#| msgid "Storage area for package files in transit. Configuration Item: <literal>Dir::Cache::Archives</literal> (implicit partial)." +#, no-wrap msgid "" " <varlistentry><term><filename>&cachedir;/archives/partial/</filename></term>\n" " <listitem><para>Storage area for package files in transit.\n" " Configuration Item: <literal>Dir::Cache::Archives</literal> (implicit partial). </para></listitem>\n" " </varlistentry>\n" "\">\n" -msgstr "å–å¾—ä¸ãƒ‘ãƒƒã‚±ãƒ¼ã‚¸ãƒ•ã‚¡ã‚¤ãƒ«æ ¼ç´ã‚¨ãƒªã‚¢ã€‚è¨å®šé …ç›® - <literal>Dir::Cache::Archives</literal> (必然的ã«ä¸å®Œå…¨)" +msgstr "" +" <varlistentry><term><filename>&cachedir;/archives/partial/</filename></term>\n" +" <listitem><para>å–å¾—ä¸ãƒ‘ãƒƒã‚±ãƒ¼ã‚¸ãƒ•ã‚¡ã‚¤ãƒ«æ ¼ç´ã‚¨ãƒªã‚¢ã€‚\n" +" è¨å®šé …ç›® - <literal>Dir::Cache::Archives</literal> (必然的ã«ä¸å®Œå…¨)</para></listitem>\n" +" </varlistentry>\n" +"\">\n" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Plain text #: apt.ent:321 -#, fuzzy, no-wrap -#| msgid "Version preferences file. This is where you would specify \"pinning\", i.e. a preference to get certain packages from a separate source or from a different version of a distribution. Configuration Item: <literal>Dir::Etc::Preferences</literal>." +#, no-wrap msgid "" "<!ENTITY file-preferences \"\n" " <varlistentry><term><filename>/etc/apt/preferences</filename></term>\n" @@ -1007,7 +970,15 @@ msgid "" " or from a different version of a distribution.\n" " Configuration Item: <literal>Dir::Etc::Preferences</literal>.</para></listitem>\n" " </varlistentry>\n" -msgstr "ãƒãƒ¼ã‚¸ãƒ§ãƒ³å„ªå…ˆãƒ•ã‚¡ã‚¤ãƒ«ã€‚ã“ã“ã« \"pin\" ã®è¨å®šã‚’è¡Œã„ã¾ã™ã€‚ã¤ã¾ã‚Šã€åˆ¥ã€…ã®å–得元や異ãªã‚‹ãƒ‡ã‚£ã‚¹ãƒˆãƒªãƒ“ューションã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®ã€ã©ã“ã‹ã‚‰ãƒ‘ッケージをå–å¾—ã™ã‚‹ã‹ã‚’è¨å®šã—ã¾ã™ã€‚è¨å®šé …ç›® - <literal>Dir::Etc::Preferences</literal>" +msgstr "" +"<!ENTITY file-preferences \"\n" +" <varlistentry><term><filename>/etc/apt/preferences</filename></term>\n" +" <listitem><para>ãƒãƒ¼ã‚¸ãƒ§ãƒ³é¸æŠžãƒ•ã‚¡ã‚¤ãƒ«ã€‚\n" +" ã“ã“ã« "pinning"ã®è¨å®šã‚’è¡Œã„ã¾ã™ã€‚\n" +" ã¤ã¾ã‚Šã€åˆ¥ã€…ã®å–得元や異ãªã‚‹ãƒ‡ã‚£ã‚¹ãƒˆãƒªãƒ“ューションã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®ã€\n" +" ã©ã“ã‹ã‚‰ãƒ‘ッケージをå–å¾—ã™ã‚‹ã‹ã‚’è¨å®šã—ã¾ã™ã€‚\n" +" è¨å®šé …ç›® - <literal>Dir::Etc::Preferences</literal></para></listitem>\n" +" </varlistentry>\n" #. type: Plain text #: apt.ent:327 @@ -1019,6 +990,11 @@ msgid "" " </varlistentry>\n" "\">\n" msgstr "" +" <varlistentry><term><filename>/etc/apt/preferences.d/</filename></term>\n" +" <listitem><para>ãƒãƒ¼ã‚¸ãƒ§ãƒ³é¸æŠžãƒ•ã‚¡ã‚¤ãƒ«æ–片。\n" +" è¨å®šé …ç›® - <literal>Dir::Etc::PreferencesParts</literal></para></listitem>\n" +" </varlistentry>\n" +"\">\n" #. type: Plain text #: apt.ent:333 @@ -1030,6 +1006,11 @@ msgid "" " Configuration Item: <literal>Dir::Etc::SourceList</literal>.</para></listitem>\n" " </varlistentry>\n" msgstr "" +"<!ENTITY file-sourceslist \"\n" +" <varlistentry><term><filename>/etc/apt/sources.list</filename></term>\n" +" <listitem><para>パッケージå–å¾—å…ƒã®å ´æ‰€ã€‚\n" +" è¨å®šé …ç›® - <literal>Dir::Etc::SourceList</literal></para></listitem>\n" +" </varlistentry>\n" #. type: Plain text #: apt.ent:339 @@ -1041,12 +1022,16 @@ msgid "" " </varlistentry>\n" "\">\n" msgstr "" +" <varlistentry><term><filename>/etc/apt/sources.list.d/</filename></term>\n" +" <listitem><para>パッケージå–å¾—å…ƒã®å ´æ‰€ã®ãƒ•ã‚¡ã‚¤ãƒ«æ–片\n" +" è¨å®šé …ç›® - <literal>Dir::Etc::SourceParts</literal></para></listitem>\n" +" </varlistentry>\n" +"\">\n" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Plain text #: apt.ent:346 -#, fuzzy, no-wrap -#| msgid "Storage area for state information for each package resource specified in &sources-list; Configuration Item: <literal>Dir::State::Lists</literal>." +#, no-wrap msgid "" "<!ENTITY file-statelists \"\n" " <varlistentry><term><filename>&statedir;/lists/</filename></term>\n" @@ -1054,39 +1039,51 @@ msgid "" " &sources-list;\n" " Configuration Item: <literal>Dir::State::Lists</literal>.</para></listitem>\n" " </varlistentry>\n" -msgstr "&sources-list; ã«æŒ‡å®šã—ãŸã€ãƒ‘ッケージリソースã”ã¨ã®çŠ¶æ…‹æƒ…å ±æ ¼ç´ã‚¨ãƒªã‚¢ã€‚è¨å®šé …ç›® - <literal>Dir::State::Lists</literal>" +msgstr "" +"<!ENTITY file-statelists \"\n" +" <varlistentry><term><filename>&statedir;/lists/</filename></term>\n" +" <listitem><para>&sources-list; ã«æŒ‡å®šã—ãŸã€ãƒ‘ッケージリソースã”ã¨ã®çŠ¶æ…‹æƒ…å ±æ ¼ç´ã‚¨ãƒªã‚¢ã€‚\n" +" è¨å®šé …ç›® - <literal>Dir::State::Lists</literal></para></listitem>\n" +" </varlistentry>\n" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Plain text #: apt.ent:352 -#, fuzzy, no-wrap -#| msgid "Storage area for state information in transit. Configuration Item: <literal>Dir::State::Lists</literal> (implicit partial)." +#, no-wrap msgid "" " <varlistentry><term><filename>&statedir;/lists/partial/</filename></term>\n" " <listitem><para>Storage area for state information in transit.\n" " Configuration Item: <literal>Dir::State::Lists</literal> (implicit partial).</para></listitem>\n" " </varlistentry>\n" "\">\n" -msgstr "å–å¾—ä¸çŠ¶æ…‹æƒ…å ±æ ¼ç´ã‚¨ãƒªã‚¢ã€‚è¨å®šé …ç›® - <literal>Dir::State::Lists</literal> (必然的ã«ä¸å®Œå…¨)" +msgstr "" +" <varlistentry><term><filename>&statedir;/lists/partial/</filename></term>\n" +" <listitem><para>å–å¾—ä¸çŠ¶æ…‹æƒ…å ±æ ¼ç´ã‚¨ãƒªã‚¢ã€‚\n" +" è¨å®šé …ç›® - <literal>Dir::State::Lists</literal> (必然的ã«ä¸å®Œå…¨)</para></listitem>\n" +" </varlistentry>\n" +"\">\n" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Plain text #: apt.ent:358 -#, fuzzy, no-wrap -#| msgid "Storage area for state information for each package resource specified in &sources-list; Configuration Item: <literal>Dir::State::Lists</literal>." +#, no-wrap msgid "" "<!ENTITY file-trustedgpg \"\n" " <varlistentry><term><filename>/etc/apt/trusted.gpg</filename></term>\n" " <listitem><para>Keyring of local trusted keys, new keys will be added here.\n" " Configuration Item: <literal>Dir::Etc::Trusted</literal>.</para></listitem>\n" " </varlistentry>\n" -msgstr "&sources-list; ã«æŒ‡å®šã—ãŸã€ãƒ‘ッケージリソースã”ã¨ã®çŠ¶æ…‹æƒ…å ±æ ¼ç´ã‚¨ãƒªã‚¢ã€‚è¨å®šé …ç›® - <literal>Dir::State::Lists</literal>" +msgstr "" +"<!ENTITY file-trustedgpg \"\n" +" <varlistentry><term><filename>/etc/apt/trusted.gpg</filename></term>\n" +" <listitem><para>ãƒãƒ¼ã‚«ãƒ«ã§ä¿¡é ¼æ¸ˆã¿ã‚ーã®ã‚ーリングã€æ–°è¦ã‚ーã¯ã“ã“ã«è¿½åŠ ã—ã¾ã™ã€‚\n" +" è¨å®šé …ç›® - <literal>Dir::Etc::Trusted</literal>.</para></listitem>\n" +" </varlistentry>\n" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Plain text #: apt.ent:365 -#, fuzzy, no-wrap -#| msgid "Storage area for state information in transit. Configuration Item: <literal>Dir::State::Lists</literal> (implicit partial)." +#, no-wrap msgid "" " <varlistentry><term><filename>/etc/apt/trusted.gpg.d/</filename></term>\n" " <listitem><para>File fragments for the trusted keys, additional keyrings can\n" @@ -1094,13 +1091,16 @@ msgid "" " Configuration Item <literal>Dir::Etc::TrustedParts</literal>.</para></listitem>\n" " </varlistentry>\n" "\">\n" -msgstr "å–å¾—ä¸çŠ¶æ…‹æƒ…å ±æ ¼ç´ã‚¨ãƒªã‚¢ã€‚è¨å®šé …ç›® - <literal>Dir::State::Lists</literal> (必然的ã«ä¸å®Œå…¨)" +msgstr "" +" <varlistentry><term><filename>/etc/apt/trusted.gpg.d/</filename></term>\n" +" <listitem><para>ä¿¡é ¼æ¸ˆã¿ã‚ーã®ãƒ•ã‚¡ã‚¤ãƒ«æ–片ã€è¿½åŠ ã‚ーリング㯠(ä»–ã®ãƒ‘ッケージや管ç†è€…ã«ã‚ˆã‚Š) ã“ã“ã«æ ¼ç´ã—ã¾ã™ã€‚\n" +" è¨å®šé …ç›® - <literal>Dir::Etc::TrustedParts</literal></para></listitem>\n" +" </varlistentry>\n" +"\">\n" -# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Plain text #: apt.ent:373 -#, fuzzy, no-wrap -#| msgid "Storage area for state information for each package resource specified in &sources-list; Configuration Item: <literal>Dir::State::Lists</literal>." +#, no-wrap msgid "" "<!ENTITY file-extended_states \"\n" " <varlistentry><term><filename>/var/lib/apt/extended_states</filename></term>\n" @@ -1109,7 +1109,14 @@ msgid "" " </para></listitem>\n" " </varlistentry>\n" "\">\n" -msgstr "&sources-list; ã«æŒ‡å®šã—ãŸã€ãƒ‘ッケージリソースã”ã¨ã®çŠ¶æ…‹æƒ…å ±æ ¼ç´ã‚¨ãƒªã‚¢ã€‚è¨å®šé …ç›® - <literal>Dir::State::Lists</literal>" +msgstr "" +"<!ENTITY file-extended_states \"\n" +" <varlistentry><term><filename>/var/lib/apt/extended_states</filename></term>\n" +" <listitem><para>自動インストールã•ã‚ŒãŸãƒ‘ッケージã®çŠ¶æ…‹ä¸€è¦§ã§ã™ã€‚\n" +" è¨å®šé …ç›® - <literal>Dir::State::extended_states</literal>\n" +" </para></listitem>\n" +" </varlistentry>\n" +"\">\n" #. type: Plain text #: apt.ent:377 @@ -1118,7 +1125,10 @@ msgid "" "<!-- TRANSLATOR: This is the section header for the following paragraphs - comparable\n" " to the other headers like NAME and DESCRIPTION and should therefore be uppercase. -->\n" "<!ENTITY translation-title \"TRANSLATION\">\n" -msgstr "<!ENTITY translation-title \"訳者\">\n" +msgstr "" +"<!-- TRANSLATOR: This is the section header for the following paragraphs - comparable\n" +" to the other headers like NAME and DESCRIPTION and should therefore be uppercase. -->\n" +"<!ENTITY translation-title \"翻訳\">\n" #. type: Plain text #: apt.ent:386 @@ -1133,8 +1143,11 @@ msgid "" " Debian Dummy l10n Team <email>debian-l10n-dummy@lists.debian.org</email>.\n" "\">\n" msgstr "" +"<!-- TRANSLATOR: This is a placeholder. You should write here who has contributed\n" +" to the translation in the past, who is responsible now and maybe further information\n" +" specially related to your translation. -->\n" "<!ENTITY translation-holder \"\n" -" 倉澤 望 <email>nabetaro@debian.or.jp</email> (2003-2006,2009),\n" +" 倉澤 望 <email>nabetaro@debian.or.jp</email> (2003-2006,2009-2010),\n" " Debian JP Documentation ML <email>debian-doc@debian.or.jp</email>\n" "\">\n" @@ -1153,6 +1166,16 @@ msgid "" " translation is lagging behind the original content.\n" "\">\n" msgstr "" +"<!-- TRANSLATOR: As a translation is allowed to have 20% of untranslated/fuzzy strings\n" +" in a shipped manpage newer/modified paragraphs will maybe appear in english in\n" +" the generated manpage. This sentence is therefore here to tell the reader that this\n" +" is not a mistake by the translator - obviously the target is that at least for stable\n" +" releases this sentence is not needed. :) -->\n" +"<!ENTITY translation-english \"\n" +" ã“ã®ç¿»è¨³æ–‡æ›¸ã«ã¯æœªè¨³éƒ¨åˆ†ãŒå«ã¾ã‚Œã¦ã„ã‚‹ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„。\n" +" 翻訳ãŒã‚ªãƒªã‚¸ãƒŠãƒ«ã«è¿½å¾“ã§ãã¦ã„ãªã„å ´åˆã€\n" +" 内容を失ã‚ãªã„よã†ã«ã“ã®ã‚ˆã†ã«ã—ã¦ã„ã¾ã™ã€‚\n" +"\">\n" #. type: Plain text #: apt.ent:400 @@ -1160,6 +1183,8 @@ msgid "" "<!ENTITY oldstable-codename \"etch\"> <!ENTITY stable-codename \"lenny\"> <!" "ENTITY testing-codename \"squeeze\">" msgstr "" +"<!ENTITY oldstable-codename \"etch\"> <!ENTITY stable-codename \"lenny\"> <!" +"ENTITY testing-codename \"squeeze\">" #. The last update date #. type: Content of: <refentry><refentryinfo> @@ -1191,7 +1216,7 @@ msgstr "8" #: apt-sortpkgs.1.xml:24 apt.conf.5.xml:30 apt_preferences.5.xml:23 #: sources.list.5.xml:24 msgid "APT" -msgstr "" +msgstr "APT" # type: Content of: <refentry><refnamediv><refpurpose> #. type: Content of: <refentry><refnamediv><refpurpose> @@ -1367,6 +1392,7 @@ msgstr "" "Provides:\n" "2.1-12 - \n" "Reverse Provides: \n" +" \n" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> @@ -1475,13 +1501,6 @@ msgstr "" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> #: apt-cache.8.xml:152 -#, fuzzy -#| msgid "" -#| "<literal>Missing</literal> is the number of package names that were " -#| "referenced in a dependency but were not provided by any package. Missing " -#| "packages may be in evidence if a full distribution is not accessed, or if " -#| "a package (real or virtual) has been dropped from the distribution. " -#| "Usually they are referenced from Conflicts or Breaks statements." msgid "" "<literal>Missing</literal> is the number of package names that were " "referenced in a dependency but were not provided by any package. Missing " @@ -1490,10 +1509,10 @@ msgid "" "they are referenced from Conflicts or Breaks statements." msgstr "" "<literal>æ¬ è½</literal>ã¯ã€ä¾å˜é–¢ä¿‚ä¸ã«ã¯å˜åœ¨ã™ã‚‹ã®ã«ã€ã©ã®ãƒ‘ッケージã«ã‚‚æä¾›" -"ã•ã‚Œã¦ã„ãªã„パッケージåã®æ•°ã‚’表ã—ã¾ã™ã€‚ã“ã®ãƒ‘ッケージãŒã‚ã‚‹ã¨ã„ã†ã“ã¨ã¯ã€å…¨" -"ディストリビューションã«ã‚¢ã‚¯ã‚»ã‚¹ã§ãã¦ã„ãªã„ã‹ã€(実ãªã„ã—仮想) パッケージãŒ" -"ディストリビューションã‹ã‚‰ã¯ãšã•ã‚Œã¦ã—ã¾ã£ãŸå¯èƒ½æ€§ã‚‚ã‚ã‚Šã¾ã™ã€‚通常ã§ã¯ã€æ§‹æ–‡" -"ãŒçŸ›ç›¾ã™ã‚‹ã¨ã“ã®ã‚ˆã†ã«ãªã‚Šã¾ã™ã€‚" +"ã•ã‚Œã¦ã„ãªã„パッケージåã®æ•°ã‚’表ã—ã¾ã™ã€‚æ¬ è½ãƒ‘ッケージã¯ã€å…¨ãƒ‡ã‚£ã‚¹ãƒˆãƒªãƒ“ュー" +"ションã«ã‚¢ã‚¯ã‚»ã‚¹ã§ãã¦ã„ãªã„ã‹ã€(実ãªã„ã—仮想) パッケージãŒãƒ‡ã‚£ã‚¹ãƒˆãƒªãƒ“ュー" +"ションã‹ã‚‰ã¯ãšã•ã‚ŒãŸã¨ã„ã†å…†å€™ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“。通常ã€æ§‹æ–‡ãŒç«¶åˆã‚„ç ´æã™ã‚‹ã¨ã“" +"ã®ã‚ˆã†ã«ãªã‚Šã¾ã™ã€‚" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> @@ -1677,13 +1696,6 @@ msgstr "pkgnames <replaceable>[ prefix ]</replaceable>" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:229 -#, fuzzy -#| msgid "" -#| "This command prints the name of each package in the system. The optional " -#| "argument is a prefix match to filter the name list. The output is " -#| "suitable for use in a shell tab complete function and the output is " -#| "generated extremely quickly. This command is best used with the <option>--" -#| "generate</option> option." msgid "" "This command prints the name of each package APT knows. The optional " "argument is a prefix match to filter the name list. The output is suitable " @@ -1691,10 +1703,10 @@ msgid "" "extremely quickly. This command is best used with the <option>--generate</" "option> option." msgstr "" -"ã“ã®ã‚³ãƒžãƒ³ãƒ‰ã¯ã€ã‚·ã‚¹ãƒ†ãƒ ã§ã®å„パッケージã®å称を表示ã—ã¾ã™ã€‚オプションã®å¼•æ•°" -"ã«ã‚ˆã‚Šã€å–å¾—ã™ã‚‹ä¸€è¦§ã‚ˆã‚Šå…ˆé 一致ã§æŠ½å‡ºã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ã“ã®å‡ºåŠ›ã¯ã‚·ã‚§ãƒ«ã®" -"タブã«ã‚ˆã‚‹è£œå®Œæ©Ÿèƒ½ã«ä½¿ã„ã‚„ã™ãã€ã¾ãŸéžå¸¸ã«é€Ÿã生æˆã•ã‚Œã¾ã™ã€‚ã“ã®ã‚³ãƒžãƒ³ãƒ‰ã¯ " -"<option>--generate</option> オプションã¨å…±ã«ä½¿ç”¨ã™ã‚‹ã¨éžå¸¸ã«ä¾¿åˆ©ã§ã™ã€‚" +"ã“ã®ã‚³ãƒžãƒ³ãƒ‰ã¯ã€APT ãŒçŸ¥ã£ã¦ã„ã‚‹å„パッケージã®åå‰ã‚’表示ã—ã¾ã™ã€‚オプション引" +"æ•°ã¯ã€åå‰ä¸€è¦§ã‹ã‚‰å…ˆé 一致ã§æŠ½å‡ºã—ã¾ã™ã€‚ã“ã®å‡ºåŠ›ã¯ã‚·ã‚§ãƒ«ã®ã‚¿ãƒ–ã«ã‚ˆã‚‹è£œå®Œæ©Ÿèƒ½" +"ã§ä½¿ã„ã‚„ã™ãã€ã¾ãŸéžå¸¸ã«æ‹˜æŸã«ç”Ÿæˆã•ã‚Œã¾ã™ã€‚ã“ã®ã‚³ãƒžãƒ³ãƒ‰ã¯ <option>--" +"generate</option> オプションã¨å…±ã«ä½¿ç”¨ã™ã‚‹ã¨éžå¸¸ã«ä¾¿åˆ©ã§ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:234 @@ -1703,6 +1715,9 @@ msgid "" "download, installable or installed, e.g. virtual packages are also listed in " "the generated list." msgstr "" +"APT ãŒçŸ¥ã£ã¦ã„るパッケージã¯ã€ãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰å¯èƒ½ã€ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«å¯èƒ½ã€ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼" +"ル済ã¿ã§ã‚ã‚‹å¿…è¦ãŒãªã„ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„。ã¤ã¾ã‚Šã€ä»®æƒ³ãƒ‘ッケージも生æˆã—" +"ãŸä¸€è¦§ã«ã‚ã‚Šã¾ã™ã€‚" # type: Content of: <refentry><refsect1><refsect2><para><programlisting> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> @@ -1914,68 +1929,48 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:312 -#, fuzzy -#| msgid "<option>--no-upgrade</option>" msgid "<option>--no-pre-depends</option>" -msgstr "<option>--no-upgrade</option>" +msgstr "<option>--no-pre-depends</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:313 -#, fuzzy -#| msgid "<option>--no-download</option>" msgid "<option>--no-depends</option>" -msgstr "<option>--no-download</option>" +msgstr "<option>--no-depends</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:314 -#, fuzzy -#| msgid "<option>--install-recommends</option>" msgid "<option>--no-recommends</option>" -msgstr "<option>--install-recommends</option>" +msgstr "<option>--no-recommends</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:315 -#, fuzzy -#| msgid "<option>--no-upgrade</option>" msgid "<option>--no-suggests</option>" -msgstr "<option>--no-upgrade</option>" +msgstr "<option>--no-suggests</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:316 -#, fuzzy -#| msgid "<option>--no-mount</option>" msgid "<option>--no-conflicts</option>" -msgstr "<option>--no-mount</option>" +msgstr "<option>--no-conflicts</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:317 -#, fuzzy -#| msgid "<option>--no-act</option>" msgid "<option>--no-breaks</option>" -msgstr "<option>--no-act</option>" +msgstr "<option>--no-breaks</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:318 -#, fuzzy -#| msgid "<option>--no-act</option>" msgid "<option>--no-replaces</option>" -msgstr "<option>--no-act</option>" +msgstr "<option>--no-replaces</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:319 -#, fuzzy -#| msgid "<option>--no-act</option>" msgid "<option>--no-enhances</option>" -msgstr "<option>--no-act</option>" +msgstr "<option>--no-enhances</option>" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:320 #, fuzzy -#| msgid "" -#| "Make <literal>depends</literal> and <literal>rdepends</literal> recursive " -#| "so that all packages mentioned are printed once. Configuration Item: " -#| "<literal>APT::Cache::RecurseDepends</literal>." msgid "" "Per default the <literal>depends</literal> and <literal>rdepends</literal> " "print all dependencies. This can be twicked with these flags which will omit " @@ -2145,7 +2140,7 @@ msgstr "ファイル" #. type: Content of: <refentry><refsect1><variablelist> #: apt-cache.8.xml:377 msgid "&file-sourceslist; &file-statelists;" -msgstr "" +msgstr "&file-sourceslist; &file-statelists;" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><title> @@ -2249,16 +2244,8 @@ msgstr "" msgid "add" msgstr "add" -# type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt-cdrom.8.xml:66 -#, fuzzy -#| msgid "" -#| "<literal>add</literal> is used to add a new disc to the source list. It " -#| "will unmount the CDROM device, prompt for a disk to be inserted and then " -#| "procceed to scan it and copy the index files. If the disc does not have a " -#| "proper <filename>disk</filename> directory you will be prompted for a " -#| "descriptive title." msgid "" "<literal>add</literal> is used to add a new disc to the source list. It will " "unmount the CDROM device, prompt for a disk to be inserted and then proceed " @@ -2267,8 +2254,8 @@ msgid "" "title." msgstr "" "<literal>add</literal> ã¯ã€æ–°ã—ã„ディスクをå–得元リストã«è¿½åŠ ã—ã¾ã™ã€‚CDROM デ" -"ãƒã‚¤ã‚¹ã®ã‚¢ãƒ³ãƒžã‚¦ãƒ³ãƒˆã€ãƒ‡ã‚£ã‚¹ã‚¯æŒ¿å…¥ã®ãƒ—ãƒãƒ³ãƒ—トã®è¡¨ç¤ºã®å¾Œã«ã€ãƒ‡ã‚£ã‚¹ã‚¯ã®ã‚¹ã‚ャ" -"ンã¨ã‚¤ãƒ³ãƒ‡ãƒƒã‚¯ã‚¹ãƒ•ã‚¡ã‚¤ãƒ«ã®ã‚³ãƒ”ーを行ã„ã¾ã™ã€‚ディスクã«æ£ã—ã„ <filename>disk</" +"ãƒã‚¤ã‚¹ã®ã‚¢ãƒ³ãƒžã‚¦ãƒ³ãƒˆã€ãƒ‡ã‚£ã‚¹ã‚¯æŒ¿å…¥ã®ãƒ—ãƒãƒ³ãƒ—ト表示ã®å¾Œã«ã€ãƒ‡ã‚£ã‚¹ã‚¯ã®ã‚¹ã‚ャン" +"ã¨ã‚¤ãƒ³ãƒ‡ãƒƒã‚¯ã‚¹ãƒ•ã‚¡ã‚¤ãƒ«ã®ã‚³ãƒ”ーを行ã„ã¾ã™ã€‚ディスクã«æ£ã—ã„ <filename>disk</" "filename> ディレクトリãŒå˜åœ¨ã—ãªã„å ´åˆã€ã‚¿ã‚¤ãƒˆãƒ«ã‚’入力ã™ã‚‹ã‚ˆã†ä¿ƒã—ã¾ã™ã€‚" # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> @@ -2543,6 +2530,7 @@ msgstr "" "OPTS=\"-f\"\n" "RES=`apt-config shell OPTS MyApp::options`\n" "eval $RES\n" +"\n" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> @@ -2670,11 +2658,6 @@ msgstr "<option>--tempdir</option>" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-extracttemplates.1.xml:62 -#, fuzzy -#| msgid "" -#| "Temporary directory in which to write extracted debconf template files " -#| "and config scripts Configuration Item: <literal>APT::ExtractTemplates::" -#| "TempDir</literal>" msgid "" "Temporary directory in which to write extracted debconf template files and " "config scripts. Configuration Item: <literal>APT::ExtractTemplates::" @@ -2696,16 +2679,12 @@ msgstr "" #. The last update date #. type: Content of: <refentry><refentryinfo> #: apt-ftparchive.1.xml:13 -#, fuzzy -#| msgid "" -#| "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>2 " -#| "November 2007</date>" msgid "" "&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; <date>17 " "August 2009</date>" msgstr "" -"&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>2 " -"November 2007</date>" +"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; <date>17 " +"August 2009</date>" # type: Content of: <refentry><refnamediv><refname> #. type: Content of: <refentry><refnamediv><refname> @@ -2722,26 +2701,6 @@ msgstr "インデックスファイル生æˆãƒ¦ãƒ¼ãƒ†ã‚£ãƒªãƒ†ã‚£" # type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> #: apt-ftparchive.1.xml:36 -#, fuzzy -#| msgid "" -#| "<command>apt-ftparchive</command> <arg><option>-hvdsq</option></arg> " -#| "<arg><option>--md5</option></arg> <arg><option>--delink</option></arg> " -#| "<arg><option>--readonly</option></arg> <arg><option>--contents</option></" -#| "arg> <arg><option>-o=<replaceable>config string</replaceable></option></" -#| "arg> <arg><option>-c=<replaceable>file</replaceable></option></arg> " -#| "<group choice=\"req\"> <arg>packages<arg choice=\"plain\" rep=\"repeat" -#| "\"><replaceable>path</replaceable></arg><arg><replaceable>override</" -#| "replaceable><arg><replaceable>pathprefix</replaceable></arg></arg></arg> " -#| "<arg>sources<arg choice=\"plain\" rep=\"repeat\"><replaceable>path</" -#| "replaceable></arg><arg><replaceable>override</" -#| "replaceable><arg><replaceable>pathprefix</replaceable></arg></arg></arg> " -#| "<arg>contents <arg choice=\"plain\"><replaceable>path</replaceable></" -#| "arg></arg> <arg>release <arg choice=\"plain\"><replaceable>path</" -#| "replaceable></arg></arg> <arg>generate <arg choice=\"plain" -#| "\"><replaceable>config-file</replaceable></arg> <arg choice=\"plain\" rep=" -#| "\"repeat\"><replaceable>section</replaceable></arg></arg> <arg>clean <arg " -#| "choice=\"plain\"><replaceable>config-file</replaceable></arg></arg> </" -#| "group>" msgid "" "<command>apt-ftparchive</command> <arg><option>-hvdsq</option></arg> " "<arg><option>--md5</option></arg> <arg><option>--delink</option></arg> " @@ -2765,10 +2724,11 @@ msgstr "" "<command>apt-ftparchive</command> <arg><option>-hvdsq</option></arg> " "<arg><option>--md5</option></arg> <arg><option>--delink</option></arg> " "<arg><option>--readonly</option></arg> <arg><option>--contents</option></" -"arg> <arg><option>-o=<replaceable>config string</replaceable></option></arg> " -"<arg><option>-c=<replaceable>file</replaceable></option></arg> <group choice=" -"\"req\"> <arg>packages<arg choice=\"plain\" rep=\"repeat" -"\"><replaceable>path</replaceable></arg><arg><replaceable>override</" +"arg> <arg><option>--arch <replaceable>architecture</replaceable></option></" +"arg> <arg><option>-o <replaceable>config</replaceable>=<replaceable>string</" +"replaceable></option></arg> <arg><option>-c=<replaceable>file</replaceable></" +"option></arg> <group choice=\"req\"> <arg>packages<arg choice=\"plain\" rep=" +"\"repeat\"><replaceable>path</replaceable></arg><arg><replaceable>override</" "replaceable><arg><replaceable>pathprefix</replaceable></arg></arg></arg> " "<arg>sources<arg choice=\"plain\" rep=\"repeat\"><replaceable>path</" "replaceable></arg><arg><replaceable>override</" @@ -2926,19 +2886,8 @@ msgstr "" "å†å¸°æ¤œç´¢ã—ã¾ã™ã€‚ãã®å¾Œã€ãƒ•ã‚¡ã‚¤ãƒ«ã”ã¨ã® MD5 ダイジェスト㨠SHA1 ダイジェストを" "å«ã‚“ã Release ファイルをã€æ¨™æº–出力ã«æ›¸ã出ã—ã¾ã™ã€‚" -# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:119 -#, fuzzy -#| msgid "" -#| "Values for the additional metadata fields in the Release file are taken " -#| "from the corresponding variables under <literal>APT::FTPArchive::Release</" -#| "literal>, e.g. <literal>APT::FTPArchive::Release::Origin</literal>. The " -#| "supported fields are: <literal>Origin</literal>, <literal>Label</" -#| "literal>, <literal>Suite</literal>, <literal>Version</literal>, " -#| "<literal>Codename</literal>, <literal>Date</literal>, " -#| "<literal>Architectures</literal>, <literal>Components</literal>, " -#| "<literal>Description</literal>." msgid "" "Values for the additional metadata fields in the Release file are taken from " "the corresponding variables under <literal>APT::FTPArchive::Release</" @@ -2954,8 +2903,8 @@ msgstr "" "Origin</literal>) ã‚’ã¨ã‚Šã¾ã™ã€‚サãƒãƒ¼ãƒˆã™ã‚‹ãƒ•ã‚£ãƒ¼ãƒ«ãƒ‰ã¯ã€<literal>Origin</" "literal>, <literal>Label</literal>, <literal>Suite</literal>, " "<literal>Version</literal>, <literal>Codename</literal>, <literal>Date</" -"literal>, <literal>Architectures</literal>, <literal>Components</literal>, " -"<literal>Description</literal> ã§ã™ã€‚" +"literal>, <literal>Valid-Until</literal>, <literal>Architectures</literal>, " +"<literal>Components</literal>, <literal>Description</literal> ã§ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:130 @@ -3011,7 +2960,7 @@ msgid "" msgstr "" "<literal>generate</literal> コマンドã¯ã€ç”Ÿæˆã™ã‚‹ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã«é–¢ã™ã‚‹è¨˜è¿°ã‚’ã—ãŸ" "è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã‚’使用ã—ã¾ã™ã€‚è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã¯ã€bind 8 ã‚„ dhcpd ã¨ã„ã£ãŸ ISC ツール" -"ã«è¦‹ã‚‰ã‚Œã‚‹ã‚ˆã†ãªã€ISC è¨å®šãƒ•ã‚©ãƒ¼ãƒžãƒƒãƒˆã«å¾“ã„ã¾ã™ã€‚&apt-conf; ã«ã€æ–‡æ³•ã®èª¬æ˜ŽãŒ" +"ã«è¦‹ã‚‰ã‚Œã‚‹ã‚ˆã†ãªã€ISC è¨å®šãƒ•ã‚©ãƒ¼ãƒžãƒƒãƒˆã«å¾“ã„ã¾ã™ã€‚&apt-conf; ã«ã€æ§‹æ–‡ã®èª¬æ˜ŽãŒ" "ã‚ã‚Šã¾ã™ã€‚Generate è¨å®šã¯ã‚»ã‚¯ã‚·ãƒ§ãƒ³æ³•ã§è§£æžã—ã¾ã™ãŒã€&apt-conf; ã¯ãƒ„リー法ã§" "解æžã™ã‚‹ã®ã«æ³¨æ„ã—ã¦ãã ã•ã„。ã“ã‚Œã¯ã‚¹ã‚³ãƒ¼ãƒ—ã‚¿ã‚°ã®æ‰±ã„æ–¹ã«é•ã„ãŒã‚ã‚‹ã ã‘ã§" "ã™ã€‚" @@ -3034,12 +2983,6 @@ msgstr "Dir セクション" # type: Content of: <refentry><refsect1><refsect2><para> #. type: Content of: <refentry><refsect1><refsect2><para> #: apt-ftparchive.1.xml:161 -#, fuzzy -#| msgid "" -#| "The <literal>Dir</literal> section defines the standard directories " -#| "needed to locate the files required during the generation process. These " -#| "directories are prepended to certain relative paths defined in later " -#| "sections to produce a complete an absolute path." msgid "" "The <literal>Dir</literal> section defines the standard directories needed " "to locate the files required during the generation process. These " @@ -3047,8 +2990,8 @@ msgid "" "to produce a complete an absolute path." msgstr "" "<literal>Dir</literal> セクションã¯ã€ç”Ÿæˆãƒ—ãƒã‚»ã‚¹ã§å¿…è¦ãªãƒ•ã‚¡ã‚¤ãƒ«ã‚’é…ç½®ã™ã‚‹ãŸ" -"ã‚ã®ã€æ¨™æº–ディレクトリを定義ã—ã¾ã™ã€‚ã“ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã¯ã€å®Œå…¨ãªçµ¶å¯¾ãƒ‘スを生æˆ" -"ã™ã‚‹ãŸã‚ã€å¾Œã®ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã§å®šç¾©ã•ã‚Œã‚‹ç›¸å¯¾ãƒ‘スã®å‰ã«çµåˆã—ã¾ã™ã€‚" +"ã‚ã«å¿…è¦ãªã€æ¨™æº–ディレクトリを定義ã—ã¾ã™ã€‚ã“ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã¯ã€å®Œå…¨ãªçµ¶å¯¾ãƒ‘ス" +"を生æˆã™ã‚‹ãŸã‚ã€å¾Œã®ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã§å®šç¾©ã•ã‚Œã‚‹ç›¸å¯¾ãƒ‘スã®å‰ã«çµåˆã•ã‚Œã¾ã™ã€‚" # type: <tag></tag> #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> @@ -3204,24 +3147,17 @@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:229 -#, fuzzy -#| msgid "Contents::Compress" msgid "Translation::Compress" -msgstr "Contents::Compress" +msgstr "Translation::Compress" -# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:231 -#, fuzzy -#| msgid "" -#| "This is similar to <literal>Packages::Compress</literal> except that it " -#| "controls the compression for the Contents files." msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Translation-en master file." msgstr "" -"<literal>Packages::Compress</literal> ã¨åŒæ§˜ã«ã€Contents ファイルã®åœ§ç¸®æ–¹æ³•ã‚’" -"指定ã—ã¾ã™ã€‚" +"<literal>Packages::Compress</literal> ã¨åŒæ§˜ã«ã€Translation-en マスターファイ" +"ルã®åœ§ç¸®ã‚’制御ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:235 @@ -3259,10 +3195,8 @@ msgstr "" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:249 apt-ftparchive.1.xml:395 -#, fuzzy -#| msgid "Description" msgid "LongDescription" -msgstr "説明" +msgstr "LongDescription" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:251 apt-ftparchive.1.xml:397 @@ -3385,23 +3319,18 @@ msgstr "Sources" # type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:302 -#, fuzzy -#| msgid "" -#| "Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/" -#| "source/Sources</filename>" msgid "" "Sets the output Sources file. Defaults to <filename>$(DIST)/$(SECTION)/" "source/Sources</filename>" msgstr "" -"Packages ファイルã®å‡ºåŠ›å…ˆã‚’è¨å®šã—ã¾ã™ã€‚デフォルト㯠<filename>$(DIST)/" +"Sources ファイルã®å‡ºåŠ›å…ˆã‚’è¨å®šã—ã¾ã™ã€‚デフォルト㯠<filename>$(DIST)/" "$(SECTION)/source/Sources</filename> ã§ã™ã€‚" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:306 -#, fuzzy msgid "Translation" -msgstr "オプション" +msgstr "Translation" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:308 @@ -3531,15 +3460,8 @@ msgstr "" "ã¨ã®è¤‡æ•°ã®ã‚¢ãƒ¼ã‚テクãƒãƒ£ã‚’定義ã—ã¾ã™ã€‚使用ã™ã‚‹æ£ç¢ºãªãƒ‘スã¯ã€" "<literal>Directory</literal> 変数ã§å®šç¾©ã•ã‚Œã¾ã™ã€‚" -# type: Content of: <refentry><refsect1><refsect2><para> #. type: Content of: <refentry><refsect1><refsect2><para> #: apt-ftparchive.1.xml:364 -#, fuzzy -#| msgid "" -#| "The <literal>Tree</literal> section takes a scope tag which sets the " -#| "<literal>$(DIST)</literal> variable and defines the root of the tree (the " -#| "path is prefixed by <literal>ArchiveDir</literal>). Typically this is a " -#| "setting such as <filename>dists/woody</filename>." msgid "" "The <literal>Tree</literal> section takes a scope tag which sets the " "<literal>$(DIST)</literal> variable and defines the root of the tree (the " @@ -3548,8 +3470,8 @@ msgid "" msgstr "" "<literal>Tree</literal> セクションã¯ã€<literal>$(DIST)</literal> 変数ã§è¨å®šã•" "ã‚Œã¦ã„るスコープタグをã¨ã‚Šã€ãƒ„リーã®ãƒ«ãƒ¼ãƒˆ (<literal>ArchiveDir</literal>ãŒå…ˆ" -"é ã«ã¤ãパス) を定義ã—ã¾ã™ã€‚通常ã€ã“ã®è¨å®šã¯ <filename>dists/woody</" -"filename> ã®ã‚ˆã†ã«ãªã‚Šã¾ã™ã€‚" +"é ã«ã¤ãパス) を定義ã—ã¾ã™ã€‚通常ã€ã“ã®è¨å®šã¯ <filename>dists/&stable-" +"codename;</filename> ã®ã‚ˆã†ã«ãªã‚Šã¾ã™ã€‚" # type: Content of: <refentry><refsect1><refsect2><para> #. type: Content of: <refentry><refsect1><refsect2><para> @@ -3565,11 +3487,7 @@ msgstr "" # type: Content of: <refentry><refsect1><refsect2><para><informalexample><programlisting> #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt-ftparchive.1.xml:375 -#, fuzzy, no-wrap -#| msgid "" -#| "for i in Sections do \n" -#| " for j in Architectures do\n" -#| " Generate for DIST=scope SECTION=i ARCH=j\n" +#, no-wrap msgid "" "for i in Sections do \n" " for j in Architectures do\n" @@ -3579,21 +3497,19 @@ msgstr "" "for i in Sections do \n" " for j in Architectures do\n" " Generate for DIST=scope SECTION=i ARCH=j\n" +" " # type: Content of: <refentry><refsect1><refsect2><para><informalexample> #. type: Content of: <refentry><refsect1><refsect2><para> #: apt-ftparchive.1.xml:372 -#, fuzzy -#| msgid "" -#| "When processing a <literal>Tree</literal> section <command>apt-" -#| "ftparchive</command> performs an operation similar to:" msgid "" "When processing a <literal>Tree</literal> section <command>apt-ftparchive</" "command> performs an operation similar to: <placeholder type=\"programlisting" "\" id=\"0\"/>" msgstr "" "<literal>Tree</literal> セクションを処ç†ã™ã‚‹éš›ã€<command>apt-ftparchive</" -"command> ã¯ä»¥ä¸‹ã®ã‚ˆã†ãªæ“作を行ã„ã¾ã™ã€‚" +"command> ã¯ä»¥ä¸‹ã®ã‚ˆã†ãªæ“作を行ã„ã¾ã™ã€‚<placeholder type=\"programlisting\" " +"id=\"0\"/>" # type: Content of: <refentry><refsect1><refsect2><title> #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> @@ -3975,20 +3891,13 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:574 -#, fuzzy -#| msgid "<option>-a</option>" msgid "<option>--arch</option>" -msgstr "<option>-a</option>" +msgstr "<option>--arch</option>" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:575 #, fuzzy -#| msgid "" -#| "If the command is either <literal>install</literal> or <literal>remove</" -#| "literal>, then this option acts like running <literal>autoremove</" -#| "literal> command, removing the unused dependency packages. Configuration " -#| "Item: <literal>APT::Get::AutomaticRemove</literal>." msgid "" "Accept in the <literal>packages</literal> and <literal>contents</literal> " "commands only package files matching <literal>*_arch.deb</literal> or " @@ -4002,8 +3911,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:581 -#, fuzzy -#| msgid "<option>--version</option>" msgid "<option>APT::FTPArchive::AlwaysStat</option>" msgstr "<option>--version</option>" @@ -4023,13 +3930,12 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:593 -#, fuzzy -#| msgid "<option>--version</option>" msgid "<option>APT::FTPArchive::LongDescription</option>" -msgstr "<option>--version</option>" +msgstr "<option>APT::FTPArchive::LongDescription</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:595 +#, fuzzy msgid "" "This configuration option defaults to \"<literal>true</literal>\" and should " "only be set to <literal>\"false\"</literal> if the Archive generated with " @@ -4037,6 +3943,10 @@ msgid "" "that the <filename>Translation-en</filename> master file can only be created " "in the generate command." msgstr "" +"ã“ã®è¨å®šã‚ªãƒ—ションã¯ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã§ \"<literal>true</literal>\" ã§ã€&apt-" +"ftparchive; ㌠<filename>Translation</filename> ファイルも生æˆã—ãŸå ´åˆã«ã®ã¿ " +"<literal>\"false\"</literal> ã«è¨å®šã—ã¦ãã ã•ã„。ç¾åœ¨ <command>apt-" +"ftparchive</command> ã¯ã€ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã‚’生æˆã§ããªã„ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„。" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><title> @@ -4050,7 +3960,9 @@ msgstr "サンプル" #: apt-ftparchive.1.xml:613 #, no-wrap msgid "<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" -msgstr "<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" +msgstr "" +"<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" +"\n" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> @@ -4096,38 +4008,6 @@ msgstr "APT パッケージæ“作ユーティリティ -- コマンドラインã #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> #: apt-get.8.xml:36 -#, fuzzy -#| msgid "" -#| "<command>apt-get</command> <arg><option>-sqdyfmubV</option></arg> <arg> " -#| "<option>-o= <replaceable>config_string</replaceable> </option> </arg> " -#| "<arg> <option>-c= <replaceable>config_file</replaceable> </option> </arg> " -#| "<arg> <option>-t=</option> <group choice='req'> <arg choice='plain'> " -#| "<replaceable>target_release_name</replaceable> </arg> <arg " -#| "choice='plain'> <replaceable>target_release_number_expression</" -#| "replaceable> </arg> <arg choice='plain'> " -#| "<replaceable>target_release_codename</replaceable> </arg> </group> </arg> " -#| "<group choice=\"req\"> <arg choice='plain'>update</arg> <arg " -#| "choice='plain'>upgrade</arg> <arg choice='plain'>dselect-upgrade</arg> " -#| "<arg choice='plain'>dist-upgrade</arg> <arg choice='plain'>install <arg " -#| "choice=\"plain\" rep=\"repeat\"><replaceable>pkg</replaceable> <arg> " -#| "<group choice='req'> <arg choice='plain'> " -#| "=<replaceable>pkg_version_number</replaceable> </arg> <arg " -#| "choice='plain'> /<replaceable>target_release_name</replaceable> </arg> " -#| "<arg choice='plain'> /<replaceable>target_release_codename</replaceable> " -#| "</arg> </group> </arg> </arg> </arg> <arg choice='plain'>remove <arg " -#| "choice=\"plain\" rep=\"repeat\"><replaceable>pkg</replaceable></arg></" -#| "arg> <arg choice='plain'>purge <arg choice=\"plain\" rep=\"repeat" -#| "\"><replaceable>pkg</replaceable></arg></arg> <arg choice='plain'>source " -#| "<arg choice=\"plain\" rep=\"repeat\"><replaceable>pkg</replaceable> <arg> " -#| "=<replaceable>pkg_version_number</replaceable> </arg> </arg> </arg> <arg " -#| "choice='plain'>build-dep <arg choice=\"plain\" rep=\"repeat" -#| "\"><replaceable>pkg</replaceable></arg></arg> <arg choice='plain'>check</" -#| "arg> <arg choice='plain'>clean</arg> <arg choice='plain'>autoclean</arg> " -#| "<arg choice='plain'>autoremove</arg> <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> " -#| "</group>" msgid "" "<command>apt-get</command> <arg><option>-sqdyfmubV</option></arg> <arg> " "<option>-o= <replaceable>config_string</replaceable> </option> </arg> <arg> " @@ -4159,25 +4039,23 @@ msgstr "" "<command>apt-get</command> <arg><option>-sqdyfmubV</option></arg> <arg> " "<option>-o= <replaceable>config_string</replaceable> </option> </arg> <arg> " "<option>-c= <replaceable>config_file</replaceable> </option> </arg> <arg> " -"<option>-t=</option> <group choice='req'> <arg choice='plain'> " -"<replaceable>target_release_name</replaceable> </arg> <arg choice='plain'> " -"<replaceable>target_release_number_expression</replaceable> </arg> <arg " -"choice='plain'> <replaceable>target_release_codename</replaceable> </arg> </" -"group> </arg> <group choice=\"req\"> <arg choice='plain'>update</arg> <arg " -"choice='plain'>upgrade</arg> <arg choice='plain'>dselect-upgrade</arg> <arg " -"choice='plain'>dist-upgrade</arg> <arg choice='plain'>install <arg choice=" -"\"plain\" rep=\"repeat\"><replaceable>pkg</replaceable> <arg> <group " -"choice='req'> <arg choice='plain'> =<replaceable>pkg_version_number</" -"replaceable> </arg> <arg choice='plain'> /<replaceable>target_release_name</" -"replaceable> </arg> <arg choice='plain'> /" -"<replaceable>target_release_codename</replaceable> </arg> </group> </arg> </" -"arg> </arg> <arg choice='plain'>remove <arg choice=\"plain\" rep=\"repeat" -"\"><replaceable>pkg</replaceable></arg></arg> <arg choice='plain'>purge <arg " -"choice=\"plain\" rep=\"repeat\"><replaceable>pkg</replaceable></arg></arg> " -"<arg choice='plain'>source <arg choice=\"plain\" rep=\"repeat" -"\"><replaceable>pkg</replaceable> <arg> =<replaceable>pkg_version_number</" -"replaceable> </arg> </arg> </arg> <arg choice='plain'>build-dep <arg choice=" -"\"plain\" rep=\"repeat\"><replaceable>pkg</replaceable></arg></arg> <arg " +"<option>-t=</option> <arg choice='plain'> <replaceable>target_release</" +"replaceable> </arg> </arg> <group choice=\"req\"> <arg " +"choice='plain'>update</arg> <arg choice='plain'>upgrade</arg> <arg " +"choice='plain'>dselect-upgrade</arg> <arg choice='plain'>dist-upgrade</arg> " +"<arg choice='plain'>install <arg choice=\"plain\" rep=\"repeat" +"\"><replaceable>pkg</replaceable> <arg> <group choice='req'> <arg " +"choice='plain'> =<replaceable>pkg_version_number</replaceable> </arg> <arg " +"choice='plain'> /<replaceable>target_release</replaceable> </arg> </group> </" +"arg> </arg> </arg> <arg choice='plain'>remove <arg choice=\"plain\" rep=" +"\"repeat\"><replaceable>pkg</replaceable></arg></arg> <arg " +"choice='plain'>purge <arg choice=\"plain\" rep=\"repeat\"><replaceable>pkg</" +"replaceable></arg></arg> <arg choice='plain'>source <arg choice=\"plain\" " +"rep=\"repeat\"><replaceable>pkg</replaceable> <arg> <group choice='req'> " +"<arg choice='plain'> =<replaceable>pkg_version_number</replaceable> </arg> " +"<arg choice='plain'> /<replaceable>target_release</replaceable> </arg> </" +"group> </arg> </arg> </arg> <arg choice='plain'>build-dep <arg choice=\"plain" +"\" rep=\"repeat\"><replaceable>pkg</replaceable></arg></arg> <arg " "choice='plain'>check</arg> <arg choice='plain'>clean</arg> <arg " "choice='plain'>autoclean</arg> <arg choice='plain'>autoremove</arg> <arg " "choice='plain'> <group choice='req'> <arg choice='plain'>-v</arg> <arg " @@ -4185,15 +4063,8 @@ msgstr "" "choice='req'> <arg choice='plain'>-h</arg> <arg choice='plain'>--help</arg> " "</group> </arg> </group>" -# type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> #: apt-get.8.xml:112 -#, 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;, &gnome-apt; and &wajig;." 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 " @@ -4203,7 +4074,7 @@ msgstr "" "<command>apt-get</command> ã¯ã€ãƒ‘ッケージをæ“作ã™ã‚‹ã‚³ãƒžãƒ³ãƒ‰ãƒ©ã‚¤ãƒ³ãƒ„ールã§ã€" "APT ライブラリを用ã„ã‚‹ä»–ã®ãƒ„ールã®ãƒ¦ãƒ¼ã‚¶å´ã€Œãƒãƒƒã‚¯ã‚¨ãƒ³ãƒ‰ã€ã¨ã„ãˆã‚‹ã‚‚ã®ã§ã™ã€‚" "「フãƒãƒ³ãƒˆã‚¨ãƒ³ãƒ‰ã€ã‚¤ãƒ³ã‚¿ãƒ¼ãƒ•ã‚§ãƒ¼ã‚¹ã«ã¯ã€&dselect;, &aptitude;, &synaptic;, " -"&gnome-apt;, &wajig; ãªã©ãŒã‚ã‚Šã¾ã™ã€‚" +"&wajig; ãªã©ãŒã‚ã‚Šã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:121 apt-key.8.xml:124 @@ -4375,8 +4246,8 @@ msgid "" "Both of the version selection mechanisms can downgrade packages and must be " "used with care." msgstr "" -"ãƒãƒ¼ã‚¸ãƒ§ãƒ³é¸æŠžæ©Ÿæ§‹ã¯ãƒ€ã‚¦ãƒ³ã‚°ãƒ¬ãƒ¼ãƒ‰æ™‚ã«ã‚‚使用ã§ãã‚‹ãŸã‚ã€æ³¨æ„ã—ã¦ä½¿ç”¨ã—ãªã‘ã‚Œ" -"ã°ãªã‚Šã¾ã›ã‚“。" +"ãƒãƒ¼ã‚¸ãƒ§ãƒ³é¸æŠžæ©Ÿæ§‹ã¯ãƒ€ã‚¦ãƒ³ã‚°ãƒ¬ãƒ¼ãƒ‰ã«ã‚‚使用ã§ãã‚‹ãŸã‚ã€æ³¨æ„ã—ã¦ä½¿ç”¨ã—ãªã‘ã‚Œã°" +"ãªã‚Šã¾ã›ã‚“。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:199 @@ -4389,6 +4260,13 @@ msgid "" "you wish to upgrade, and if a newer version is available, it (and its " "dependencies, as described above) will be downloaded and installed." msgstr "" +"システムã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«æ¸ˆã¿ã®ãƒ‘ッケージをã€ã™ã¹ã¦ã‚¢ãƒƒãƒ—グレードã™ã‚‹ã®ã§ã¯ãª" +"ãã€ã„ãã¤ã‹ã®ãƒ‘ッケージをアップグレードã™ã‚‹å ´åˆã«ã‚‚ã€ã“ã®ã‚¿ãƒ¼ã‚²ãƒƒãƒˆã‚’使用ã§" +"ãã¾ã™ã€‚ç¾åœ¨ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„るパッケージã™ã¹ã¦ã®æœ€æ–°ç‰ˆã‚’インストールã™ã‚‹ " +"\"upgrade\" ターゲットã¨ç•°ãªã‚Šã€\"install\" ã¯æŒ‡å®šã—ãŸãƒ‘ッケージã®æœ€æ–°ç‰ˆã®ã¿" +"をインストールã—ã¾ã™ã€‚å˜ç´”ã«ã‚¢ãƒƒãƒ—グレードã—ãŸã„パッケージåã‚’ã—ã¦ãã ã•ã„。" +"より新ã—ã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒåˆ©ç”¨ã§ãã‚‹å ´åˆã€ãã®ãƒ‘ッケージ (ã¨å‰è¿°ã®ä¾å˜é–¢ä¿‚ã«ã‚ã‚‹" +"パッケージ) をダウンãƒãƒ¼ãƒ‰ãƒ»ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã—ã¾ã™ã€‚" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> @@ -4464,19 +4342,6 @@ msgstr "source" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:237 -#, fuzzy -#| msgid "" -#| "<literal>source</literal> causes <command>apt-get</command> to fetch " -#| "source packages. APT will examine the available packages to decide which " -#| "source package to fetch. It will then find and download into the current " -#| "directory the newest available version of that source package. Source " -#| "packages are tracked separately from binary packages via <literal>deb-" -#| "src</literal> type lines in the &sources-list; file. This probably will " -#| "mean that you will not get the same source as the package you have " -#| "installed or as you could install. If the --compile options is specified " -#| "then the package will be compiled to a binary .deb using dpkg-" -#| "buildpackage, if --download-only is specified then the source package " -#| "will not be unpacked." msgid "" "<literal>source</literal> causes <command>apt-get</command> to fetch source " "packages. APT will examine the available packages to decide which source " @@ -4486,15 +4351,13 @@ msgid "" "literal>, the <option>-t</option> option or per package with the " "<literal>pkg/release</literal> syntax, if possible." msgstr "" -"<literal>source</literal> ã¯ã€ã‚½ãƒ¼ã‚¹ãƒ‘ッケージをå–å¾—ã™ã‚‹ã®ã« <command>apt-" -"get</command> ã—ã¾ã™ã€‚APT ã¯ã©ã®ã‚½ãƒ¼ã‚¹ãƒ‘ッケージをå–å¾—ã™ã‚‹ã‹æ±ºå®šã™ã‚‹ã‚ˆã†ã€åˆ©" -"用å¯èƒ½ãªãƒ‘ッケージを検討ã—ã¾ã™ã€‚ãã®å¾Œã€æœ€æ–°ã®åˆ©ç”¨å¯èƒ½ãªã‚½ãƒ¼ã‚¹ãƒ‘ッケージを見" -"ã¤ã‘ã€ã‚«ãƒ¬ãƒ³ãƒˆãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã¸ãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ã—ã¾ã™ã€‚ãƒã‚¤ãƒŠãƒªãƒ‘ッケージã¨ã¯åˆ¥ã« " -"&sources-list; ファイルã®<literal>deb-src</literal> è¡Œã‹ã‚‰ã€ã‚½ãƒ¼ã‚¹ãƒ‘ッケージ" -"を追跡ã—ã¾ã™ã€‚ã“ã‚Œã¯ã€ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã—㟠(ã¾ãŸã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã§ãã‚‹) パッケージ" -"ã¨ã€å–得元を変ãˆã‚‹ã“ã¨ãŒã§ãã‚‹ã“ã¨ã‚’示ã—ã¦ã„ã¾ã™ã€‚--compile オプションãŒæŒ‡å®š" -"ã•ã‚ŒãŸå ´åˆã€dpkg-buildpackage を用ã„ã¦ãƒã‚¤ãƒŠãƒª .deb ファイルã¸ã‚³ãƒ³ãƒ‘イルを行" -"ã„ã¾ã™ã€‚--download-only ã®å ´åˆã¯ã‚½ãƒ¼ã‚¹ãƒ‘ッケージを展開ã—ã¾ã›ã‚“。" +"<literal>source</literal> ã¯ã€<command>apt-get</command> ã«ã‚½ãƒ¼ã‚¹ãƒ‘ッケージを" +"å–å¾—ã•ã›ã¾ã™ã€‚APT ã¯ã©ã®ã‚½ãƒ¼ã‚¹ãƒ‘ッケージをå–å¾—ã™ã‚‹ã‹æ±ºã‚ã‚‹ãŸã‚ã€åˆ©ç”¨å¯èƒ½ãª" +"パッケージを検査ã—ã¾ã™ã€‚ãã®å¾Œã€ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆãƒªãƒªãƒ¼ã‚¹ã‹ã‚‰æœ€æ–°ã®åˆ©ç”¨å¯èƒ½ãªã‚½ãƒ¼ã‚¹" +"パッケージを見ã¤ã‘ã€ã‚«ãƒ¬ãƒ³ãƒˆãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã¸ãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ã—ã¾ã™ã€‚デフォルトリ" +"リースã¯ã€å¯èƒ½ã§ã‚ã‚Œã°ã€<literal>APT::Default-Release</literal> オプションã€" +"<option>-t</option> オプションã€ãƒ‘ッケージã”ã¨ã® <literal>pkg/release</" +"literal> 構文ã§æŒ‡å®šã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:245 @@ -4505,6 +4368,11 @@ msgid "" "from. If you don't do this you will properly get another (newer, older or " "none) source version than the one you have installed or could install." msgstr "" +"ソースパッケージã¯ã€&sources-list; ファイル㮠<literal>deb-src</literal> タイ" +"プã«ã‚ˆã‚Šã€ãƒã‚¤ãƒŠãƒªãƒ‘ッケート分ã‘ã¦ç®¡ç†ã•ã‚Œã¾ã™ã€‚ã¤ã¾ã‚Šã€ã‚½ãƒ¼ã‚¹ã‚’å–å¾—ã—ãŸã„リ" +"ãƒã‚¸ãƒˆãƒªã‚’ã€ãã‚Œãžã‚Œè¿½åŠ ã™ã‚‹å¿…è¦ãŒã‚ã‚‹ã¨ã„ã†ã“ã¨ã§ã™ã€‚ã“ã†ã—ãªã„ã¨ã€ã‚¤ãƒ³ã‚¹" +"トール済ã¿ãƒ»ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«å¯èƒ½ãªã‚‚ã®ã¨ã¯é•ã† (æ–°ã—ã„ã€ã¾ãŸã¯å¤ã„ã€å˜åœ¨ã—ãªã„) " +"ã‚‚ã£ã¨é©åˆ‡ãªã‚‚ã®ã‚’å–å¾—ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:252 @@ -4514,6 +4382,10 @@ msgid "" "<option>--download-only</option> is specified then the source package will " "not be unpacked." msgstr "" +"<option>--compile</option> オプションを指定ã™ã‚‹ã¨ã€<command>dpkg-" +"buildpackage</command> を用ã„ã¦ãƒã‚¤ãƒŠãƒª .deb パッケージをコンパイルã—ã¾ã™ã€‚" +"<option>--download-only</option> を指定ã™ã‚‹ã¨ã€ã‚½ãƒ¼ã‚¹ãƒ‘ッケージを展開ã—ã¾ã›" +"ん。" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> @@ -4669,19 +4541,6 @@ msgstr "<option>--fix-broken</option>" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:320 -#, 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. Any Package that are specified must " -#| "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 " @@ -4696,15 +4555,15 @@ msgid "" "<literal>APT::Get::Fix-Broken</literal>." msgstr "" "修復 - ä¾å˜é–¢ä¿‚ãŒå£Šã‚ŒãŸã‚·ã‚¹ãƒ†ãƒ ã®ä¿®æ£ã‚’試ã¿ã¾ã™ã€‚ã“ã®ã‚ªãƒ—ションを install ã‚„ " -"remove ã¨ä¸€ç·’ã«ä½¿ã†ã¨ãã¯ã€ãƒ‘ッケージを指定ã—ãªãã¦ã‚‚ã‹ã¾ã„ã¾ã›ã‚“。ã©ã®ãƒ‘ッ" -"ケージを指定ã—ã¦ã‚‚ã€å®Œå…¨ã«å•é¡Œã‚’解決ã—ã¾ã™ã€‚APT 自体ã¯ã€ã‚·ã‚¹ãƒ†ãƒ ã«å˜åœ¨ã™ã‚‹å£Š" -"ã‚ŒãŸãƒ‘ッケージä¾å˜é–¢ä¿‚を許ã™ã“ã¨ãŒã§ããªã„ã®ã§ã€åˆã‚㦠APT を実行ã™ã‚‹å ´åˆã€ã“" -"ã®ã‚ªãƒ—ションãŒå¿…è¦ã«ãªã‚‹ã“ã¨ãŒã‚ã‚Šã¾ã™ã€‚システムã®ä¾å˜é–¢ä¿‚æ§‹é€ ã«ã‹ãªã‚Šå•é¡ŒãŒ" -"ã‚ã‚‹å ´åˆã¯ã€æ‰‹å‹•ã§ä¿®æ£ã™ã‚‹ã‚ˆã†è¦æ±‚ã™ã‚‹ã“ã¨ã‚‚ã‚ã‚Šã¾ã™ã€‚(通常ã¯ã€å•é¡Œã®ã‚るパッ" -"ケージをå–り除ãã®ã« &dselect; ã‚„ <command>dpkg --remove</command> を使用ã—ã¾" -"ã™) ã“ã®ã‚ªãƒ—ションを <option>-m</option> オプションã¨åŒæ™‚ã«ä½¿ç”¨ã™ã‚‹ã¨ã€ã‚¨ãƒ©ãƒ¼" -"ã«ãªã‚‹çŠ¶æ³ãŒã‚ã‚‹ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“。è¨å®šé …ç›® - <literal>APT::Get::Fix-Broken</" -"literal>" +"remove ã¨ä¸€ç·’ã«ä½¿ã†ã¨ãã¯ã€APT ãŒè§£æ±ºæ³•ã‚’推測ã™ã‚‹ã®ã§ã€ãƒ‘ッケージを指定ã—ãªã" +"ã¦ã‚‚ã‹ã¾ã„ã¾ã›ã‚“。ã©ã®ãƒ‘ッケージを指定ã—ã¦ã‚‚ã€å®Œå…¨ã«å•é¡Œã‚’解決ã—ã¾ã™ã€‚APT 自" +"体ã¯ã€ã‚·ã‚¹ãƒ†ãƒ ã«å˜åœ¨ã™ã‚‹ç ´æã—ãŸãƒ‘ッケージä¾å˜é–¢ä¿‚を許ã™ã“ã¨ãŒã§ããªã„ã®ã§ã€" +"åˆã‚㦠APT を実行ã™ã‚‹å ´åˆã€ã“ã®ã‚ªãƒ—ションãŒå¿…è¦ã«ãªã‚‹ã“ã¨ãŒã‚ã‚Šã¾ã™ã€‚システム" +"ã®ä¾å˜é–¢ä¿‚æ§‹é€ ã«ã‹ãªã‚Šå•é¡ŒãŒã‚ã‚‹å ´åˆã¯ã€æ‰‹å‹•ã§ä¿®æ£ã™ã‚‹ã‚ˆã†è¦æ±‚ã™ã‚‹ã“ã¨ã‚‚ã‚ã‚Š" +"ã¾ã™ã€‚(通常ã¯ã€å•é¡Œã®ã‚るパッケージをå–り除ãã®ã« &dselect; ã‚„ <command>dpkg " +"--remove</command> を使用ã—ã¾ã™) ã“ã®ã‚ªãƒ—ションを <option>-m</option> オプ" +"ションã¨åŒæ™‚ã«ä½¿ç”¨ã™ã‚‹ã¨ã€ã‚¨ãƒ©ãƒ¼ã«ãªã‚‹çŠ¶æ³ãŒã‚ã‚‹ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“。è¨å®šé …ç›® - " +"<literal>APT::Get::Fix-Broken</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:333 @@ -4804,16 +4663,16 @@ msgid "" "will be triggered if run as root (root should know what he is doing without " "further warnings by <literal>apt-get</literal>)." msgstr "" +"シミュレーションã¯ã€è‡ªå‹•ã§ã¯ãƒãƒƒã‚¯ã‚’è¡Œã‚ãš (<literal>Debug::NoLocking</" +"literal>) ユーザ権é™ã§å®Ÿè¡Œã—ã¾ã™ã€‚ã¾ãŸã€<literal>APT::Get::Show-User-" +"Simulation-Note</literal> オプション (デフォルト: true) をセットã™ã‚‹ã¨ã€ã“ã‚Œ" +"ãŒã‚·ãƒŸãƒ¥ãƒ¬ãƒ¼ã‚·ãƒ§ãƒ³ã§ã‚ã‚‹ã¨ã„ã†æ³¨æ„を表示ã—ãŸã‚Šã‚‚ã—ã¾ã™ã€‚root 権é™ã§å®Ÿè¡Œã™ã‚‹" +"ã¨ã€NoLocking ã‚‚ 注æ„ã‚‚è¡Œã‚ã‚Œã¾ã›ã‚“ (root 㯠<literal>apt-get</literal> ã«ã‚ˆ" +"ã‚‹è¦å‘Šãªã©ãªãã¦ã‚‚ã€ä½•ã‚’ã—ã¦ã„ã‚‹ã®ã‹çŸ¥ã£ã¦ã„ã‚‹ã¹ãã§ã™)。" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:378 -#, fuzzy -#| msgid "" -#| "Simulate prints out a series of lines each one representing a dpkg " -#| "operation, Configure (Conf), Remove (Remv), Unpack (Inst). Square " -#| "brackets indicate broken packages with and empty set of square brackets " -#| "meaning breaks that are of no consequence (rare)." msgid "" "Simulate prints out a series of lines each one representing a dpkg " "operation, Configure (Conf), Remove (Remv), Unpack (Inst). Square brackets " @@ -4973,20 +4832,12 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:433 -#, fuzzy -#| msgid "<option>--no-upgrade</option>" msgid "<option>--only-upgrade</option>" -msgstr "<option>--no-upgrade</option>" +msgstr "<option>--only-upgrade</option>" -# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:434 #, fuzzy -#| msgid "" -#| "Do not upgrade packages; When used in conjunction with <literal>install</" -#| "literal>, <literal>no-upgrade</literal> will prevent packages on the " -#| "command line from being upgraded if they are already installed. " -#| "Configuration Item: <literal>APT::Get::Upgrade</literal>." msgid "" "Do not install new packages; When used in conjunction with <literal>install</" "literal>, <literal>only-upgrade</literal> will prevent packages on the " @@ -5052,13 +4903,6 @@ msgstr "<option>--purge</option>" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:460 -#, fuzzy -#| 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. <option>remove --purge</option> is equivalent for " -#| "<option>purge</option> command. Configuration Item: <literal>APT::Get::" -#| "Purge</literal>." 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. " @@ -5267,7 +5111,6 @@ msgstr "<option>--allow-unauthenticated</option>" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:541 -#, fuzzy 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::" @@ -5283,6 +5126,8 @@ msgid "" "&file-sourceslist; &file-aptconf; &file-preferences; &file-cachearchives; " "&file-statelists;" msgstr "" +"&file-sourceslist; &file-aptconf; &file-preferences; &file-cachearchives; " +"&file-statelists;" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> @@ -5293,7 +5138,8 @@ msgid "" "preferences;, the APT Howto." msgstr "" "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " -"&apt-config;, &docdir; ã® APT ユーザーズガイド, &apt-preferences;, APT Howto" +"&apt-config;, &apt-secure;, &guidesdir; ã® APT ユーザーズガイド, &apt-" +"preferences;, APT Howto" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> @@ -5340,18 +5186,14 @@ msgstr "APT ã‚ー管ç†ãƒ¦ãƒ¼ãƒ†ã‚£ãƒªãƒ†ã‚£" # type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> #: apt-key.8.xml:28 -#, fuzzy -#| msgid "" -#| "<command>apt-key</command> <arg><replaceable>command</replaceable>/</arg> " -#| "<arg rep=\"repeat\"><option><replaceable>arguments</replaceable></" -#| "option></arg>" msgid "" "<command>apt-key</command> <arg><option>--keyring <replaceable>filename</" "replaceable></option></arg> <arg><replaceable>command</replaceable></arg> " "<arg rep=\"repeat\"><option><replaceable>arguments</replaceable></option></" "arg>" msgstr "" -"<command>apt-key</command> <arg><replaceable>command</replaceable>/</arg> " +"<command>apt-key</command> <arg><option>--keyring <replaceable>filename</" +"replaceable></option></arg> <arg><replaceable>command</replaceable></arg> " "<arg rep=\"repeat\"><option><replaceable>arguments</replaceable></option></" "arg>" @@ -5480,14 +5322,14 @@ msgid "" "Note that options need to be defined before the commands described in the " "previous section." msgstr "" +"å‰ç¯€ã§èª¬æ˜Žã—ãŸã‚³ãƒžãƒ³ãƒ‰ã®å‰ã«ã€ã“ã®ã‚ªãƒ—ションを定義ã™ã‚‹å¿…è¦ãŒã‚ã‚‹ã“ã¨ã«æ³¨æ„ã—" +"ã¦ãã ã•ã„。" # type: Content of: <refentry><refsect1><refsect2><para><programlisting> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-key.8.xml:142 -#, fuzzy -#| msgid "add <replaceable>filename</replaceable>" msgid "--keyring <replaceable>filename</replaceable>" -msgstr "add <replaceable>filename</replaceable>" +msgstr "--keyring <replaceable>filename</replaceable>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:143 @@ -5499,11 +5341,16 @@ msgid "" "filename> is the primary keyring which means that e.g. new keys are added to " "this one." msgstr "" +"ã“ã®ã‚ªãƒ—ションã§ã¯ã€ã‚³ãƒžãƒ³ãƒ‰ãŒå‹•ä½œã™ã‚‹éš›ã®ã‚ーリングを指定ã§ãã¾ã™ã€‚デフォル" +"トã¯ã€<filename>trusted.gpg</filename> 㨠<filename>trusted.gpg.d</filename> " +"ディレクトリã«ã‚ã‚‹ã™ã¹ã¦ã®ãƒ•ã‚¡ã‚¤ãƒ«ã§å‹•ä½œã—ã¾ã™ã€‚ã“ã®ä¸ã§ <filename>trusted." +"gpg</filename> ãŒãƒ—ライマリã‚ーリングã§ã™ã€‚ã¤ã¾ã‚Šæ–°ã—ã„ã‚ーã¯ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã«è¿½" +"åŠ ã•ã‚Œã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist> #: apt-key.8.xml:156 msgid "&file-trustedgpg;" -msgstr "" +msgstr "&file-trustedgpg;" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> @@ -5550,16 +5397,12 @@ msgstr "&apt-get;, &apt-secure;" #. The last update date #. type: Content of: <refentry><refentryinfo> #: apt-mark.8.xml:13 -#, fuzzy -#| msgid "" -#| "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>2 " -#| "November 2007</date>" msgid "" "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>9 " "August 2009</date>" msgstr "" -"&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>2 " -"November 2007</date>" +"&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>9 " +"August 2009</date>" # type: Content of: <refentry><refnamediv><refname> #. type: Content of: <refentry><refnamediv><refname> @@ -5576,12 +5419,6 @@ msgstr "パッケージãŒè‡ªå‹•çš„ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚ŒãŸã‹ã©ã†ã‹ã® # type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> #: apt-mark.8.xml:36 -#, fuzzy -#| msgid "" -#| "<command>apt-mark</command> <arg><option>-hv</option></arg> <arg><option>-" -#| "f=<replaceable>FILENAME</replaceable></option></arg> <group choice=\"req" -#| "\"><arg>markauto</arg><arg>unmarkauto</arg></group> <arg choice=\"plain\" " -#| "rep=\"repeat\"><replaceable>package</replaceable></arg>" msgid "" " <command>apt-mark</command> <arg><option>-hv</option></arg> <arg><option>-" "f=<replaceable>FILENAME</replaceable></option></arg> <group choice=\"plain" @@ -5590,10 +5427,12 @@ msgid "" "choice=\"plain\" rep=\"repeat\"><replaceable>package</replaceable></arg> </" "arg> <arg choice=\"plain\">showauto</arg> </group>" msgstr "" -"<command>apt-mark</command> <arg><option>-hv</option></arg> <arg><option>-" -"f=<replaceable>FILENAME</replaceable></option></arg> <group choice=\"req" -"\"><arg>markauto</arg><arg>unmarkauto</arg></group> <arg choice=\"plain\" " -"rep=\"repeat\"><replaceable>package</replaceable></arg>" +" <command>apt-mark</command> <arg><option>-hv</option></arg> <arg><option>-" +"f=<replaceable>FILENAME</replaceable></option></arg> <group choice=\"plain" +"\"> <arg choice=\"plain\"> <group choice=\"req\"> <arg choice=\"plain" +"\">markauto</arg> <arg choice=\"plain\">unmarkauto</arg> </group> <arg " +"choice=\"plain\" rep=\"repeat\"><replaceable>package</replaceable></arg> </" +"arg> <arg choice=\"plain\">showauto</arg> </group>" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> @@ -5608,13 +5447,6 @@ msgstr "" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> #: apt-mark.8.xml:57 -#, fuzzy -#| msgid "" -#| "When you request that a package is installed, and as a result other " -#| "packages are installed to satisfy its dependencies, the dependencies are " -#| "marked as being automatically installed. Once these automatically " -#| "installed packages are no longer depended on by any manually installed " -#| "packages, they will be removed." msgid "" "When you request that a package is installed, and as a result other packages " "are installed to satisfy its dependencies, the dependencies are marked as " @@ -5623,9 +5455,10 @@ msgid "" "removed by e.g. <command>apt-get</command> or <command>aptitude</command>." msgstr "" "パッケージをインストールã™ã‚‹ã¨è¦æ±‚ã—ã€ãã®çµæžœã€åˆ¥ã®ãƒ‘ッケージãŒä¾å˜é–¢ä¿‚を満" -"ãŸã™ãŸã‚ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚ŒãŸå ´åˆã€ä¾å˜é–¢ä¿‚ã«è‡ªå‹•çš„ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã—ãŸã¨ãƒžãƒ¼ã‚¯" -"ã—ã¾ã™ã€‚ã„ã£ãŸã‚“自動的ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚ŒãŸãƒ‘ッケージã¯ã€æ‰‹å‹•ã§ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã—" -"ãŸãƒ‘ッケージã«ä¾å˜ã•ã‚Œãªããªã‚‹ã¨ã€ãã®ãƒ‘ッケージã¯å‰Šé™¤ã•ã‚Œã¾ã™ã€‚" +"ãŸã™ãŸã‚ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚ŒãŸå ´åˆã€ä¾å˜é–¢ä¿‚ã«è‡ªå‹•çš„ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã—ãŸã¨å°ã‚’付" +"ã‘ã¾ã™ã€‚ã„ã£ãŸã‚“自動的ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚ŒãŸãƒ‘ッケージã¯ã€æ‰‹å‹•ã§ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã—" +"ãŸãƒ‘ッケージã«ä¾å˜ã•ã‚Œãªããªã‚‹ã¨ã€ãã®ãƒ‘ッケージã¯ã€ä¾‹ãˆã° <command>apt-get</" +"command> ã‚„ <command>aptitude</command> ã«ã‚ˆã‚Šå‰Šé™¤ã•ã‚Œã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-mark.8.xml:65 @@ -5664,49 +5497,37 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-mark.8.xml:81 msgid "showauto" -msgstr "" +msgstr "showauto" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-mark.8.xml:82 -#, fuzzy -#| msgid "" -#| "<literal>autoremove</literal> is used to remove packages that were " -#| "automatically installed to satisfy dependencies for some package and that " -#| "are no more needed." msgid "" "<literal>showauto</literal> is used to print a list of automatically " "installed packages with each package on a new line." msgstr "" -"<literal>autoremove</literal> ã¯ã€ä¾å˜é–¢ä¿‚を満ãŸã™ãŸã‚ã«è‡ªå‹•çš„ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«" -"ã•ã‚Œã€ã‚‚ã†å¿…è¦ãªããªã£ãŸãƒ‘ッケージを削除ã™ã‚‹ã®ã«ä½¿ç”¨ã—ã¾ã™ã€‚" +"<literal>showauto</literal> ã¯ã€è‡ªå‹•çš„ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚ŒãŸãƒ‘ッケージをã€ãƒ‘ッ" +"ケージã”ã¨ã«æ”¹è¡Œã—ã¦è¡¨ç¤ºã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-mark.8.xml:93 -#, fuzzy -#| msgid "<option>-f=<filename>FILENAME</filename></option>" msgid "" "<option>-f=<filename><replaceable>FILENAME</replaceable></filename></option>" -msgstr "<option>-f=<filename>FILENAME</filename></option>" +msgstr "" +"<option>-f=<filename><replaceable>FILENAME</replaceable></filename></option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-mark.8.xml:94 -#, fuzzy -#| msgid "<option>--file=<filename>FILENAME</filename></option>" msgid "" "<option>--file=<filename><replaceable>FILENAME</replaceable></filename></" "option>" -msgstr "<option>--file=<filename>FILENAME</filename></option>" +msgstr "" +"<option>--file=<filename><replaceable>FILENAME</replaceable></filename></" +"option>" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-mark.8.xml:97 -#, fuzzy -#| msgid "" -#| "Read/Write package stats from <filename>FILENAME</filename> instead of " -#| "the default location, which is <filename>extended_status</filename> in " -#| "the directory defined by the Configuration Item: <literal>Dir::State</" -#| "literal>." msgid "" "Read/Write package stats from <filename><replaceable>FILENAME</replaceable></" "filename> instead of the default location, which is " @@ -5752,15 +5573,13 @@ msgstr "プãƒã‚°ãƒ©ãƒ ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³æƒ…å ±ã‚’è¡¨ç¤ºã—ã¾ã™" #. type: Content of: <refentry><refsect1><variablelist> #: apt-mark.8.xml:124 msgid " &file-extended_states;" -msgstr "" +msgstr " &file-extended_states;" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> #: apt-mark.8.xml:129 -#, fuzzy -#| msgid "&apt-cache; &apt-conf;" msgid "&apt-get;,&aptitude;,&apt-conf;" -msgstr "&apt-cache; &apt-conf;" +msgstr "&apt-get;,&aptitude;,&apt-conf;" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> @@ -5832,14 +5651,6 @@ msgstr "ä¿¡é ¼æ¸ˆã‚¢ãƒ¼ã‚«ã‚¤ãƒ–" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:67 -#, fuzzy -#| msgid "" -#| "The chain of trust from an apt archive to the end user is made up of " -#| "different steps. <command>apt-secure</command> is the last step in this " -#| "chain, trusting an archive does not mean that the packages that you trust " -#| "it do not contain malicious code but means that you trust the archive " -#| "maintainer. Its the archive maintainer responsibility to ensure that the " -#| "archive integrity is correct." msgid "" "The chain of trust from an apt archive to the end user is made up of " "different steps. <command>apt-secure</command> is the last step in this " @@ -5851,8 +5662,9 @@ msgstr "" "apt アーカイブã‹ã‚‰ã‚¨ãƒ³ãƒ‰ãƒ¦ãƒ¼ã‚¶ã¾ã§ã®ä¿¡é ¼ã®è¼ªã¯ã€ã„ãã¤ã‹ã®ã‚¹ãƒ†ãƒƒãƒ—ã§æ§‹æˆã•ã‚Œ" "ã¦ã„ã¾ã™ã€‚<command>apt-secure</command> ã¯ã€ã“ã®è¼ªã®æœ€å¾Œã®ã‚¹ãƒ†ãƒƒãƒ—ã§ã€ã‚¢ãƒ¼ã‚«" "ã‚¤ãƒ–ã‚’ä¿¡é ¼ã™ã‚‹ã“ã¨ã¯ã€ãƒ‘ッケージã«æ‚ªæ„ã®ã‚るコードãŒå«ã¾ã‚Œã¦ã„ãªã„ã¨ä¿¡é ¼ã™ã‚‹" -"ã‚ã‘ã§ã¯ã‚ã‚Šã¾ã›ã‚“ãŒã€ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ãƒ¡ãƒ³ãƒ†ãƒŠã‚’ä¿¡é ¼ã™ã‚‹ã¨è¨€ã†ã“ã¨ã§ã™ã€‚ã“ã‚Œã¯ã€" -"アーカイブã®å®Œå…¨æ€§ã‚’ä¿è¨¼ã™ã‚‹ã®ã¯ã€ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–メンテナã®è²¬ä»»ã ã¨ã„ã†ã“ã¨ã§ã™ã€‚" +"ã‚ã‘ã§ã¯ã‚ã‚Šã¾ã›ã‚“ãŒã€ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ãƒ¡ãƒ³ãƒ†ãƒŠã‚’ä¿¡é ¼ã™ã‚‹ã¨ã„ã†ã“ã¨ã«ãªã‚Šã¾ã™ã€‚ã“ã‚Œ" +"ã¯ã€ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã®å®Œå…¨æ€§ãŒæ£ã—ã„ã“ã¨ã‚’ä¿è¨¼ã™ã‚‹ã®ã¯ã€ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–メンテナã®è²¬ä»»ã " +"ã¨ã„ã†ã“ã¨ã§ã™ã€‚" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> @@ -5889,15 +5701,6 @@ msgstr "" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:92 -#, fuzzy -#| msgid "" -#| "Once the uploaded package is verified and included in the archive, the " -#| "maintainer signature is stripped off, an MD5 sum of the package is " -#| "computed and put in the Packages file. The MD5 sum of all of the packages " -#| "files are then computed and put into the Release file. The Release file " -#| "is then signed by the archive key (which is created once a year and " -#| "distributed through the FTP server. This key is also on the Debian " -#| "keyring." msgid "" "Once the uploaded package is verified and included in the archive, the " "maintainer signature is stripped off, an MD5 sum of the package is computed " @@ -5906,12 +5709,11 @@ msgid "" "by the archive key (which is created once a year) and distributed through " "the FTP server. This key is also on the Debian keyring." msgstr "" -"アップãƒãƒ¼ãƒ‰ã•ã‚ŒãŸãƒ‘ッケージã”ã¨ã«ã€æ¤œè¨¼ã—ã¦ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã«æ ¼ç´ã—ã¾ã™ã€‚パッケー" -"ジã¯ã€ãƒ¡ãƒ³ãƒ†ãƒŠã®ç½²åã‚’ã¯ãŒã•ã‚Œã€MD5 sum を計算ã•ã‚Œã¦ã€Packages ファイルã«æ ¼ç´" -"ã•ã‚Œã¾ã™ã€‚ãã®å¾Œã€å…¨ãƒ‘ッケージファイル㮠MD5 sum を計算ã—ã¦ã‹ã‚‰ã€Release ファ" -"イルã«ç½®ãã¾ã™ã€‚Release ファイルã¯ã€ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã‚ーã§ç½²åã•ã‚Œã¾ã™ã€‚アーカイブ" -"ã‚ーã¯å¹´ã”ã¨ã«ä½œæˆã•ã‚Œã€FTP サーãƒã§é…布ã•ã‚Œã¾ã™ã€‚ã“ã®ã‚ーも Debian ã‚ーリン" -"ã‚°ã«å«ã¾ã‚Œã¾ã™ã€‚" +"アップãƒãƒ¼ãƒ‰ã•ã‚ŒãŸãƒ‘ッケージãŒæ¤œè¨¼ã•ã‚Œã¦ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã«æ ¼ç´ã•ã‚Œã‚‹ã¨ã€ãƒ¡ãƒ³ãƒ†ãƒŠã®" +"ç½²åã‚’ã¯ãŒã—ã€ãƒ‘ッケージ㮠MD5 sum を計算ã—ã¦ã€Packages ファイルã«æ ¼ç´ã—ã¾" +"ã™ã€‚ãã®å¾Œã€å…¨ãƒ‘ッケージファイル㮠MD5 sum を計算ã—ã¦ã€Release ファイルã«æ ¼ç´" +"ã—ã¾ã™ã€‚Release ファイルã¯ã€(毎年作æˆã•ã‚Œã‚‹) アーカイブã‚ーã§ç½²åã•ã‚Œã€FTP " +"サーãƒã§é…布ã•ã‚Œã¾ã™ã€‚ã“ã®ã‚ーも Debian ã‚ーリングã«å«ã¾ã‚Œã¾ã™ã€‚" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> @@ -6037,49 +5839,36 @@ msgstr "" # type: Content of: <refentry><refsect1><itemizedlist><listitem><para> #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> #: apt-secure.8.xml:160 -#, fuzzy -#| msgid "" -#| "<literal>Create a toplevel Release file</literal>. if it does not exist " -#| "already. You can do this by running <command>apt-ftparchive release</" -#| "command> (provided in apt-utils)." msgid "" "<emphasis>Create a toplevel Release file</emphasis>, if it does not exist " "already. You can do this by running <command>apt-ftparchive release</" "command> (provided in apt-utils)." msgstr "" -"<literal>æœ€ä¸Šä½ Release ファイルã®ä½œæˆ</literal>。既ã«ã“ã‚ŒãŒå˜åœ¨ã—ã¦ã„ã‚‹ã®ã§" -"ãªã‘ã‚Œã°ã€<command>apt-ftparchive release</command> (apt-utils ã§æä¾›) を実行" -"ã—ã¦ä½œæˆã—ã¦ãã ã•ã„。" +"<emphasis>æœ€ä¸Šä½ Release ファイルã®ä½œæˆ</emphasis>。既ã«ã“ã‚ŒãŒå˜åœ¨ã—ã¦ã„ã‚‹ã®" +"ã§ãªã‘ã‚Œã°ã€<command>apt-ftparchive release</command> (apt-utils ã§æä¾›) を実" +"è¡Œã—ã¦ä½œæˆã—ã¦ãã ã•ã„。" # type: Content of: <refentry><refsect1><itemizedlist><listitem><para> #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> #: apt-secure.8.xml:165 -#, fuzzy -#| msgid "" -#| "<literal>Sign it</literal>. You can do this by running <command>gpg -abs -" -#| "o Release.gpg Release</command>." msgid "" "<emphasis>Sign it</emphasis>. You can do this by running <command>gpg -abs -" "o Release.gpg Release</command>." msgstr "" -"<literal>ç½²å</literal>ã—ã¾ã™ã€‚<command>gpg -abs -o Release.gpg Release</" +"<emphasis>ç½²å</emphasis>ã—ã¾ã™ã€‚<command>gpg -abs -o Release.gpg Release</" "command> を実行ã—ã¦ã€ç½²åã—ã¦ãã ã•ã„。" # type: Content of: <refentry><refsect1><itemizedlist><listitem><para> #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> #: apt-secure.8.xml:168 -#, fuzzy -#| msgid "" -#| "<literal>Publish the key fingerprint</literal>, that way your users will " -#| "know what key they need to import in order to authenticate the files in " -#| "the archive." msgid "" "<emphasis>Publish the key fingerprint</emphasis>, that way your users will " "know what key they need to import in order to authenticate the files in the " "archive." msgstr "" -"<literal>ã‚ーã®æŒ‡ç´‹ã‚’é…布</literal> ã“ã‚Œã«ã‚ˆã‚Šã€ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–内ã®ãƒ•ã‚¡ã‚¤ãƒ«èªè¨¼" -"ã«ã€ã©ã®ã‚ーをインãƒãƒ¼ãƒˆã™ã‚‹å¿…è¦ãŒã‚ã‚‹ã‹ã‚’ã€ãƒ¦ãƒ¼ã‚¶ã«çŸ¥ã‚‰ã›ã‚‹ã“ã¨ã«ãªã‚Šã¾ã™ã€‚" +"<emphasis>ã‚ーã®æŒ‡ç´‹ã‚’é…布</emphasis>ã—ã¾ã™ã€‚ã“ã‚Œã«ã‚ˆã‚Šã€ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–内ã®ãƒ•ã‚¡ã‚¤" +"ルèªè¨¼ã«ã€ã©ã®ã‚ーをインãƒãƒ¼ãƒˆã™ã‚‹å¿…è¦ãŒã‚ã‚‹ã‹ã‚’ã€ãƒ¦ãƒ¼ã‚¶ã«çŸ¥ã‚‰ã›ã‚‹ã“ã¨ã«ãªã‚Š" +"ã¾ã™ã€‚" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> @@ -6209,12 +5998,6 @@ msgstr "" #. The last update date #. type: Content of: <refentry><refentryinfo> #: apt.conf.5.xml:13 -#, fuzzy -#| msgid "" -#| "&apt-author.jgunthorpe; &apt-author.team; <author> <firstname>Daniel</" -#| "firstname> <surname>Burrows</surname> <contrib>Initial documentation of " -#| "Debug::*.</contrib> <email>dburrows@debian.org</email> </author> &apt-" -#| "email; &apt-product; <date>10 December 2008</date>" msgid "" "&apt-author.jgunthorpe; &apt-author.team; <author> <firstname>Daniel</" "firstname> <surname>Burrows</surname> <contrib>Initial documentation of " @@ -6222,9 +6005,9 @@ msgid "" "&apt-product; <date>16 January 2010</date>" msgstr "" "&apt-author.jgunthorpe; &apt-author.team; <author> <firstname>Daniel</" -"firstname> <surname>Burrows</surname> <contrib>Initial documentation of " -"Debug::*.</contrib> <email>dburrows@debian.org</email> </author> &apt-email; " -"&apt-product; <date>10 December 2008</date>" +"firstname> <surname>Burrows</surname> <contrib>Debug::*. ã®æœ€åˆã®ãƒ‰ã‚ュメント" +"</contrib> <email>dburrows@debian.org</email> </author> &apt-email; &apt-" +"product; <date>16 January 2010</date>" # type: Content of: <refentry><refnamediv><refname> #. type: Content of: <refentry><refnamediv><refname> @@ -6251,20 +6034,24 @@ msgid "" "made. All tools therefore share the configuration files and also use a " "common command line parser to provide a uniform environment." msgstr "" +"<filename>apt.conf</filename> ã¯ã€APT ツールスイートã®ãƒ¡ã‚¤ãƒ³è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã§ã™" +"ãŒã€é–“é•ã„ãªãオプションã®å¤‰æ›´ã‚’指定ã™ã‚‹ã ã‘ã®å ´æ‰€ãªã©ã§ã¯ã‚ã‚Šã¾ã›ã‚“。ãã®ãŸ" +"ã‚ã€ã™ã¹ã¦ã®ãƒ„ールã¯è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã‚’共有ã—ã€çµ±ä¸€ç’°å¢ƒã‚’æä¾›ã™ã‚‹ãŸã‚ã€å…±é€šã®ã‚³ãƒž" +"ンドラインパーサも使用ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><orderedlist><para> #: apt.conf.5.xml:45 msgid "" "When an APT tool starts up it will read the configuration files in the " "following order:" -msgstr "" +msgstr "APT ツールã®èµ·å‹•æ™‚ã«ã€è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã‚’以下ã®é †ç•ªã§èªã¿è¾¼ã¿ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> #: apt.conf.5.xml:47 msgid "" "the file specified by the <envar>APT_CONFIG</envar> environment variable (if " "any)" -msgstr "" +msgstr "<envar>APT_CONFIG</envar> 環境変数ã§æŒ‡å®šã—ãŸãƒ•ã‚¡ã‚¤ãƒ« (å˜åœ¨ã™ã‚‹å ´åˆ)" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> #: apt.conf.5.xml:49 @@ -6274,17 +6061,17 @@ msgid "" "which only contain alphanumeric, hyphen (-), underscore (_) and period (.) " "characters - otherwise they will be silently ignored." msgstr "" +"<literal>Dir::Etc::Parts</literal> ã«ã‚ã‚‹ã™ã¹ã¦ã®ãƒ•ã‚¡ã‚¤ãƒ«ã‚’英数å—ã®æ˜‡é †ã«ã€‚" +"ファイルåã«ã¯æ‹¡å¼µåãŒãªã„ã‹ã€\"<literal>conf</literal>\" ã¨ãªã£ã¦ãŠã‚Šã€è‹±æ•°" +"å—ã€ãƒã‚¤ãƒ•ãƒ³ (-)ã€ã‚¢ãƒ³ãƒ€ãƒ¼ã‚¹ã‚³ã‚¢ (_)ã€ãƒ”リオド (.) ã§æ§‹æˆã•ã‚Œã¦ã„ã¾ã™ã€‚ãã†ã§" +"ãªã‘ã‚Œã°ã€é»™ã£ã¦ç„¡è¦–ã•ã‚Œã¾ã™ã€‚" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> #: apt.conf.5.xml:54 -#, fuzzy -#| msgid "" -#| "APT configuration file. Configuration Item: <literal>Dir::Etc::Main</" -#| "literal>." msgid "" "the main configuration file specified by <literal>Dir::Etc::main</literal>" -msgstr "APT è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã€‚è¨å®šé …ç›® - <literal>Dir::Etc::Main</literal>" +msgstr "<literal>Dir::Etc::Main</literal> ã§æŒ‡å®šã•ã‚Œã‚‹ã€ãƒ¡ã‚¤ãƒ³è¨å®šãƒ•ã‚¡ã‚¤ãƒ«" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> #: apt.conf.5.xml:56 @@ -6292,22 +6079,17 @@ msgid "" "the command line options are applied to override the configuration " "directives or to load even more configuration files." msgstr "" +"コマンドラインオプションã«ã‚ˆã‚Šã€è¨å®šãƒ‡ã‚£ãƒ¬ã‚¯ãƒ†ã‚£ãƒ–ã®ä¸Šæ›¸ãã‚„è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã®è¿½" +"åŠ èªã¿è¾¼ã¿ãŒã§ãã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><title> #: apt.conf.5.xml:60 msgid "Syntax" -msgstr "" +msgstr "構文" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:61 -#, fuzzy -#| msgid "" -#| "The configuration file is organized in a tree with options organized into " -#| "functional groups. option specification is given with a double colon " -#| "notation, for instance <literal>APT::Get::Assume-Yes</literal> is an " -#| "option within the APT tool group, for the Get tool. options do not " -#| "inherit from their parent groups." msgid "" "The configuration file is organized in a tree with options organized into " "functional groups. Option specification is given with a double colon " @@ -6316,22 +6098,13 @@ msgid "" "their parent groups." msgstr "" "è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã¯ã€æ©Ÿèƒ½ã‚°ãƒ«ãƒ¼ãƒ—ã”ã¨ã«ç³»çµ±ç«‹ã¦ã‚‰ã‚ŒãŸã‚ªãƒ—ã‚·ãƒ§ãƒ³ã‚’æœ¨æ§‹é€ ã§è¡¨ã—ã¾" -"ã™ã€‚オプションã®å†…容ã¯ã€2 ã¤ã®ã‚³ãƒãƒ³ã§åŒºåˆ‡ã‚Šã¾ã™ã€‚例ãˆã° <literal>APT::Get::" +"ã™ã€‚オプションã®æŒ‡å®šã¯ã€2 ã¤ã®ã‚³ãƒãƒ³ã§åŒºåˆ‡ã‚Šã¾ã™ã€‚例ãˆã° <literal>APT::Get::" "Assume-Yes</literal> ã¯ã€APT ツールグループ㮠Get ツール用オプションã§ã™ã€‚オ" "プションã¯ã€è¦ªã‚°ãƒ«ãƒ¼ãƒ—ã‹ã‚‰ç¶™æ‰¿ã—ã¾ã›ã‚“。" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:67 -#, fuzzy -#| msgid "" -#| "Syntactically the configuration language is modeled after what the ISC " -#| "tools such as bind and dhcp use. Lines starting with <literal>//</" -#| "literal> are treated as comments (ignored), as well as all text between " -#| "<literal>/*</literal> and <literal>*/</literal>, just like C/C++ " -#| "comments. Each line is of the form <literal>APT::Get::Assume-Yes \"true" -#| "\";</literal> The trailing semicolon is required and the quotes are " -#| "optional. A new scope can be opened with curly braces, like:" msgid "" "Syntactically the configuration language is modeled after what the ISC tools " "such as bind and dhcp use. Lines starting with <literal>//</literal> are " @@ -6345,13 +6118,15 @@ msgid "" "alphanumerical characters and the \"/-:._+\" characters. A new scope can be " "opened with curly braces, like:" msgstr "" -"è¨å®šè¨€èªžã®æ–‡æ³•ã¯ã€bind ã‚„ dhcp ã®ã‚ˆã†ãª ISC ツールをモデルã«ã—ã¦ã„ã¾ã™ã€‚" +"è¨å®šè¨€èªžã®æ§‹æ–‡ã¯ã€bind ã‚„ dhcp ã®ã‚ˆã†ãª ISC ツールをモデルã«ã—ã¦ã„ã¾ã™ã€‚" "<literal>//</literal> ã§å§‹ã¾ã‚‹è¡Œã¯ã‚³ãƒ¡ãƒ³ãƒˆã¨ã—ã¦æ‰±ã‚ã‚Œã¾ã™ (無視)。åŒæ§˜ã« C/C" "++ ã®ã‚³ãƒ¡ãƒ³ãƒˆã®ã‚ˆã†ãª <literal>/*</literal> 㨠<literal>*/</literal> ã®é–“もコ" "メントã¨ã—ã¦æ‰±ã„ã¾ã™ã€‚ã„ãšã‚Œã®è¡Œã‚‚ã€<literallayout>APT::Get::Assume-Yes " -"\"true\";</literallayout> ã®ã‚ˆã†ãªå½¢å¼ã§ã™ã€‚行末ã®ã‚»ãƒŸã‚³ãƒãƒ³ã¯å¿…è¦ã§ã™ãŒã€ãƒ€" -"ブルクォートã¯ä½¿ã‚ãªãã¦ã‚‚ã‹ã¾ã„ã¾ã›ã‚“。以下ã®ã‚ˆã†ã«ä¸ã‚«ãƒƒã‚³ã‚’使ã†ã¨ã€æ–°ã—ã„" -"スコープを開ãã“ã¨ãŒã§ãã¾ã™ã€‚" +"\"true\";</literallayout> ã®ã‚ˆã†ãªå½¢å¼ã§ã™ã€‚行末ã®ã‚»ãƒŸã‚³ãƒãƒ³ã¨ã‚¯ã‚©ãƒ¼ãƒˆã¯å¿…è¦" +"ã§ã™ã€‚値ã¯1è¡Œã§ãªã‘ã‚Œã°ãªã‚‰ãšã€æ–‡å—列çµåˆã¯ã‚ã‚Šã¾ã›ã‚“。値ã®ä¸ã«ã‚¯ã‚©ãƒ¼ãƒˆã¯ä½¿ãˆ" +"ã¾ã›ã‚“。値ä¸ã®ãƒãƒƒã‚¯ã‚¹ãƒ©ãƒƒã‚·ãƒ¥ \"\\\" ã¨ã‚¨ã‚¹ã‚±ãƒ¼ãƒ—æ–‡å—ã¯ã€æœªå®šç¾©ã§ä½¿ç”¨ã™ã‚‹ã¹" +"ãã§ã¯ã‚ã‚Šã¾ã›ã‚“。オプションåã¯ã€è‹±æ•°å—㨠\"/-:._+\" ãŒä½¿ç”¨ã§ãã¾ã™ã€‚以下ã®" +"よã†ã«ä¸ã‚«ãƒƒã‚³ã‚’使ã†ã¨ã€æ–°ã—ã„スコープを開ãã“ã¨ãŒã§ãã¾ã™ã€‚" # type: Content of: <refentry><refsect1><informalexample><programlisting> #. type: Content of: <refentry><refsect1><informalexample><programlisting> @@ -6389,7 +6164,9 @@ msgstr "" #: apt.conf.5.xml:94 #, no-wrap msgid "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" -msgstr "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" +msgstr "" +"DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" +"\n" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> @@ -6419,18 +6196,15 @@ msgid "" "list. If you specify a name you can override the option as every other " "option by reassigning a new value to the option." msgstr "" +"å‰è¿°ã—㟠<literal>DPkg::Pre-Install-Pkgs</literal> ã®ä¾‹ã§è¦‹ã‚‰ã‚Œã‚‹ã‚ˆã†ã«ã€ãƒªã‚¹" +"トを定義ã—ãŸå ´åˆã€è¨å®šé …ç›®åã¯ã‚ªãƒ—ションã«ãªã‚Šã¾ã™ã€‚åå‰ã‚’指定ã—ãªã„å ´åˆã€æ–°" +"ã—ã„エントリã¯ã€å˜ç´”ã«æ–°ã—ã„オプションをリストã«è¿½åŠ ã—ã¾ã™ã€‚åå‰ã‚’指定ã™ã‚‹" +"ã¨ã€ã‚らゆる他ã®é¸æŠžè‚¢ã‚’オプションã«å†å‰²ã‚Šå½“ã¦ã—ã€ã‚ªãƒ—ションを上書ãã§ãã¾" +"ã™ã€‚" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:109 -#, fuzzy -#| msgid "" -#| "Two specials are allowed, <literal>#include</literal> and " -#| "<literal>#clear</literal> <literal>#include</literal> will include the " -#| "given file, unless the filename ends in a slash, then the whole directory " -#| "is included. <literal>#clear</literal> is used to erase a part of the " -#| "configuration tree. The specified element and all its descendents are " -#| "erased." msgid "" "Two specials are allowed, <literal>#include</literal> (which is deprecated " "and not supported by alternative implementations) and <literal>#clear</" @@ -6440,11 +6214,13 @@ msgid "" "The specified element and all its descendants are erased. (Note that these " "lines also need to end with a semicolon.)" msgstr "" -"<literal>#include</literal> 㨠<literal>#clear</literal> ã® 2 ã¤ã®ç‰¹åˆ¥ãªè¨˜æ³•" -"ãŒã‚ã‚Šã¾ã™ã€‚<literal>#include</literal> ã¯æŒ‡å®šã—ãŸãƒ•ã‚¡ã‚¤ãƒ«ã‚’å–ã‚Šè¾¼ã¿ã¾ã™ã€‚" -"ファイルåãŒã‚¹ãƒ©ãƒƒã‚·ãƒ¥ã§çµ‚ã‚ã£ãŸå ´åˆã«ã¯ã€ãã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’ã™ã¹ã¦å–ã‚Šè¾¼ã¿ã¾" -"ã™ã€‚<literal>#clear</literal> ã¯ã€è¨å®šãƒ„リーã®ä¸€éƒ¨ã‚’削除ã™ã‚‹ã«ã«ä½¿ç”¨ã—ã¾ã™ã€‚" -"指定ã—ãŸè¦ç´ ã¨ã€ãれ以下ã®è¦ç´ を削除ã—ã¾ã™ã€‚" +"<literal>#include</literal> (ã“ã‚Œã¯å»ƒæ¢äºˆå®šã§ã‚µãƒãƒ¼ãƒˆã—ãªã„ä»–ã®å®Ÿè£…ã‚‚ã‚ã‚Šã¾" +"ã™) 㨠<literal>#clear</literal> ã® 2 ã¤ã®ç‰¹åˆ¥ãªè¨˜æ³•ãŒã‚ã‚Šã¾ã™ã€‚" +"<literal>#include</literal> ã¯æŒ‡å®šã—ãŸãƒ•ã‚¡ã‚¤ãƒ«ã‚’å–ã‚Šè¾¼ã¿ã¾ã™ã€‚ファイルåãŒã‚¹" +"ラッシュã§çµ‚ã‚ã£ãŸå ´åˆã«ã¯ã€ãã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’ã™ã¹ã¦å–ã‚Šè¾¼ã¿ã¾ã™ã€‚" +"<literal>#clear</literal> ã¯ã€è¨å®šãƒ„リーã®ä¸€éƒ¨ã‚’削除ã™ã‚‹ã«ã«ä½¿ç”¨ã—ã¾ã™ã€‚指定" +"ã—ãŸè¦ç´ ã¨ã€ãれ以下ã®è¦ç´ を削除ã—ã¾ã™ (ã“れらã®è¡Œã‚‚ã€ã‚»ãƒŸã‚³ãƒãƒ³ã§çµ‚ã‚ã‚‹å¿…è¦" +"ãŒã‚ã‚‹ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„)。" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:117 @@ -6455,17 +6231,14 @@ msgid "" "overridden by addressing a new value to it - lists and scopes can't be " "overridden, only cleared." msgstr "" +"#clear コマンドã¯ã€ãƒªã‚¹ãƒˆã‚„完全ãªã‚¹ã‚³ãƒ¼ãƒ—を削除ã™ã‚‹å”¯ä¸€ã®æ–¹æ³•ã§ã™ã€‚スコープã®" +"å†ã‚ªãƒ¼ãƒ—ンや後述ã™ã‚‹ :: スタイルã¯ã€ãã‚Œã¾ã§æ›¸ã„ãŸã‚¨ãƒ³ãƒˆãƒªã‚’<emphasis>上書ã" +"ã—ã¾ã›ã‚“</emphasis>。新ã—ã„値を与ãˆã¦ä¸Šæ›¸ãã™ã‚‹ã—ã‹ã‚ã‚Šã¾ã›ã‚“。リストやスコー" +"プã¯ä¸Šæ›¸ãã§ãã¾ã›ã‚“。クリアã•ã‚Œã‚‹ã ã‘ã§ã™ã€‚" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:122 -#, fuzzy -#| msgid "" -#| "All of the APT tools take a -o option which allows an arbitrary " -#| "configuration directive to be specified on the command line. The syntax " -#| "is a full option name (<literal>APT::Get::Assume-Yes</literal> for " -#| "instance) followed by an equals sign then the new value of the option. " -#| "Lists can be appended too by adding a trailing :: to the list name." msgid "" "All of the APT tools take a -o option which allows an arbitrary " "configuration directive to be specified on the command line. The syntax is a " @@ -6474,10 +6247,11 @@ msgid "" "appended too by adding a trailing :: to the list name. (As you might " "suspect: The scope syntax can't be used on the command line.)" msgstr "" -"ã™ã¹ã¦ã® APT ツールã§ã€ã‚³ãƒžãƒ³ãƒ‰ãƒ©ã‚¤ãƒ³ã§ä»»æ„ã®è¨å®šã‚’行ㆠ-o オプションãŒä½¿ç”¨ã§" -"ãã¾ã™ã€‚文法ã¯ã€å®Œå…¨ãªã‚ªãƒ—ションå (例: <literal>APT::Get::Assume-Yes</" -"literal>)ã€ç‰å·ã€ç¶šã„ã¦ã‚ªãƒ—ションã®æ–°ã—ã„値ã¨ãªã‚Šã¾ã™ã€‚リストåã«ç¶šã::ã‚’åŠ ãˆ" -"ã‚‹ã“ã¨ã§ã€ãƒªã‚¹ãƒˆã‚’è¿½åŠ ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚" +"ã™ã¹ã¦ã® APT ツールã§ã€ã‚³ãƒžãƒ³ãƒ‰ãƒ©ã‚¤ãƒ³ã§ä»»æ„ã®è¨å®šãƒ‡ã‚£ãƒ¬ã‚¯ãƒ†ã‚£ãƒ–を指定ã§ãã‚‹ -" +"o オプションãŒä½¿ç”¨ã§ãã¾ã™ã€‚構文ã¯ã€å®Œå…¨ãªã‚ªãƒ—ションå (例: <literal>APT::" +"Get::Assume-Yes</literal>)ã€ç‰å·ã€ç¶šã„ã¦ã‚ªãƒ—ションã®æ–°ã—ã„値ã¨ãªã‚Šã¾ã™ã€‚リス" +"トåã«ç¶šã :: ã‚’åŠ ãˆã‚‹ã“ã¨ã§ã€ãƒªã‚¹ãƒˆã‚’è¿½åŠ ã§ãã¾ã™ (ç–‘å•ã«æ€ã‚ã‚ŒãŸã‚ˆã†ã«ã€ã‚¹" +"コープ構文ã¯ã‚³ãƒžãƒ³ãƒ‰ãƒ©ã‚¤ãƒ³ã§ä½¿ç”¨ã§ãã¾ã›ã‚“)。" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:129 @@ -6495,6 +6269,16 @@ msgid "" "correct such statements now as long as APT doesn't complain explicit about " "them." msgstr "" +"1 行㧠1 é …ç›®ã®å ´åˆã«ã®ã¿ :: ã¯ä½¿ç”¨ã§ãã€ã‚¹ã‚³ãƒ¼ãƒ—構文ã¨çµ„ã¿åˆã‚ã›ã‚‹ã¹ãã§ã¯ãª" +"ã„ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„ (スコープ構文ã«ã¯æš—黙㧠:: ãŒæŒ¿å…¥ã•ã‚Œã¾ã™)。両方ã®æ§‹" +"文をåŒæ™‚ã«ä½¿ç”¨ã™ã‚‹ã¨ã€ã€Œä»–ã®ã‚ªãƒ—ションã¨åŒæ§˜ã«åå‰ã¨å…±ã«å‹•ä½œã™ã‚‹ã€æ™®é€šã§ã¯ãª" +"ã„åå‰ \"<literal>::</literal>\" ã®ã‚ªãƒ—ションã§ã‚ã‚‹ã€ã¨ã„ã£ãŸã€(残念ãªã“ã¨" +"ã«) 複数ã®ãƒ¦ãƒ¼ã‚¶ã«æ¸¡ã‚‹ãƒã‚°ã®å¼•ã金ã«ãªã‚Šã¾ã™ã€‚å•é¡Œã®ä¸ã«ã¯ã€ãƒªã‚¹ãƒˆã«è¿½åŠ ã—よ" +"ã†ã¨<emphasis>誤ã£ãŸ</emphasis>構文ã§è¤‡æ•°è¡Œæ›¸ãユーザãŒã€ã“ã®ã‚ªãƒ—ション " +"\"<literal>::</literal>\" を最後ã«å‰²ã‚Šå½“ã¦ã‚ˆã†ã¨ã—ã¦ã€æ£å対ã®çµæžœã‚’å¾—ã‚‹ã¨ã„" +"ã†ã“ã¨ã‚‚å«ã¾ã‚Œã¾ã™ã€‚APT ã®æ¬¡æœŸãƒãƒ¼ã‚¸ãƒ§ãƒ³ã§ã¯ã€ã“ã®èª¤ç”¨ã‚’検出ã™ã‚‹ã¨ã€å‹•ä½œã‚’åœ" +"æ¢ã—エラーを上ã’るよã†ã«ãªã‚Šã¾ã™ã€‚ãã®ãŸã‚ã€APT ãŒã“ã®ä»¶ã§æ˜Žç™½ã«ã‚¨ãƒ©ãƒ¼ã‚’åã‹" +"ãªã„é™ã‚Šã¯ã€è‡ªåˆ†ã§ãã®ã‚ˆã†ãªæ§‹æ–‡ã‚’ä¿®æ£ã—ã¦ãã ã•ã„。" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><title> @@ -6538,12 +6322,6 @@ msgstr "Default-Release" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:153 -#, fuzzy -#| msgid "" -#| "Default release to install packages from if more than one version " -#| "available. Contains release name, codename or release version. Examples: " -#| "'stable', 'testing', 'unstable', 'lenny', 'squeeze', '4.0', '5.0*'. See " -#| "also &apt-preferences;." msgid "" "Default release to install packages from if more than one version available. " "Contains release name, codename or release version. Examples: 'stable', " @@ -6551,9 +6329,9 @@ msgid "" "'5.0*'. See also &apt-preferences;." msgstr "" "ã²ã¨ã¤ä»¥ä¸Šã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒã‚ã‚‹å ´åˆã«ã€ãƒ‘ッケージをインストールを行ã†ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆ" -"リリースã§ã™ã€‚リリースåã‚„ã€ã‚³ãƒ¼ãƒ‰åã€ãƒªãƒªãƒ¼ã‚¹ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã§ã™ã€‚例ãˆã° " -"stable', 'testing', 'unstable', 'lenny', 'squeeze', '4.0', '5.0*' ã¨ãªã‚Šã¾" -"ã™ã€‚ &apt-preferences; ã‚‚å‚ç…§ã—ã¦ãã ã•ã„。" +"リリースã§ã™ã€‚リリースåã‚„ã€ã‚³ãƒ¼ãƒ‰åã€ãƒªãƒªãƒ¼ã‚¹ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒã‚ã‚Šã¾ã™ã€‚例ãˆã° " +"'stable', 'testing', 'unstable', '&stable-codename;', '&testing-codename;', " +"'4.0', '5.0*' ã¨ãªã‚Šã¾ã™ã€‚&apt-preferences; ã‚‚å‚ç…§ã—ã¦ãã ã•ã„。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:158 @@ -6629,6 +6407,29 @@ msgid "" "distribution and to the APT team with the buglink below so they can work on " "improving or correcting the upgrade process." msgstr "" +"デフォルトã§æœ‰åŠ¹ã§ã€ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã‚„アップグレード処ç†ä¸ã«ã€APT ãŒä¸å¯æ¬ パッ" +"ケージやé‡è¦ãƒ‘ッケージã®ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã‚’ã€å¯èƒ½ãªé™ã‚Šæ—©ãè¡Œã†ã‚ˆã†ã«ãªã‚Šã¾ã™ã€‚" +"&dpkg; ã®å‘¼ã³å‡ºã™éš›ã®å¤±æ•—回数ã«åˆ¶é™ãŒã‚ã‚‹ãŸã‚ã€ã“ã®ã‚ˆã†ãªã‚ªãƒ—ションãŒã‚ã‚Šã¾" +"ã™ã€‚ã“ã®ã‚ªãƒ—ションãŒç„¡åŠ¹ã®å ´åˆã€APT ã¯é‡è¦ãƒ‘ッケージをã€ç‰¹åˆ¥ãƒ‘ッケージã¨åŒæ§˜" +"ã«æ‰±ã†ã‚ˆã†ã«ãªã‚Šã¾ã™ã€‚é‡è¦ãƒ‘ッケージ A を展開ã—ã¦ã„ã¦ã€ãã®è¨å®šä¸ã«ä»–ã®å±•é–‹ã‚„" +"è¨å®šã‚’ãŸãã•ã‚“呼ã³å‡ºã™ã¨ã€ãƒ‘ッケージ B 㯠A ã¨ã¯ãªã‚“ã®é–¢ä¿‚ã‚‚ãªã„ã«ã‚‚ã‹ã‹ã‚ら" +"ãšã€dpkg ã®å‘¼ã³å‡ºã—ãŒå¤±æ•—ã—ã¾ã™ (ã¤ã¾ã‚Š B ã®ãƒ¡ãƒ³ãƒ†ãƒŠã‚¹ã‚¯ãƒªãƒ—トãŒã‚¨ãƒ©ãƒ¼ã‚’è¿”ã—" +"ã¾ã™)。ã“ã®çµæžœã€ã‚·ã‚¹ãƒ†ãƒ ã®çŠ¶æ…‹ã¨ã—ã¦ã€ãƒ‘ッケージ A ã¯å±•é–‹æ¸ˆã¿ã§æœªè¨å®šã¨ãªã‚Š" +"ã¾ã™ã€‚A ã«ä¾å˜ã™ã‚‹ãƒ‘ッケージã¯ã€å‹•ä½œã®ä¿è¨¼ãŒãªããªã‚Šã€A ã«å¯¾ã™ã‚‹ä¾å˜é–¢ä¿‚ã¯ã€" +"ã‚‚ã†æº€ãŸã›ãªããªã‚Šã¾ã™ã€‚ å³æ™‚è¨å®šãƒžãƒ¼ã‚«ã¯ã€ãŸã¨ãˆã°ç’°çŠ¶ã®ä¾å˜é–¢ä¿‚ã¨ã„ã£ãŸå•é¡Œ" +"ãŒç™ºç”Ÿã—ãã†ãªã€ã™ã¹ã¦ã®ä¾å˜é–¢ä¿‚ã«å…ˆè¡Œä¾å˜ã¨åŒç‰ã®å³æ™‚フラグをé©ç”¨ã—ã¾ã™ã€‚ã" +"ã®ãŸã‚ç†è«–上ã§ã¯ã€APT ãŒå³æ™‚è¨å®šã§ããªã„ã€ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã™ã‚‹ã€ã“ã®ã‚ªãƒ—ションを" +"å‚ç…§ã™ã‚‹ã¨ã„ã£ãŸçŠ¶æ³ã«ãªã‚‹å¯èƒ½æ€§ãŒã‚ã‚‹ã®ã¯ã€ãƒ¦ãƒ¼ã‚¶ãŒå³æ™‚è¨å®šã‚’一時的ã«ç„¡åŠ¹ã«" +"ã—ã¦ã€ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã‚„アップグレードを行ã£ãŸå ´åˆã§ã™ã€‚「ç†è«–上ã€ã¨è¨€ã†å˜èªžã‚’" +"使ã£ãŸã®ã¯ã€ç¾åœ¨ç¾å®Ÿä¸–ç•Œã§ã“ã®å•é¡Œã«éé‡ã—ãŸã®ã¯ã€ä¸å®‰å®šç‰ˆã‚’使用ã—ã¦ãŠã‚Šã€å•" +"é¡Œã«ãªã£ã¦ã„ãŸãƒ‘ッケージã®é–“é•ã£ãŸä¾å˜é–¢ä¿‚ãŒåŽŸå› ã ã£ãŸã‚Šã€ã‚·ã‚¹ãƒ†ãƒ ãŒæ—¢ã«ç ´æ" +"状態ã§ã‚ã£ãŸã‚Šã—ãŸæ•°å›žã ã‘ã ã‹ã‚‰ã§ã™ã€‚å‰è¿°ã®ã‚·ãƒŠãƒªã‚ªãŒã€å³æ™‚è¨å®šãŒä¸»ã«å›žé¿ã™" +"ã‚‹å•é¡Œã®ã™ã¹ã¦ã¨ã„ã†ã‚ã‘ã§ã¯ãªã„ãŸã‚ã€ã“ã®ã‚ªãƒ—ションを闇雲ã«ç„¡åŠ¹ã«ã™ã‚‹ã¹ãã§" +"ã¯ã‚ã‚Šã¾ã›ã‚“。<literal>dist-upgrade</literal> ã®ã‚ˆã†ãªå¤§ããªæ“作をã€ã“ã®ã‚ªãƒ—" +"ションを無効ã«ã—ã¦è¡Œã†å‰ã«ã€APT ãŒã™ãã«è¨å®šã§ããªã„パッケージをã€æ˜Žç¤ºçš„ã« " +"<literal>install</literal> ã—ã¦ã¿ã¦ãã ã•ã„。ã§ã™ãŒã€ã‚¢ãƒƒãƒ—グレードプãƒã‚»ã‚¹ã®" +"改善ã®ãŸã‚ã€ãƒã‚°ã®ãƒªãƒ³ã‚¯ã«ã‚るディストリビューション㨠APT ãƒãƒ¼ãƒ ã«ã‚‚ã€å•é¡Œã®" +"レãƒãƒ¼ãƒˆã‚’ãŠããŒã„ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:193 @@ -6744,7 +6545,7 @@ msgstr "Acquire グループ" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: apt.conf.5.xml:244 msgid "Check-Valid-Until" -msgstr "" +msgstr "Check-Valid-Until" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:245 @@ -6761,7 +6562,7 @@ msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: apt.conf.5.xml:255 msgid "Max-ValidTime" -msgstr "" +msgstr "Max-ValidTime" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:256 @@ -6802,6 +6603,11 @@ msgid "" "the size of the targeted file. If one of these limits is exceeded the " "complete file is downloaded instead of the patches." msgstr "" +"PDiffs ã®ä½¿ç”¨ã‚’制é™ã™ã‚‹ãµãŸã¤ã®ã‚µãƒ–オプションãŒã‚ã‚Šã¾ã™ã€‚<literal>FileLimit</" +"literal> ã§ã¯ã€PDiff ファイルをã„ãã¤ãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ã—ã¦ãƒ‘ッãƒã‚’当ã¦ã‚‹ã‹ã‚’指定ã—" +"ã¾ã™ã€‚一方ã€<literal>SizeLimit</literal> ã¯ã€å¯¾è±¡ãƒ•ã‚¡ã‚¤ãƒ«ã®ã‚µã‚¤ã‚ºã«å¯¾ã—ã¦ã€å…¨" +"パッãƒã‚µã‚¤ã‚ºã®æœ€å¤§ãƒ‘ーセンテージを指定ã—ã¾ã™ã€‚ã©ã¡ã‚‰ã®åˆ¶é™ã‚’超ãˆã¦ã‚‚ã€ãƒ‘ッãƒ" +"をダウンãƒãƒ¼ãƒ‰ã™ã‚‹ä»£ã‚ã‚Šã«ã€å®Œå…¨ãªãƒ•ã‚¡ã‚¤ãƒ«ã‚’ダウンãƒãƒ¼ãƒ‰ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: apt.conf.5.xml:281 @@ -6864,14 +6670,6 @@ msgstr "http" # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:300 -#, fuzzy -#| msgid "" -#| "HTTP URIs; http::Proxy is the default http proxy to use. It is in the " -#| "standard form of <literal>http://[[user][:pass]@]host[:port]/</literal>. " -#| "Per host proxies can also be specified by using the form <literal>http::" -#| "Proxy::<host></literal> with the special keyword <literal>DIRECT</" -#| "literal> meaning to use no proxies. The <envar>http_proxy</envar> " -#| "environment variable will override all settings." msgid "" "HTTP URIs; http::Proxy is the default http proxy to use. It is in the " "standard form of <literal>http://[[user][:pass]@]host[:port]/</literal>. Per " @@ -6884,8 +6682,8 @@ msgstr "" "<literal>http://[[user][:pass]@]host[:port]/</literal> ã¨ã„ã†æ¨™æº–å½¢ã§è¡¨ã—ã¾" "ã™ã€‚ホストã”ã¨ã®ãƒ—ãƒã‚ã‚·ã®å ´åˆã¯ã€<literal>http::Proxy::<host></" "literal> ã¨ã„ã†å½¢ã¨ã€ãƒ—ãƒã‚シを使用ã—ãªã„ã¨ã„ã†æ„味ã®ç‰¹æ®Šã‚ーワード " -"<literal>DIRECT</literal> を使用ã—ã¦æŒ‡å®šã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚ã™ã¹ã¦ã®è¨å®šã¯ã€" -"環境変数 <envar>http_proxy</envar> ã§ä¸Šæ›¸ãã•ã‚Œã¾ã™ã€‚" +"<literal>DIRECT</literal> を使用ã—ã¦æŒ‡å®šã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚上記ã®è¨å®šã‚’ãªã«" +"も指定ã—ãªã„ã¨ã€ç’°å¢ƒå¤‰æ•° <envar>http_proxy</envar> を使用ã—ã¾ã™ã€‚" # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> @@ -6927,15 +6725,6 @@ msgstr "" # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:321 -#, fuzzy -#| msgid "" -#| "One setting is provided to control the pipeline depth in cases where the " -#| "remote server is not RFC conforming or buggy (such as Squid 2.0.2) " -#| "<literal>Acquire::http::Pipeline-Depth</literal> can be a value from 0 to " -#| "5 indicating how many outstanding requests APT should send. A value of " -#| "zero MUST be specified if the remote host does not properly linger on TCP " -#| "connections - otherwise data corruption will occur. Hosts which require " -#| "this are in violation of RFC 2068." msgid "" "One setting is provided to control the pipeline depth in cases where the " "remote server is not RFC conforming or buggy (such as Squid 2.0.2). " @@ -6962,6 +6751,10 @@ msgid "" "bandwidth (Note that this option implicit deactivates the download from " "multiple servers at the same time.)" msgstr "" +"使用ã™ã‚‹å¸¯åŸŸã‚’制é™ã™ã‚‹ã«ã¯ã€<literal>Acquire::http::Dl-Limit</literal> ã«ã‚ãƒ" +"ãƒã‚¤ãƒˆã§æ•´æ•°å€¤ã‚’与ãˆã¾ã™ã€‚デフォルト値㯠0 ã§ã€åˆ¶é™ã‚’解除ã—ã€ä½¿ç”¨ã§ãる帯域を" +"ã™ã¹ã¦ä½¿ãŠã†ã¨ã—ã¾ã™ (ã“ã®ã‚ªãƒ—ションã¯æš—黙的ã«ã€åŒæ™‚ã«è¤‡æ•°ã®ã‚µãƒ¼ãƒã‹ã‚‰ãƒ€ã‚¦ãƒ³" +"ãƒãƒ¼ãƒ‰ã—ãªããªã‚‹ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„)。" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:334 @@ -6970,6 +6763,9 @@ msgid "" "User-Agent for the http download method as some proxies allow access for " "clients only if the client uses a known identifier." msgstr "" +"クライアントãŒæ—¢çŸ¥ã®è˜åˆ¥åを使用ã™ã‚‹å ´åˆã«ã®ã¿ã€ãƒ—ãƒã‚ã‚·ãŒã‚¢ã‚¯ã‚»ã‚¹ã‚’許å¯ã™ã‚‹" +"å ´åˆã€<literal>Acquire::http::User-Agent</literal> を使用ã—ã¦ã€http ã§ãƒ€ã‚¦ãƒ³" +"ãƒãƒ¼ãƒ‰ã™ã‚‹ãŸã‚ã®ã€ç•°ãªã‚‹ User-Agent ã‚’è¨å®šã§ãã¾ã™ã€‚" # type: <tag></tag> #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> @@ -6979,11 +6775,6 @@ msgstr "https" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:341 -#, fuzzy -#| msgid "" -#| "HTTPS URIs. Cache-control and proxy options are the same as for " -#| "<literal>http</literal> method. <literal>Pipeline-Depth</literal> option " -#| "is not supported yet." msgid "" "HTTPS URIs. Cache-control, Timeout, AllowRedirect, Dl-Limit and proxy " "options are the same as for <literal>http</literal> method and will also " @@ -6991,9 +6782,11 @@ msgid "" "not explicitly set for https. <literal>Pipeline-Depth</literal> option is " "not supported yet." msgstr "" -"HTTPS URI - ã‚ャッシュã®åˆ¶å¾¡ã‚„プãƒã‚シオプション㯠<literal>http</literal> メ" -"ソッドã¨åŒæ§˜ã§ã™ã€‚<literal>Pipeline-Depth</literal> オプションã¯ã¾ã サãƒãƒ¼ãƒˆ" -"ã—ã¦ã„ã¾ã›ã‚“。" +"HTTPS URI - ã‚ャッシュ制御ã€ã‚¿ã‚¤ãƒ アウトã€AllowRedirectã€Dl-Limitã€ãƒ—ãƒã‚シオ" +"プション㯠<literal>http</literal> メソッドã¨åŒæ§˜ã§ã™ã€‚ã¾ãŸã€https 用ã«æ˜Žç¤ºçš„" +"ã«è¨å®šã•ã‚Œãªã„å ´åˆã€ã‚ªãƒ—ションã®ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆå€¤ã¯ <literal>http</literal> メソッ" +"ドã¨åŒã˜ã§ã™ã€‚<literal>Pipeline-Depth</literal> オプションã¯ã¾ã サãƒãƒ¼ãƒˆã—ã¦" +"ã„ã¾ã›ã‚“。" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:347 @@ -7015,6 +6808,21 @@ msgid "" "<literal><host>::SslForceVersion</literal> is corresponding per-host " "option." msgstr "" +"<literal>CaInfo</literal> サブオプションã¯ã€ä¿¡é ¼æ¸ˆã¿è¨¼æ˜Žæ›¸æƒ…å ±ã®ä¿æŒå ´æ‰€ã‚’指" +"定ã—ã¾ã™ã€‚<literal><host>::CaInfo</literal> ã¯ã€å¯¾å¿œã™ã‚‹ãƒ›ã‚¹ãƒˆã”ã¨ã®ã‚ª" +"プションã§ã™ã€‚<literal>Verify-Peer</literal> 真å½å€¤ã‚µãƒ–オプションã¯ã€ä¿¡é ¼æ¸ˆã¿" +"証明書ã«å¯¾ã—ã¦ã‚µãƒ¼ãƒã®ãƒ›ã‚¹ãƒˆè¨¼æ˜Žæ›¸ã‚’ã€æ¤œè¨¼ã™ã‚‹ã‹ã©ã†ã‹ã‚’決定ã—ã¾ã™ã€‚" +"<literal><host>::Verify-Peer</literal> ã¯ã€å¯¾å¿œã™ã‚‹ãƒ›ã‚¹ãƒˆã”ã¨ã®ã‚ªãƒ—ショ" +"ンã§ã™ã€‚<literal>Verify-Host</literal> 真å½å€¤ã‚µãƒ–オプションã¯ã€ã‚µãƒ¼ãƒã®ãƒ›ã‚¹ãƒˆ" +"åを検証ã™ã‚‹ã‹ã©ã†ã‹ã‚’決定ã—ã¾ã™ã€‚<literal><host>::Verify-Host</" +"literal> ã¯ã€å¯¾å¿œã™ã‚‹ãƒ›ã‚¹ãƒˆã”ã¨ã®ã‚ªãƒ—ションã§ã™ã€‚<literal>SslCert</literal> " +"ã¯ã€ã‚¯ãƒ©ã‚¤ã‚¢ãƒ³ãƒˆèªè¨¼ã«ä½¿ç”¨ã™ã‚‹è¨¼æ˜Žæ›¸ã‚’決定ã—ã¾ã™ã€‚<literal><host>::" +"SslCert</literal> ã¯ã€å¯¾å¿œã™ã‚‹ãƒ›ã‚¹ãƒˆã”ã¨ã®ã‚ªãƒ—ションã§ã™ã€‚<literal>SslKey</" +"literal> ã¯ã€ã‚¯ãƒ©ã‚¤ã‚¢ãƒ³ãƒˆèªè¨¼ã«ä½¿ç”¨ã™ã‚‹ç§˜å¯†éµã‚’決定ã—ã¾ã™ã€‚<literal><" +"host>::SslKey</literal> ã¯ã€å¯¾å¿œã™ã‚‹ãƒ›ã‚¹ãƒˆã”ã¨ã®ã‚ªãƒ—ションã§ã™ã€‚" +"<literal>SslForceVersion</literal> ã¯ã€ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã§ä½¿ç”¨ã™ã‚‹ SSL ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³" +"を上書ãã—ã¾ã™ã€‚'TLSv1' ã‹ 'SSLv3' ã¨ã„ã†æ–‡å—列を指定ã§ãã¾ã™ã€‚<literal><" +"host>::SslForceVersion</literal> ã¯ã€å¯¾å¿œã™ã‚‹ãƒ›ã‚¹ãƒˆã”ã¨ã®ã‚ªãƒ—ションã§ã™ã€‚" # type: <tag></tag> #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> @@ -7025,19 +6833,6 @@ msgstr "ftp" # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:366 -#, fuzzy -#| msgid "" -#| "FTP URIs; ftp::Proxy is the default proxy server to use. It is in the " -#| "standard form of <literal>ftp://[[user][:pass]@]host[:port]/</literal> " -#| "and is overridden by the <envar>ftp_proxy</envar> environment variable. " -#| "To use a ftp proxy you will have to set the <literal>ftp::ProxyLogin</" -#| "literal> script in the configuration file. This entry specifies the " -#| "commands to send to tell the proxy server what to connect to. Please see " -#| "&configureindex; for an example of how to do this. The substitution " -#| "variables available are <literal>$(PROXY_USER)</literal> <literal>" -#| "$(PROXY_PASS)</literal> <literal>$(SITE_USER)</literal> <literal>" -#| "$(SITE_PASS)</literal> <literal>$(SITE)</literal> and <literal>" -#| "$(SITE_PORT)</literal> Each is taken from it's respective URI component." msgid "" "FTP URIs; ftp::Proxy is the default ftp proxy to use. It is in the standard " "form of <literal>ftp://[[user][:pass]@]host[:port]/</literal>. Per host " @@ -7055,15 +6850,18 @@ msgid "" "respective URI component." msgstr "" "FTP URI - ftp::Proxy ã¯ã€ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã§ä½¿ç”¨ã™ã‚‹ãƒ—ãƒã‚シサーãƒã§ã™ã€‚" -"<literal>ftp://[[user][:pass]@]host[:port]/</literal> ã¨ã„ã†æ¨™æº–å½¢ã§è¡¨ã—ã¾ã™" -"ãŒã€ç’°å¢ƒå¤‰æ•° <envar>ftp_proxy</envar> ã§ä¸Šæ›¸ãã•ã‚Œã¾ã™ã€‚ftp プãƒã‚シを使用ã™" -"ã‚‹ã«ã¯ã€è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã« <literal>ftp::ProxyLogin</literal> スクリプトをè¨å®šã™" -"ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚接続ã™ã‚‹éš›ã«ãƒ—ãƒã‚シサーãƒã«é€ä¿¡ã™ã‚‹ã‚³ãƒžãƒ³ãƒ‰ã‚’ã“ã®ã‚¨ãƒ³ãƒˆãƒª" -"ã«è¨å®šã—ã¾ã™ã€‚ã©ã®ã‚ˆã†ã«ã™ã‚‹ã®ã‹ã¯ &configureindex; ã®ä¾‹ã‚’å‚ç…§ã—ã¦ãã ã•ã„。" -"ãã®ä»–ã«ã‚‚ã€<literal>$(PROXY_USER)</literal> <literal>$(PROXY_PASS)</" +"<literal>ftp://[[user][:pass]@]host[:port]/</literal> ã¨ã„ã†æ¨™æº–å½¢ã§è¡¨ã—ã¾" +"ã™ã€‚ホストã”ã¨ã®ãƒ—ãƒã‚ã‚·ã®å ´åˆã¯ã€<literal>ftp::Proxy::<host></" +"literal> ã¨ã„ã†å½¢ã¨ã€ãƒ—ãƒã‚シを使用ã—ãªã„ã¨ã„ã†æ„味ã®ç‰¹æ®Šã‚ーワード " +"<literal>DIRECT</literal> を使用ã—ã¦æŒ‡å®šã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚上記ã®è¨å®šã‚’ãªã«" +"も指定ã—ãªã„ã¨ã€ç’°å¢ƒå¤‰æ•° <envar>ftp_proxy</envar> を使用ã—ã¾ã™ã€‚ftp プãƒã‚ã‚·" +"を使用ã™ã‚‹ã«ã¯ã€è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã« <literal>ftp::ProxyLogin</literal> スクリプト" +"ã‚’è¨å®šã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚接続ã™ã‚‹éš›ã«ãƒ—ãƒã‚シサーãƒã«é€ä¿¡ã™ã‚‹ã‚³ãƒžãƒ³ãƒ‰ã‚’ã“ã®" +"エントリã«è¨å®šã—ã¾ã™ã€‚ã©ã®ã‚ˆã†ã«ã™ã‚‹ã®ã‹ã¯ &configureindex; ã®ä¾‹ã‚’å‚ç…§ã—ã¦ã" +"ã ã•ã„。ãã®ä»–ã«ã‚‚ã€<literal>$(PROXY_USER)</literal> <literal>$(PROXY_PASS)</" "literal> <literal>$(SITE_USER)</literal> <literal>$(SITE_PASS)</literal> " -"<literal>$(SITE)</literal> and <literal>$(SITE_PORT)</literal> ãŒåˆ©ç”¨å¯èƒ½ã§" -"ã™ã€‚ã„ãšã‚Œã‚‚ã€ãã‚Œãžã‚Œ URI を構æˆã™ã‚‹ãƒˆãƒ¼ã‚¯ãƒ³ã§ã™ã€‚" +"<literal>$(SITE)</literal> <literal>$(SITE_PORT)</literal> ãŒä»£ã‚ã‚Šã«åˆ©ç”¨å¯èƒ½" +"ã§ã™ã€‚ã„ãšã‚Œã‚‚ã€ãã‚Œãžã‚Œ URI を構æˆã™ã‚‹ãƒˆãƒ¼ã‚¯ãƒ³ã§ã™ã€‚" # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> @@ -7091,8 +6889,8 @@ msgid "" "it is not recommended to use FTP over HTTP due to its low efficiency." msgstr "" "環境変数 <envar>ftp_proxy</envar> ã® http url ã«ã‚ˆã‚Š FTP over HTTP ã®ãƒ—ãƒã‚ã‚·" -"ãŒåˆ©ç”¨å¯èƒ½ã«ãªã‚Šã¾ã™ã€‚文法ã¯ä¸Šã® http ã«ã¤ã„ã¦ã®èª¬æ˜Žã‚’å‚ç…§ã—ã¦ãã ã•ã„。è¨å®š" -"ファイルã®ä¸ã§ã“れをセットã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。ã¾ãŸã€åŠ¹çŽ‡ãŒæ‚ªã„ãŸã‚ FTP " +"ãŒåˆ©ç”¨å¯èƒ½ã«ãªã‚Šã¾ã™ã€‚構文ã¯å‰è¿°ã® http ã«ã¤ã„ã¦ã®èª¬æ˜Žã‚’å‚ç…§ã—ã¦ãã ã•ã„。è¨" +"定ファイルã®ä¸ã§ã“れをセットã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。ã¾ãŸã€åŠ¹çŽ‡ãŒæ‚ªã„ãŸã‚ FTP " "over HTTP を使用ã™ã‚‹ã®ã¯æŽ¨å¥¨ã—ã¾ã›ã‚“。" # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> @@ -7120,10 +6918,9 @@ msgstr "cdrom" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout> #: apt.conf.5.xml:410 -#, fuzzy, no-wrap -#| msgid "\"/cdrom/\"::Mount \"foo\";" +#, no-wrap msgid "/cdrom/::Mount \"foo\";" -msgstr "\"/cdrom/\"::Mount \"foo\";" +msgstr "/cdrom/::Mount \"foo\";" # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> @@ -7142,7 +6939,7 @@ msgstr "" "fstab</filename> ã§è¨å®šã•ã‚Œã¦ã„るよã†ã«ã€CDROM ドライブã®ãƒžã‚¦ãƒ³ãƒˆãƒã‚¤ãƒ³ãƒˆã‚’ " "<literal>cdrom::Mount</literal> ã«è¨å®šã—ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。(SMB マウントやå¤" "ã„ mount パッケージãªã©) マウントãƒã‚¤ãƒ³ãƒˆãŒ fstab ã«è¨˜è¿°ã§ããªã„å ´åˆã€ã‹ã‚ã‚Š" -"ã«ãƒžã‚¦ãƒ³ãƒˆãƒ»ã‚¢ãƒ³ãƒžã‚¦ãƒ³ãƒˆã‚³ãƒžãƒ³ãƒ‰ã‚‚使用ã§ãã¾ã™ã€‚文法ã¯ã€cdrom ブãƒãƒƒã‚¯ã‚’ " +"ã«ãƒžã‚¦ãƒ³ãƒˆãƒ»ã‚¢ãƒ³ãƒžã‚¦ãƒ³ãƒˆã‚³ãƒžãƒ³ãƒ‰ã‚‚使用ã§ãã¾ã™ã€‚構文ã¯ã€cdrom ブãƒãƒƒã‚¯ã‚’ " "<placeholder type=\"literallayout\" id=\"0\"/> ã®å½¢ã§è¨˜è¿°ã—ã¾ã™ã€‚スラッシュを" "後ã«ã¤ã‘ã‚‹ã®ãŒé‡è¦ã§ã™ã€‚アンマウントコマンド㯠UMount ã§æŒ‡å®šã™ã‚‹ã“ã¨ãŒã§ãã¾" "ã™ã€‚" @@ -7167,13 +6964,13 @@ msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: apt.conf.5.xml:421 msgid "CompressionTypes" -msgstr "" +msgstr "CompressionTypes" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis> #: apt.conf.5.xml:427 #, no-wrap msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";" -msgstr "" +msgstr "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:422 @@ -7186,18 +6983,24 @@ msgid "" "the fly or the used method can be changed. The syntax for this is: " "<placeholder type=\"synopsis\" id=\"0\"/>" msgstr "" +"acquire メソッドãŒç†è§£ã§ãã‚‹ã€åœ§ç¸®æ³•ã®ãƒªã‚¹ãƒˆã§ã™ã€‚<filename>Packages</" +"filename> ã®ã‚ˆã†ãªãƒ•ã‚¡ã‚¤ãƒ«ã¯ã€ã•ã¾ã–ã¾ãªåœ§ç¸®å½¢å¼ãŒåˆ©ç”¨ã§ãã¾ã™ã€‚デフォルト " +"acquire メソッドã”ã¨ã«ã€<command>bzip2</command>, <command>lzma</command>, " +"<command>gzip</command> ã§åœ§ç¸®ã•ã‚ŒãŸãƒ•ã‚¡ã‚¤ãƒ«ã‚’伸張ã§ãã¾ã™ã€‚ã“ã®è¨å®šã§ã¯ã€ã‚ˆ" +"り多ãã®å½¢å¼ã‚’ã€ã‚ªãƒ³ã‚¶ãƒ•ãƒ©ã‚¤ã§è¿½åŠ ã—ãŸã‚Šã€ä½¿ç”¨ã™ã‚‹ãƒ¡ã‚½ãƒƒãƒ‰ã§å¤‰æ›´ã—ãŸã‚Šã§ãã¾" +"ã™ã€‚構文ã¯ä»¥ä¸‹ã®ã‚ˆã†ã«ãªã‚Šã¾ã™ã€‚<placeholder type=\"synopsis\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis> #: apt.conf.5.xml:432 #, no-wrap msgid "Acquire::CompressionTypes::Order:: \"gz\";" -msgstr "" +msgstr "Acquire::CompressionTypes::Order:: \"gz\";" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis> #: apt.conf.5.xml:435 #, no-wrap msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" -msgstr "" +msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:428 @@ -7215,12 +7018,23 @@ msgid "" "<placeholder type=\"synopsis\" id=\"1\"/> It is not needed to add " "<literal>bz2</literal> explicit to the list as it will be added automatic." msgstr "" +"ã¾ãŸã€<literal>Order</literal> サブグループを使用ã—ã¦ã€å–得システムãŒåœ§ç¸®ãƒ•ã‚¡" +"イルã®ãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ã‚’試ã¿ã‚‹é †ç•ªã‚’ã€å®šç¾©ã§ãã¾ã™ã€‚å–得システムã¯å…ˆé ã®ã‚‚ã®ã‚’試" +"è¡Œã—ã€ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã™ã‚‹ã¨æ¬¡ã®åœ§ç¸®ã‚¿ã‚¤ãƒ—ã®ãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ã‚’開始ã—ã¾ã™ã€‚ãã®ãŸã‚ã€" +"ã©ã‚Œã‹ã‚’ä»–ã®ã‚‚ã®ã‚ˆã‚Šå„ªå…ˆã—ãŸã„å ´åˆã€å˜ã«ãã®ã‚¿ã‚¤ãƒ—ã‚’å…ˆé ã«è¿½åŠ ã—ã¦ãã ã•ã„。" +"ã¾ã è¿½åŠ ã—ã¦ã„ãªã„デフォルトタイプã¯ã€å®Ÿè¡Œæ™‚ã«ãƒªã‚¹ãƒˆã®æœ€å¾Œã«è¿½åŠ ã•ã‚Œã¾ã™ã€‚ã¤" +"ã¾ã‚Šã€<placeholder type=\"synopsis\" id=\"0\"/> ã¨ã™ã‚‹ã¨ã€<command>gzip</" +"command> ã§åœ§ç¸®ã•ã‚ŒãŸãƒ•ã‚¡ã‚¤ãƒ«ã‚’ <command>bzip2</command> ã‚„ <command>lzma</" +"command> よりも優先的ã«ä½¿ç”¨ã—ã¾ã™ã€‚ã‚‚ã— <command>lzma</command> ã‚’ " +"<command>gzip</command> ã‚„ <command>bzip2</command> よりも優先ã™ã‚‹ã¹ããªã‚‰ã€" +"è¨å®šã‚’以下ã®ã‚ˆã†ã«ã—ã¦ãã ã•ã„。<placeholder type=\"synopsis\" id=\"1\"/> " +"<literal>bz2</literal> ã¯è‡ªå‹•çš„ã«è¿½åŠ ã•ã‚Œã‚‹ãŸã‚ã€æ˜Žç¤ºã™ã‚‹å¿…è¦ã¯ã‚ã‚Šã¾ã›ã‚“。" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout> #: apt.conf.5.xml:439 #, no-wrap msgid "Dir::Bin::bzip2 \"/bin/bzip2\";" -msgstr "" +msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:437 @@ -7236,6 +7050,15 @@ msgid "" "will not override the defined list, it will only prefix the list with this " "type." msgstr "" +"実行時㫠<literal>Dir::Bin::<replaceable>Methodname</replaceable></literal> " +"ã‚’ãƒã‚§ãƒƒã‚¯ã™ã‚‹ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„。ã“ã®è¨å®šãŒã‚ã‚‹ã¨ã€ãƒ•ã‚¡ã‚¤ãƒ«ãŒã‚ã‚‹å ´åˆ" +"ã«ã€ã“ã®æ–¹æ³•ã—ã‹ä½¿ã‚ã‚Œãªããªã‚Šã¾ã™ã€‚例ãˆã°ã€bzip2 メソッド (内蔵) ã®è¨å®šã¯ä»¥" +"下ã«ãªã‚Šã¾ã™ã€‚<placeholder type=\"literallayout\" id=\"0\"/> ã¾ãŸã€ã‚³ãƒžãƒ³ãƒ‰ãƒ©" +"インã«æŒ‡å®šã—ãŸä¸€è¦§ã®ã‚¨ãƒ³ãƒˆãƒªã¯è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã«æŒ‡å®šã—ãŸã‚‚ã®ã®å¾Œã€ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã‚¨ãƒ³" +"トリã®å‰ã«è¿½åŠ ã•ã‚Œã‚‹ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„。ã“ã®å ´åˆã€è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã«æŒ‡å®šã—ãŸ" +"内容よりもå‰ã«æŒ‡å®šã™ã‚‹ã«ã¯ã€ã‚ªãƒ—ションを直接 (一覧スタイルã§ãªã) 指定ã—ã¦ã" +"ã ã•ã„。ã“ã‚Œã«ã‚ˆã‚Šå®šç¾©ã•ã‚ŒãŸä¸€è¦§ãŒä¸Šæ›¸ãã•ã‚Œã€ã“ã®ã‚¿ã‚¤ãƒ—ã®ã‚‚ã®ã®ã¿å®šç¾©ã•ã‚Œã¾" +"ã™ã€‚" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:444 @@ -7246,14 +7069,17 @@ msgid "" "time false negatives. Future versions will maybe include a way to really " "prefer uncompressed files to support the usage of local mirrors." msgstr "" +"é †åºãƒªã‚¹ãƒˆã«ç©ºã®åœ§ç¸®ã‚¿ã‚¤ãƒ—ã‚’è¿½åŠ ã§ãã¾ã™ãŒã€æœ€æ–°ç‰ˆã® APT ã§ã¯æ£ã—ã解釈ã§ã" +"ãšã€ãƒ•ã‚¡ã‚¤ãƒ«ã‚’ダウンãƒãƒ¼ãƒ‰ã§ããªã„ã¨è¨€ã†è¦å‘Šã‚’大é‡ã«è¡¨ç¤ºã™ã‚‹ã“ã¨ã«ãªã‚Šã¾ã™ " +"(ã“ã®è¦å‘Šã¯ãŸã„ã¦ã„見逃ã—ã¦ã—ã¾ã„ã¾ã™)。将æ¥ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã§ã¯ã€ãƒãƒ¼ã‚«ãƒ«ãƒŸãƒ©ãƒ¼" +"ã®åˆ©ç”¨ã‚’サãƒãƒ¼ãƒˆã™ã‚‹ãŸã‚ã€éžåœ§ç¸®ãƒ•ã‚¡ã‚¤ãƒ«ã‚’使用ã™ã‚‹æ–¹æ³•ãŒè¿½åŠ ã•ã‚Œã‚‹ã‹ã‚‚ã—ã‚Œã¾" +"ã›ã‚“。" # type: <tag></tag> #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: apt.conf.5.xml:450 -#, fuzzy -#| msgid "IndexType" msgid "GzipIndexes" -msgstr "IndexType" +msgstr "GzipIndexes" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:452 @@ -7267,7 +7093,7 @@ msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: apt.conf.5.xml:459 msgid "Languages" -msgstr "" +msgstr "Languages" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:460 @@ -7286,7 +7112,7 @@ msgstr "" #: apt.conf.5.xml:476 #, no-wrap msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" -msgstr "" +msgstr "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:466 @@ -7400,14 +7226,6 @@ msgstr "" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:511 -#, fuzzy -#| msgid "" -#| "Binary programs are pointed to by <literal>Dir::Bin</literal>. " -#| "<literal>Dir::Bin::Methods</literal> specifies the location of the method " -#| "handlers and <literal>gzip</literal>, <literal>dpkg</literal>, " -#| "<literal>apt-get</literal> <literal>dpkg-source</literal> <literal>dpkg-" -#| "buildpackage</literal> and <literal>apt-cache</literal> specify the " -#| "location of the respective programs." msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@ -7418,9 +7236,10 @@ msgid "" msgstr "" "ãƒã‚¤ãƒŠãƒªãƒ—ãƒã‚°ãƒ©ãƒ 㯠<literal>Dir::Bin</literal> ã§æŒ‡å®šã—ã¾ã™ã€‚<literal>Dir::" "Bin::Methods</literal> ã¯ãƒ¡ã‚½ãƒƒãƒ‰ãƒãƒ³ãƒ‰ãƒ©ã®å ´æ‰€ã‚’指定ã—ã€<literal>gzip</" -"literal>, <literal>dpkg</literal>, <literal>apt-get</literal>, <literal>dpkg-" -"source</literal>, <literal>dpkg-buildpackage</literal>, <literal>apt-cache</" -"literal> ã¯ãã‚Œãžã‚Œãƒ—ãƒã‚°ãƒ©ãƒ ã®å ´æ‰€ã‚’指定ã—ã¾ã™ã€‚" +"literal>, <literal>bzip2</literal>, <literal>lzma</literal>, <literal>dpkg</" +"literal>, <literal>apt-get</literal> <literal>dpkg-source</literal> " +"<literal>dpkg-buildpackage</literal>, <literal>apt-cache</literal> ã¯ãã‚Œãžã‚Œ" +"プãƒã‚°ãƒ©ãƒ ã®å ´æ‰€ã‚’指定ã—ã¾ã™ã€‚" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> @@ -7658,7 +7477,7 @@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> #: apt.conf.5.xml:616 msgid "dpkg trigger usage (and related options)" -msgstr "" +msgstr "dpkg トリガã®ä½¿ã„æ–¹ (ãŠã‚ˆã³é–¢é€£ã‚ªãƒ—ション)" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt.conf.5.xml:617 @@ -7684,6 +7503,10 @@ msgid "" "DPkg::ConfigurePending \"true\";\n" "DPkg::TriggersPending \"true\";" msgstr "" +"DPkg::NoTriggers \"true\";\n" +"PackageManager::Configure \"smart\";\n" +"DPkg::ConfigurePending \"true\";\n" +"DPkg::TriggersPending \"true\";" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt.conf.5.xml:626 @@ -7702,7 +7525,7 @@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt.conf.5.xml:638 msgid "DPkg::NoTriggers" -msgstr "" +msgstr "DPkg::NoTriggers" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:639 @@ -7719,10 +7542,8 @@ msgstr "" # type: <tag></tag> #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt.conf.5.xml:646 -#, fuzzy -#| msgid "Packages::Compress" msgid "PackageManager::Configure" -msgstr "Packages::Compress" +msgstr "PackageManager::Configure" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:647 @@ -7743,9 +7564,8 @@ msgstr "" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt.conf.5.xml:657 -#, fuzzy msgid "DPkg::ConfigurePending" -msgstr "ユーザã®è¨å®š" +msgstr "DPkg::ConfigurePending" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:658 @@ -7761,7 +7581,7 @@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt.conf.5.xml:664 msgid "DPkg::TriggersPending" -msgstr "" +msgstr "DPkg::TriggersPending" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:665 @@ -7776,7 +7596,7 @@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt.conf.5.xml:670 msgid "PackageManager::UnpackAll" -msgstr "" +msgstr "PackageManager::UnpackAll" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:671 @@ -7793,7 +7613,7 @@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt.conf.5.xml:678 msgid "OrderList::Score::Immediate" -msgstr "" +msgstr "OrderList::Score::Immediate" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> #: apt.conf.5.xml:686 @@ -7806,6 +7626,12 @@ msgid "" "\tPreDepends 50;\n" "};" msgstr "" +"OrderList::Score {\n" +"\tDelete 500;\n" +"\tEssential 200;\n" +"\tImmediate 10;\n" +"\tPreDepends 50;\n" +"};" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:679 @@ -7884,6 +7710,8 @@ msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." msgstr "" +"<literal>Debug::pkgDPkgPM</literal> 㯠<literal>apt</literal> ãŒå®Ÿéš›ã« " +"&dpkg; ã‚’èµ·å‹•ã™ã‚‹éš›ã®å„コマンドラインを表示ã—ã¾ã™ã€‚" #. TODO: provide a #. motivating example, except I haven't a clue why you'd want @@ -7894,11 +7722,13 @@ msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CDROM IDs." msgstr "" +"<literal>Debug::IdentCdrom</literal> 㯠CDROM ID ã«ã‚ã‚‹ statfs データã®æ–¹gain" +"を無効ã«ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:756 msgid "A full list of debugging options to apt follows." -msgstr "" +msgstr "以下㯠apt ã«å¯¾ã™ã‚‹ãƒ‡ãƒãƒƒã‚°ã‚ªãƒ—ションã®ã™ã¹ã¦ã§ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:761 @@ -7966,6 +7796,8 @@ msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." msgstr "" +"CD-ROM ã«ã‚るパッケージ集åˆã«å¯¾ã—ã¦ã€ã‚¢ã‚¯ã‚»ã‚¹ã™ã‚‹ãƒ—ãƒã‚»ã‚¹ã«ã¤ã„ã¦ã®æƒ…å ±ã‚’å‡ºåŠ›" +"ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:827 @@ -7975,7 +7807,7 @@ msgstr "<literal>Debug::BuildDeps</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:830 msgid "Describes the process of resolving build-dependencies in &apt-get;." -msgstr "" +msgstr "&apt-get; ã§ã®æ§‹ç¯‰ä¾å˜é–¢ä¿‚解決ã®ãƒ—ãƒã‚»ã‚¹ã‚’説明ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:837 @@ -7988,6 +7820,7 @@ msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." msgstr "" +"<literal>apt</literal> ライブラリãŒç”Ÿæˆã—ãŸã€æš—å·åŒ–ãƒãƒƒã‚·ãƒ¥ã‚’出力ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:847 @@ -8001,6 +7834,8 @@ msgid "" "of used and free blocks on the CD-ROM filesystem, when generating an ID for " "a CD-ROM." msgstr "" +"CD-ROM ã® ID を生æˆã™ã‚‹éš›ã« <literal>statfs</literal> ã¨ã„ã†ã€CD-ROM ファイル" +"システムã«ã‚る使用済・未使用ブãƒãƒƒã‚¯ã®æ•°ã‹ã‚‰ã®æƒ…å ±ã‚’å«ã‚ãªã„よã†ã«ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:858 @@ -8013,6 +7848,8 @@ 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 "" +"ファイルã®ãƒãƒƒã‚¯ã‚’ã™ã¹ã¦ç„¡åŠ¹ã«ã—ã¾ã™ã€‚例ãˆã°ã€åŒæ™‚ã«ãµãŸã¤ã® " +"<quote><literal>apt-get update</literal></quote> を実行ã§ãるよã†ã«ãªã‚Šã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:869 @@ -8023,6 +7860,7 @@ msgstr "<literal>Debug::pkgAcquire</literal>" #: apt.conf.5.xml:873 msgid "Log when items are added to or removed from the global download queue." msgstr "" +"ã‚°ãƒãƒ¼ãƒãƒ«ãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ã‚ューã«å¯¾ã™ã‚‹é …ç›®ã®è¿½åŠ ・削除ã®éš›ã«ãƒã‚°ã‚’出力ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:880 @@ -8035,6 +7873,8 @@ msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." msgstr "" +"ダウンãƒãƒ¼ãƒ‰ã—ãŸãƒ•ã‚¡ã‚¤ãƒ«ã®ãƒã‚§ãƒƒã‚¯ã‚µãƒ ã‚„æš—å·ç½²åã®ç¢ºèªã«é–¢ã™ã‚‹ã€çŠ¶æ…‹ãƒ¡ãƒƒã‚»ãƒ¼" +"ジやエラーを出力ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:890 @@ -8047,6 +7887,8 @@ 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><term> #: apt.conf.5.xml:901 @@ -8059,6 +7901,8 @@ msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." msgstr "" +"インデックス全体ã§ã¯ãªãインデックス差分ã®ãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ã®éš›ã«ã€apt パッケージ" +"リストã¸ã®ãƒ‘ッãƒé©ç”¨ã«é–¢ã™ã‚‹æƒ…å ±ã‚’å‡ºåŠ›ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:912 @@ -8070,6 +7914,7 @@ msgstr "<literal>Debug::pkgAcquire::Worker</literal>" msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" +"実際ã®ãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ã‚’è¡Œã†éš›ã®ã€ã‚µãƒ–プãƒã‚»ã‚¹ã¨ã®ã‚„ã‚Šã¨ã‚Šã‚’ãƒã‚°ã«å‡ºåŠ›ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:923 @@ -8082,6 +7927,8 @@ 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><term> #: apt.conf.5.xml:934 @@ -8097,6 +7944,11 @@ msgid "" "to the full <literal>apt</literal> dependency resolver; see <literal>Debug::" "pkgProblemResolver</literal> for that." msgstr "" +"ä¾å˜é–¢ä¿‚解決ã®ãŸã‚ã«ã€ã©ã®ãƒ‘ッケージãŒè‡ªå‹•çš„ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚ŒãŸã‹ã®ãƒ‡ãƒãƒƒã‚°" +"メッセージを生æˆã—ã¾ã™ã€‚ã“ã‚Œã¯å®Œå…¨ãª <literal>apt</literal> ä¾å˜é–¢ä¿‚解決プãƒ" +"グラム(<literal>Debug::pkgProblemResolver</literal> ã‚’å‚ç…§) ã§ã¯ãªãã€ä¾‹ãˆ" +"ã° <literal>apt-get install</literal> ã§å®Ÿè¡Œã•ã‚ŒãŸã€åˆæœŸã®è‡ªå‹•ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«çµŒ" +"è·¯ã«å¯¾å¿œã—ã¦ã„ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:948 @@ -8128,7 +7980,7 @@ msgstr "<literal>Debug::pkgInitConfig</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:973 msgid "Dump the default configuration to standard error on startup." -msgstr "" +msgstr "起動時ã«ã€æ¨™æº–エラー出力ã¸ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆè¨å®šã‚’出力ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:980 @@ -8141,6 +7993,8 @@ msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." msgstr "" +"&dpkg; 起動時ã«ã€èµ·å‹•ã—ãŸéš›ã®æ£ç¢ºãªã‚³ãƒžãƒ³ãƒ‰ãƒ©ã‚¤ãƒ³ã‚’出力ã—ã¾ã™ã€‚引数ã¯ç©ºç™½ã§åŒº" +"切られã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:991 @@ -8153,6 +8007,8 @@ msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." msgstr "" +"状態ファイルディスクリプタã«ã€&dpkg; ã‹ã‚‰å—ä¿¡ã—ãŸã™ã¹ã¦ã®ãƒ‡ãƒ¼ã‚¿ã¨ã€ãã®ãƒ‡ãƒ¼ã‚¿" +"を解æžä¸ã«ç™ºç”Ÿã—ãŸã‚¨ãƒ©ãƒ¼ã‚’出力ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:1001 @@ -8165,6 +8021,8 @@ msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." msgstr "" +"<literal>apt</literal> ㌠&dpkg; ã«ãƒ‘ッケージを渡ã™é †ç•ªã‚’決ã‚ã‚‹ã€ã‚¢ãƒ«ã‚´ãƒªã‚ºãƒ " +"ã®ãƒˆãƒ¬ãƒ¼ã‚¹ã‚’生æˆã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:1013 @@ -8175,7 +8033,7 @@ msgstr "<literal>Debug::pkgPackageManager</literal>" #: apt.conf.5.xml:1017 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." -msgstr "" +msgstr "&dpkg; を呼ã³å‡ºã™éš›ã«ã€å®Ÿè¡Œæ‰‹é †ã‚’追跡ã—ãŸçŠ¶æ…‹ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’出力ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:1024 @@ -8185,7 +8043,7 @@ msgstr "<literal>Debug::pkgPolicy</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:1028 msgid "Output the priority of each package list on startup." -msgstr "" +msgstr "起動時ã®å„パッケージã®å„ªå…ˆåº¦ã‚’表示ã—ã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:1034 @@ -8198,6 +8056,8 @@ 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><term> #: apt.conf.5.xml:1046 @@ -8223,6 +8083,8 @@ msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." msgstr "" +"<filename>/etc/apt/vendors.list</filename> ã‹ã‚‰èªã¿è¾¼ã‚“ã ã€ãƒ™ãƒ³ãƒ€ã®æƒ…å ±ã‚’å‡ºåŠ›" +"ã—ã¾ã™ã€‚" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> @@ -8237,10 +8099,8 @@ msgstr "" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><variablelist> #: apt.conf.5.xml:1091 -#, fuzzy -#| msgid "&apt-conf;" msgid "&file-aptconf;" -msgstr "&apt-conf;" +msgstr "&file-aptconf;" # type: Content of: <refentry><refsect1><para> #. ? reading apt.conf @@ -8252,11 +8112,10 @@ msgstr "&apt-cache;, &apt-config;, &apt-preferences;." #. The last update date #. type: Content of: <refentry><refentryinfo> #: apt_preferences.5.xml:13 -#, fuzzy -#| msgid "&apt-author.team; &apt-email; &apt-product; <date>04 May 2009</date>" msgid "" "&apt-author.team; &apt-email; &apt-product; <date>16 February 2010</date>" -msgstr "&apt-author.team; &apt-email; &apt-product; <date>04 May 2009</date>" +msgstr "" +"&apt-author.team; &apt-email; &apt-product; <date>16 February 2010</date>" # type: Content of: <refentry><refnamediv><refname> #. type: Content of: <refentry><refnamediv><refname> @@ -8268,24 +8127,20 @@ msgstr "apt_preferences" #. type: Content of: <refentry><refnamediv><refpurpose> #: apt_preferences.5.xml:29 msgid "Preference control file for APT" -msgstr "APT è¨å®šåˆ¶å¾¡ãƒ•ã‚¡ã‚¤ãƒ«" +msgstr "APT 用é¸æŠžåˆ¶å¾¡ãƒ•ã‚¡ã‚¤ãƒ«" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> #: apt_preferences.5.xml:34 -#, fuzzy -#| msgid "" -#| "The APT preferences file <filename>/etc/apt/preferences</filename> can be " -#| "used to control which versions of packages will be selected for " -#| "installation." msgid "" "The APT preferences file <filename>/etc/apt/preferences</filename> and the " "fragment files in the <filename>/etc/apt/preferences.d/</filename> folder " "can be used to control which versions of packages will be selected for " "installation." msgstr "" -"APT è¨å®šãƒ•ã‚¡ã‚¤ãƒ« <filename>/etc/apt/preferences</filename> ã¯ã€ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã™" -"るパッケージã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³é¸æŠžã‚’制御ã™ã‚‹ã®ã«ä½¿ç”¨ã—ã¾ã™ã€‚" +"APT é¸æŠžãƒ•ã‚¡ã‚¤ãƒ« <filename>/etc/apt/preferences</filename> 㨠<filename>/etc/" +"apt/preferences.d/</filename> フォルダã«ã‚ã‚‹æ–片ファイルã¯ã€ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã™ã‚‹" +"パッケージã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‚’制御ã™ã‚‹ã®ã«ä½¿ç”¨ã—ã¾ã™ã€‚" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> @@ -8305,7 +8160,7 @@ msgstr "" "ã—複数ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã§ãã‚‹ã“ã¨ãŒã‚ã‚Šã¾ã™ã€‚ã“ã®ã¨ã APT ã¯ã€åˆ©ç”¨ã§" "ãã‚‹ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã”ã¨ã«å„ªå…ˆåº¦ã‚’割り当ã¦ã¾ã™ã€‚ä¾å˜é–¢ä¿‚è¦å‰‡ã‚’æ¡ä»¶ã¨ã—ã¦ã€" "<command>apt-get</command> ã¯ã€æœ€ã‚‚高ã„優先度をæŒã¤ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‚’インストールã™" -"るよã†é¸æŠžã—ã¾ã™ã€‚APT è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã¯ã€APT ãŒãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã§å‰²ã‚Šå½“ã¦ãŸã€ãƒ‘ッケー" +"るよã†é¸æŠžã—ã¾ã™ã€‚APT é¸æŠžãƒ•ã‚¡ã‚¤ãƒ«ã¯ã€APT ãŒãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã§å‰²ã‚Šå½“ã¦ãŸã€ãƒ‘ッケー" "ジã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®å„ªå…ˆåº¦ã‚’上書ãã—ã¾ã™ã€‚ãã®çµæžœã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã™ã‚‹ã‚‚ã®ã®é¸æŠžã‚’ã€" "ユーザãŒé¸æŠžã§ãるよã†ã«ãªã‚Šã¾ã™ã€‚" @@ -8322,7 +8177,7 @@ msgstr "" "&sources-list; ファイルã«è¤‡æ•°ã®å‚ç…§ãŒæ›¸ã‹ã‚Œã¦ã„ã‚‹å ´åˆã€ãƒ‘ッケージã®åŒã˜ãƒãƒ¼" "ジョンã®ã‚¤ãƒ³ã‚¹ã‚¿ãƒ³ã‚¹ãŒè¤‡æ•°åˆ©ç”¨ã§ãã‚‹å¯èƒ½æ€§ãŒã‚ã‚Šã¾ã™ã€‚ã“ã®å ´åˆã€<command>apt-" "get</command> 㯠&sources-list; ファイルã®åˆã‚ã®æ–¹ã«æŒ‡å®šã•ã‚Œã¦ã„ã‚‹ã¨ã“ã‚ã‹ã‚‰" -"ダウンãƒãƒ¼ãƒ‰ã—ã¾ã™ã€‚APT è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã¯ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®é¸æŠžã«ã®ã¿å½±éŸ¿ã—ã€ã‚¤ãƒ³ã‚¹ã‚¿" +"ダウンãƒãƒ¼ãƒ‰ã—ã¾ã™ã€‚APT é¸æŠžãƒ•ã‚¡ã‚¤ãƒ«ã¯ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®é¸æŠžã«ã®ã¿å½±éŸ¿ã—ã€ã‚¤ãƒ³ã‚¹ã‚¿" "ンスã®é¸æŠžã«ã¯å½±éŸ¿ã—ã¾ã›ã‚“。" #. type: Content of: <refentry><refsect1><para> @@ -8349,6 +8204,11 @@ msgid "" "underscore (_) and period (.) characters - otherwise they will be silently " "ignored." msgstr "" +"<filename>/etc/apt/preferences.d</filename> ディレクトリã«ã‚るファイルã¯ã€è‹±" +"æ•°å—ã®æ˜‡é †ã§è§£æžã•ã‚Œã€ä»¥ä¸‹ã®è¦ç´„ã«å¾“ã†å¿…è¦ãŒã‚ã‚‹ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„。ファ" +"イルåã«ã¯ã€æ‹¡å¼µåã¯ãªã„ã‹ã€\"<literal>pref</literal>\" ã¨ãªã£ã¦ãŠã‚Šã€è‹±æ•°" +"å—ã€ãƒã‚¤ãƒ•ãƒ³ (-)ã€ã‚¢ãƒ³ãƒ€ãƒ¼ã‚¹ã‚³ã‚¢ (_)ã€ãƒ”リオド (.) ã§ã§ãã¦ã„ã¾ã™ã€‚ãã†ã§ãªã‘" +"ã‚Œã°ã€é»™ã£ã¦ç„¡è¦–ã•ã‚Œã¾ã™ã€‚" # type: Content of: <refentry><refsect1><refsect2><title> #. type: Content of: <refentry><refsect1><refsect2><title> @@ -8361,14 +8221,18 @@ msgstr "APT ã®ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆå„ªå…ˆåº¦ã®å‰²ã‚Šå½“ã¦" #: apt_preferences.5.xml:89 #, no-wrap msgid "<command>apt-get install -t testing <replaceable>some-package</replaceable></command>\n" -msgstr "<command>apt-get install -t testing <replaceable>some-package</replaceable></command>\n" +msgstr "" +"<command>apt-get install -t testing <replaceable>some-package</replaceable></command>\n" +"\n" # type: Content of: <refentry><refsect1><refsect2><para><programlisting> #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:92 #, no-wrap msgid "APT::Default-Release \"stable\";\n" -msgstr "APT::Default-Release \"stable\";\n" +msgstr "" +"APT::Default-Release \"stable\";\n" +"\n" # type: Content of: <refentry><refsect1><refsect2><para> #. type: Content of: <refentry><refsect1><refsect2><para> @@ -8398,10 +8262,8 @@ msgstr "" # type: <tag></tag> #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:101 -#, fuzzy -#| msgid "priority 100" msgid "priority 1" -msgstr "priority 100" +msgstr "priority 1" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:102 @@ -8466,10 +8328,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:123 #, fuzzy -#| msgid "" -#| "If the target release has not been specified then APT simply assigns " -#| "priority 100 to all installed package versions and priority 500 to all " -#| "uninstalled package versions." msgid "" "If the target release has not been specified then APT simply assigns " "priority 100 to all installed package versions and priority 500 to all " @@ -8600,7 +8458,7 @@ msgid "" "records separated by blank lines. Records can have one of two forms, a " "specific form and a general form." msgstr "" -"APT è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã‚’使ã†ã¨ã€ã‚·ã‚¹ãƒ†ãƒ 管ç†è€…ãŒå„ªå…ˆåº¦ã‚’割り当ã¦ã‚‰ã‚Œã‚‹ã‚ˆã†ã«ãªã‚Šã¾" +"APT é¸æŠžãƒ•ã‚¡ã‚¤ãƒ«ã‚’使ã†ã¨ã€ã‚·ã‚¹ãƒ†ãƒ 管ç†è€…ãŒå„ªå…ˆåº¦ã‚’割り当ã¦ã‚‰ã‚Œã‚‹ã‚ˆã†ã«ãªã‚Šã¾" "ã™ã€‚ファイルã¯ã€ç©ºç™½è¡Œã§åŒºåˆ‡ã‚‰ã‚ŒãŸã€è¤‡æ•°è¡Œã‹ã‚‰ãªã‚‹ãƒ¬ã‚³ãƒ¼ãƒ‰ã§æ§‹æˆã•ã‚Œã¦ã„ã¾" "ã™ã€‚レコードã¯ç‰¹å®šå½¢å¼ã‹ã€æ±Žç”¨å½¢å¼ã®ã©ã¡ã‚‰ã‹ã®å½¢å¼ã‚’ã¨ã‚Šã¾ã™ã€‚" @@ -8631,6 +8489,7 @@ msgstr "" "Package: perl\n" "Pin: version 5.8*\n" "Pin-Priority: 1001\n" +"\n" # type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> @@ -8655,7 +8514,7 @@ msgid "" "of packages. For example, the following record assigns a high priority to " "all package versions available from the local site." msgstr "" -"APT è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã«æ›¸ã‹ã‚Œã¦ã„る汎用形å¼ã®ã‚¨ãƒ³ãƒˆãƒªã¯ã€ãƒ‘ッケージã®ã‚°ãƒ«ãƒ¼ãƒ—ã«ã¤" +"APT é¸æŠžãƒ•ã‚¡ã‚¤ãƒ«ã«æ›¸ã‹ã‚Œã¦ã„る汎用形å¼ã®ã‚¨ãƒ³ãƒˆãƒªã¯ã€ãƒ‘ッケージã®ã‚°ãƒ«ãƒ¼ãƒ—ã«ã¤" "ã„ã¦ã®ã¿é©ç”¨ã•ã‚Œã¾ã™ã€‚例ãˆã°ä»¥ä¸‹ã®ãƒ¬ã‚³ãƒ¼ãƒ‰ã¯ã€ãƒãƒ¼ã‚«ãƒ«ã‚µã‚¤ãƒˆã«ã‚る全パッケー" "ジã«ã¤ã„ã¦ã€é«˜ã„優先度を割り当ã¦ã¾ã™ã€‚" @@ -8671,6 +8530,7 @@ msgstr "" "Package: *\n" "Pin: origin \"\"\n" "Pin-Priority: 999\n" +"\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:206 @@ -8684,30 +8544,20 @@ msgstr "" # type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> #: apt_preferences.5.xml:210 -#, fuzzy, no-wrap -#| msgid "" -#| "Package: *\n" -#| "Pin: origin \"\"\n" -#| "Pin-Priority: 999\n" +#, no-wrap msgid "" "Package: *\n" "Pin: origin \"ftp.de.debian.org\"\n" "Pin-Priority: 999\n" msgstr "" "Package: *\n" -"Pin: origin \"\"\n" +"Pin: origin \"ftp.de.debian.org\"\n" "Pin-Priority: 999\n" # type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:214 #, fuzzy -#| msgid "" -#| "A note of caution: the keyword used here is \"<literal>origin</literal>" -#| "\". This should not be confused with the Origin of a distribution as " -#| "specified in a <filename>Release</filename> file. What follows the " -#| "\"Origin:\" tag in a <filename>Release</filename> file is not an Internet " -#| "address but an author or vendor name, such as \"Debian\" or \"Ximian\"." msgid "" "This should <emphasis>not</emphasis> be confused with the Origin of a " "distribution as specified in a <filename>Release</filename> file. What " @@ -8744,15 +8594,12 @@ msgstr "" "Package: *\n" "Pin: release a=unstable\n" "Pin-Priority: 50\n" +"\n" # type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:228 #, fuzzy -#| msgid "" -#| "The following record assigns a high priority to all package versions " -#| "belonging to any distribution whose Codename is \"<literal>squeeze</" -#| "literal>\"." msgid "" "The following record assigns a high priority to all package versions " "belonging to any distribution whose Codename is \"<literal>&testing-codename;" @@ -8764,18 +8611,14 @@ msgstr "" # type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> #: apt_preferences.5.xml:232 -#, fuzzy, no-wrap -#| msgid "" -#| "Package: *\n" -#| "Pin: release n=squeeze\n" -#| "Pin-Priority: 900\n" +#, no-wrap msgid "" "Package: *\n" "Pin: release n=&testing-codename;\n" "Pin-Priority: 900\n" msgstr "" "Package: *\n" -"Pin: release n=squeeze\n" +"Pin: release n=&testing-codename;\n" "Pin-Priority: 900\n" # type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> @@ -8802,6 +8645,7 @@ msgstr "" "Package: *\n" "Pin: release a=stable, v=3.0\n" "Pin-Priority: 500\n" +"\n" # type: Content of: <refentry><refsect1><refsect2><title> #. type: Content of: <refentry><refsect1><refsect2><title> @@ -8903,7 +8747,7 @@ msgid "" "negative integers. They are interpreted as follows (roughly speaking): " "<placeholder type=\"variablelist\" id=\"0\"/>" msgstr "" -"APT è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã§å‰²ã‚Šå½“ã¦ãŸå„ªå…ˆåº¦ (P) ã¯ã€æ£è² ã®æ•´æ•°ã§ãªãã¦ã¯ãªã‚Šã¾ã›ã‚“。ã“" +"APT é¸æŠžãƒ•ã‚¡ã‚¤ãƒ«ã§å‰²ã‚Šå½“ã¦ãŸå„ªå…ˆåº¦ (P) ã¯ã€æ£è² ã®æ•´æ•°ã§ãªãã¦ã¯ãªã‚Šã¾ã›ã‚“。ã“" "れ㯠(ãŠãŠã–ã£ã±ã«ã„ã†ã¨) 以下ã®ã‚ˆã†ã«è§£é‡ˆã•ã‚Œã¾ã™ã€‚<placeholder type=" "\"variablelist\" id=\"0\"/>" @@ -8928,7 +8772,7 @@ msgid "" "For example, suppose the APT preferences file contains the three records " "presented earlier:" msgstr "" -"例ãˆã°ã€APT è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã®ä¸Šã®æ–¹ã«ã€ä»¥ä¸‹ã®ãƒ¬ã‚³ãƒ¼ãƒ‰ãŒæ›¸ã‹ã‚Œã¦ã„ã‚‹ã¨ä»®å®šã—ã¦ã" +"例ãˆã°ã€APT é¸æŠžãƒ•ã‚¡ã‚¤ãƒ«ã®ä¸Šã®æ–¹ã«ã€ä»¥ä¸‹ã®ãƒ¬ã‚³ãƒ¼ãƒ‰ãŒæ›¸ã‹ã‚Œã¦ã„ã‚‹ã¨ä»®å®šã—ã¦ã" "ã ã•ã„。" # type: Content of: <refentry><refsect1><refsect2><programlisting> @@ -8959,6 +8803,7 @@ msgstr "" "Package: *\n" "Pin: release unstable\n" "Pin-Priority: 50\n" +"\n" # type: Content of: <refentry><refsect1><refsect2><para> #. type: Content of: <refentry><refsect1><refsect2><para> @@ -9076,7 +8921,6 @@ msgstr "<literal>Archive:</literal> 行や <literal>Suite:</literal> è¡Œ" # type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:375 -#, fuzzy msgid "" "names the archive to which all the packages in the directory tree belong. " "For example, the line \"Archive: stable\" or \"Suite: stable\" specifies " @@ -9086,10 +8930,10 @@ msgid "" "the line:" msgstr "" "ã“ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªãƒ„リーã«å±žã™ã‚‹å…¨ãƒ‘ッケージã®ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–åã§ã™ã€‚例ãˆ" -"ã°ã€\"Archive: stable\" ã¨ã„ã†è¡Œã¯ã€<filename>Release</filename> ファイルã®è¦ª" -"ディレクトリツリー以下ã«ã‚る全パッケージãŒã€<literal>stable</literal> アーカ" -"イブã ã¨æŒ‡å®šã—ã¾ã™ã€‚APT è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã§ã“ã®å€¤ã‚’指定ã™ã‚‹ã«ã¯ã€ä»¥ä¸‹ã®è¡ŒãŒå¿…è¦ã«" -"ãªã‚Šã¾ã™ã€‚" +"ã°ã€\"Archive: stable\" ã‚„ \"Suite: stable\" ã¨ã„ã†è¡Œã¯ã€<filename>Release</" +"filename> ファイルã®è¦ªãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªãƒ„リー以下ã«ã‚る全パッケージãŒã€" +"<literal>stable</literal> アーカイブã ã¨æŒ‡å®šã—ã¾ã™ã€‚APT é¸æŠžãƒ•ã‚¡ã‚¤ãƒ«ã§ã“ã®å€¤" +"を指定ã™ã‚‹ã«ã¯ã€ä»¥ä¸‹ã®è¡ŒãŒå¿…è¦ã«ãªã‚Šã¾ã™ã€‚" # type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> @@ -9115,19 +8959,18 @@ msgid "" "<literal>&testing-codename;</literal>. Specifying this value in the APT " "preferences file would require the line:" msgstr "" -"ã“ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªãƒ„リーã«å±žã™ã‚‹å…¨ãƒ‘ッケージã®ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–åã§ã™ã€‚例ãˆ" -"ã°ã€\"Archive: stable\" ã¨ã„ã†è¡Œã¯ã€<filename>Release</filename> ファイルã®è¦ª" -"ディレクトリツリー以下ã«ã‚る全パッケージãŒã€<literal>stable</literal> アーカ" -"イブã ã¨æŒ‡å®šã—ã¾ã™ã€‚APT è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã§ã“ã®å€¤ã‚’指定ã™ã‚‹ã«ã¯ã€ä»¥ä¸‹ã®è¡ŒãŒå¿…è¦ã«" -"ãªã‚Šã¾ã™ã€‚" +"ã“ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªãƒ„リーã«å±žã™ã‚‹å…¨ãƒ‘ッケージã®ã‚³ãƒ¼ãƒ‰åã§ã™ã€‚例ãˆ" +"ã°ã€\"Codename: squeeze\" ã¨ã„ã†è¡Œã¯ã€<filename>Release</filename> ファイルã®" +"親ディレクトリツリー以下ã«ã‚る全パッケージãŒã€<literal>squeeze</literal> ã¨å" +"å‰ã®ã¤ã„ãŸãƒãƒ¼ã‚¸ãƒ§ãƒ³ã§ã‚ã‚‹ã¨æŒ‡å®šã—ã¾ã™ã€‚APT é¸æŠžãƒ•ã‚¡ã‚¤ãƒ«ã§ã“ã®å€¤ã‚’指定ã™ã‚‹ã«" +"ã¯ã€ä»¥ä¸‹ã®è¡ŒãŒå¿…è¦ã«ãªã‚Šã¾ã™ã€‚" # type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> #: apt_preferences.5.xml:401 -#, fuzzy, no-wrap -#| msgid "Pin: release a=stable\n" +#, no-wrap msgid "Pin: release n=&testing-codename;\n" -msgstr "Pin: release a=stable\n" +msgstr "Pin: release n=&testing-codename;\n" # type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> @@ -9142,7 +8985,7 @@ msgstr "" "リリースãƒãƒ¼ã‚¸ãƒ§ãƒ³åã§ã™ã€‚例ãˆã°ã€ã“ã®ãƒ„リーã®ãƒ‘ッケージãŒã€GNU/Linux リリー" "スãƒãƒ¼ã‚¸ãƒ§ãƒ³ 3.0 ã«å±žã™ã‚‹ã¨ã—ã¾ã™ã€‚通常 <literal>testing</literal> ディストリ" "ビューションや <literal>unstable</literal> ディストリビューションã«ã¯ã€ã¾ã リ" -"リースã•ã‚Œã¦ã„ãªã„ã®ã§ã€ãƒãƒ¼ã‚¸ãƒ§ãƒ³ç•ªå·ãŒä»˜ãã¾ã›ã‚“。APT è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã§ã“れを" +"リースã•ã‚Œã¦ã„ãªã„ã®ã§ã€ãƒãƒ¼ã‚¸ãƒ§ãƒ³ç•ªå·ãŒä»˜ãã¾ã›ã‚“。APT é¸æŠžãƒ•ã‚¡ã‚¤ãƒ«ã§ã“れを" "指定ã™ã‚‹ã«ã¯ã€ä»¥ä¸‹ã®è¡Œã®ã„ãšã‚Œã‹ãŒå¿…è¦ã«ãªã‚Šã¾ã™ã€‚" # type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> @@ -9157,6 +9000,7 @@ msgstr "" "Pin: release v=3.0\n" "Pin: release a=stable, v=3.0\n" "Pin: release 3.0\n" +"\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:426 @@ -9178,7 +9022,7 @@ msgstr "" "ライセンスコンãƒãƒ¼ãƒãƒ³ãƒˆåã§ã™ã€‚例ãˆã°ã€\"Component: main\" ã¨ã„ã†è¡Œã¯ã€ã“ã®" "ディレクトリ以下ã®å…¨ãƒ•ã‚¡ã‚¤ãƒ«ãŒã€<literal>main</literal> コンãƒãƒ¼ãƒãƒ³ãƒˆ " "(Debian フリーソフトウェアガイドラインã®å…ƒã§ãƒ©ã‚¤ã‚»ãƒ³ã‚¹ã•ã‚Œã¦ã„ã‚‹) ã§ã‚ã‚‹ã“ã¨" -"を表ã—ã¾ã™ã€‚APT è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã§ã“ã®ã‚³ãƒ³ãƒãƒ¼ãƒãƒ³ãƒˆã‚’指定ã™ã‚‹ã«ã¯ã€ä»¥ä¸‹ã®è¡ŒãŒå¿…" +"を表ã—ã¾ã™ã€‚APT é¸æŠžãƒ•ã‚¡ã‚¤ãƒ«ã§ã“ã®ã‚³ãƒ³ãƒãƒ¼ãƒãƒ³ãƒˆã‚’指定ã™ã‚‹ã«ã¯ã€ä»¥ä¸‹ã®è¡ŒãŒå¿…" "è¦ã«ãªã‚Šã¾ã™ã€‚" # type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> @@ -9203,7 +9047,7 @@ msgid "" "the line:" msgstr "" "<filename>Release</filename> ファイルã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªãƒ„リーã«ã‚るパッケージã®æ" -"供者åã§ã™ã€‚ã»ã¨ã‚“ã©å…±é€šã§ã€<literal>Debian</literal> ã§ã™ã€‚APT è¨å®šãƒ•ã‚¡ã‚¤ãƒ«" +"供者åã§ã™ã€‚ã»ã¨ã‚“ã©å…±é€šã§ã€<literal>Debian</literal> ã§ã™ã€‚APT é¸æŠžãƒ•ã‚¡ã‚¤ãƒ«" "ã§ã“ã®æ供者を指定ã™ã‚‹ã«ã¯ã€ä»¥ä¸‹ã®è¡ŒãŒå¿…è¦ã«ãªã‚Šã¾ã™ã€‚" # type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> @@ -9211,7 +9055,9 @@ msgstr "" #: apt_preferences.5.xml:449 #, no-wrap msgid "Pin: release o=Debian\n" -msgstr "Pin: release o=Debian\n" +msgstr "" +"Pin: release o=Debian\n" +"\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:455 @@ -9228,7 +9074,7 @@ msgid "" "the line:" msgstr "" "<filename>Release</filename> ファイルã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªãƒ„リーã«ã‚るパッケージã®ãƒ©" -"ベルåã§ã™ã€‚ã»ã¨ã‚“ã©å…±é€šã§ <literal>Debian</literal> ã§ã™ã€‚APT è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã§" +"ベルåã§ã™ã€‚ã»ã¨ã‚“ã©å…±é€šã§ <literal>Debian</literal> ã§ã™ã€‚APT é¸æŠžãƒ•ã‚¡ã‚¤ãƒ«ã§" "ã“ã®ãƒ©ãƒ™ãƒ«ã‚’指定ã™ã‚‹ã«ã¯ã€ä»¥ä¸‹ã®è¡ŒãŒå¿…è¦ã«ãªã‚Šã¾ã™ã€‚" # type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> @@ -9236,7 +9082,9 @@ msgstr "" #: apt_preferences.5.xml:462 #, no-wrap msgid "Pin: release l=Debian\n" -msgstr "Pin: release l=Debian\n" +msgstr "" +"Pin: release l=Debian\n" +"\n" # type: Content of: <refentry><refsect1><refsect2><para> #. type: Content of: <refentry><refsect1><refsect2><para> @@ -9254,12 +9102,13 @@ msgid "" "\"0\"/>" msgstr "" "<filename>Release</filename> ファイルã¯ã€é€šå¸¸ <filename>.../dists/" -"<replaceable>dist-name</replaceable></filename> ã«ã‚ã‚Šã¾ã™ã€‚例ãˆã°ã€ " -"<filename>.../dists/stable/Release</filename>, <filename>.../dists/woody/" -"Release</filename> ã§ã™ã€‚ã“ã‚Œã¯ã€ã“ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªä»¥ä¸‹ã«ã‚ã‚‹<emphasis>å…¨</" -"emphasis>パッケージã«é©ç”¨ã™ã‚‹ã€è¤‡æ•°è¡Œã®ãƒ¬ã‚³ãƒ¼ãƒ‰ 1 ã¤ã‹ã‚‰æˆã£ã¦ã„ã¾ã™ã€‚" -"<filename>Packages</filename> ã¨é•ã„ <filename>Release</filename> ファイル" -"ã¯ã€ã»ã¨ã‚“ã©ã®è¡ŒãŒ APT 優先度ã®è¨å®šã«é–¢é€£ã—ã¾ã™ã€‚" +"<replaceable>dist-name</replaceable></filename> ディレクトリã«ã‚ã‚Šã¾ã™ã€‚例ãˆ" +"ã°ã€ <filename>.../dists/stable/Release</filename>, <filename>.../dists/" +"woody/Release</filename> ã§ã™ã€‚ã“ã‚Œã¯ã€ã“ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªä»¥ä¸‹ã«ã‚ã‚‹<emphasis>å…¨" +"</emphasis>パッケージã«é©ç”¨ã™ã‚‹ã€è¤‡æ•°è¡Œã®ãƒ¬ã‚³ãƒ¼ãƒ‰ 1 ã¤ã‹ã‚‰æˆã£ã¦ã„ã¾ã™ã€‚" +"<filename>Packages</filename> ファイルã¨é•ã„ <filename>Release</filename> " +"ファイルã¯ã€ä»¥ä¸‹ã®ã‚ˆã†ã«ã»ã¨ã‚“ã©ã®è¡ŒãŒ APT 優先度ã®è¨å®šã«é–¢é€£ã—ã¾ã™ã€‚" +"<placeholder type=\"variablelist\" id=\"0\"/>" # type: Content of: <refentry><refsect1><refsect2><para> #. type: Content of: <refentry><refsect1><refsect2><para> @@ -9301,7 +9150,7 @@ msgid "" "more lines beginning with the word <literal>Explanation:</literal>. This " "provides a place for comments." msgstr "" -"APT è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã®ãƒ¬ã‚³ãƒ¼ãƒ‰ã”ã¨ã«ã€ä»»æ„㧠<literal>Explanation:</literal> ã§å§‹" +"APT é¸æŠžãƒ•ã‚¡ã‚¤ãƒ«ã®ãƒ¬ã‚³ãƒ¼ãƒ‰ã”ã¨ã«ã€ä»»æ„㧠<literal>Explanation:</literal> ã§å§‹" "ã¾ã‚‹è¡Œã‚’æŒã¦ã¾ã™ã€‚ã“ã‚Œã¯ã€ã‚³ãƒ¡ãƒ³ãƒˆç”¨ã®å ´æ‰€ã‚’確ä¿ã—ã¾ã™ã€‚" # type: Content of: <refentry><refsect1><refsect2><title> @@ -9334,11 +9183,11 @@ msgstr "" "Package: *\n" "Pin: release o=Debian\n" "Pin-Priority: -10\n" +"\n" # type: Content of: <refentry><refsect1><refsect2><para> #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:495 -#, fuzzy msgid "" "The following APT preferences file will cause APT to assign a priority " "higher than the default (500) to all package versions belonging to a " @@ -9346,10 +9195,11 @@ msgid "" "package versions belonging to other <literal>Debian</literal> " "distributions. <placeholder type=\"programlisting\" id=\"0\"/>" msgstr "" -"以下㮠APT è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã¯ã€<literal>stable</literal> ディストリビューションã«" +"以下㮠APT é¸æŠžãƒ•ã‚¡ã‚¤ãƒ«ã¯ã€<literal>stable</literal> ディストリビューションã«" "属ã™ã‚‹å…¨ã¦ã®ãƒ‘ッケージã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã«ã€ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆ (500) より高ã„優先度を割り当" "ã¦ã€ä»–ã® <literal>Debian</literal> ディストリビューションã®ãƒ‘ッケージã®ãƒãƒ¼" "ジョンã«ã¯ã€ä½Žãã¦ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã§ããªã„よã†ãªå„ªå…ˆåº¦ã‚’割り当ã¦ã¾ã™ã€‚" +"<placeholder type=\"programlisting\" id=\"0\"/>" # type: Content of: <refentry><refsect1><refsect2><para><programlisting> #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> @@ -9368,15 +9218,15 @@ msgstr "" # type: Content of: <refentry><refsect1><refsect2><para> #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:513 -#, fuzzy msgid "" "With a suitable &sources-list; file and the above preferences file, any of " "the following commands will cause APT to upgrade to the latest " "<literal>stable</literal> version(s). <placeholder type=\"programlisting\" " "id=\"0\"/>" msgstr "" -"é©åˆ‡ãª &sources-list; ファイルã¨ä¸Šè¨˜ã®è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã«ã‚ˆã‚Šã€ä»¥ä¸‹ã®ã‚³ãƒžãƒ³ãƒ‰ã§æœ€" +"é©åˆ‡ãª &sources-list; ファイルã¨ä¸Šè¨˜ã®é¸æŠžãƒ•ã‚¡ã‚¤ãƒ«ã«ã‚ˆã‚Šã€ä»¥ä¸‹ã®ã‚³ãƒžãƒ³ãƒ‰ã§æœ€" "æ–°ã® <literal>stable</literal> ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã«ã‚¢ãƒƒãƒ—グレードã§ãã¾ã™ã€‚" +"<placeholder type=\"programlisting\" id=\"0\"/>" # type: Content of: <refentry><refsect1><refsect2><para><programlisting> #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> @@ -9388,7 +9238,6 @@ msgstr "apt-get install <replaceable>package</replaceable>/testing\n" # type: Content of: <refentry><refsect1><refsect2><para> #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:524 -#, fuzzy msgid "" "The following command will cause APT to upgrade the specified package to the " "latest version from the <literal>testing</literal> distribution; the package " @@ -9397,7 +9246,8 @@ msgid "" msgstr "" "以下ã®ã‚³ãƒžãƒ³ãƒ‰ã§ã€æŒ‡å®šã—ãŸãƒ‘ッケージを <literal>testing</literal> ディストリ" "ビューションã®æœ€æ–°ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã«ã‚¢ãƒƒãƒ—グレードã—ã¾ã™ã€‚ã“ã®ãƒ‘ッケージã¯ã€å†åº¦ã“" -"ã®ã‚³ãƒžãƒ³ãƒ‰ã‚’発行ã—ãªã„ã¨ã‚¢ãƒƒãƒ—グレードã•ã‚Œã¾ã›ã‚“。" +"ã®ã‚³ãƒžãƒ³ãƒ‰ã‚’発行ã—ãªã„ã¨ã‚¢ãƒƒãƒ—グレードã•ã‚Œã¾ã›ã‚“。<placeholder type=" +"\"programlisting\" id=\"0\"/>" # type: Content of: <refentry><refsect1><refsect2><title> #. type: Content of: <refentry><refsect1><refsect2><title> @@ -9437,7 +9287,6 @@ msgstr "" # type: Content of: <refentry><refsect1><refsect2><para> #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:538 -#, fuzzy msgid "" "The following APT preferences file will cause APT to assign a high priority " "to package versions from the <literal>testing</literal> distribution, a " @@ -9446,24 +9295,25 @@ msgid "" "other <literal>Debian</literal> distributions. <placeholder type=" "\"programlisting\" id=\"0\"/>" msgstr "" -"以下㮠APT è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã¯ã€<literal>testing</literal> ディストリビューション" +"以下㮠APT é¸æŠžãƒ•ã‚¡ã‚¤ãƒ«ã¯ã€<literal>testing</literal> ディストリビューション" "ã®ãƒ‘ッケージã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã«é«˜ã„優先度を割り当ã¦ã€<literal>unstable</literal> " "ディストリビューションã®ãƒ‘ッケージã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã«ã¯ä½Žã„優先度を割り当ã¦ã¾ã™ã€‚" "ã¾ãŸä»–ã® <literal>Debian</literal> ディストリビューションã®ãƒ‘ッケージã®ãƒãƒ¼" "ジョンã«ã¯ã€ä½Žãã¦ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã§ããªã„よã†ãªå„ªå…ˆåº¦ã‚’割り当ã¦ã¾ã™ã€‚" +"<placeholder type=\"programlisting\" id=\"0\"/>" # type: Content of: <refentry><refsect1><refsect2><para> #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:559 -#, fuzzy msgid "" "With a suitable &sources-list; file and the above preferences file, any of " "the following commands will cause APT to upgrade to the latest " "<literal>testing</literal> version(s). <placeholder type=\"programlisting\" " "id=\"0\"/>" msgstr "" -"é©åˆ‡ãª &sources-list; ファイルã¨ä¸Šè¨˜ã®è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã«ã‚ˆã‚Šã€ä»¥ä¸‹ã®ã‚³ãƒžãƒ³ãƒ‰ã§æœ€" +"é©åˆ‡ãª &sources-list; ファイルã¨ä¸Šè¨˜ã®é¸æŠžãƒ•ã‚¡ã‚¤ãƒ«ã«ã‚ˆã‚Šã€ä»¥ä¸‹ã®ã‚³ãƒžãƒ³ãƒ‰ã§æœ€" "æ–°ã® <literal>testing</literal> ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã«ã‚¢ãƒƒãƒ—グレードã§ãã¾ã™ã€‚" +"<placeholder type=\"programlisting\" id=\"0\"/>" # type: Content of: <refentry><refsect1><refsect2><para><programlisting> #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> @@ -9475,7 +9325,6 @@ msgstr "apt-get install <replaceable>package</replaceable>/unstable\n" # type: Content of: <refentry><refsect1><refsect2><para> #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:570 -#, fuzzy msgid "" "The following command will cause APT to upgrade the specified package to the " "latest version from the <literal>unstable</literal> distribution. " @@ -9489,33 +9338,19 @@ msgstr "" "ビューションã®æœ€æ–°ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã«ã‚¢ãƒƒãƒ—グレードã—ã¾ã™ã€‚ãれ以é™ã€<command>apt-" "get upgrade</command> 㯠<literal>testing</literal> ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®ãƒ‘ッケージãŒ" "æ›´æ–°ã•ã‚Œã¦ã„れ㰠<literal>testing</literal> ã®æœ€æ–°ç‰ˆã«ã€<literal>unstable</" -"literal> ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®ãƒ‘ッケージãŒæ›´æ–°ã•ã‚Œã¦ã„れ㰠<literal>unstable</literal>" -"ã®æœ€æ–°ç‰ˆã«ã‚¢ãƒƒãƒ—グレードã—ã¾ã™ã€‚" +"literal> ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®ãƒ‘ッケージãŒæ›´æ–°ã•ã‚Œã¦ã„れ㰠<literal>unstable</" +"literal> ã®æœ€æ–°ç‰ˆã«ã‚¢ãƒƒãƒ—グレードã—ã¾ã™ã€‚<placeholder type=\"programlisting" +"\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:586 msgid "Tracking the evolution of a codename release" -msgstr "" +msgstr "コードåリリースã®é€²åŒ–ã®è¿½è·¡" # type: Content of: <refentry><refsect1><refsect2><para><programlisting> #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:600 -#, fuzzy, no-wrap -#| msgid "" -#| "Explanation: Uninstall or do not install any Debian-originated package versions\n" -#| "Explanation: other than those in the distribution codenamed with squeeze or sid\n" -#| "Package: *\n" -#| "Pin: release n=squeeze\n" -#| "Pin-Priority: 900\n" -#| "\n" -#| "Explanation: Debian unstable is always codenamed with sid\n" -#| "Package: *\n" -#| "Pin: release a=sid\n" -#| "Pin-Priority: 800\n" -#| "\n" -#| "Package: *\n" -#| "Pin: release o=Debian\n" -#| "Pin-Priority: -10\n" +#, no-wrap msgid "" "Explanation: Uninstall or do not install any Debian-originated package versions\n" "Explanation: other than those in the distribution codenamed with &testing-codename; or sid\n" @@ -9533,14 +9368,14 @@ msgid "" "Pin-Priority: -10\n" msgstr "" "Explanation: Uninstall or do not install any Debian-originated package versions\n" -"Explanation: other than those in the distribution codenamed with squeeze or sid\n" +"Explanation: other than those in the distribution codenamed with &testing-codename; or sid\n" "Package: *\n" -"Pin: release n=squeeze\n" +"Pin: release n=&testing-codename;\n" "Pin-Priority: 900\n" "\n" "Explanation: Debian unstable is always codenamed with sid\n" "Package: *\n" -"Pin: release a=sid\n" +"Pin: release n=sid\n" "Pin-Priority: 800\n" "\n" "Package: *\n" @@ -9561,19 +9396,27 @@ msgid "" "notwithstanding the codename changes you should use the example " "configurations above. <placeholder type=\"programlisting\" id=\"0\"/>" msgstr "" +"以下㮠APT é¸æŠžãƒ•ã‚¡ã‚¤ãƒ«ã¯ã€æŒ‡å®šã—ãŸã‚³ãƒ¼ãƒ‰ãƒãƒ¼ãƒ ã®ãƒ‡ã‚£ã‚¹ãƒˆãƒªãƒ“ューションã«å±žã™" +"ã‚‹å…¨ã¦ã®ãƒ‘ッケージã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã«ã€ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆ (500) より高ã„優先度を割り当ã¦ã€" +"ä»–ã® <literal>Debian</literal> ディストリビューションã€ã‚³ãƒ¼ãƒ‰åã€ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã®" +"パッケージã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã«ã¯ã€ä½Žãã¦ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã§ããªã„よã†ãªå„ªå…ˆåº¦ã‚’割り当ã¦" +"ã¾ã™ã€‚ã“ã® APT é¸æŠžãƒ•ã‚¡ã‚¤ãƒ«ã«ã‚ˆã‚Šã€APT 㯠<literal>testing</literal> アーカイ" +"ブã‹ã‚‰ã€<literal>stable</literal> や最新㮠<literal>oldstable</literal> ã¸ç§»" +"è¡Œã§ãã¾ã™ã€‚コードåã®å¤‰æ›´ã«é–¢ä¿‚ãªã <literal>testing</literal> を追跡ã—ãŸã„" +"å ´åˆã¯ã€ä¸Šè¨˜ã®è¨å®šä¾‹ã‚’使用ã™ã‚‹ã¹ãã§ã™ã€‚<placeholder type=\"programlisting\" " +"id=\"0\"/>" -# type: Content of: <refentry><refsect1><refsect2><para> #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:617 -#, fuzzy msgid "" "With a suitable &sources-list; file and the above preferences file, any of " "the following commands will cause APT to upgrade to the latest version(s) in " "the release codenamed with <literal>&testing-codename;</literal>. " "<placeholder type=\"programlisting\" id=\"0\"/>" msgstr "" -"é©åˆ‡ãª &sources-list; ファイルã¨ä¸Šè¨˜ã®è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã«ã‚ˆã‚Šã€ä»¥ä¸‹ã®ã‚³ãƒžãƒ³ãƒ‰ã§æœ€" -"æ–°ã® <literal>stable</literal> ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã«ã‚¢ãƒƒãƒ—グレードã§ãã¾ã™ã€‚" +"é©åˆ‡ãª &sources-list; ファイルã¨ä¸Šè¨˜ã®é¸æŠžãƒ•ã‚¡ã‚¤ãƒ«ã«ã‚ˆã‚Šã€ä»¥ä¸‹ã®ã‚³ãƒžãƒ³ãƒ‰ã§ã€" +"リリースコードå㌠<literal>&testing-codename;</literal> ã§ã‚る最新ãƒãƒ¼ã‚¸ãƒ§ãƒ³" +"ã«ã‚¢ãƒƒãƒ—グレードã§ãã¾ã™ã€‚<placeholder type=\"programlisting\" id=\"0\"/>" # type: Content of: <refentry><refsect1><refsect2><para><programlisting> #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> @@ -9595,20 +9438,18 @@ msgid "" "literal> version if that is more recent than the installed version. " "<placeholder type=\"programlisting\" id=\"0\"/>" msgstr "" -"以下ã®ã‚³ãƒžãƒ³ãƒ‰ã§ã€æŒ‡å®šã—ãŸãƒ‘ッケージを <literal>unstable</literal> ディストリ" +"以下ã®ã‚³ãƒžãƒ³ãƒ‰ã§ã€æŒ‡å®šã—ãŸãƒ‘ッケージを <literal>sid</literal> ディストリ" "ビューションã®æœ€æ–°ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã«ã‚¢ãƒƒãƒ—グレードã—ã¾ã™ã€‚ãれ以é™ã€<command>apt-" -"get upgrade</command> 㯠<literal>testing</literal> ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®ãƒ‘ッケージãŒ" -"æ›´æ–°ã•ã‚Œã¦ã„れ㰠<literal>testing</literal> ã®æœ€æ–°ç‰ˆã«ã€<literal>unstable</" -"literal> ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®ãƒ‘ッケージãŒæ›´æ–°ã•ã‚Œã¦ã„れ㰠<literal>unstable</literal>" -"ã®æœ€æ–°ç‰ˆã«ã‚¢ãƒƒãƒ—グレードã—ã¾ã™ã€‚" +"get upgrade</command> 㯠<literal>squeeze</literal> ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®ãƒ‘ッケージãŒ" +"æ›´æ–°ã•ã‚Œã¦ã„れ㰠<literal>squeeze</literal> ã®æœ€æ–°ç‰ˆã«ã€<literal>sid</" +"literal> ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®ãƒ‘ッケージãŒæ›´æ–°ã•ã‚Œã¦ã„れ㰠<literal>sid</literal>ã®æœ€" +"新版ã«ã‚¢ãƒƒãƒ—グレードã—ã¾ã™ã€‚<placeholder type=\"programlisting\" id=\"0\"/>" # type: Content of: <refentry><refnamediv><refname> #. type: Content of: <refentry><refsect1><variablelist> #: apt_preferences.5.xml:646 -#, fuzzy -#| msgid "apt_preferences" msgid "&file-preferences;" -msgstr "apt_preferences" +msgstr "&file-preferences;" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> @@ -9631,12 +9472,6 @@ msgstr "APT 用パッケージリソースリスト" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:34 -#, fuzzy -#| msgid "" -#| "The package resource list is used to locate archives of the package " -#| "distribution system in use on the system. At this time, this manual page " -#| "documents only the packaging system used by the Debian GNU/Linux system. " -#| "This control file is located in <filename>/etc/apt/sources.list</filename>" msgid "" "The package resource list is used to locate archives of the package " "distribution system in use on the system. At this time, this manual page " @@ -9651,16 +9486,6 @@ msgstr "" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:39 -#, fuzzy -#| msgid "" -#| "The source list is designed to support any number of active sources and a " -#| "variety of source media. The file lists one source per line, with the " -#| "most preferred source listed first. The format of each line is: " -#| "<literal>type uri args</literal> The first item, <literal>type</literal> " -#| "determines the format for <literal>args</literal> <literal>uri</literal> " -#| "is a Universal Resource Identifier (URI), which is a superset of the more " -#| "specific and well-known Universal Resource Locator, or URL. The rest of " -#| "the line can be marked as a comment by using a #." msgid "" "The source list is designed to support any number of active sources and a " "variety of source media. The file lists one source per line, with the most " @@ -9676,8 +9501,8 @@ msgstr "" "フォーマットã¯ã€<literal>タイプ uri 引数</literal> ã¨ãªã‚Šã¾ã™ã€‚å…ˆé ã® " "<literal>タイプ</literal> ã§ã€<literal>引数</literal> ã®ãƒ•ã‚©ãƒ¼ãƒžãƒƒãƒˆã‚’決定ã—" "ã¾ã™ã€‚<literal>uri</literal> 㯠Universal Resource Identifier (URI) ã§ã€ã‚ˆã" -"知られ㟠URL ã®ã‚¹ãƒ¼ãƒ‘ーセットã§ã™ã€‚è¡Œã®æ®‹ã‚Šã« # を付ã‘ã¦ã€ã‚³ãƒ¡ãƒ³ãƒˆã«ã§ãã¾" -"ã™ã€‚" +"知られ㟠Universal Resource Locator (URL) ã®ã‚¹ãƒ¼ãƒ‘ーセットã§ã™ã€‚è¡Œã®æ®‹ã‚Šã« # " +"を付ã‘ã¦ã€ã‚³ãƒ¡ãƒ³ãƒˆã«ã§ãã¾ã™ã€‚" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><title> @@ -9688,7 +9513,6 @@ msgstr "sources.list.d" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:51 -#, fuzzy msgid "" "The <filename>/etc/apt/sources.list.d</filename> directory provides a way to " "add sources.list entries in separate files. The format is the same as for " @@ -9697,10 +9521,12 @@ msgid "" "digits (0-9), underscore (_), hyphen (-) and period (.) characters. " "Otherwise they will be silently ignored." msgstr "" -"<filename>/etc/apt/sources.list.d</filename> ディレクトリã«ãƒ•ã‚¡ã‚¤ãƒ«å㌠" -"<literal>.list</literal> ã§çµ‚ã‚る個別ファイルを置ã„ã¦ãŠãã¨ã€sources.list エ" -"ントリã«è¿½åŠ ã§ãã¾ã™ã€‚フォーマットã¯ã€é€šå¸¸ã® <filename>sources.list</" -"filename> ファイルã¨åŒã˜ã§ã™ã€‚" +"<filename>/etc/apt/sources.list.d</filename> ディレクトリã¯ã€å€‹åˆ¥ãƒ•ã‚¡ã‚¤ãƒ«ã§è¿½" +"åŠ source.list エントリをæä¾›ã—ã¾ã™ã€‚フォーマットã¯ã€é€šå¸¸ã® " +"<filename>sources.list</filename> ファイルã¨åŒã˜ã§ã™ã€‚ファイルåã¯ã€" +"<filename>.list</filename> ã§çµ‚ã‚ã‚‹å¿…è¦ãŒã‚ã‚Šã€æ–‡å— (a-z 㨠A-Z)ã€æ•°å— " +"(0-9)ã€ã‚¢ãƒ³ãƒ€ãƒ¼ã‚¹ã‚³ã‚¢ (_)ã€ãƒã‚¤ãƒ•ãƒ³ (-)ã€ãƒ”リオド (.) ã®ã¿ã‚’å«ã‚“ã§ã„ãªã‘ã‚Œã°" +"ãªã‚Šã¾ã›ã‚“。ãã†ã§ãªã‘ã‚Œã°ã€é»™ã£ã¦ç„¡è¦–ã—ã¾ã™ã€‚" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><title> @@ -9711,17 +9537,6 @@ msgstr "deb タイプ㨠deb-src タイプ" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:61 -#, fuzzy -#| msgid "" -#| "The <literal>deb</literal> type describes a typical two-level Debian " -#| "archive, <filename>distribution/component</filename>. Typically, " -#| "<literal>distribution</literal> is generally one of <literal>stable</" -#| "literal> <literal>unstable</literal> or <literal>testing</literal> while " -#| "component is one of <literal>main</literal> <literal>contrib</literal> " -#| "<literal>non-free</literal> or <literal>non-us</literal> The <literal>deb-" -#| "src</literal> type describes a debian distribution's source code in the " -#| "same form as the <literal>deb</literal> type. A <literal>deb-src</" -#| "literal> line is required to fetch source indexes." msgid "" "The <literal>deb</literal> type describes a typical two-level Debian " "archive, <filename>distribution/component</filename>. Typically, " @@ -9734,11 +9549,11 @@ msgid "" "is required to fetch source indexes." msgstr "" "<literal>deb</literal> タイプã§ã¯å…¸åž‹çš„㪠2 段階㮠Debian アーカイブ " -"(<filename>distribution/component</filename>) を記述ã—ã¾ã™ã€‚よãã‚るケースã§" -"ã¯ã€<literal>distribution</literal> ã¯é€šå¸¸ <literal>stable</literal> " -"<literal>unstable</literal> <literal>testing</literal> ã®ã©ã‚Œã‹ã€component " -"ã¯ã€<literal>main</literal> <literal>contrib</literal> <literal>non-free</" -"literal> <literal>non-us</literal> ã®ã©ã‚Œã‹ã§ã™ã€‚<literal>deb-src</literal> " +"<filename>distribution/component</filename> を記述ã—ã¾ã™ã€‚よãã‚るケースã§" +"ã¯ã€<literal>distribution</literal> ã¯é€šå¸¸ <literal>stable</literal>, " +"<literal>unstable</literal>, <literal>testing</literal> ã®ã©ã‚Œã‹ã€component " +"ã¯ã€<literal>main</literal>, <literal>contrib</literal>, <literal>non-free</" +"literal>, <literal>non-us</literal> ã®ã©ã‚Œã‹ã§ã™ã€‚<literal>deb-src</literal> " "タイプã§ã¯ã€Debian ディストリビューションã®ã‚½ãƒ¼ã‚¹ã‚³ãƒ¼ãƒ‰ã‚’ã€<literal>deb</" "literal> タイプã¨åŒã˜å½¢å¼ã§è¨˜è¿°ã—ã¾ã™ã€‚<literal>deb-src</literal> è¡Œã¯ã€ã‚½ãƒ¼" "スインデックスをå–å¾—ã™ã‚‹ã®ã«å¿…è¦ã§ã™ã€‚" @@ -9746,10 +9561,6 @@ msgstr "" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:73 -#, fuzzy -#| msgid "" -#| "The format for a <filename>sources.list</filename> entry using the " -#| "<literal>deb</literal> and <literal>deb-src</literal> types are:" msgid "" "The format for a <filename>sources.list</filename> entry using the " "<literal>deb</literal> and <literal>deb-src</literal> types is:" @@ -9767,16 +9578,6 @@ msgstr "deb uri distribution [component1] [component2] [...]" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:78 -#, 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 (/). This is useful for 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. " @@ -9787,8 +9588,8 @@ msgid "" "literal> does not specify an exact path, at least one <literal>component</" "literal> must be present." msgstr "" -"<literal>deb</literal> タイプ㮠URI ã¯ã€APT ãŒæƒ…å ±ã‚’è¦‹ã¤ã‘られるよã†ã«ã€" -"Debian ディストリビューションã®åŸºåº•ã‚’指定ã—ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。" +"<literal>deb</literal> タイプ㮠URI ã¯ã€APT ãŒå¿…è¦ãªæƒ…å ±ã‚’è¦‹ã¤ã‘られるよã†" +"ã«ã€Debian ディストリビューションã®åŸºåº•ã‚’指定ã—ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。" "<literal>distribution</literal> ã«ã¯æ£ç¢ºãªãƒ‘スを指定ã§ãã¾ã™ã€‚ãã®å ´åˆ " "component ã‚’çœç•¥ã—ã€<literal>distribution</literal> ã¯ã‚¹ãƒ©ãƒƒã‚·ãƒ¥ (/) ã§çµ‚ã‚ら" "ãªãã¦ã¯ãªã‚Šã¾ã›ã‚“。ã“れ㯠URL ã§æŒ‡å®šã•ã‚ŒãŸã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã®ã€ç‰¹å®šã®ã‚µãƒ–セクション" @@ -9861,18 +9662,14 @@ msgstr "例:" #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:114 -#, fuzzy, no-wrap -#| msgid "" -#| "deb http://http.us.debian.org/debian stable main contrib non-free\n" -#| "deb http://http.us.debian.org/debian dists/stable-updates/\n" -#| " " +#, no-wrap msgid "" "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n" "deb http://security.debian.org/ &stable-codename;/updates main contrib non-free\n" " " msgstr "" -"deb http://http.us.debian.org/debian stable main contrib non-free\n" -"deb http://http.us.debian.org/debian dists/stable-updates/\n" +"deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n" +"deb http://security.debian.org/ &stable-codename;/updates main contrib non-free\n" " " # type: Content of: <refentry><refsect1><title> @@ -9912,14 +9709,6 @@ msgstr "" # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: sources.list.5.xml:141 -#, fuzzy -#| msgid "" -#| "The http scheme specifies an HTTP server for the archive. If an " -#| "environment variable <envar>http_proxy</envar> is set with the format " -#| "http://server:port/, the proxy server specified in <envar>http_proxy</" -#| "envar> will be used. Users of authenticated HTTP/1.1 proxies may use a " -#| "string of the format http://user:pass@server:port/ Note that this is an " -#| "insecure method of authentication." msgid "" "The http scheme specifies an HTTP server for the archive. If an environment " "variable <envar>http_proxy</envar> is set with the format http://server:" @@ -9931,7 +9720,7 @@ msgstr "" "http スã‚ームã¯ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã¨ã—ã¦ã€HTTP サーãƒã‚’指定ã—ã¾ã™ã€‚環境変数 " "<envar>http_proxy</envar> ãŒã€http://server:port/ ã¨è¨€ã£ãŸå½¢ã§æŒ‡å®šã•ã‚Œã¦ã„ã‚Œ" "ã°ã€<envar>http_proxy</envar> ã§æŒ‡å®šã—ãŸãƒ—ãƒã‚シサーãƒã‚’使用ã—ã¾ã™ã€‚ユーザèª" -"証ãŒå¿…è¦ãª HTTP/1.1 プãƒã‚ã‚·ã®å ´åˆã€http://user:pass@server:port/ ã¨è¨€ã†å½¢ã§" +"証ãŒå¿…è¦ãª HTTP/1.1 プãƒã‚ã‚·ã®å ´åˆã€http://user:pass@server:port/ ã¨ã„ã†å½¢ã§" "指定ã—ã¦ãã ã•ã„。ã“ã®èªè¨¼æ–¹æ³•ã¯å®‰å…¨ã§ã¯ãªã„ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„。" # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> @@ -9948,11 +9737,11 @@ msgid "" msgstr "" "ftp スã‚ームã¯ã€ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã« FTP サーãƒã‚’指定ã—ã¾ã™ã€‚APT ã® FTP ã®æŒ¯ã‚‹èˆžã„" "ã¯ã€é«˜åº¦ã«è¨å®šã§ãã¾ã™ã€‚詳細ã¯ã€&apt-conf; ã®ãƒžãƒ‹ãƒ¥ã‚¢ãƒ«ãƒšãƒ¼ã‚¸ã‚’ã”覧ãã ã•ã„。" -"ftp プãƒã‚ã‚·ã¯ã€<envar>ftp_proxy</envar> 環境変数ã§æŒ‡å®šã™ã‚‹ã“ã¨ã«ã”注æ„ãã ã•" -"ã„。ã“ã®æ–¹æ³•ç”¨ã«ã€ã•ã‚‰ã«ã“ã®æ–¹æ³•ã§ã—ã‹ä½¿ç”¨ã—ãªã„ã®ã«ã€http プãƒã‚シを使用ã™ã‚‹" -"ã“ã¨ãŒã§ãã¾ã™ (http プãƒã‚シサーãƒã¯å¤§æŠµ ftp urlã‚‚ç†è§£ã§ãã¾ã™)。è¨å®šãƒ•ã‚¡ã‚¤" -"ル㧠http を使用ã™ã‚‹éš›ã«ã€ftp プãƒã‚シを使用ã™ã‚‹ã‚ˆã†è¨å®šã—ã¦ã‚ã£ã¦ã‚‚無視ã•ã‚Œ" -"ã¾ã™ã€‚" +"ftp プãƒã‚ã‚·ã¯ã€<envar>ftp_proxy</envar> 環境変数ã§æŒ‡å®šã™ã‚‹ã“ã¨ã«æ³¨æ„ã—ã¦ãã " +"ã•ã„。ã“ã®æ–¹æ³•ç”¨ã«ã€ã•ã‚‰ã«ã“ã®æ–¹æ³•ã§ã—ã‹ä½¿ç”¨ã—ãªã„ã®ã«ã€http プãƒã‚シを使用ã™" +"ã‚‹ã“ã¨ãŒã§ãã¾ã™ (http プãƒã‚シサーãƒã¯å¤§æŠµ ftp urlã‚‚ç†è§£ã§ãã¾ã™)。è¨å®šãƒ•ã‚¡" +"イル㧠http を使用ã™ã‚‹éš›ã«ã€ftp プãƒã‚シを使用ã™ã‚‹ã‚ˆã†è¨å®šã—ã¦ã‚ã£ã¦ã‚‚無視ã•" +"ã‚Œã¾ã™ã€‚" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: sources.list.5.xml:161 @@ -10000,7 +9789,7 @@ msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: sources.list.5.xml:178 msgid "more recognizable URI types" -msgstr "" +msgstr "ã•ã‚‰ã«èªè˜ã§ãã‚‹ URI タイプ" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: sources.list.5.xml:180 @@ -10085,34 +9874,23 @@ msgstr "deb http://archive.debian.org/debian-archive hamm main" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:208 -#, fuzzy -#| msgid "" -#| "Uses FTP to access the archive at ftp.debian.org, under the debian " -#| "directory, and uses only the stable/contrib area." msgid "" "Uses FTP to access the archive at ftp.debian.org, under the debian " "directory, and uses only the &stable-codename;/contrib area." msgstr "" "ftp.debian.org ã®ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã« FTP アクセスã—ã€debian ディレクトリ以下㮠" -"stable/contrib ã®ã¿ã‚’使用ã—ã¾ã™ã€‚" +"&stable-codename;/contrib ã®ã¿ã‚’使用ã—ã¾ã™ã€‚" # type: <example></example> #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:210 -#, fuzzy, no-wrap -#| msgid "deb ftp://ftp.debian.org/debian stable contrib" +#, no-wrap msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib" -msgstr "deb ftp://ftp.debian.org/debian stable contrib" +msgstr "deb ftp://ftp.debian.org/debian &stable-codename; contrib" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:212 -#, fuzzy -#| msgid "" -#| "Uses FTP to access the archive at ftp.debian.org, under the debian " -#| "directory, and uses only the unstable/contrib area. If this line appears " -#| "as well as the one in the previous example in <filename>sources.list</" -#| "filename>. a single FTP session will be used for both resource lines." msgid "" "Uses FTP to access the archive at ftp.debian.org, under the debian " "directory, and uses only the unstable/contrib area. If this line appears as " @@ -10120,9 +9898,9 @@ msgid "" "a single FTP session will be used for both resource lines." msgstr "" "ftp.debian.org ã®ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã« FTP アクセスã—ã€debian ディレクトリ以下㮠" -"unstable/contrib を使用ã—ã¾ã™ã€‚<filename>sources.list</filename> ã«ä¸Šè¨˜ã‚µãƒ³ãƒ—" -"ルã¨ä¸€ç·’ã«æŒ‡å®šã•ã‚ŒãŸå ´åˆã€ä¸¡æ–¹ã®ãƒªã‚½ãƒ¼ã‚¹è¡Œã«å¯¾å¿œã™ã‚‹ FTP セッションã¯ã²ã¨ã¤ã " -"ã‘ã«ãªã‚Šã¾ã™ã€‚" +"unstable/contrib ã®ã¿ã‚’使用ã—ã¾ã™ã€‚<filename>sources.list</filename> ã«ä¸Šè¨˜ã‚µ" +"ンプルã¨ä¸€ç·’ã«æŒ‡å®šã•ã‚ŒãŸå ´åˆã€ä¸¡æ–¹ã®ãƒªã‚½ãƒ¼ã‚¹è¡Œã«å¯¾å¿œã™ã‚‹ FTP セッションã¯ã²ã¨" +"ã¤ã ã‘ã«ãªã‚Šã¾ã™ã€‚" # type: <example></example> #. type: Content of: <refentry><refsect1><literallayout> @@ -10181,7 +9959,7 @@ msgstr "&apt-cache; &apt-conf;" #. type: <title></title> #: guide.sgml:4 msgid "APT User's Guide" -msgstr "" +msgstr "APT ユーザガイド" # type: <author></author> #. type: <author></author> @@ -10192,20 +9970,19 @@ msgstr "<name>Jason Gunthorpe </name><email>jgg@debian.org</email>" #. type: <version></version> #: guide.sgml:7 msgid "$Id: guide.sgml,v 1.7 2003/04/26 23:26:13 doogie Exp $" -msgstr "" +msgstr "$Id: guide.sgml,v 1.7 2003/04/26 23:26:13 doogie Exp $" #. type: <abstract></abstract> #: guide.sgml:11 msgid "" "This document provides an overview of how to use the the APT package manager." -msgstr "" +msgstr "本文書㯠APT パッケージマãƒãƒ¼ã‚¸ãƒ£ã®ä½¿ã„æ–¹ã®æ¦‚è¦ã‚’æä¾›ã—ã¾ã™ã€‚" # type: <copyrightsummary></copyrightsummary> #. type: <copyrightsummary></copyrightsummary> #: guide.sgml:15 -#, fuzzy msgid "Copyright © Jason Gunthorpe, 1998." -msgstr "Copyright © Jason Gunthorpe, 1999." +msgstr "Copyright © Jason Gunthorpe, 1998." #. type: <p></p> #: guide.sgml:21 offline.sgml:22 @@ -10215,6 +9992,10 @@ msgid "" "published by the Free Software Foundation; either version 2 of the License, " "or (at your option) any later version." msgstr "" +"\"APT\" and this document are free software; you can redistribute them and/" +"or modify them under the terms of the GNU General Public License as " +"published by the Free Software Foundation; either version 2 of the License, " +"or (at your option) any later version." #. type: <p></p> #: guide.sgml:24 offline.sgml:25 @@ -10222,12 +10003,13 @@ msgid "" "For more details, on Debian GNU/Linux systems, see the file /usr/share/" "common-licenses/GPL for the full license." msgstr "" +"For more details, on Debian GNU/Linux systems, see the file /usr/share/" +"common-licenses/GPL for the full license." #. type: <heading></heading> #: guide.sgml:32 -#, fuzzy msgid "General" -msgstr "generate" +msgstr "全般" #. type: <p></p> #: guide.sgml:38 @@ -10241,9 +10023,8 @@ msgstr "" # type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #. type: <heading></heading> #: guide.sgml:39 -#, fuzzy msgid "Anatomy of the Package System" -msgstr "パッケージå" +msgstr "パッケージシステムã®æ§‹é€ " #. type: <p></p> #: guide.sgml:44 @@ -10346,6 +10127,11 @@ msgid "" "Reading Package Lists... Done\n" "Building Dependency Tree... Done" msgstr "" +"# apt-get update\n" +"Get http://ftp.de.debian.org/debian-non-US/ stable/binary-i386/ Packages\n" +"Get http://llug.sep.bnl.gov/debian/ testing/contrib Packages\n" +"Reading Package Lists... Done\n" +"Building Dependency Tree... Done" #. type: <p><taglist> #: guide.sgml:120 @@ -10452,7 +10238,7 @@ msgid "" " \n" " \n" " URL [http://llug.sep.bnl.gov/debian]:" -msgstr "" +msgstr " " #. type: <p></p> #: guide.sgml:205 @@ -10471,7 +10257,7 @@ msgid "" " tags are typically something like: stable unstable testing non-US\n" " \n" " Distribution [stable]:" -msgstr "" +msgstr " " #. type: <p></p> #: guide.sgml:222 @@ -10492,7 +10278,7 @@ msgid "" " The components are typically something like: main contrib non-free\n" " \n" " Components [main contrib non-free]:" -msgstr "" +msgstr " " #. type: <p></p> #: guide.sgml:236 @@ -10540,9 +10326,8 @@ msgstr "" # type: <tag></tag> #. type: <heading></heading> #: guide.sgml:264 -#, fuzzy msgid "The Interface" -msgstr "メソッドインスタンス" +msgstr "インターフェース" #. type: <p></p> #: guide.sgml:278 @@ -10579,6 +10364,9 @@ msgid "" "Reading Package Lists... Done\n" "Building Dependency Tree... Done" msgstr "" +"# apt-get check\n" +"Reading Package Lists... Done\n" +"Building Dependency Tree... Done" #. type: <p></p> #: guide.sgml:297 @@ -10618,6 +10406,21 @@ msgid "" " Depends: xlib6g (>= 3.3-5) but it is not installed\n" " libreadlineg2: Conflicts:libreadline2 (<< 2.1-2.1)" msgstr "" +"# apt-get check\n" +"Reading Package Lists... Done\n" +"Building Dependency Tree... Done\n" +"You might want to run apt-get -f install' to correct these.\n" +"Sorry, but the following packages have unmet dependencies:\n" +" 9fonts: Depends: xlib6g but it is not installed\n" +" uucp: Depends: mailx but it is not installed\n" +" blast: Depends: xlib6g (>= 3.3-5) but it is not installed\n" +" adduser: Depends: perl-base but it is not installed\n" +" aumix: Depends: libgpmg1 but it is not installed\n" +" debiandoc-sgml: Depends: sgml-base but it is not installed\n" +" bash-builtins: Depends: bash (>= 2.01) but 2.0-3 is installed\n" +" cthugha: Depends: svgalibg1 but it is not installed\n" +" Depends: xlib6g (>= 3.3-5) but it is not installed\n" +" libreadlineg2: Conflicts:libreadline2 (<< 2.1-2.1)" #. type: <p></p> #: guide.sgml:329 @@ -10665,7 +10468,7 @@ msgstr "" #. type: <heading></heading> #: guide.sgml:356 msgid "The Status Report" -msgstr "" +msgstr "状態レãƒãƒ¼ãƒˆ" #. type: <p></p> #: guide.sgml:363 @@ -10680,9 +10483,8 @@ msgstr "" # type: <tag></tag> #. type: <heading></heading> #: guide.sgml:364 -#, fuzzy msgid "The Extra Package list" -msgstr "NextPackage" +msgstr "è¿½åŠ ãƒ‘ãƒƒã‚±ãƒ¼ã‚¸ãƒªã‚¹ãƒˆ" #. type: <example></example> #: guide.sgml:372 @@ -10695,6 +10497,12 @@ msgid "" " squake pgp-i python-base debmake ldso perl libreadlineg2\n" " ssh" msgstr "" +"The following extra packages will be installed:\n" +" libdbd-mysql-perl xlib6 zlib1 xzx libreadline2 libdbd-msql-perl\n" +" mailpgp xdpkg fileutils pinepgp zlib1g xlib6g perl-base\n" +" bin86 libgdbm1 libgdbmg1 quake-lib gmp2 bcc xbuffy\n" +" squake pgp-i python-base debmake ldso perl libreadlineg2\n" +" ssh" #. type: <p></p> #: guide.sgml:379 @@ -10708,7 +10516,7 @@ msgstr "" #. type: <heading></heading> #: guide.sgml:382 msgid "The Packages to Remove" -msgstr "" +msgstr "削除ã™ã‚‹ãƒ‘ッケージ" #. type: <example></example> #: guide.sgml:389 @@ -10720,6 +10528,11 @@ msgid "" " xadmin xboard perl-debug tkined xtetris libreadline2-dev perl-suid\n" " nas xpilot xfig" msgstr "" +"The following packages will be REMOVED:\n" +" xlib6-dev xpat2 tk40-dev xkeycaps xbattle xonix\n" +" xdaliclock tk40 tk41 xforms0.86 ghostview xloadimage xcolorsel\n" +" xadmin xboard perl-debug tkined xtetris libreadline2-dev perl-suid\n" +" nas xpilot xfig" #. type: <p></p> #: guide.sgml:399 @@ -10736,9 +10549,8 @@ msgstr "" # type: <tag></tag> #. type: <heading></heading> #: guide.sgml:402 -#, fuzzy msgid "The New Packages list" -msgstr "NextPackage" +msgstr "æ–°è¦ãƒ‘ッケージリスト" #. type: <example></example> #: guide.sgml:406 @@ -10747,6 +10559,8 @@ msgid "" "The following NEW packages will installed:\n" " zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base" msgstr "" +"The following NEW packages will installed:\n" +" zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base" #. type: <p></p> #: guide.sgml:411 @@ -10759,9 +10573,8 @@ msgstr "" # type: <tag></tag> #. type: <heading></heading> #: guide.sgml:414 -#, fuzzy msgid "The Kept Back list" -msgstr "NextPackage" +msgstr "" #. type: <example></example> #: guide.sgml:419 @@ -10771,6 +10584,9 @@ msgid "" " compface man-db tetex-base msql libpaper svgalib1\n" " gs snmp arena lynx xpat2 groff xscreensaver" msgstr "" +"The following packages have been kept back\n" +" compface man-db tetex-base msql libpaper svgalib1\n" +" gs snmp arena lynx xpat2 groff xscreensaver" #. type: <p></p> #: guide.sgml:428 @@ -10795,6 +10611,8 @@ msgid "" "The following held packages will be changed:\n" " cvs" msgstr "" +"The following held packages will be changed:\n" +" cvs" #. type: <p></p> #: guide.sgml:441 @@ -10807,7 +10625,7 @@ msgstr "" #. type: <heading></heading> #: guide.sgml:444 msgid "Final summary" -msgstr "" +msgstr "最後ã®ã¾ã¨ã‚" #. type: <p></p> #: guide.sgml:447 @@ -10823,6 +10641,9 @@ msgid "" "12 packages not fully installed or removed.\n" "Need to get 65.7M/66.7M of archives. After unpacking 26.5M will be used." msgstr "" +"206 packages upgraded, 8 newly installed, 23 to remove and 51 not upgraded.\n" +"12 packages not fully installed or removed.\n" +"Need to get 65.7M/66.7M of archives. After unpacking 26.5M will be used." #. type: <p></p> #: guide.sgml:470 @@ -10852,7 +10673,7 @@ msgstr "" #. type: <heading></heading> #: guide.sgml:477 msgid "The Status Display" -msgstr "" +msgstr "状態表示" #. type: <p></p> #: guide.sgml:481 @@ -10873,6 +10694,13 @@ msgid "" "Get:5 http://llug.sep.bnl.gov/debian/ testing/non-free Packages\n" "11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s" msgstr "" +"# apt-get update\n" +"Get:1 http://ftp.de.debian.org/debian-non-US/ stable/non-US/ Packages\n" +"Get:2 http://llug.sep.bnl.gov/debian/ testing/contrib Packages\n" +"Hit http://llug.sep.bnl.gov/debian/ testing/main Packages\n" +"Get:4 http://ftp.de.debian.org/debian-non-US/ unstable/binary-i386/ Packages\n" +"Get:5 http://llug.sep.bnl.gov/debian/ testing/non-free Packages\n" +"11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s" #. type: <p></p> #: guide.sgml:500 @@ -10951,7 +10779,7 @@ msgstr "オフラインã§ã® APT ã®ä½¿ç”¨æ³•" #. type: <version></version> #: offline.sgml:7 msgid "$Id: offline.sgml,v 1.8 2003/02/12 15:06:41 doogie Exp $" -msgstr "" +msgstr "$Id: offline.sgml,v 1.8 2003/02/12 15:06:41 doogie Exp $" # type: <abstract></abstract> #. type: <abstract></abstract> @@ -10961,7 +10789,7 @@ msgid "" "specifically a 'sneaker-net' approach for performing upgrades." msgstr "" "ã“ã®ãƒ‰ã‚ュメントã¯ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ãŒãªã„環境ã§ã® APT ã®ä½¿ç”¨æ–¹æ³•ã‚’説明ã—ã¦ã„ã¾ã™ã€‚" -"具体的ã«ã¯ã€ã‚¢ãƒƒãƒ—グレード時ã«ã€Œã‚¹ãƒ‹ãƒ¼ã‚«ãƒ¼ãƒãƒƒãƒˆã€ã‚¢ãƒ—ãƒãƒ¼ãƒã§ã™ã€‚" +"具体的ã«ã¯ã€ã‚¢ãƒƒãƒ—グレード時ã®ã€Œã‚¹ãƒ‹ãƒ¼ã‚«ãƒ¼ãƒãƒƒãƒˆã€ã‚¢ãƒ—ãƒãƒ¼ãƒã§ã™ã€‚" # type: <copyrightsummary></copyrightsummary> #. type: <copyrightsummary></copyrightsummary> @@ -10977,9 +10805,8 @@ msgstr "ã¯ã˜ã‚ã«" #. type: <heading></heading> #: offline.sgml:34 offline.sgml:65 offline.sgml:180 -#, fuzzy msgid "Overview" -msgstr "OverrideDir" +msgstr "概è¦" #. type: <p></p> #: offline.sgml:40 @@ -11016,9 +10843,8 @@ msgstr "" # type: <title></title> #. type: <heading></heading> #: offline.sgml:63 -#, fuzzy msgid "Using APT on both machines" -msgstr "オフラインã§ã® APT ã®ä½¿ç”¨æ³•" +msgstr "両方ã®ãƒžã‚·ãƒ³ã§ã® APT ã®ä½¿ç”¨æ³•" #. type: <p><example> #: offline.sgml:71 @@ -11055,9 +10881,8 @@ msgstr "" # type: Content of: <refentry><refsect1><title> #. type: <heading></heading> #: offline.sgml:88 -#, fuzzy msgid "The configuration file" -msgstr "ユーザã®è¨å®š" +msgstr "è¨å®šãƒ•ã‚¡ã‚¤ãƒ«" #. type: <p></p> #: offline.sgml:96 @@ -11080,7 +10905,7 @@ msgstr "" # type: <example></example> #. type: <example></example> #: offline.sgml:124 -#, fuzzy, no-wrap +#, no-wrap msgid "" " APT\n" " {\n" @@ -11109,7 +10934,7 @@ msgstr "" " APT\n" " {\n" " /* This is not necessary if the two machines are the same arch, it tells\n" -" the remote APT what architecture the Debian machine is */\n" +" the remote APT what architecture the target machine is */\n" " Architecture \"i386\";\n" " \n" " Get::Download-Only \"true\";\n" @@ -11150,7 +10975,7 @@ msgstr "" # type: <example></example> #. type: <example></example> #: offline.sgml:142 -#, fuzzy, no-wrap +#, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get update\n" @@ -11160,9 +10985,9 @@ msgid "" msgstr "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get update\n" -" [ パッケージファイルをå–å¾—ã—ã¾ã™ ]\n" +" [ package ファイルを APT ãŒå–å¾—ã—ã¾ã™ ]\n" " # apt-get dist-upgrade\n" -" [ アップグレードãŒå¿…è¦ãªå…¨ãƒ‘ッケージをå–å¾—ã—ã¾ã™ ]" +" [ 対象マシンをアップグレードã™ã‚‹ã®ã«å¿…è¦ãªãƒ‘ッケージをã€APT ãŒå–å¾—ã—ã¾ã™ ]" #. type: </example></p> #: offline.sgml:149 @@ -11183,7 +11008,7 @@ msgstr "" # type: <example></example> #. type: <example></example> #: offline.sgml:159 -#, fuzzy, no-wrap +#, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" " # apt-get check\n" @@ -11191,11 +11016,11 @@ msgid "" " # apt-get --no-d -o dir::state::status=/var/lib/dpkg/status dist-upgrade\n" " [ Or any other APT command ]" msgstr "" -" # export APT_CONFIG=\"/disc/apt.conf\"\n" -" # apt-get update\n" -" [ パッケージファイルをå–å¾—ã—ã¾ã™ ]\n" -" # apt-get dist-upgrade\n" -" [ アップグレードãŒå¿…è¦ãªå…¨ãƒ‘ッケージをå–å¾—ã—ã¾ã™ ]" +" # export APT_CONFIG=\"/disc/apt.conf\"\n" +" # apt-get check\n" +" [ ã‚ャッシュファイルã®ãƒãƒ¼ã‚«ãƒ«ã‚³ãƒ”ーを生æˆã—ã¾ã™ ]\n" +" # apt-get --no-d -o dir::state::status=/var/lib/dpkg/status dist-upgrade\n" +" [ ã‚‚ã—ãã¯ãã®ä»–ã® APT コマンド ]" #. type: <p></p> #: offline.sgml:165 @@ -11217,9 +11042,8 @@ msgstr "" # type: <title></title> #. type: <heading></heading> #: offline.sgml:178 -#, fuzzy msgid "Using APT and wget" -msgstr "オフラインã§ã® APT ã®ä½¿ç”¨æ³•" +msgstr "APT 㨠wget ã®ä½¿ç”¨æ³•" #. type: <p></p> #: offline.sgml:185 @@ -11241,9 +11065,8 @@ msgstr "" # type: Content of: <refentry><refsect1><title> #. type: <heading></heading> #: offline.sgml:196 -#, fuzzy msgid "Operation" -msgstr "オプション" +msgstr "æ“作" #. type: <p><example> #: offline.sgml:200 @@ -11261,6 +11084,10 @@ msgid "" " # apt-get -qq --print-uris dist-upgrade > uris\n" " # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script" msgstr "" +" # apt-get dist-upgrade \n" +" [ Press no when prompted, make sure you are happy with the actions ]\n" +" # apt-get -qq --print-uris dist-upgrade > uris\n" +" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script" #. type: </example></p> #: offline.sgml:210 @@ -11281,7 +11108,7 @@ msgstr "" #. type: <p><example> #: offline.sgml:219 msgid "The remote machine would do something like" -msgstr "" +msgstr "リモートマシンã§ã¯ä»¥ä¸‹ã®ã‚ˆã†ã«ã—ã¾ã™ã€‚" #. type: <example></example> #: offline.sgml:223 @@ -11291,6 +11118,9 @@ msgid "" " # sh -x ./wget-script\n" " [ wait.. ]" msgstr "" +" # cd /disc\n" +" # sh -x ./wget-script\n" +" [ ãŠå¾…ã¡ãã ã•ã„... ]" #. type: </example><example> #: offline.sgml:228 @@ -11303,12 +11133,12 @@ msgstr "" #: offline.sgml:230 #, no-wrap msgid " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade" -msgstr "" +msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade" #. type: </example></p> #: offline.sgml:234 msgid "Which will use the already fetched archives on the disc." -msgstr "" +msgstr "ã“ã‚Œã§ã€disc ã«ã‚ã‚‹å–得済ã¿ã®ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–を使用ã™ã‚‹ã‚ˆã†ã«ãªã‚Šã¾ã™ã€‚" #~ msgid "" #~ "<!ENTITY gnome-apt \"<citerefentry>\n" @@ -11323,894 +11153,5 @@ msgstr "" #~ " </citerefentry>\"\n" #~ ">\n" -# type: Content of: <refentry><refsect1><para> -#, fuzzy -#~| msgid "<filename>/etc/apt/preferences</filename>" -#~ msgid "<filename>/var/lib/apt/extended_states</filename>" -#~ msgstr "<filename>/etc/apt/preferences</filename>" - -#~ msgid "Cache-Limit" -#~ msgstr "Cache-Limit" - -# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#~ msgid "" -#~ "APT uses a fixed size memory mapped cache file to store the 'available' " -#~ "information. This sets the size of that cache (in bytes)." -#~ msgstr "" -#~ "APT ã¯ã€Œåˆ©ç”¨å¯èƒ½ã€æƒ…å ±ã‚’æ ¼ç´ã™ã‚‹ãŸã‚ã«ã€å›ºå®šã‚µã‚¤ã‚ºã®ãƒ¡ãƒ¢ãƒªãƒžãƒƒãƒ—ã‚ャッシュ" -#~ "ファイルを使用ã—ã¾ã™ã€‚ã“ã®ã‚ªãƒ—ションã¯ã€ãã®ã‚ャッシュサイズを指定ã—ã¾ã™ã€‚" - -# type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#~ msgid "Pin: release n=squeeze\n" -#~ msgstr "Pin: release n=squeeze\n" - -# type: Content of: <refentry><refsect1><refsect2><para> -#, fuzzy -#~ msgid "" -#~ "The <literal>Pin-Priority:</literal> line in each APT preferences record " -#~ "is optional. If omitted, APT assigns a priority of 1 less than the last " -#~ "value specified on a line beginning with <literal>Pin-Priority: " -#~ "release ...</literal>." -#~ msgstr "" -#~ "APT è¨å®šãƒ¬ã‚³ãƒ¼ãƒ‰ã® <literal>Pin-Priority:</literal> è¡Œã¯ä»»æ„ã§ã™ã€‚çœç•¥ã™ã‚‹" -#~ "ã¨ã€<literal>Pin-Priority: release ...</literal> ã§å§‹ã¾ã‚‹è¡Œã§æŒ‡ç¤ºã—ãŸæœ€å¾Œ" -#~ "ã®å€¤ (å°‘ãªãã¨ã‚‚1ã¤) を優先度ã«å‰²ã‚Šå½“ã¦ã¾ã™ã€‚" - -# type: Content of: <refentry><refsect1><para> -#~ msgid "" -#~ "<filename>apt.conf</filename> is the main configuration file for the APT " -#~ "suite of tools, all tools make use of the configuration file and a common " -#~ "command line parser to provide a uniform environment. When an APT tool " -#~ "starts up it will read the configuration specified by the " -#~ "<envar>APT_CONFIG</envar> environment variable (if any) and then read the " -#~ "files in <literal>Dir::Etc::Parts</literal> then read the main " -#~ "configuration file specified by <literal>Dir::Etc::main</literal> then " -#~ "finally apply the command line options to override the configuration " -#~ "directives, possibly loading even more config files." -#~ msgstr "" -#~ "<filename>apt.conf</filename> ã¯ã€APT ツール集ã®ãƒ¡ã‚¤ãƒ³è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã§ã™ã€‚ã“" -#~ "ã®è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã¨å…±é€šã®ã‚³ãƒžãƒ³ãƒ‰ãƒ©ã‚¤ãƒ³ãƒ‘ーサを使ã£ã¦ã€ã™ã¹ã¦ã®ãƒ„ールを統一環" -#~ "境ã§ä½¿ç”¨ã§ãã¾ã™ã€‚APT ツールã®èµ·å‹•æ™‚ã«ã¯ã€<envar>APT_CONFIG</envar> 環境変" -#~ "æ•°ã«æŒ‡å®šã—ãŸè¨å®šã‚’ (å˜åœ¨ã™ã‚Œã°) èªã¿è¾¼ã¿ã¾ã™ã€‚次㫠<literal>Dir::Etc::" -#~ "Parts</literal> ã®ãƒ•ã‚¡ã‚¤ãƒ«ã‚’èªã¿è¾¼ã¿ã¾ã™ã€‚次㫠<literal>Dir::Etc::main</" -#~ "literal> ã§æŒ‡å®šã—ãŸä¸»è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã‚’èªã¿è¾¼ã¿ã€æœ€å¾Œã«ã‚³ãƒžãƒ³ãƒ‰ãƒ©ã‚¤ãƒ³ã‚ªãƒ—ショ" -#~ "ンã§ã€è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã‚ˆã‚Šå–å¾—ã—ãŸå€¤ã‚’上書ãã—ã¾ã™ã€‚" - -# type: Content of: <refentry><refsect1><para> -#~ msgid "<filename>/etc/apt/trusted.gpg</filename>" -#~ msgstr "<filename>/etc/apt/trusted.gpg</filename>" - -# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#~ msgid "Keyring of local trusted keys, new keys will be added here." -#~ msgstr "ãƒãƒ¼ã‚«ãƒ«ä¿¡é ¼ã‚ーã®ã‚ーリング。新ã—ã„ã‚ーã¯ã“ã“ã«è¿½åŠ ã•ã‚Œã¾ã™ã€‚" - -# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#~ msgid "" -#~ "Disable Immediate Configuration; This dangerous option disables some of " -#~ "APT's ordering code to cause it to make fewer dpkg calls. Doing so may be " -#~ "necessary on some extremely slow single user systems but is very " -#~ "dangerous and may cause package install scripts to fail or worse. Use at " -#~ "your own risk." -#~ msgstr "" -#~ "å³æ™‚è¨å®šç„¡åŠ¹ - ã“ã®å±é™ºãªã‚ªãƒ—ションã¯ã€APT ã®è¦æ±‚コードを無効ã«ã—㦠dpkg " -#~ "ã®å‘¼ã³å‡ºã—ã‚’ã»ã¨ã‚“ã©ã—ãªã„よã†ã«ã—ã¾ã™ã€‚ã“ã‚Œã¯ã€éžå¸¸ã«é…ã„シングルユーザシ" -#~ "ステムã§ã¯å¿…è¦ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“ãŒã€éžå¸¸ã«å±é™ºã§ã€ãƒ‘ッケージã®ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã‚¹ã‚¯" -#~ "リプトãŒå¤±æ•—ã—ãŸã‚Šã€ã‚‚ã—ãã¯ã‚‚ã£ã¨æ‚ªã„ã“ã¨ãŒãŠãã‚‹ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“。自己責任" -#~ "ã§ä½¿ç”¨ã—ã¦ãã ã•ã„。" - -# type: Content of: <refentry><refnamediv><refname> -#, fuzzy -#~ msgid "NoConfigure" -#~ msgstr "config-files" - -# type: Content of: <refentry><refsect1><para> -#~ msgid "<filename>/etc/apt/sources.list</filename>" -#~ msgstr "<filename>/etc/apt/sources.list</filename>" - -# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#~ msgid "" -#~ "Locations to fetch packages from. Configuration Item: <literal>Dir::Etc::" -#~ "SourceList</literal>." -#~ msgstr "" -#~ "パッケージã®å–得元。è¨å®šé …ç›® - <literal>Dir::Etc::SourceList</literal>" - -# type: Content of: <refentry><refsect1><para> -#~ msgid "<filename>&statedir;/lists/</filename>" -#~ msgstr "<filename>&statedir;/lists/</filename>" - -# type: Content of: <refentry><refsect1><para> -#~ msgid "<filename>&statedir;/lists/partial/</filename>" -#~ msgstr "<filename>&statedir;/lists/partial/</filename>" - -# type: Content of: <refentry><refsect1><para> -#~ msgid "<filename>/etc/apt/apt.conf</filename>" -#~ msgstr "<filename>/etc/apt/apt.conf</filename>" - -# type: Content of: <refentry><refsect1><para> -#~ msgid "<filename>/etc/apt/apt.conf.d/</filename>" -#~ msgstr "<filename>/etc/apt/apt.conf.d/</filename>" - -# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#~ msgid "" -#~ "APT configuration file fragments. Configuration Item: <literal>Dir::Etc::" -#~ "Parts</literal>." -#~ msgstr "" -#~ "APT è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã®æ–片。è¨å®šé …ç›® - <literal>Dir::Etc::Parts</literal>" - -# type: Content of: <refentry><refsect1><para> -#~ msgid "<filename>&cachedir;/archives/</filename>" -#~ msgstr "<filename>&cachedir;/archives/</filename>" - -# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#~ msgid "" -#~ "Storage area for retrieved package files. Configuration Item: " -#~ "<literal>Dir::Cache::Archives</literal>." -#~ msgstr "" -#~ "å–得済ã¿ãƒ‘ãƒƒã‚±ãƒ¼ã‚¸ãƒ•ã‚¡ã‚¤ãƒ«æ ¼ç´ã‚¨ãƒªã‚¢ã€‚è¨å®šé …ç›® - <literal>Dir::Cache::" -#~ "Archives</literal>" - -# type: Content of: <refentry><refsect1><para> -#~ msgid "<filename>&cachedir;/archives/partial/</filename>" -#~ msgstr "<filename>&cachedir;/archives/partial/</filename>" - -# type: <copyrightsummary></copyrightsummary> -#~ msgid "Copyright © Jason Gunthorpe, 1997-1998." -#~ msgstr "Copyright © Jason Gunthorpe, 1997-1998." - -# type: Content of: <refentry><refnamediv><refpurpose> -#, fuzzy -#~ msgid "Note on Pointer access" -#~ msgstr "APT パッケージæ“作ユーティリティ -- ã‚ャッシュæ“作" - -# type: <example></example> -#~ msgid "" -#~ " void *Map = mmap(...);\n" -#~ " Package *PkgList = (Package *)Map;\n" -#~ " Header *Head = (Header *)Map;\n" -#~ " char *Strings = (char *)Map;\n" -#~ " cout << (Strings + PkgList[Head->HashTable[0]]->Name) << endl;" -#~ msgstr "" -#~ " void *Map = mmap(...);\n" -#~ " Package *PkgList = (Package *)Map;\n" -#~ " Header *Head = (Header *)Map;\n" -#~ " char *Strings = (char *)Map;\n" -#~ " cout << (Strings + PkgList[Head->HashTable[0]]->Name) << endl;" - -# type: <heading></heading> -#~ msgid "Structures" -#~ msgstr "æ§‹é€ " - -# type: <heading></heading> -#~ msgid "Header" -#~ msgstr "ヘッダ" - -# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#, fuzzy -#~ msgid "This is the first item in the file." -#~ msgstr "ファイル一覧ファイルを指定ã—ã¾ã™ã€‚" - -# type: <example></example> -#~ msgid "" -#~ " struct Header\n" -#~ " {\n" -#~ " // Signature information\n" -#~ " unsigned long Signature;\n" -#~ " short MajorVersion;\n" -#~ " short MinorVersion;\n" -#~ " bool Dirty;\n" -#~ " \n" -#~ " // Size of structure values\n" -#~ " unsigned short HeaderSz;\n" -#~ " unsigned short PackageSz;\n" -#~ " unsigned short PackageFileSz;\n" -#~ " unsigned short VersionSz;\n" -#~ " unsigned short DependencySz;\n" -#~ " unsigned short ProvidesSz;\n" -#~ " unsigned short VerFileSz;\n" -#~ " \n" -#~ " // Structure counts\n" -#~ " unsigned long PackageCount;\n" -#~ " unsigned long VersionCount;\n" -#~ " unsigned long DependsCount;\n" -#~ " unsigned long PackageFileCount;\n" -#~ " \n" -#~ " // Offsets\n" -#~ " unsigned long FileList; // PackageFile\n" -#~ " unsigned long StringList; // StringItem\n" -#~ " unsigned long VerSysName; // StringTable\n" -#~ " unsigned long Architecture; // StringTable\n" -#~ " unsigned long MaxVerFileSize;\n" -#~ " \n" -#~ " // Allocation pools\n" -#~ " struct\n" -#~ " {\n" -#~ " unsigned long ItemSize;\n" -#~ "\t unsigned long Start;\n" -#~ "\t unsigned long Count;\n" -#~ " } Pools[7];\n" -#~ "\n" -#~ " // Package name lookup\n" -#~ " unsigned long HashTable[2*1024]; // Package\n" -#~ " };" -#~ msgstr "" -#~ " struct Header\n" -#~ " {\n" -#~ " // Signature information\n" -#~ " unsigned long Signature;\n" -#~ " short MajorVersion;\n" -#~ " short MinorVersion;\n" -#~ " bool Dirty;\n" -#~ " \n" -#~ " // Size of structure values\n" -#~ " unsigned short HeaderSz;\n" -#~ " unsigned short PackageSz;\n" -#~ " unsigned short PackageFileSz;\n" -#~ " unsigned short VersionSz;\n" -#~ " unsigned short DependencySz;\n" -#~ " unsigned short ProvidesSz;\n" -#~ " unsigned short VerFileSz;\n" -#~ " \n" -#~ " // Structure counts\n" -#~ " unsigned long PackageCount;\n" -#~ " unsigned long VersionCount;\n" -#~ " unsigned long DependsCount;\n" -#~ " unsigned long PackageFileCount;\n" -#~ " \n" -#~ " // Offsets\n" -#~ " unsigned long FileList; // PackageFile\n" -#~ " unsigned long StringList; // StringItem\n" -#~ " unsigned long VerSysName; // StringTable\n" -#~ " unsigned long Architecture; // StringTable\n" -#~ " unsigned long MaxVerFileSize;\n" -#~ " \n" -#~ " // Allocation pools\n" -#~ " struct\n" -#~ " {\n" -#~ " unsigned long ItemSize;\n" -#~ "\t unsigned long Start;\n" -#~ "\t unsigned long Count;\n" -#~ " } Pools[7];\n" -#~ "\n" -#~ " // Package name lookup\n" -#~ " unsigned long HashTable[2*1024]; // Package\n" -#~ " };" - -# type: <tag></tag> -#~ msgid "Signature" -#~ msgstr "Signature" - -# type: <tag></tag> -#~ msgid "MajorVersion" -#~ msgstr "MajorVersion" - -# type: <tag></tag> -#~ msgid "MinorVersion" -#~ msgstr "MinorVersion" - -# type: <tag></tag> -#~ msgid "Dirty" -#~ msgstr "Dirty" - -# type: <tag></tag> -#~ msgid "HeaderSz" -#~ msgstr "HeaderSz" - -# type: <tag></tag> -#~ msgid "PackageSz" -#~ msgstr "PackageSz" - -# type: <tag></tag> -#~ msgid "PackageFileSz" -#~ msgstr "PackageFileSz" - -# type: <tag></tag> -#~ msgid "VersionSz" -#~ msgstr "VersionSz" - -# type: <tag></tag> -#~ msgid "DependencySz" -#~ msgstr "DependencySz" - -# type: Content of: <refentry><refsect1><title> -#~ msgid "VerFileSz" -#~ msgstr "VerFileSz" - -# type: <tag></tag> -#~ msgid "ProvidesSz" -#~ msgstr "ProvidesSz" - -# type: <tag></tag> -#, fuzzy -#~ msgid "PackageCount" -#~ msgstr "PackageFileCount" - -# type: <tag></tag> -#~ msgid "VersionCount" -#~ msgstr "VersionCount" - -# type: <tag></tag> -#~ msgid "DependsCount" -#~ msgstr "DependsCount" - -# type: <tag></tag> -#~ msgid "PackageFileCount" -#~ msgstr "PackageFileCount" - -# type: <tag></tag> -#~ msgid "VerSysName" -#~ msgstr "VerSysName" - -# type: Content of: <refentry><refsect1><title> -#~ msgid "MaxVerFileSize" -#~ msgstr "MaxVerFileSize" - -# type: <tag></tag> -#~ msgid "StringList" -#~ msgstr "StringList" - -# type: <tag></tag> -#~ msgid "Pools" -#~ msgstr "Pools" - -# type: <tag></tag> -#~ msgid "HashTable" -#~ msgstr "HashTable" - -# type: <tag></tag> -#, fuzzy -#~ msgid "Package" -#~ msgstr "Packages" - -# type: Content of: <refentry><refsect1><title> -#, fuzzy -#~ msgid "Name" -#~ msgstr "ファイル" - -# type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#, fuzzy -#~ msgid "Name of the package." -#~ msgstr "パッケージå" - -# type: <tag></tag> -#~ msgid "VersionList" -#~ msgstr "VersionList" - -# type: <tag></tag> -#~ msgid "CurrentVer" -#~ msgstr "CurrentVer" - -# type: Content of: <refentry><refsect1><refsect2><title> -#, fuzzy -#~ msgid "Section" -#~ msgstr "Sections" - -# type: <tag></tag> -#~ msgid "NextPackage" -#~ msgstr "NextPackage" - -# type: <tag></tag> -#~ msgid "RevDepends" -#~ msgstr "RevDepends" - -# type: Content of: <refentry><refsect1><title> -#, fuzzy -#~ msgid "ProvidesList" -#~ msgstr "ファイル" - -# type: Content of: <refentry><refsect1><title> -#, fuzzy -#~ msgid "SelectedState" -#~ msgstr "DSelect ã§ã® APT" - -# type: <tag></tag> -#~ msgid "InstState" -#~ msgstr "InstState" - -# type: <tag></tag> -#~ msgid "CurrentState" -#~ msgstr "CurrentState" - -# type: <tag></tag> -#~ msgid "ID" -#~ msgstr "ID" - -# type: Content of: <refentry><refsect1><title> -#, fuzzy -#~ msgid "Flags" -#~ msgstr "ファイル" - -# type: <tag></tag> -#, fuzzy -#~ msgid "PackageFile" -#~ msgstr "PackageFileSz" - -# type: Content of: <refentry><refsect1><title> -#, fuzzy -#~ msgid "FileName" -#~ msgstr "ファイル" - -# type: <tag></tag> -#, fuzzy -#~ msgid "Archive" -#~ msgstr "ArchiveDir" - -# type: Content of: <refentry><refsect1><title> -#, fuzzy -#~ msgid "Component" -#~ msgstr "コメント" - -# type: Content of: <refentry><refsect1><title> -#, fuzzy -#~ msgid "Version" -#~ msgstr "オプション" - -# type: <tag></tag> -#~ msgid "Origin" -#~ msgstr "Origin" - -# type: <tag></tag> -#~ msgid "Label" -#~ msgstr "Label" - -# type: <tag></tag> -#~ msgid "NotAutomatic" -#~ msgstr "NotAutomatic" - -# type: <tag></tag> -#~ msgid "Site" -#~ msgstr "Site" - -# type: <tag></tag> -#~ msgid "Size" -#~ msgstr "Size" - -# type: <tag></tag> -#~ msgid "mtime" -#~ msgstr "mtime" - -# type: <tag></tag> -#~ msgid "VerStr" -#~ msgstr "VerStr" - -# type: <tag></tag> -#~ msgid "Arch" -#~ msgstr "Arch" - -# type: Content of: <refentry><refsect1><title> -#, fuzzy -#~ msgid "NextVer" -#~ msgstr "ファイル" - -# type: <tag></tag> -#~ msgid "DependsList" -#~ msgstr "DependsList" - -# type: <tag></tag> -#, fuzzy -#~ msgid "ParentPkg" -#~ msgstr "ParentVer" - -# type: <tag></tag> -#~ msgid "InstalledSize" -#~ msgstr "InstalledSize" - -# type: <tag></tag> -#~ msgid "Hash" -#~ msgstr "Hash" - -# type: <tag></tag> -#, fuzzy -#~ msgid "Priority" -#~ msgstr "priority 100" - -# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#, fuzzy -#~ msgid "This is the parsed priority value of the package." -#~ msgstr "ファイル一覧ファイルを指定ã—ã¾ã™ã€‚" - -# type: <tag></tag> -#, fuzzy -#~ msgid "Dependency" -#~ msgstr "DependencySz" - -# type: <tag></tag> -#~ msgid "NextDepends" -#~ msgstr "NextDepends" - -# type: <tag></tag> -#~ msgid "NextRevDepends" -#~ msgstr "NextRevDepends" - -# type: <tag></tag> -#~ msgid "ParentVer" -#~ msgstr "ParentVer" - -# type: <tag></tag> -#~ msgid "Type" -#~ msgstr "Type" - -# type: <tag></tag> -#~ msgid "CompareOp" -#~ msgstr "CompareOp" - -# type: <tag></tag> -#, fuzzy -#~ msgid "Provides" -#~ msgstr "ProvidesSz" - -# type: <tag></tag> -#~ msgid "ProvideVersion" -#~ msgstr "ProvideVersion" - -# type: Content of: <refentry><refsect1><title> -#, fuzzy -#~ msgid "NextProvides" -#~ msgstr "ファイル" - -# type: <tag></tag> -#~ msgid "NextPkgProv" -#~ msgstr "NextPkgProv" - -# type: Content of: <refentry><refsect1><title> -#, fuzzy -#~ msgid "VerFile" -#~ msgstr "ファイル" - -# type: Content of: <refentry><refsect1><title> -#, fuzzy -#~ msgid "File" -#~ msgstr "ファイル" - -# type: Content of: <refentry><refsect1><title> -#, fuzzy -#~ msgid "NextFile" -#~ msgstr "ファイル" - -# type: <tag></tag> -#~ msgid "Offset" -#~ msgstr "Offset" - -# type: Content of: <refentry><refsect1><refsect2><title> -#, fuzzy -#~ msgid "StringItem" -#~ msgstr "安定版ã®è¿½è·¡" - -# type: Content of: <refentry><refsect1><refsect2><title> -#, fuzzy -#~ msgid "String" -#~ msgstr "安定版ã®è¿½è·¡" - -# type: Content of: <refentry><refsect1><title> -#, fuzzy -#~ msgid "NextItem" -#~ msgstr "ファイル" - -# type: Content of: <refentry><refsect1><refsect2><title> -#, fuzzy -#~ msgid "StringTable" -#~ msgstr "安定版ã®è¿½è·¡" - -# type: Content of: <refentry><refsect1><title> -#, fuzzy -#~ msgid "Defines" -#~ msgstr "finger" - -# type: Content of: <refentry><refsect1><refsect2><title> -#, fuzzy -#~ msgid "Future Directions" -#~ msgstr "Dir セクション" - -# type: <author></author> -#, fuzzy -#~ msgid "<name>Manoj Srivastava</name><email>srivasta@debian.org</email>" -#~ msgstr "<name>Jason Gunthorpe </name><email>jgg@debian.org</email>" - -# type: Content of: <refentry><refsect1><title> -#, fuzzy -#~ msgid "Procedural description" -#~ msgstr "説明" - -# type: Content of: <refentry><refsect1><title> -#, fuzzy -#~ msgid "Set Options" -#~ msgstr "オプション" - -#, fuzzy -#~ msgid "Updates" -#~ msgstr "update" - -# type: Content of: <refentry><refsect1><refsect2><title> -#, fuzzy -#~ msgid "Selection" -#~ msgstr "Dir セクション" - -# type: Content of: <refentry><refsect1><title> -#, fuzzy -#~ msgid "Action" -#~ msgstr "オプション" - -# type: Content of: <refentry><refnamediv><refpurpose> -#, fuzzy -#~ msgid "Modules and interfaces" -#~ msgstr "APT パッケージæ“作ユーティリティ -- ã‚ャッシュæ“作" - -# type: <tag></tag> -#~ msgid "pdate Module" -#~ msgstr "pdate モジュール" - -# type: <tag></tag> -#, fuzzy -#~ msgid "FTP methods" -#~ msgstr "メソッド" - -# type: <tag></tag> -#~ msgid "Dependency module" -#~ msgstr "ä¾å˜é–¢ä¿‚モジュール" - -#, fuzzy -#~ msgid "Event generator" -#~ msgstr "generate" - -# type: <author></author> -#, fuzzy -#~ msgid "<name>Tom Lees </name><email>tom@lpsg.demon.co.uk</email>" -#~ msgstr "<name>Jason Gunthorpe </name><email>jgg@debian.org</email>" - -# type: <copyrightsummary></copyrightsummary> -#, fuzzy -#~ msgid "Copyright © Tom Lees, 1997." -#~ msgstr "Copyright © Jason Gunthorpe, 1999." - -# type: Content of: <refentry><refsect1><para> -#, fuzzy -#~ msgid "The exact format for the \"Status:\" field is:" -#~ msgstr "メンテナフィールドã¯ä¸€èˆ¬çš„ã«ã¯ã€" - -# type: <tag></tag> -#, fuzzy -#~ msgid "not-installed" -#~ msgstr "Clean-Installed" - -# type: <tag></tag> -#~ msgid "unpacked" -#~ msgstr "展開済ã¿" - -# type: Content of: <refentry><refnamediv><refname> -#, fuzzy -#~ msgid "half-configured" -#~ msgstr "half-configured" - -# type: <tag></tag> -#, fuzzy -#~ msgid "installed" -#~ msgstr "install" - -# type: <tag></tag> -#, fuzzy -#~ msgid "half-installed" -#~ msgstr "Clean-Installed" - -# type: Content of: <refentry><refnamediv><refname> -#, fuzzy -#~ msgid "config-files" -#~ msgstr "config-files" - -# type: Content of: <refentry><refsect1><title> -#, fuzzy -#~ msgid "post-inst-failed" -#~ msgstr "オプション" - -#, fuzzy -#~ msgid "removal-failed" -#~ msgstr "remove" - -# type: Content of: <refentry><refnamediv><refpurpose> -#, fuzzy -#~ msgid "\"Documented\" command-line interfaces" -#~ msgstr "APT パッケージæ“作ユーティリティ -- ã‚ャッシュæ“作" - -# type: Content of: <refentry><refnamediv><refname> -#, fuzzy -#~ msgid "ldconfig" -#~ msgstr "ldconfig" - -# type: <tag></tag> -#, fuzzy -#~ msgid "install-info" -#~ msgstr "install" - -#, fuzzy -#~ msgid "update-rc.d" -#~ msgstr "update" - -# type: Content of: <refentry><refsect1><title> -#, fuzzy -#~ msgid "Assertions" -#~ msgstr "オプション" - -# type: Content of: <refentry><refsect1><title> -#~ msgid "APT Files" -#~ msgstr "APT ファイル" - -# type: <copyrightsummary></copyrightsummary> -#, fuzzy -#~ msgid "Copyright © Jason Gunthorpe, 1998-1999." -#~ msgstr "Copyright © Jason Gunthorpe, 1997-1998." - -#, fuzzy -#~ msgid "" -#~ "deb <var>uri</var> <var>distribution</var> <var>component</var> " -#~ "[<var>component</var> ...]" -#~ msgstr "deb uri distribution [component1] [component2] [...]" - -# type: <example></example> -#, fuzzy -#~ msgid " http://www.debian.org/archive" -#~ msgstr "deb http://archive.debian.org/debian-archive hamm main" - -# type: <example></example> -#, fuzzy -#~ msgid " ftp://ftp.debian.org/debian" -#~ msgstr "deb ftp://ftp.debian.org/debian stable contrib" - -# type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#, fuzzy -#~ msgid "" -#~ "The file scheme allows an arbitrary directory in the file system to be " -#~ "considered as a debian archive. This is useful for NFS mounts and local " -#~ "mirrors/archives." -#~ msgstr "" -#~ "file スã‚ームã¯ã€ã‚·ã‚¹ãƒ†ãƒ 内ã®ä»»æ„ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’ã€ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã¨ã—ã¦æ‰±ãˆã‚‹" -#~ "よã†ã«ã—ã¾ã™ã€‚ã“れ㯠NFS マウントやãƒãƒ¼ã‚«ãƒ«ãƒŸãƒ©ãƒ¼ã§ä¾¿åˆ©ã§ã™ã€‚" - -# type: <example></example> -#~ msgid " file:/var/debian" -#~ msgstr " file:/var/debian" - -# type: <tag></tag> -#~ msgid "smb" -#~ msgstr "smb" - -# type: <tag></tag> -#~ msgid "X-Auto" -#~ msgstr "X-Auto" - -# type: <tag></tag> -#~ msgid "X-TargetDist" -#~ msgstr "X-TargetDist" - -# type: <tag></tag> -#~ msgid "X-TargetVersion" -#~ msgstr "X-TargetVersion" - -# type: <tag></tag> -#~ msgid "Archive-[access]" -#~ msgstr "Archive-[access]" - -# type: <tag></tag> -#~ msgid "WWW-[access]" -#~ msgstr "WWW-[access]" - -# type: <tag></tag> -#~ msgid "CDImage-[access]" -#~ msgstr "CDImage-[access]" - -# type: <tag></tag> -#~ msgid "Incoming-[access]" -#~ msgstr "Incoming-[access]" - -# type: <tag></tag> -#~ msgid "nonUS-[access]" -#~ msgstr "nonUS-[access]" - -# type: Content of: <refentry><refsect1><para> -#~ msgid "This is the email address of the maintainer of the mirror." -#~ msgstr "ミラーサイトã®ç®¡ç†è€…ã®ãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹ã§ã™ã€‚" - -# type: Content of: <refentry><refsect1><title> -#~ msgid "Location" -#~ msgstr "å ´æ‰€" - -# type: Content of: <refentry><refsect1><title> -#~ msgid "Comment" -#~ msgstr "コメント" - -# type: Content of: <refentry><refsect1><title> -#, fuzzy -#~ msgid "The Release File" -#~ msgstr "ソースオーãƒãƒ¼ãƒ©ã‚¤ãƒ‰ãƒ•ã‚¡ã‚¤ãƒ«" - -# type: Content of: <refentry><refsect1><title> -#~ msgid "Global configuration" -#~ msgstr "共通è¨å®š" - -# type: Content of: <refentry><refnamediv><refname> -#, fuzzy -#~ msgid "archive file" -#~ msgstr "sources.list" - -# type: Content of: <refentry><refnamediv><refname> -#, fuzzy -#~ msgid "source file" -#~ msgstr "sources.list" - -# type: <tag></tag> -#~ msgid "URI" -#~ msgstr "URI" - -# type: <tag></tag> -#~ msgid "method" -#~ msgstr "メソッド" - -# type: <tag></tag> -#~ msgid "method instance" -#~ msgstr "メソッドインスタンス" - -# type: Content of: <refentry><refsect1><title> -#~ msgid "Specification" -#~ msgstr "仕様" - -# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#, fuzzy -#~ msgid "601 Configuration - Sends the configuration space" -#~ msgstr "è¨å®šç®‡æ‰€ã®å†…容を表示ã™ã‚‹ã ã‘ã§ã™ã€‚" - -# type: <heading></heading> -#, fuzzy -#~ msgid "Header Fields" -#~ msgstr "ヘッダ" - -# type: Content of: <refentry><refsect1><title> -#, fuzzy -#~ msgid "Filename" -#~ msgstr "ファイル" - -# type: <tag></tag> -#~ msgid "IMS-Hit" -#~ msgstr "IMS-Hit" - -# type: <tag></tag> -#~ msgid "MD5-Hash" -#~ msgstr "MD5-Hash" - -# type: Content of: <refentry><refsect1><title> -#, fuzzy -#~ msgid "Fail" -#~ msgstr "ファイル" - -# type: Content of: <refentry><refsect1><title> -#, fuzzy -#~ msgid "Operation failed" -#~ msgstr "オプション" - -# type: <tag></tag> -#, fuzzy -#~ msgid "Single-Instance" -#~ msgstr "Clean-Installed" - -# type: Content of: <refentry><refsect1><title> -#, fuzzy -#~ msgid "Local" -#~ msgstr "オプション" - -# type: Content of: <refentry><refnamediv><refname> -#, fuzzy -#~ msgid "Send-Config" -#~ msgstr "ldconfig" - -# type: Content of: <refentry><refsect1><title> -#, fuzzy -#~ msgid "Send configuration to the method." -#~ msgstr "ユーザã®è¨å®š" - -# type: Content of: <refentry><refsect1><title> -#, fuzzy -#~ msgid "Version string for the method" -#~ msgstr "ユーザã®è¨å®š" - -#, fuzzy -#~ msgid "Notes" -#~ msgstr "contents" - -#~ msgid "<literal>Debug::Vendor</literal>" -#~ msgstr "<literal>Debug::Vendor</literal>" +#~ msgid "<!ENTITY translation-title \"TRANSLATION\">" +#~ msgstr "<!ENTITY translation-title \"訳者\">" diff --git a/ftparchive/apt-ftparchive.cc b/ftparchive/apt-ftparchive.cc index 6f9fa7ab3..73d34249b 100644 --- a/ftparchive/apt-ftparchive.cc +++ b/ftparchive/apt-ftparchive.cc @@ -135,6 +135,8 @@ void PackageMap::GetGeneral(Configuration &Setup,Configuration &Block) PkgExt = Block.Find("Packages::Extensions", Setup.Find("Default::Packages::Extensions",".deb").c_str()); + Permissions = Setup.FindI("Default::FileMode",0644); + if (FLFile.empty() == false) FLFile = flCombine(Setup.Find("Dir::FileListDir"),FLFile); @@ -457,7 +459,7 @@ void LoadTree(vector<PackageMap> &PkgList,Configuration &Setup) string DFLFile = Setup.Find("TreeDefault::FileList", ""); string DSFLFile = Setup.Find("TreeDefault::SourceFileList", ""); - int const Permissions = Setup.FindI("Default::FileMode",0644); + mode_t const Permissions = Setup.FindI("Default::FileMode",0644); bool const LongDescription = Setup.FindB("Default::LongDescription", _config->FindB("APT::FTPArchive::LongDescription", true)); @@ -548,6 +550,8 @@ void LoadTree(vector<PackageMap> &PkgList,Configuration &Setup) /* */ void LoadBinDir(vector<PackageMap> &PkgList,Configuration &Setup) { + mode_t const Permissions = Setup.FindI("Default::FileMode",0644); + // Process 'bindirectory' type sections const Configuration::Item *Top = Setup.Tree("bindirectory"); for (Top = (Top == 0?0:Top->Child); Top != 0;) @@ -567,6 +571,7 @@ void LoadBinDir(vector<PackageMap> &PkgList,Configuration &Setup) Itm.InternalPrefix = Block.Find("InternalPrefix",Top->Tag.c_str()); Itm.Contents = Block.Find("Contents"); Itm.ContentsHead = Block.Find("Contents::Header"); + Itm.Permissions = Block.FindI("FileMode", Permissions); Itm.GetGeneral(Setup,Block); PkgList.push_back(Itm); diff --git a/ftparchive/writer.cc b/ftparchive/writer.cc index 58e32dade..d7d699ddc 100644 --- a/ftparchive/writer.cc +++ b/ftparchive/writer.cc @@ -708,18 +708,21 @@ bool SourcesWriter::DoPackage(string FileName) // Add the dsc to the files hash list string const strippedName = flNotDir(FileName); std::ostringstream ostreamFiles; - ostreamFiles << "\n " << string(MD5.Result()) << " " << St.st_size << " " - << strippedName << "\n " << Tags.FindS("Files"); + if (Tags.Exists("Files")) + ostreamFiles << "\n " << string(MD5.Result()) << " " << St.st_size << " " + << strippedName << "\n " << Tags.FindS("Files"); string const Files = ostreamFiles.str(); std::ostringstream ostreamSha1; - ostreamSha1 << "\n " << string(SHA1.Result()) << " " << St.st_size << " " - << strippedName << "\n " << Tags.FindS("Checksums-Sha1"); + if (Tags.Exists("Checksums-Sha1")) + ostreamSha1 << "\n " << string(SHA1.Result()) << " " << St.st_size << " " + << strippedName << "\n " << Tags.FindS("Checksums-Sha1"); string const ChecksumsSha1 = ostreamSha1.str(); std::ostringstream ostreamSha256; - ostreamSha256 << "\n " << string(SHA256.Result()) << " " << St.st_size << " " - << strippedName << "\n " << Tags.FindS("Checksums-Sha256"); + if (Tags.Exists("Checksums-Sha256")) + ostreamSha256 << "\n " << string(SHA256.Result()) << " " << St.st_size << " " + << strippedName << "\n " << Tags.FindS("Checksums-Sha256"); string const ChecksumsSha256 = ostreamSha256.str(); // Strip the DirStrip prefix from the FileName and add the PathPrefix @@ -925,12 +928,12 @@ ReleaseWriter::ReleaseWriter(string const &DB) } time_t const validuntil = now + _config->FindI("APT::FTPArchive::Release::ValidTime", 0); - char validstr[128] = ""; + char validstr[128]; if (now == validuntil || strftime(validstr, sizeof(validstr), "%a, %d %b %Y %H:%M:%S UTC", gmtime(&validuntil)) == 0) { - datestr[0] = '\0'; + validstr[0] = '\0'; } map<string,string> Fields; diff --git a/methods/bzip2.cc b/methods/bzip2.cc index 241f21c66..c668141a2 100644 --- a/methods/bzip2.cc +++ b/methods/bzip2.cc @@ -56,12 +56,9 @@ bool Bzip2Method::Fetch(FetchItem *Itm) // Open the source and destination files FileFd From(Path,FileFd::ReadOnly); - // if the file is empty, just rename it and return - if(From.Size() == 0) - { - rename(Path.c_str(), Itm->DestFile.c_str()); - return true; - } + // FIXME add an error message saying that empty files can't be valid archives + if(From.Size() == 0) + return false; int GzOut[2]; if (pipe(GzOut) < 0) diff --git a/methods/gzip.cc b/methods/gzip.cc index 5b9b66b50..22cae9424 100644 --- a/methods/gzip.cc +++ b/methods/gzip.cc @@ -48,12 +48,9 @@ bool GzipMethod::Fetch(FetchItem *Itm) // Open the source and destination files FileFd From(Path,FileFd::ReadOnlyGzip); - // if the file is empty, just rename it and return - if(From.Size() == 0) - { - rename(Path.c_str(), Itm->DestFile.c_str()); - return true; - } + // FIXME add an error message saying that empty files can't be valid archives + if(From.Size() == 0) + return false; FileFd To(Itm->DestFile,FileFd::WriteAtomic); To.EraseOnFailure(); diff --git a/po/apt-all.pot b/po/apt-all.pot index 71d2b1294..757f685da 100644 --- a/po/apt-all.pot +++ b/po/apt-all.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+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" @@ -147,14 +147,14 @@ msgstr "" msgid " Version table:" msgstr "" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "" -#: cmdline/apt-cache.cc:1739 +#: cmdline/apt-cache.cc:1745 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -259,31 +259,31 @@ msgstr "" msgid "Cannot get debconf version. Is debconf installed?" msgstr "" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -325,11 +325,11 @@ msgid "" " -o=? Set an arbitrary configuration option" msgstr "" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "" @@ -439,7 +439,7 @@ msgstr "" msgid " %s has no override entry\n" msgstr "" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr "" @@ -549,142 +549,142 @@ msgstr "" msgid "Failed to rename %s to %s" msgstr "" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr "" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "" -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" msgstr "" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "" -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "" -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "" -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr "" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 msgid " [Not candidate version]" msgstr "" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "" -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -692,164 +692,167 @@ msgid "" "is only available from another source\n" msgstr "" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, c-format msgid "Package '%s' has no installation candidate" msgstr "" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, c-format msgid "%s set to manually installed.\n" msgstr "" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "" -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr "" -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr "" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "" -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "" -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "" -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "" -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "" - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "" -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -857,46 +860,46 @@ msgid "" " ?] " msgstr "" -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "" -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "" -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" msgstr "" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "" -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "" -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -906,35 +909,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -943,7 +946,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -951,11 +954,11 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -971,29 +974,29 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" msgstr "" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." msgstr "" -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1001,69 +1004,69 @@ msgid "" "or been moved out of Incoming." msgstr "" -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, c-format msgid "%s set to automatically installed.\n" msgstr "" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "" -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 msgid "Must specify at least one package to fetch source for" msgstr "" -#: cmdline/apt-get.cc:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1071,111 +1074,115 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: cmdline/apt-get.cc:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 msgid "Must specify at least one package to check builddeps for" msgstr "" -#: cmdline/apt-get.cc:2506 +#: cmdline/apt-get.cc:2524 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" -#: cmdline/apt-get.cc:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "" -#: cmdline/apt-get.cc:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " "package %s can satisfy version requirements" msgstr "" -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -#: cmdline/apt-get.cc:2693 +#: cmdline/apt-get.cc:2711 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: cmdline/apt-get.cc:2709 +#: cmdline/apt-get.cc:2727 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: cmdline/apt-get.cc:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1221,7 +1228,7 @@ msgid "" " This APT has Super Cow Powers.\n" msgstr "" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1451,10 +1458,10 @@ msgstr "" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1586,23 +1593,23 @@ msgstr "" msgid "Unparsable control file" msgstr "" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "" @@ -1691,7 +1698,7 @@ msgstr "" msgid "Server closed the connection" msgstr "" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "" @@ -1703,7 +1710,7 @@ msgstr "" msgid "Protocol corruption" msgstr "" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "" @@ -1757,7 +1764,7 @@ msgstr "" msgid "Unable to accept connection" msgstr "" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "" @@ -1887,67 +1894,67 @@ msgstr "" msgid "Bad header line" msgstr "" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "" -#: methods/http.cc:894 +#: methods/http.cc:900 msgid "Error reading from server. Remote end closed connection" msgstr "" -#: methods/http.cc:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 msgid "Failed to truncate file" msgstr "" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "" @@ -2137,14 +2144,14 @@ msgstr "" msgid "Unable to stat the mount point %s" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "" @@ -2168,149 +2175,149 @@ msgstr "" msgid "Could not get lock %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "" -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, c-format msgid "Sub-process %s received signal %u." msgstr "" -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "" -#: apt-pkg/contrib/fileutl.cc:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, c-format msgid "Could not open file descriptor %d" msgstr "" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, c-format msgid "Problem closing the gzip file %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, c-format msgid "Problem closing the file %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, c-format msgid "Problem renaming the file %s to %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, c-format msgid "Problem unlinking the file %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "" -#: apt-pkg/pkgcache.cc:163 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache was built for a different architecture" msgstr "" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "" @@ -2428,7 +2435,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" @@ -2443,7 +2450,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" @@ -2458,17 +2465,17 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." msgstr "" -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "" -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2491,12 +2498,12 @@ msgstr "" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "" @@ -2516,12 +2523,12 @@ msgstr "" msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "" @@ -2542,17 +2549,21 @@ msgstr "" msgid "You may want to run apt-get update to correct these problems" msgstr "" -#: apt-pkg/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "" + +#: apt-pkg/policy.cc:344 #, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -#: apt-pkg/policy.cc:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "" @@ -2654,61 +2665,61 @@ msgstr "" msgid "MD5Sum mismatch" msgstr "" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" msgstr "" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 msgid "There is no public key available for the following key IDs:\n" msgstr "" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, 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:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " "manually fix this package." msgstr "" -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "" @@ -2825,37 +2836,37 @@ msgstr "" msgid "Source list entries for this disc are:\n" msgstr "" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "" -#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "" -#: apt-pkg/indexcopy.cc:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, c-format msgid "Skipping nonexistent file %s" msgstr "" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, c-format msgid "Hash mismatch for: %s" msgstr "" @@ -2912,12 +2923,12 @@ msgstr "" msgid "Installing %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "" @@ -2937,92 +2948,93 @@ msgstr "" msgid "Running post-installation trigger %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Could not open file '%s'" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+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" @@ -153,14 +153,14 @@ msgstr "" msgid " Version table:" msgstr " جدول النسخ:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, 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:1739 +#: cmdline/apt-cache.cc:1745 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -266,31 +266,31 @@ msgstr "تعذرت الكتابة إلى %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "تعذر الØصول على نسخة debconf. هل هي مثبتة؟" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "قائمة توسيعات الØزمة طويلة جداً" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "خطأ ÙÙŠ معالجة الدليل %s" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "قائمة توسيعات المصدر طويلة جداً" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "خطأ ÙÙŠ كتابة الترويسة إلى مل٠المØتويات" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "خطأ ÙÙŠ معالجة المØتويات %s" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -332,11 +332,11 @@ msgid "" " -o=? Set an arbitrary configuration option" msgstr "" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "لم تÙطابق أية تØديدات" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "بعض الملÙات Ù…Ùقودة ÙÙŠ مجموعة مل٠الØزمة `%s'" @@ -446,7 +446,7 @@ msgstr "" msgid " %s has no override entry\n" msgstr "" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr "" @@ -556,79 +556,79 @@ msgstr "" msgid "Failed to rename %s to %s" msgstr "Ùشل تغيير اسم %s إلى %s" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "إلا أن %s مثبت" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "إلا أنه سيتم تثبيت %s" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "إلا أنه غير قابل للتثبيت" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "إلا أنها Øزمة وهمية" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "إلا أنها غير مثبتة" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "إلا أنه لن يتم تثبيتها" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " أو" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "سيتم تثبيت الØزم الجديدة التالية:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "سيتم إزالة الØزم التالية:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "سيتم الإبقاء على الØزم التالية:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "ستتم ترقية الØزم التالية:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "سيتم تثبيط الØزم التالية:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "سيتم تغيير الØزم المبقاة التالية:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (بسبب %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -636,64 +636,64 @@ msgstr "" "تØذير: ستتم إزالة الØزم الأساسية التالية.\n" "لا يجب أن تقوم بهذا إلى إن كنت تعر٠تماماً ما تقوم به!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu سيتم ترقيتها، %lu مثبتة Øديثاً، " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu أعيد تثبيتها، " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu مثبطة، " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu لإزالتها Ùˆ %lu لم يتم ترقيتها.\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu غير مثبتة بالكامل أو مزالة.\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, fuzzy, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "لاØظ، تØديد %s بسبب صيغة regex '%s'\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, fuzzy, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "لاØظ، تØديد %s بسبب صيغة regex '%s'\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, fuzzy, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "النسخة المØددة %s (%s) للإصدارة %s\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "الØزمة %s وهميّة وتوÙّرها:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [Ù…Ùثبّتة]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 msgid " [Not candidate version]" msgstr "" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "يجب اختيار واØدة بالتØديد لتثبيتها." -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -701,164 +701,167 @@ msgid "" "is only available from another source\n" msgstr "" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "على أيّ Ùإن الØزم التالية تØلّ مكانها:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, fuzzy, c-format msgid "Package '%s' has no installation candidate" msgstr "الØزمة %s ليس لها Ù…Ø±Ø´Ø ØªØ«Ø¨ÙŠØª" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, fuzzy, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "لاØظ، تØديد %s بدلاً من %s\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "تخطّي %sØŒ Øيث أنها مثبتة ولم يتمّ تعيين الترقية.\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, fuzzy, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "تخطّي %sØŒ Øيث أنها مثبتة ولم يتمّ تعيين الترقية.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "إعادة تثبيت %s غير ممكنة، Øيث أنّه لا يمكن تنزيلها.\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s هي النسخة الأØدث.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "إلا أنه سيتم تثبيت %s" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "الØزمة %s غير Ù…Ùثبّتة، لذلك لن تÙزال\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "تصØÙŠØ Ø§Ù„Ù…Ø¹ØªÙ…Ø¯Ø§Øª..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " Ùشل." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "لم يمكن تصØÙŠØ Ø§Ù„Ù…Ø¹ØªÙ…Ø¯Ø§Øª" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "لم يمكن تقليص مجموعة الترقية" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " تم" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "قد ترغب بتنÙيذ الأمر 'apt-get -f install' لتصØÙŠØ Ù‡Ø°Ù‡." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "Ù…Ùعتمدات غير مستوÙاة. Øاول استخدام -f." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "تØذير: تعذرت المصادقة على الØزم التالية!" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "تم غض النظر عن تØذير المصادقة.\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "تثبيت هذه الØزم دون التØقق منها [y/N]ØŸ " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "تعذرت المصادقة على بعض الØزم" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "هناك مشاكل وتم استخدام -y دون --force-yes" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "خطأ داخلي، تم طلب InstallPackages مع وجود Øزم معطوبة!" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "Øزم بØاجة للإزالة لكن الإزالة Ù…Ùعطّلة." -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "خطأ داخلي، لم تنته عملية الترتيب" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "تعذرت قراءة قائمة المصادر." - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "يا للغرابة.. لم تتطابق الأØجام، الرجاء مراسلة apt@packages.debian.org" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "بØاجة إلى جلب %sب/%sب من الأرشيÙ.\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "بØاجة إلى جلب %sب من الأرشيÙ.\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, fuzzy, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "بعد الاستخراج %sب من المساØØ© الإضاÙيّة سيتمّ استخدامها.\n" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, fuzzy, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "بعد الاستخراج %sب من المساØØ© ستÙرّغ.\n" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "تعذر Øساب المساØØ© الØرة ÙÙŠ %s" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "ليس هناك مساØØ© كاÙية ÙÙŠ %s." -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "نعم، اÙعل ما أقوله!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -869,28 +872,28 @@ msgstr "" "كي تستمر اكتب العبارة '%s'\n" " ØŸ] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "إجهاض." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "هل تريد الاستمرار [Y/n]ØŸ" -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Ùشل Ø¥Øضار %s %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "Ùشل تنزيل بعض الملÙات" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "اكتمل التنزيل ÙˆÙÙŠ وضع التنزيل Ùقط" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -898,19 +901,19 @@ msgstr "" "تعذر Ø¥Øضار بعض الأرشيÙØŒ ربما يمكنك Ù…Øاولة تنÙيذ apt-get update أو إضاÙØ© --" "fix-missingØŸ" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing وتبديل الأوساط غير مدعومة Øالياً" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "تعذر تصØÙŠØ Ø§Ù„Øزم المÙقودة." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "إجهاض التثبيت." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -920,35 +923,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "لا يقبل الأمر update أية Ù…Ùعطيات" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -958,7 +961,7 @@ msgid_plural "" msgstr[0] "سيتم تثبيت الØزم الجديدة التالية:" msgstr[1] "سيتم تثبيت الØزم الجديدة التالية:" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -966,11 +969,11 @@ msgid_plural "" msgstr[0] "سيتم تثبيت الØزم الجديدة التالية:" msgstr[1] "سيتم تثبيت الØزم الجديدة التالية:" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -986,31 +989,31 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "قد تساعد المعلومات التالية ÙÙŠ ØÙ„ المشكلة:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "خطأ داخلي، عطب AllUpgrade بعض الأشياء" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "خطأ داخلي، عطب AllUpgrade بعض الأشياء" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "قد ترغب بتشغيل 'apt-get -f install' لتصØÙŠØ Ù‡Ø°Ù‡:" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." msgstr "" "Ù…Ùعتمدات غير مستوÙاة. جرب 'apt-get -f install' بدون أسماء Øزم (أو Øدّد Øلاً)." -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1018,69 +1021,69 @@ msgid "" "or been moved out of Incoming." msgstr "" -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "Øزم معطوبة" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "سيتم تثبيت الØزم الإضاÙيّة التالية:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "الØزم المقترØØ©:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "الØزم المستØسنة:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "تعذر العثور على الØزمة %s" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "إلا أنه سيتم تثبيت %s" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "Øساب الترقية..." -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "Ùشل" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "تمّ" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "تعذر Ù‚ÙŽÙْل دليل التنزيل" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 msgid "Must specify at least one package to fetch source for" msgstr "يجب تØديد Øزمة واØدة على الأقل لجلب مصدرها" -#: cmdline/apt-get.cc:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "تعذر العثور على مصدر الØزمة %s" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1088,111 +1091,115 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "تخطي المل٠'%s' المنزل مسبقاً\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "ليس هناك مساØØ© كاÙية ÙÙŠ %s" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "يجب جلب %sب/%sب من الأرشيÙات المصدرية.\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "يجب جلب %sب من الأرشيÙات المصدريّة.\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "Ø¥Øضار المصدر %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "Ùشل Ø¥Øضار بعض الأرشيÙات." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: cmdline/apt-get.cc:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "أمر ÙÙƒ الØزمة '%s' Ùشل.\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "أمر البناء '%s' Ùشل.\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 msgid "Must specify at least one package to check builddeps for" msgstr "" -#: cmdline/apt-get.cc:2506 +#: cmdline/apt-get.cc:2524 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" -#: cmdline/apt-get.cc:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "" -#: cmdline/apt-get.cc:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " "package %s can satisfy version requirements" msgstr "" -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -#: cmdline/apt-get.cc:2693 +#: cmdline/apt-get.cc:2711 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: cmdline/apt-get.cc:2709 +#: cmdline/apt-get.cc:2727 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: cmdline/apt-get.cc:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "الوØدات المدعومة:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1238,7 +1245,7 @@ msgid "" " This APT has Super Cow Powers.\n" msgstr "" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1473,10 +1480,10 @@ msgstr "" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1608,23 +1615,23 @@ msgstr "Ùشل العثور على مل٠تØكّم صالØ" msgid "Unparsable control file" msgstr "" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, fuzzy, c-format msgid "Couldn't open pipe for %s" msgstr "Ùشل إغلاق المل٠%s" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "Ùشيل تنÙيذ stat" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "Ùشل تعيين وقت التعديل" @@ -1717,7 +1724,7 @@ msgstr "انتهى وقت الاتصال" msgid "Server closed the connection" msgstr "أغلق الخادم الاتصال" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "خطأ ÙÙŠ القراءة" @@ -1729,7 +1736,7 @@ msgstr "" msgid "Protocol corruption" msgstr "" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "خطأ ÙÙŠ الكتابة" @@ -1783,7 +1790,7 @@ msgstr "" msgid "Unable to accept connection" msgstr "تعذر قبول الاتصال" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "" @@ -1913,68 +1920,68 @@ msgstr "" msgid "Bad header line" msgstr "سطر ترويسة سيء" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "أرسل خادم http ترويسة ردّ غير صالØØ©" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "أرسل خادم http ترويسة طول Ù…Øتويات (ÙContent-Length) غير صالØØ©" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "أرسل خادم http ترويسة مدى Ù…Øتويات (ÙContent-Range) غير صالØØ©" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "خادم http له دعم مدى معطوب" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "نسق تاريخ مجهول" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "Ùشل التØديد" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "انتهى وقت الاتصال" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "خطأ ÙÙŠ الكتابة إلى مل٠المÙخرجات" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "خطأ ÙÙŠ الكتابة إلى الملÙ" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "خطأ ÙÙŠ الكتابة إلى الملÙ" -#: methods/http.cc:894 +#: methods/http.cc:900 msgid "Error reading from server. Remote end closed connection" msgstr "خطأ ÙÙŠ القراءة من الخادم. أقÙÙ„ الطر٠الآخر الاتصال" -#: methods/http.cc:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "خطأ ÙÙŠ القراءة من الخادم" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 #, fuzzy msgid "Failed to truncate file" msgstr "Ùشلت كتابة المل٠%s" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "بيانات ترويسة سيئة" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "Ùشل الاتصال" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "خطأ داخلي" @@ -2166,14 +2173,14 @@ msgstr "عمليّة غير صالØØ© %s" msgid "Unable to stat the mount point %s" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "" @@ -2197,149 +2204,149 @@ msgstr "" msgid "Could not get lock %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "" -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, c-format msgid "Sub-process %s received signal %u." msgstr "" -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "" -#: apt-pkg/contrib/fileutl.cc:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "Ùشل إغلاق المل٠%s" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, fuzzy, c-format msgid "Problem closing the gzip file %s" msgstr "مشكلة ÙÙŠ إغلاق الملÙ" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "مشكلة ÙÙŠ إغلاق الملÙ" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "مشكلة ÙÙŠ مزامنة الملÙ" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "مشكلة ÙÙŠ إغلاق الملÙ" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "مشكلة ÙÙŠ مزامنة الملÙ" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "" -#: apt-pkg/pkgcache.cc:163 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache was built for a different architecture" msgstr "" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "يعتمد" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "يعتمد مسبقاً" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "يستØسن" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "يقترØ" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "يعارض" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "يستبدل" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "ÙŠÙلغي" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "مهم" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "مطلوب" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "قياسي" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "اختياري" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "إضاÙÙŠ" @@ -2458,7 +2465,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" @@ -2473,7 +2480,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" @@ -2488,17 +2495,17 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." msgstr "" -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "" -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2521,12 +2528,12 @@ msgstr "تعذر Ù‚ÙÙ„ دليل القائمة" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "" @@ -2546,12 +2553,12 @@ msgstr "" msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "الرجاء إدخال القرص المÙسمّى '%s' ÙÙŠ السوّاقة '%s' وضغط Ù…ÙØªØ§Ø Ø§Ù„Ø¥Ø¯Ø®Ø§Ù„." -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "نظام الØزم '%s' غير مدعوم" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "" @@ -2572,17 +2579,21 @@ msgstr "" msgid "You may want to run apt-get update to correct these problems" msgstr "قد يساعدك تنÙيذ الأمر apt-get update ÙÙŠ تصØÙŠØ Ù‡Ø°Ù‡ المشاكل" -#: apt-pkg/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "تعذرت قراءة قائمة المصادر." + +#: apt-pkg/policy.cc:344 #, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -#: apt-pkg/policy.cc:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "" @@ -2684,62 +2695,62 @@ msgstr "Ùشل إعادة التسمية ØŒ %s (%s -> %s)." msgid "MD5Sum mismatch" msgstr "MD5Sum غير متطابقة" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 #, fuzzy msgid "Hash Sum mismatch" msgstr "MD5Sum غير متطابقة" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 msgid "There is no public key available for the following key IDs:\n" msgstr "" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, 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:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " "manually fix this package." msgstr "" -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "الØجم غير متطابق" @@ -2859,37 +2870,37 @@ msgstr "كتابة لائØØ© المصادر الجديدة\n" msgid "Source list entries for this disc are:\n" msgstr "" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "" -#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "" -#: apt-pkg/indexcopy.cc:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, fuzzy, c-format msgid "Skipping nonexistent file %s" msgstr "ÙØªØ Ù…Ù„Ù Ø§Ù„ØªÙ‡ÙŠØ¦Ø© %s" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, fuzzy, c-format msgid "Hash mismatch for: %s" msgstr "MD5Sum غير متطابقة" @@ -2946,12 +2957,12 @@ msgstr "" msgid "Installing %s" msgstr "تم تثبيت %s" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "تهيئة %s" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "إزالة %s" @@ -2971,92 +2982,93 @@ msgstr "" msgid "Running post-installation trigger %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, fuzzy, c-format msgid "Could not open file '%s'" msgstr "Ùشل إغلاق المل٠%s" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "تØضير %s" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "ÙØªØ %s" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "التØضير لتهيئة %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "تم تثبيت %s" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "التØضير لإزالة %s" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "تم إزالة %s" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "التØضير لإزالة %s بالكامل" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "تمت إزالة %s بالكامل" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -4,9 +4,9 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.18\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" -"PO-Revision-Date: 2010-08-25 09:19+0100\n" -"Last-Translator: maacub <maacub@gmail.com>\n" +"POT-Creation-Date: 2010-09-28 17:23+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" "Language: ast\n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "Versiones distintes en total: " #: cmdline/apt-cache.cc:334 msgid "Total distinct descriptions: " -msgstr "Descriciones distintes en total: " +msgstr "Descripciones distintes en total: " #: cmdline/apt-cache.cc:336 msgid "Total dependencies: " @@ -62,11 +62,11 @@ msgstr "Dependencies totales: " #: cmdline/apt-cache.cc:339 msgid "Total ver/file relations: " -msgstr "Relaciones versión/ficheru en total: " +msgstr "Rellaciones versión/ficheru en total: " #: cmdline/apt-cache.cc:341 msgid "Total Desc/File relations: " -msgstr "Relaciones descrición/ficheru en total: " +msgstr "Rellaciones descripción/ficheru en total: " #: cmdline/apt-cache.cc:343 msgid "Total Provides mappings: " @@ -146,14 +146,14 @@ msgstr " Chincheta de paquetes: " msgid " Version table:" msgstr " Tabla de versiones:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, 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:1739 +#: cmdline/apt-cache.cc:1745 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -319,31 +319,31 @@ msgstr "Nun se pue escribir en %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Nun se pue alcontrar la versión de debconf. ¿Ta instaláu debconf?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" -msgstr "La llista d'estensión de paquetes ye demasiao llarga" +msgstr "La llista d'estensión de paquetes ye enforma llarga" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "Error al procesar el direutoriu %s" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" -msgstr "La llista d'estensión de fontes ye demasiao llarga" +msgstr "La llista d'estensión de fontes ye enforma llarga" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "Error al escribir la cabecera al ficheru de contenÃos" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "Error al procesar contenÃos %s" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -416,7 +416,7 @@ msgstr "" "Escoyetes:\n" " -h Esti testu d'aida\n" " --md5 Xenerar control MD5 \n" -" -s=? Ficheru de disvÃu de fontes\n" +" -s=? Ficheru de desvÃu de fontes\n" " -q Sele\n" " -d=? Seleiciona la base de datos de caché opcional \n" " --no-delink Activa'l mou de depuración de desenllaces\n" @@ -424,11 +424,11 @@ msgstr "" " -c=? Lleer esti ficheru de configuración\n" " -o=? Afita una escoyeta de configuración propia" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "Nun concasó denguna seleición" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Falten dellos ficheros nel grupu de ficheros de paquete `%s'" @@ -540,7 +540,7 @@ msgstr "L'archivu nun tien el campu paquetes" msgid " %s has no override entry\n" msgstr " %s nun tien la entrada saltos\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " el curiador de %s ye %s y non %s\n" @@ -650,79 +650,79 @@ msgstr "Problema al desenllazar %s" msgid "Failed to rename %s to %s" msgstr "Nun pudo renomase %s como %s" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "S" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "Error de compilación d'espresión regular - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "Los siguientes paquetes nun cumplen dependencies:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "pero %s ta instaláu" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "pero %s ta pa instalar" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "pero nun ye instalable" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "pero ye un paquete virtual" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "pero nun ta instaláu" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "pero nun va instalase" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " o" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "Van instalase los siguientes paquetes NUEVOS:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "Los siguientes paquetes van DESANICIASE:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "Los siguientes paquetes tan retenÃos:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "Los siguientes paquetes van actualizase:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "Los siguientes paquetes van DESACTUALIZASE:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "Van camudase los siguientes paquetes retenÃos:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (por %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -730,64 +730,64 @@ msgstr "" "AVISU: Los siguientes paquetes esenciales van desaniciase.\n" "¡Esto NUN hai que facelo si nun sabes esautamente lo que faes!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu actualizaos, %lu nuevos instalaos, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu reinstalaos, " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu desactualizaos, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu para desaniciar y %lu nun actualizaos.\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu nun instalaos dafechu o desaniciaos.\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "Nota, escoyendo '%s' pa la xera '%s'\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "Nota, escoyendo '%s' pa regex '%s'\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "Esbillada la versión %s (%s) pa %s\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "El paquete %s ye un paquete virtual ufrÃu por:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [Instaláu]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 msgid " [Not candidate version]" msgstr " [Nun ye versión candidata]" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "Has d'escoyer esplÃcitamente unu pa instalar." -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -798,164 +798,167 @@ msgstr "" "Esto puede significar que falta el paquete, ta arrumbáu, o sólo\n" "ta disponible dende otra fonte\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "SicasÃ, los siguientes paquetes reemplacenlu:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, c-format msgid "Package '%s' has no installation candidate" msgstr "El paquete '%s' nun tien candidatu pa instalación" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "Los paquetes virtuales como '%s' nun pueden desaniciase\n" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "Nota, escoyendo %s nel llugar de %s\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "Saltando %s, ya ta instalau y la actualización nun ta activada.\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "Saltando %s, nun ta instaláu y namái se requieren anovamientos.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "La reinstalación de %s nun ye dable, nun pue descargase.\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s yá ta na versión más nueva.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, c-format msgid "%s set to manually installed.\n" msgstr "%s axustáu como instaláu manualmente.\n" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "El paquete %s nun ta instalau, nun va desaniciase\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "Iguando dependencies..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " falló." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "Nun pudieron iguase les dependencies" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "Nun pue amenorgase'l conxuntu d'actualización" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " Fecho" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "HabrÃes d'executar 'apt-get -f install' para igualo." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "Dependencies incumplÃes. Téntalo usando -f." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "AVISU: ¡Nun pudieron autenticase los siguientes paquetes!" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "Avisu d'autenticación saltáu.\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "¿Instalar esos paquetes ensin verificación [s/N]? " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "Dellos paquetes nun pudieron autenticase" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "Hai problemes y utilizose -y ensin --force-yes" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Error internu, ¡InstallPackages llamose con paquetes frañaos!" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "Fai falta desaniciar los paquetes pero desaniciar ta torgáu." -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "Error internu, ordenar nun finó" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "Nun pudo lleese la llista de fontes." - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 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" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Hai que descargar %sB/%sB d'archivos.\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Hai que descargar %sB d'archivos.\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, 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" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, 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" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "Nun pue determinase l'espaciu llibre de %s" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "Nun tienes espaciu libre bastante en %s." -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Conseñose Trivial Only pero ésta nun ye una operación trivial." -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "SÃ, ¡facer lo que digo!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -966,28 +969,28 @@ msgstr "" "Pa continuar escribe la frase '%s'\n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "Encaboxar." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "¿Quies continuar [S/n]? " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Falló algamar %s %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "Dellos ficheros nun pudieron descargase" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "Descarga completa y en mou de sólo descarga" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -995,19 +998,19 @@ msgstr "" "Nun pudieron algamase dellos archivos, ¿seique executando apt-get update o " "tentando --fix-missing?" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing y cambéu de mediu nun ta sofitao actualmente" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "Nun pudieron iguase los paquetes que falten." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "Encaboxando la instalación." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1021,35 +1024,35 @@ msgstr[1] "" "Los siguientes paquetes desaparecieron del sistema como\n" "tolos ficheros fueron sobroescritos por otros paquetes:" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "Nota: Esto faise automáticamente y baxo demanda por dpkg." -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "Inorar release destÃn non disponible '%s' pal paquete '%s'" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Tomando '%s' como paquetes d'orÃxenes en llugar de '%s'\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "Inorar versión non disponible de '%s' del paquete '%s'" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "La orde update nun lleva argumentos" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Suponse que nun vamos esborrar coses; nun pue entamase AutoRemover" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1060,7 +1063,7 @@ msgstr[1] "" "Los siguientes paquetes instaláronse de manera automática y ya nun se " "necesiten:" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1069,11 +1072,11 @@ msgstr[0] "El paquete %lu instalóse de mou automáticu y yá nun se necesita.\n msgstr[1] "" "Los paquetes %lu instaláronse de manera automática y ya nun se necesiten\n" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "Usa 'apt-get autoremove' pa desinstalalos." -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1091,23 +1094,23 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "La siguiente información pue aidar a resolver la situación:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" msgstr "Error internu, AutoRemover rompió coses" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "Error internu, AllUpgrade rompió coses" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "HabrÃes d'executar 'apt-get -f install' para iguar estos:" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1115,7 +1118,7 @@ msgstr "" "Dependencies ensin cubrir. Tenta 'apt-get -f install' ensin paquetes (o " "conseña una solución)." -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1127,62 +1130,62 @@ msgstr "" "inestable, que dellos paquetes necesarios nun se crearon o que\n" "s'allugaron fuera d'Incoming." -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "Paquetes frañaos" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "Instalaránse los siguientes paquetes extra:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "Paquetes afalaos:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "Paquetes encamentaos" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "Nun pudo alcontrase'l paquete %s" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s axustáu como instaláu automáticamente.\n" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "Calculando l'anovamientu... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "Falló" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "Fecho" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "Error internu, l'iguador de problemes frañó coses" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "Nun pue bloquiase'l direutoriu de descarga" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 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:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "Nun pudo alcontrase un paquete fonte pa %s" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -1191,7 +1194,7 @@ msgstr "" "AVISU: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1203,76 +1206,80 @@ msgstr "" "pa baxar los caberos anovamientos (posiblemente tovÃa nun sacaos) pal " "paquete.\n" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Saltando'l ficheru yá descargáu '%s'\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "Nun hai espaciu llibre bastante en %s" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Hai falta descargar %sB/%sB d'archivos fonte.\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Hai falta descargar %sB d'archivos fonte.\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "Fonte descargada %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "Falló la descarga de dellos archivos." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, 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:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Falló la orde de desempaquetáu '%s'.\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, 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:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "Falló la orde build '%s'.\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "Falló el procesu fÃu" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 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:2506 +#: cmdline/apt-get.cc:2524 #, 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:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "%s nun tien dependencies de construcción.\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1281,7 +1288,7 @@ msgstr "" "La dependencia %s en %s nun puede satisfacese porque nun se puede atopar el " "paquete %s" -#: cmdline/apt-get.cc:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1290,32 +1297,32 @@ 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:2666 +#: cmdline/apt-get.cc:2684 #, 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 " -"demasiao nuevu" +"enforma nuevu" -#: cmdline/apt-get.cc:2693 +#: cmdline/apt-get.cc:2711 #, 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:2709 +#: cmdline/apt-get.cc:2727 #, 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:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "Fallu al procesar les dependencies de construcción" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "Módulos sofitaos:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1405,7 +1412,7 @@ msgstr "" "pa más información y opciones.\n" " Esti APT tien Poderes de Super Vaca.\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1613,7 +1620,7 @@ msgstr "Falló al pesllar el ficheru %s" #: apt-inst/extract.cc:93 apt-inst/extract.cc:164 #, c-format msgid "The path %s is too long" -msgstr "La trayeutoria %s ye demasiao llarga" +msgstr "La trayeutoria %s ye enforma llarga" #: apt-inst/extract.cc:124 #, c-format @@ -1632,7 +1639,7 @@ msgstr "El paquete ta tentando escribir nel oxetivu desviáu %s/%s" #: apt-inst/extract.cc:154 apt-inst/extract.cc:297 msgid "The diversion path is too long" -msgstr "La trayeutoria de desviación ye demasiao llarga" +msgstr "La trayeutoria de desviación ye enforma llarga" #: apt-inst/extract.cc:240 #, c-format @@ -1659,10 +1666,10 @@ msgstr "El ficheru %s/%s sobreescribe al que ta nel paquete %s" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1798,23 +1805,23 @@ msgstr "Nun fui a atopar un ficheru de control válidu" msgid "Unparsable control file" msgstr "Ficheru de control inanalizable" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "Nun se pudo abrir una tuberÃa pa %s" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "Fallu de llectura dende'l procesu %s" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "Falló al lleer" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "Nun se pudo afitar la hora de modificación" @@ -1907,7 +1914,7 @@ msgstr "Gandió'l tiempu de conexón" msgid "Server closed the connection" msgstr "El sirvidor zarró la conexón" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "Fallu de llectura" @@ -1919,7 +1926,7 @@ msgstr "Una rempuesta revirtió'l buffer." msgid "Protocol corruption" msgstr "Corrupción del protocolu" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "Fallu d'escritura" @@ -1973,7 +1980,7 @@ msgstr "Gandió'l tiempu de conexón col zócalu de datos" msgid "Unable to accept connection" msgstr "Nun se pudo aceptar la conexón" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "Hebo un problema al xenerar el hash del ficheru" @@ -2090,8 +2097,8 @@ msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" msgstr "" -"Les robles siguiente nun se pudieron verificar porque la to llave pública " -"nun ta a mano:\n" +"Les robles siguientes nun pudieron verificase porque la to llave pública nun " +"ta a mano:\n" #: methods/http.cc:385 msgid "Waiting for headers" @@ -2106,67 +2113,67 @@ msgstr "Obtúvose una sola llinia de testera penriba de %u carauteres" msgid "Bad header line" msgstr "Fallu na llinia testera" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "El sirvidor HTTP mandó una testera incorreuta de rempuesta" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "El sirvidor HTTP mandó una testera incorreuta de Content-Length" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "El sirvidor HTTP mandó una testera incorreuta de Content-Range" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "Esti sirvidor HTTP tien rotu'l soporte d'alcance" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "Formatu de data desconocÃu" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "Falló la escoyeta" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "Gandió'l tiempu de conexón" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "Fallu al escribir nel ficheru de salida" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "Fallu al escribir nel ficheru" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "Fallu al escribir nel ficheru" -#: methods/http.cc:894 +#: methods/http.cc:900 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:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "Fallu al lleer nel sirvidor" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 msgid "Failed to truncate file" msgstr "Falló al francer el ficheru" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "Datos de testera incorreutos" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "Fallo la conexón" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "Fallu internu" @@ -2347,7 +2354,7 @@ msgstr "La opción %s pide un argumentu enteru, non '%s'" #: apt-pkg/contrib/cmndline.cc:267 #, c-format msgid "Option '%s' is too long" -msgstr "Opción '%s' demasiao llarga" +msgstr "Opción '%s' enforma llarga" #: apt-pkg/contrib/cmndline.cc:300 #, c-format @@ -2364,14 +2371,14 @@ msgstr "Operación incorreuta: %s" msgid "Unable to stat the mount point %s" msgstr "Nun puede algamase información del puntu de montaxe %s" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "Nun se pudo cambiar a %s" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "Nun se pudo montar el CD-ROM" @@ -2395,149 +2402,149 @@ msgstr "Nun ta usándose bloquéu pal ficheru de bloquéu %s montáu per nfs" msgid "Could not get lock %s" msgstr "Nun se pudo torgar %s" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Esperaba %s pero nun taba ellÃ" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, 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:635 +#: apt-pkg/contrib/fileutl.cc:657 #, c-format msgid "Sub-process %s received signal %u." msgstr "El subprocesu %s recibió una señal %u." -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, 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:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "El subprocesu %s terminó de manera inesperada" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "Nun se pudo abrir el ficheru %s" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, c-format msgid "Could not open file descriptor %d" msgstr "Nun pudo abrise un ficheru descriptor %d" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "lleÃos, entá tenÃa de lleer %lu pero nun queda nada" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "escritos, entá tenÃa d'escribir %lu pero nun pudo facerse" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, c-format msgid "Problem closing the gzip file %s" msgstr "Problemes zarrando'l ficheru gzip %s" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, c-format msgid "Problem closing the file %s" msgstr "Problemes zarrando'l ficheru %s" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, 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:925 +#: apt-pkg/contrib/fileutl.cc:956 #, c-format msgid "Problem unlinking the file %s" msgstr "Hai problemes desvenceyando'l ficheru %s" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "Hai problemes al sincronizar el ficheru" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "Caché de paquetes balera." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "El ficheru de caché de paquetes ta tollÃu" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 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:158 +#: apt-pkg/pkgcache.cc:161 #, 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:163 +#: apt-pkg/pkgcache.cc:166 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:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "Depende de" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "Predepende de" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "Suxer" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "Recomienda" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "En conflictu con" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "Sustituye a" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "Fai obsoletu a" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "Ruempe" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "Aumenta" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "importante" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "requerÃu" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "estándar" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "opcional" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "extra" @@ -2643,7 +2650,7 @@ msgstr "Abriendo %s" #: apt-pkg/sourcelist.cc:261 apt-pkg/cdrom.cc:438 #, c-format msgid "Line %u too long in source list %s." -msgstr "Llinia %u demasiao llarga na llista d'orÃgenes %s." +msgstr "Llinia %u enforma llarga na llista d'orÃxenes %s." #: apt-pkg/sourcelist.cc:281 #, c-format @@ -2658,7 +2665,7 @@ msgstr "Triba '%s' desconocida na llinia %u de la llista d'orÃxenes %s" #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" "Nun pudó facese la configuración inmediatamente en '%s'. Por favor, mira man " @@ -2678,7 +2685,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" "Nun pudó facese la configuración inmediatamente nel desempaquetáu '%s'. Por " @@ -2696,24 +2703,24 @@ msgid "" msgstr "" "El paquete %s necesita reinstalase, pero nun s'alcuentra un archivu pa el." -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." msgstr "" -"Error, pkgProblemResolver::Resolve xeneró frañaures, esto puede ser pola mor " -"de paquetes retenÃos." +"Error, pkgProblemResolver::Resolve xeneró frañadures, esto puede ser pola " +"mor de paquetes retenÃos." -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." -msgstr "Nun pueden iguase los problemes; tienes paquetes frañaos retenidos." +msgstr "Nun pueden iguase los problemes; tienes paquetes frañaos retenÃos." -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." msgstr "" -"Dellos ficheros d'indiz nun pudieron descargase; ignoraronse o usaronse los " +"Nun pudieron descargase dellos ficheros d'Ãndiz; inoráronse o usáronse los " "antiguos nel so llugar." #: apt-pkg/acquire.cc:79 @@ -2733,12 +2740,12 @@ msgstr "Nun pudo bloquiase'l direutoriu %s" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Descargando ficheru %li de %li (falten %s)" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "Descargando ficheru %li de %li" @@ -2758,12 +2765,12 @@ msgstr "El métodu %s nun entamó correchamente" 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:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "El sistema d'empaquetáu '%s' nun ta sofitáu" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "Nun pudo determinase una triba de sistema d'empaquetáu afayadiza" @@ -2785,18 +2792,22 @@ msgstr "" 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/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "Nun pudo lleese la llista de fontes." + +#: apt-pkg/policy.cc:344 #, 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:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "Nun s'entiende'l tipu de pin %s" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "Nun hai prioridá (o ye cero) conseñada pa pin" @@ -2899,43 +2910,43 @@ msgstr "falló'l cambiu de nome, %s (%s -> %s)." msgid "MD5Sum mismatch" msgstr "La suma MD5 nun concasa" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" msgstr "La suma hash nun concasa" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 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" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "El ficheru release espiró, inorando %s (nun válidu dende %s)" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, 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:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -"Hebo un fallu durante la verificación de la firma. El repositoriu nun ta " -"anováu y un ficheru indiz previu será usáu. fallu GPG: %s: %s\n" +"Hebo un fallu durante la verificación de la robla. El repositoriu nun ta " +"anováu y va usase un ficheru Ãndiz. Fallu GPG: %s: %s\n" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "Fallu GPG: %s: %s" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2944,7 +2955,7 @@ 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:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2953,7 +2964,7 @@ msgstr "" "Nun pudo alcontrase un ficheru pal paquete %s. Esto puede significar que " "necesites iguar manualmente esti paquete" -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2961,7 +2972,7 @@ msgstr "" "Los ficheros d'indiz de paquetes tan corrompÃos. Nun hai campu Filename: pal " "paquete %s." -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "El tamañu nun concasa" @@ -3086,39 +3097,39 @@ msgstr "Escribiendo llista nueva d'orÃxenes\n" msgid "Source list entries for this disc are:\n" msgstr "Les entraes de la llista d'orÃxenes pa esti discu son:\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "%i rexistros escritos.\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, 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:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, 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:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" "Escribiéronse %i rexistros con %i ficheros perdÃos y %i ficheros que nun " "concasen\n" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, c-format msgid "Skipping nonexistent file %s" msgstr "Saltando'l ficheru non esistente %s" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "Nun puede alcontrase'l rexistru d'autenticación pa: %s" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, c-format msgid "Hash mismatch for: %s" msgstr "El hash nun concasa pa: %s" @@ -3183,12 +3194,12 @@ msgstr "" msgid "Installing %s" msgstr "Instalando %s" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "Configurando %s" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "Desinstalando %s" @@ -3208,76 +3219,77 @@ msgstr "Anotando desaniciáu de %s" msgid "Running post-installation trigger %s" msgstr "Executando activador de post-instalación de %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "Falta'l direutoriu '%s'." -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Could not open file '%s'" msgstr "Nun pudo abrise'l ficheru '%s'" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "Preparando %s" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "Desempaquetando %s" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "Preparándose pa configurar %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "%s instaláu" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "Preparándose pa desinstalar %s" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "%s desinstaláu" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "Preparándose pa desinstalar dafechu %s" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "Desinstalóse dafechu %s" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Nun puede escribise nel rexistru, falló openpty() (¿/dev/pts nun ta " "montáu?)\n" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "Executando dpkt" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 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:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "problemes de dependencies - déxase ensin configurar" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3285,7 +3297,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:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" @@ -3293,7 +3305,7 @@ msgstr "" "Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu de " "discu llenu" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3301,7 +3313,7 @@ msgstr "" "Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu de " "memoria" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.21\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+0200\n" "PO-Revision-Date: 2010-08-27 22:33+0300\n" "Last-Translator: Damyan Ivanov <dmn@debian.org>\n" "Language-Team: Bulgarian <dict@fsa-bg.org>\n" @@ -152,14 +152,14 @@ msgstr " Отбиване на пакета: " msgid " Version table:" msgstr " Таблица Ñ Ð²ÐµÑ€Ñиите:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s за %s компилиран на %s %s\n" -#: cmdline/apt-cache.cc:1739 +#: cmdline/apt-cache.cc:1745 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -326,31 +326,31 @@ msgstr "ÐеуÑпех при запиÑа на %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Ðе може да Ñе извлече верÑиÑта на debconf. Debconf инÑталиран ли е?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "СпиÑъкът Ñ Ñ€Ð°Ð·ÑˆÐ¸Ñ€ÐµÐ½Ð¸Ñ Ð½Ð° пакети и твърде дълъг" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "Грешка при обработката на Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ %s" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "СпиÑъкът Ñ Ñ€Ð°Ð·ÑˆÐ¸Ñ€ÐµÐ½Ð¸Ñ Ð½Ð° източници е твърде дълъг" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "Грешка при запазването на заглавната чаÑÑ‚ във файла ÑÑŠÑ Ñъдържание" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "Грешка при обработката на Ñъдържание %s" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -435,11 +435,11 @@ msgstr "" " -c=? Четене на този конфигурационен файл.\n" " -o=? ÐаÑтройване на произволна конфигурационна опциÑ" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "ÐÑма ÑÑŠÐ²Ð¿Ð°Ð´ÐµÐ½Ð¸Ñ Ð½Ð° избора" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "ЛипÑват нÑкои файлове от групата Ñ Ñ„Ð°Ð¹Ð»Ð¾Ð²Ð¸ пакети „%s“" @@ -551,7 +551,7 @@ msgstr "Ðрхивът нÑма поле „package“" msgid " %s has no override entry\n" msgstr " %s нÑма Ð·Ð°Ð¿Ð¸Ñ â€žoverride“\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " Ð¿Ð¾Ð´Ð´ÑŠÑ€Ð¶Ð°Ñ‰Ð¸Ñ Ð¿Ð°ÐºÐµÑ‚Ð° %s е %s, а не %s\n" @@ -661,79 +661,79 @@ msgstr "ÐеуÑпех при премахването на връзка на %s msgid "Failed to rename %s to %s" msgstr "ÐеуÑпех при преименуването на %s на %s" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "Грешка при компилирането на регулÑÑ€Ð½Ð¸Ñ Ð¸Ð·Ñ€Ð°Ð· - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "Следните пакети имат неудовлетворени завиÑимоÑти:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "но е инÑталиран %s" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "но ще бъде инÑталиран %s" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "но той не може да бъде инÑталиран" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "но той е виртуален пакет" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "но той не е инÑталиран" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "но той нÑма да бъде инÑталиран" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " или" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "Следните ÐОВИ пакети ще бъдат инÑталирани:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "Следните пакети ще бъдат ПРЕМÐÐ¥ÐÐТИ:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "Следните пакети нÑма да бъдат променени:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "Следните пакети ще бъдат актуализирани:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "Следните пакети ще бъдат ВЪРÐÐТИ КЪМ ПО-СТÐРРВЕРСИЯ:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "Следните задържани пакети ще бъдат променени:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (поради %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -741,64 +741,64 @@ msgstr "" "ПРЕДУПРЕЖДЕÐИЕ: Следните необходими пакети ще бъдат премахнати.\n" "Това ÐЕ би Ñ‚Ñ€Ñбвало да Ñтава оÑвен ако знаете точно какво правите!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu актуализирани, %lu нови инÑталирани, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu преинÑталирани, " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu върнати към по-Ñтара верÑиÑ, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu за премахване и %lu без промÑна.\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu не Ñа напълно инÑталирани или премахнати.\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "Избиране на %s за задача „%s“\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "Избиране на %s за регулÑрен израз „%s“\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "Избрана е верÑÐ¸Ñ %s (%s) за %s\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "Пакетът %s е виртуален пакет, оÑигурен от:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [ИнÑталиран]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 msgid " [Not candidate version]" msgstr " [верÑиÑта не е кандидат]" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "ТрÑбва изрично да изберете един за инÑталиране." -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -809,170 +809,173 @@ msgstr "" "Това може да означава, че пакета липÑва, оÑтарÑл е, или е доÑтъпен\n" "Ñамо от друг източник\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "Обаче Ñледните пакети го замеÑтват:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, c-format msgid "Package '%s' has no installation candidate" msgstr "Пакетът „%s“ нÑма кандидат за инÑталиране" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "Виртуални пакети като „%s“ не могат да Ñе премахват\n" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "Избиране на „%s“ вмеÑто „%s“\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "ПропуÑкане на %s, вече е инÑталиран и не е маркиран за актуализациÑ.\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" "ПропуÑкане на %s, който не е инÑталиран при заÑвени Ñамо обновÑваниÑ.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "ПреинÑталациÑта на %s не е възможна, не може да бъде изтеглен.\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s вече е най-новата верÑиÑ.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, c-format msgid "%s set to manually installed.\n" msgstr "%s е отбелÑзан като ръчно инÑталиран.\n" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "Пакетът %s не е инÑталиран, така че не е премахнат\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "Коригиране на завиÑимоÑтите..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " пропадна." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "ÐеуÑпех при коригирането на завиÑимоÑтите" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "ÐеуÑпех при минимизирането на набора актуализации" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " Готово" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "" "Възможно е да изпълните „apt-get -f install“, за да коригирате тези " "неизправноÑти." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "Ðеудовлетворени завиÑимоÑти. Опитайте Ñ â€ž-f“." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ПРЕДУПРЕЖДЕÐИЕ: Следните пакети не могат да бъдат удоÑтоверени!" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "Предупреждението за удоÑтоверÑването е пренебрегнато.\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "ИнÑталиране на тези пакети без проверка [y/N]?" -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "ÐÑкои пакети не можаха да бъдат удоÑтоверени" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "Има проблеми и „-y“ е използвано без „--force-yes“" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Вътрешна грешка, „InstallPackages“ е предизвикано при Ñчупени пакети!" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "ТрÑбва да бъдат премахнати пакети, но премахването е изключено." -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "Вътрешна грешка, „Ordering“ не завърши" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "СпиÑъкът Ñ Ð¸Ð·Ñ‚Ð¾Ñ‡Ð½Ð¸Ñ†Ð¸ не можа да бъде прочетен." - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" "Странно.. Размерите не Ñъвпадат, изпратете е-поща на apt@packages.debian.org" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Ðеобходимо е да Ñе изтеглÑÑ‚ %sB/%sB архиви.\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Ðеобходимо е да Ñе изтеглÑÑ‚ %sB архиви.\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" "След тази Ð¾Ð¿ÐµÑ€Ð°Ñ†Ð¸Ñ Ñ‰Ðµ бъде използвано %sB допълнително диÑково " "проÑтранÑтво.\n" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "След тази Ð¾Ð¿ÐµÑ€Ð°Ñ†Ð¸Ñ Ñ‰Ðµ бъде оÑвободено %sB диÑково проÑтранÑтво.\n" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "ÐеуÑпех при определÑнето на Ñвободното проÑтранÑтво в %s" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "ÐÑмате доÑтатъчно Ñвободно проÑтранÑтво в %s." -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Указано е „Trivial Only“, но това не е тривиална операциÑ." -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "Да, прави каквото казвам!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -983,28 +986,28 @@ msgstr "" "За да продължите, въведете фразата „%s“\n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "ПрекъÑване." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "ИÑкате ли да продължите [Y/n]? " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "ÐеуÑпех при изтеглÑнето на %s %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "ÐÑкои файлове не можаха да бъдат изтеглени" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "ИзтеглÑнето завърши в режим Ñамо на изтеглÑне" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1012,19 +1015,19 @@ msgstr "" "ÐеуÑпех при изтеглÑнето на нÑкои архиви, може да изпълните „apt-get update“ " "или да опитате Ñ â€ž--fix-missing“?" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "„--fix-missing“ и превключване на ноÑители не Ñе поддържа вÑе още" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "ÐеуÑпех при коригирането на липÑващите пакети." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "ПрекъÑване на инÑталирането." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1038,35 +1041,35 @@ msgstr[1] "" "Следните пакети Ñа отÑтранени от ÑиÑтемата поради препокриване на вÑичките " "им файлове от други пакети:" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "Това Ñе прави автоматично от dpkg." -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "Игнориране на неÑъщеÑтвуващо издание „%s“ на пакета „%s“" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Използване на пакет източник „%s“ вмеÑто „%s“\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "Игнориране на неÑъщеÑтвуваща верÑÐ¸Ñ â€ž%s“ на пакета „%s“" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "Командата „update“ не възприема аргументи" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Ðе би Ñ‚Ñ€Ñбвало да Ñе изтрива. AutoRemover нÑма да бъде Ñтартиран" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1076,7 +1079,7 @@ msgstr[0] "СледниÑÑ‚ пакет е бил инÑталиран автом msgstr[1] "" "Следните пакети Ñа били инÑталирани автоматично и вече не Ñа необходими:" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1085,11 +1088,11 @@ msgstr[0] "%lu пакет е бил инÑталиран автоматично msgstr[1] "" "%lu пакета Ñа били инÑталирани автоматично и вече не Ñа необходими:\n" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "Използвайте „apt-get autoremove“ за да ги премахнете." -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1107,24 +1110,24 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "" "Следната Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¼Ð¾Ð¶Ðµ да помогне за намиране на изход от ÑитуациÑта:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" msgstr "Вътрешна грешка, AutoRemover Ñчупи нещо в ÑиÑтемата" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "Вътрешна грешка, „AllUpgrade“ Ñчупи нещо в ÑиÑтемата" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Възможно е да изпълните „apt-get -f install“, за да коригирате:" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1132,7 +1135,7 @@ msgstr "" "Ðеудовлетворени завиÑимоÑти. Опитайте „apt-get -f install“ без пакети (или " "укажете разрешение)." -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1144,62 +1147,62 @@ msgstr "" "диÑтрибуциÑ, че нÑкои необходими пакети още не Ñа Ñъздадени или пък\n" "Ñа били премеÑтени от Incoming." -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "Счупени пакети" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "Следните допълнителни пакети ще бъдат инÑталирани:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "Предложени пакети:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "Препоръчвани пакети:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "ÐеуÑпех при намирането на пакет %s" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s е отбелÑзан като автоматично инÑталиран.\n" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "ИзчиÑлÑване на актуализациÑта..." -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "ÐеуÑпех" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "Готово" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "Вътрешна грешка, „problem resolver“ Ñчупи нещо в ÑиÑтемата" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "ÐеуÑпех при заключването на директориÑта за изтеглÑне" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 msgid "Must specify at least one package to fetch source for" msgstr "ТрÑбва да укажете поне един пакет за изтеглÑне на Ð¸Ð·Ñ…Ð¾Ð´Ð½Ð¸Ñ Ð¼Ñƒ код" -#: cmdline/apt-get.cc:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "ÐеуÑпех при намирането на изходен код на пакет %s" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -1209,7 +1212,7 @@ msgstr "" "адреÑ:\n" "%s\n" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1221,77 +1224,81 @@ msgstr "" "за да изтеглите поÑледните промени в пакета (евентуално в Ð¿Ñ€Ð¾Ñ†ÐµÑ Ð½Ð° " "разработка).\n" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "ПропуÑкане на вече Ð¸Ð·Ñ‚ÐµÐ³Ð»ÐµÐ½Ð¸Ñ Ñ„Ð°Ð¹Ð» „%s“\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "ÐÑмате доÑтатъчно Ñвободно проÑтранÑтво в %s" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Ðеобходимо е да Ñе изтеглÑÑ‚ %sB/%sB архиви изходен код.\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Ðеобходимо е да Ñе изтеглÑÑ‚ %sB архиви изходен код.\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "ИзтеглÑне на изходен код %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "ÐеуÑпех при изтеглÑнето на нÑкои архиви." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" "ПропуÑкане на разпакетирането на вече Ñ€Ð°Ð·Ð¿Ð°ÐºÐµÑ‚Ð¸Ñ€Ð°Ð½Ð¸Ñ Ð¸Ð·Ñ…Ð¾Ð´ÐµÐ½ код в %s\n" -#: cmdline/apt-get.cc:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Командата за разпакетиране „%s“ пропадна.\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Проверете дали имате инÑталиран пакета „dpkg-dev“.\n" -#: cmdline/apt-get.cc:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "Командата за компилиране „%s“ пропадна.\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "ПроцеÑÑŠÑ‚-потомък пропадна" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 msgid "Must specify at least one package to check builddeps for" msgstr "" "ТрÑбва да укажете поне един пакет за проверка на завиÑимоÑти за компилиране" -#: cmdline/apt-get.cc:2506 +#: cmdline/apt-get.cc:2524 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" "ÐеуÑпех при получаването на Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° завиÑимоÑтите за компилиране на %s" -#: cmdline/apt-get.cc:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "%s нÑма завиÑимоÑти за компилиране.\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1300,7 +1307,7 @@ msgstr "" "ЗавиÑимоÑÑ‚ %s за пакета %s не може да бъде удовлетворена, понеже пакета %s " "не може да бъде намерен" -#: cmdline/apt-get.cc:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1310,32 +1317,32 @@ msgstr "" "налични верÑии на пакета %s, които могат да удовлетворÑÑ‚ изиÑкването за " "верÑиÑ" -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "ÐеуÑпех при удовлетворÑването на завиÑимоÑÑ‚ %s за пакета %s: ИнÑталираниÑÑ‚ " "пакет %s е твърде нов" -#: cmdline/apt-get.cc:2693 +#: cmdline/apt-get.cc:2711 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "ÐеуÑпех при удовлетворÑването на завиÑимоÑÑ‚ %s за пакета %s: %s" -#: cmdline/apt-get.cc:2709 +#: cmdline/apt-get.cc:2727 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "ЗавиÑимоÑтите за компилиране на %s не можаха да бъдат удовлетворени." -#: cmdline/apt-get.cc:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "ÐеуÑпех при обработката на завиÑимоÑтите за компилиране" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "Поддържани модули:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1425,7 +1432,7 @@ msgstr "" "Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¸ опции.\n" " Това APT има Върховни Сили.\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1675,10 +1682,10 @@ msgstr "Файл %s/%s Ð·Ð°Ð¼ÐµÐ½Ñ Ñ‚Ð¾Ð·Ð¸ в пакет %s" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1814,23 +1821,23 @@ msgstr "ÐеуÑпех при намирането на валиден ÐºÐ¾Ð½Ñ‚Ñ msgid "Unparsable control file" msgstr "Контролен файл, невъзможен за анализ" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "ÐеуÑпех при отварÑнето на програмен канал за %s" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "Грешка при четене от Ð¿Ñ€Ð¾Ñ†ÐµÑ %s" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "ÐеуÑпех при получаването на атрибути" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "ÐеуÑпех при задаването на време на промÑна" @@ -1923,7 +1930,7 @@ msgstr "ДопуÑтимото време за Ñвързването изтеч msgid "Server closed the connection" msgstr "Сървърът разпадна връзката" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "Грешка при четене" @@ -1935,7 +1942,7 @@ msgstr "Отговорът препълни буфера." msgid "Protocol corruption" msgstr "Развален протокол" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "Грешка при запиÑ" @@ -1991,7 +1998,7 @@ msgstr "Времето за уÑтановÑване на връзка Ñ Ð³Ð½Ðµ msgid "Unable to accept connection" msgstr "Ðевъзможно е да Ñе приеме Ñвързването" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "Проблем при хеширане на файла" @@ -2127,67 +2134,67 @@ msgstr "Получен е един ред на заглавна чаÑÑ‚ Ñ Ð½Ð° msgid "Bad header line" msgstr "Ðевалиден ред на заглавна чаÑÑ‚" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "HTTP Ñървърът изпрати невалидна заглавна чаÑÑ‚ като отговор" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "HTTP Ñървърът изпрати невалидна заглавна чаÑÑ‚ „Content-Length“" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "HTTP Ñървърът изпрати невалидна заглавна чаÑÑ‚ „Content-Range“" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "HTTP Ñървърът нÑма поддръжка за прехвърлÑне на фрагменти на файлове" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "ÐеизвеÑтен формат на дата" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "ÐеуÑпех на избора" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "ДопуÑтимото време за Ñвързване изтече" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "Грешка при запиÑа на изходен файл" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "Грешка при запиÑа на файл" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "Грешка при запиÑа на файла" -#: methods/http.cc:894 +#: methods/http.cc:900 msgid "Error reading from server. Remote end closed connection" msgstr "Грешка при четене от Ñървъра. ОтдалечениÑÑ‚ Ñървър прекъÑна връзката" -#: methods/http.cc:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "Грешка при четене от Ñървъра" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 msgid "Failed to truncate file" msgstr "ÐеуÑпех при отрÑзване на ÐºÑ€Ð°Ñ Ð½Ð° файла" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "Ðевалидни данни на заглавната чаÑÑ‚" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "ÐеуÑпех при Ñвързването" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "Вътрешна грешка" @@ -2386,14 +2393,14 @@ msgstr "Ðевалидна Ð¾Ð¿ÐµÑ€Ð°Ñ†Ð¸Ñ %s" msgid "Unable to stat the mount point %s" msgstr "ÐеуÑпех при намирането на атрибутите на точка за монтиране %s" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "ÐеуÑпех при преминаването в %s" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "ÐеуÑпех при намирането на атрибутите на cdrom" @@ -2419,150 +2426,150 @@ msgstr "" msgid "Could not get lock %s" msgstr "ÐеуÑпех при доÑтъпа до заключване %s" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Изчака Ñе завършването на %s, но той не беше пуÑнат" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Ðарушение на защитата на паметта (segmentation fault) в подпроцеÑа %s." -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, c-format msgid "Sub-process %s received signal %u." msgstr "Под-процеÑÑŠÑ‚ %s получи Ñигнал %u." -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "ПодпроцеÑÑŠÑ‚ %s върна код за грешка (%u)" -#: apt-pkg/contrib/fileutl.cc:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "ПодпроцеÑÑŠÑ‚ %s завърши неочаквано" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "ÐеуÑпех при отварÑнето на файла %s" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, c-format msgid "Could not open file descriptor %d" msgstr "ÐеуÑпех при отварÑнето на файлов манипулатор %d" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "" "грешка при четене, вÑе още има %lu за четене, но нÑма нито един оÑтанал" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "грешка при запиÑ, вÑе още име %lu за запиÑ, но не уÑпÑ" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, c-format msgid "Problem closing the gzip file %s" msgstr "Проблем при затварÑне на компреÑираниÑÑ‚ файл %s (gzip)" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, c-format msgid "Problem closing the file %s" msgstr "Проблем при затварÑне на файла %s" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, c-format msgid "Problem renaming the file %s to %s" msgstr "Проблем при преименуване на файла %s на %s" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, c-format msgid "Problem unlinking the file %s" msgstr "Проблем при изтриване на файла %s" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "Проблем при Ñинхронизиране на файла" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "Празен кеш на пакети" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "Файлът за кеш на пакети е повреден" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "Файлът за кеш на пакети е неÑъвмеÑтима верÑиÑ" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "Тази верÑÐ¸Ñ Ð½Ð° APT не поддържа ÑиÑтема за верÑии „%s“" -#: apt-pkg/pkgcache.cc:163 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache was built for a different architecture" msgstr "Кешът на пакети е бил направен за различна архитектура" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "ЗавиÑи от" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "Предварително завиÑи от" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "Предлага Ñе" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "Препоръчва Ñе" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "Ð’ конфликт Ñ" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "ЗаменÑ" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "Изважда от употреба" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "Чупи" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "ПодобрÑва" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "важен" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "изиÑкван" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "Ñтандартен" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "незадължителен" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "допълнителен" @@ -2688,7 +2695,7 @@ msgstr "Типът „%s“ на ред %u в ÑпиÑъка Ñ Ð¸Ð·Ñ‚Ð¾Ñ‡Ð½Ð¸Ñ† #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" "ÐеуÑпех при незабавната наÑтройка на „%s“. За повече Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð²Ð¸Ð¶Ñ‚Ðµ " @@ -2709,7 +2716,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" "ÐеуÑпех при незабавна наÑтройка на разпакетиран „%s“. За повече Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ " @@ -2728,7 +2735,7 @@ msgstr "" "Пакетът %s Ñ‚Ñ€Ñбва да бъде преинÑталиран, но не може да Ñе намери архив за " "него." -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2736,12 +2743,12 @@ msgstr "" "Грешка, pkgProblemResolver::Resolve генерира повреди, това може да е " "причинено от задържани пакети." -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "" "ÐеуÑпех при коригирането на проблемите, имате задържани Ñчупени пакети." -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2766,12 +2773,12 @@ msgstr "ÐеуÑпех при заключване на директориÑта #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "ИзтеглÑне на файл %li от %li (оÑтават %s)" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "ИзтеглÑне на файл %li от %li" @@ -2791,12 +2798,12 @@ msgstr "Методът %s не Ñтартира правилно" msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "Сложете диÑка, озаглавен „%s“ в уÑтройÑтво „%s“ и натиÑнете „Enter“." -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Пакетната ÑиÑтема „%s“ не е поддържана" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "ÐеуÑпех при определÑнето на подходÑща пакетна ÑиÑтема" @@ -2820,17 +2827,21 @@ msgid "You may want to run apt-get update to correct these problems" msgstr "" "Може да иÑкате да изпълните „apt-get update“, за да коригирате тези проблеми" -#: apt-pkg/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "СпиÑъкът Ñ Ð¸Ð·Ñ‚Ð¾Ñ‡Ð½Ð¸Ñ†Ð¸ не можа да бъде прочетен." + +#: apt-pkg/policy.cc:344 #, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "Ðевалиден Ð·Ð°Ð¿Ð¸Ñ Ð²ÑŠÐ² файла Ñ Ð½Ð°Ñтройки %s, липÑва заглавна чаÑÑ‚ Package" -#: apt-pkg/policy.cc:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "ÐеизвеÑтен тип за отбиване %s" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "ÐÑма указан приоритет (или е нула) на отбиването" @@ -2937,43 +2948,43 @@ msgstr "преименуването Ñе провали, %s (%s -> %s)." msgid "MD5Sum mismatch" msgstr "ÐеÑъответÑтвие на контролна Ñума MD5" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" msgstr "ÐеÑъответÑтвие на контролната Ñума" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 msgid "There is no public key available for the following key IDs:\n" msgstr "ÐÑма налични публични ключове за Ñледните идентификатори на ключове:\n" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "Файлът %s вече не е валиден и ще бъде игнориран. (изтекъл е преди %s)" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Конфликт в диÑтрибуциÑта: %s (очаквана: %s, намерена: %s)" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "Грешка при проверка на Ñ†Ð¸Ñ„Ñ€Ð¾Ð²Ð¸Ñ Ð¿Ð¾Ð´Ð¿Ð¸Ñ. Хранилището не е обновено и ще Ñе " "използват Ñтарите индекÑни файлове. Грешка от GPG: %s: %s\n" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "Грешка от GPG: %s: %s" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2982,7 +2993,7 @@ msgstr "" "ÐеуÑпех при намирането на файл за пакет %s. Това може да означава, че Ñ‚Ñ€Ñбва " "ръчно да оправите този пакет (поради пропуÑната архитектура)." -#: apt-pkg/acquire-item.cc:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2991,14 +3002,14 @@ msgstr "" "ÐеуÑпех при намирането на файл за пакет %s. Това може да означава, че Ñ‚Ñ€Ñбва " "ръчно да оправите този пакет." -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" "ИндекÑните файлове на пакета Ñа повредени. ÐÑма поле Filename: за пакет %s." -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "ÐеÑъответÑтвие на размера" @@ -3123,37 +3134,37 @@ msgstr "Запазване на Ð½Ð¾Ð²Ð¸Ñ ÑпиÑък Ñ Ð¸Ð·Ñ‚Ð¾Ñ‡Ð½Ð¸Ñ†Ð¸\n" msgid "Source list entries for this disc are:\n" msgstr "ЗапиÑите в ÑпиÑъка Ñ Ð¸Ð·Ñ‚Ð¾Ñ‡Ð½Ð¸Ñ†Ð¸ за този диÑк Ñа:\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "ЗапиÑани Ñа %i запиÑа.\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "ЗапиÑани Ñа %i запиÑа Ñ %i липÑващи файла.\n" -#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "ЗапиÑани Ñа %i запиÑа Ñ %i неÑъответÑтващи файла\n" -#: apt-pkg/indexcopy.cc:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "ЗапиÑани Ñа %i запиÑа Ñ %i липÑващи и %i неÑъответÑтващи файла\n" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, c-format msgid "Skipping nonexistent file %s" msgstr "ПропуÑкане на неÑъщеÑтвуващ файл %s" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "Ðе е намерен oторизационен Ð·Ð°Ð¿Ð¸Ñ Ð·Ð°: %s" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, c-format msgid "Hash mismatch for: %s" msgstr "ÐеÑъответÑтвие на контролната Ñума за: %s" @@ -3218,12 +3229,12 @@ msgstr "" msgid "Installing %s" msgstr "ИнÑталиране на %s" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "Конфигуриране на %s" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "Премахване на %s" @@ -3243,78 +3254,79 @@ msgstr "ОтбелÑзване на изчезването на %s" msgid "Running post-installation trigger %s" msgstr "Изпълнение на тригер Ñлед инÑталиране %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "ДиректориÑта „%s“ липÑва" -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Could not open file '%s'" msgstr "ÐеуÑпех при отварÑне на файла „%s“" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "ПодготвÑне на %s" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "Разпакетиране на %s" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "ПодготвÑне на %s за конфигуриране" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "%s е инÑталиран" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "ПодготвÑне за премахване на %s" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "%s е премахнат" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "Подготовка за пълно премахване на %s" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "%s е напълно премахнат" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "ÐеуÑпех при Ð·Ð°Ð¿Ð¸Ñ Ð² журнала, openpty() Ñе провали (дали /dev/pts е " "монтирана?)\n" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "ИзпълнÑване на dpkg" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 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:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "отлагане на наÑтройката поради неудовлетворени завиÑимоÑти" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3322,7 +3334,7 @@ msgstr "" "Доклад за завиÑимоÑтите не е запиÑан защото Ñъобщението за грешка е породено " "от друга грешка." -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" @@ -3330,7 +3342,7 @@ msgstr "" "Доклад за завиÑимоÑтите не е запиÑан защото грешката е причинена от " "недоÑтатъчно диÑково проÑтранÑтво" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3338,7 +3350,7 @@ msgstr "" "Доклад за завиÑимоÑтите не е запиÑан защото грешката е причинена от " "недоÑтатъчна оперативна памет" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.5.26\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+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" @@ -148,14 +148,14 @@ msgstr "" msgid " Version table:" msgstr "" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "" -#: cmdline/apt-cache.cc:1739 +#: cmdline/apt-cache.cc:1745 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -273,31 +273,31 @@ msgid "Cannot get debconf version. Is debconf installed?" msgstr "" "Ne mogu odrediti verziju debconf programa. Da li je debconf instaliran?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -339,11 +339,11 @@ msgid "" " -o=? Set an arbitrary configuration option" msgstr "" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "" @@ -453,7 +453,7 @@ msgstr "" msgid " %s has no override entry\n" msgstr "" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr "" @@ -563,144 +563,144 @@ msgstr "" msgid "Failed to rename %s to %s" msgstr "" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "ali je %s instaliran" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "ali se %s treba instalirati" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "ali se ne može instalirati" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "ali je virtuelni paket" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "ali nije instaliran" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "ali se neće instalirati" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " ili" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "Slijedeći NOVI paketi će biti instalirani:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "Slijedeći paketi će biti UKLONJENI:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 #, fuzzy msgid "The following packages have been kept back:" msgstr "Slijedeći paketi su zadržani:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "Slijedeći paketi će biti nadograÄ‘eni:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "" -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" msgstr "" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "" -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "" -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "" -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr "[Instalirano]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 #, fuzzy msgid " [Not candidate version]" msgstr "Verzije kandidata" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "" -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -708,165 +708,168 @@ msgid "" "is only available from another source\n" msgstr "" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "MeÄ‘utim, slijedeći paketi ga zamjenjuju:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, c-format msgid "Package '%s' has no installation candidate" msgstr "" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "ali se %s treba instalirati" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "Ispravljam zavisnosti..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr "" -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "Ne mogu ispraviti zavisnosti" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " UraÄ‘eno" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "" -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "Nezadovoljene zavisnosti. PokuÅ¡ajte koristeći -f." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 #, fuzzy msgid "WARNING: The following packages cannot be authenticated!" msgstr "Slijedeći paketi će biti nadograÄ‘eni:" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "" -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "" -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "" - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "" -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "Da, uradi kako kažem!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -874,47 +877,47 @@ msgid "" " ?] " msgstr "" -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "Odustani." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 #, fuzzy msgid "Do you want to continue [Y/n]? " msgstr "Da li želite nastaviti? [Y/n]" -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" msgstr "" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "" -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "Odustajem od instalacije." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -924,35 +927,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -962,7 +965,7 @@ msgid_plural "" msgstr[0] "Slijedeći NOVI paketi će biti instalirani:" msgstr[1] "Slijedeći NOVI paketi će biti instalirani:" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -970,11 +973,11 @@ msgid_plural "" msgstr[0] "Slijedeći NOVI paketi će biti instalirani:" msgstr[1] "Slijedeći NOVI paketi će biti instalirani:" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -990,29 +993,29 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" msgstr "" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." msgstr "" -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1020,69 +1023,69 @@ msgid "" "or been moved out of Incoming." msgstr "" -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "OÅ¡tećeni paketi" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "Slijedeći dodatni paketi će biti instalirani:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "Predloženi paketi:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "PreporuÄeni paketi:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "ali se %s treba instalirati" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "RaÄunam nadogradnju..." -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "NeuspjeÅ¡no" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "UraÄ‘eno" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 msgid "Must specify at least one package to fetch source for" msgstr "" -#: cmdline/apt-get.cc:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1090,111 +1093,115 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: cmdline/apt-get.cc:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 msgid "Must specify at least one package to check builddeps for" msgstr "" -#: cmdline/apt-get.cc:2506 +#: cmdline/apt-get.cc:2524 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" -#: cmdline/apt-get.cc:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "" -#: cmdline/apt-get.cc:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " "package %s can satisfy version requirements" msgstr "" -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -#: cmdline/apt-get.cc:2693 +#: cmdline/apt-get.cc:2711 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: cmdline/apt-get.cc:2709 +#: cmdline/apt-get.cc:2727 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: cmdline/apt-get.cc:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "Podržani moduli:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1240,7 +1247,7 @@ msgid "" " This APT has Super Cow Powers.\n" msgstr "" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1470,10 +1477,10 @@ msgstr "" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1605,23 +1612,23 @@ msgstr "" msgid "Unparsable control file" msgstr "" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, fuzzy, c-format msgid "Couldn't open pipe for %s" msgstr "Ne mogu otvoriti %s" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "" @@ -1712,7 +1719,7 @@ msgstr "" msgid "Server closed the connection" msgstr "Server je zatvorio vezu" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "GreÅ¡ka pri Äitanju" @@ -1725,7 +1732,7 @@ msgstr "" msgid "Protocol corruption" msgstr "OÅ¡tećenje protokola" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "GreÅ¡ka pri pisanju" @@ -1779,7 +1786,7 @@ msgstr "" msgid "Unable to accept connection" msgstr "" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "" @@ -1910,68 +1917,68 @@ msgstr "" msgid "Bad header line" msgstr "" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "Nepoznat oblik datuma" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "" -#: methods/http.cc:894 +#: methods/http.cc:900 msgid "Error reading from server. Remote end closed connection" msgstr "" -#: methods/http.cc:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 #, fuzzy msgid "Failed to truncate file" msgstr "Ne mogu ukloniti %s" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "Povezivanje neuspjeÅ¡no" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "UnutraÅ¡nja greÅ¡ka" @@ -2163,14 +2170,14 @@ msgstr "" msgid "Unable to stat the mount point %s" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "" @@ -2194,150 +2201,150 @@ msgstr "" msgid "Could not get lock %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "" -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, c-format msgid "Sub-process %s received signal %u." msgstr "" -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "" -#: apt-pkg/contrib/fileutl.cc:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "Ne mogu otvoriti %s" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, c-format msgid "Problem closing the gzip file %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "Ne mogu ukloniti %s" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, c-format msgid "Problem renaming the file %s to %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, c-format msgid "Problem unlinking the file %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "" -#: apt-pkg/pkgcache.cc:163 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache was built for a different architecture" msgstr "" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "Zavisi" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "Unaprijed zavisi" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "Predlaže" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "PreporuÄuje" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 #, fuzzy msgid "Conflicts" msgstr "Sukobljava se sa" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "Zamjenjuje" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "Zastarijeva" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "važno" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "zahtijevano" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "standardno" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "opcionalno" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "extra" @@ -2456,7 +2463,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" @@ -2471,7 +2478,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" @@ -2486,17 +2493,17 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." msgstr "" -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "" -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2519,12 +2526,12 @@ msgstr "Ne mogu kreirati %s" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, fuzzy, c-format msgid "Retrieving file %li of %li" msgstr "ÄŒitam spisak datoteke" @@ -2544,12 +2551,12 @@ msgstr "" msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "" @@ -2570,17 +2577,21 @@ msgstr "" msgid "You may want to run apt-get update to correct these problems" msgstr "" -#: apt-pkg/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "" + +#: apt-pkg/policy.cc:344 #, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -#: apt-pkg/policy.cc:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "" @@ -2682,61 +2693,61 @@ msgstr "" msgid "MD5Sum mismatch" msgstr "" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" msgstr "" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 msgid "There is no public key available for the following key IDs:\n" msgstr "" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, 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:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " "manually fix this package." msgstr "" -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "" @@ -2856,37 +2867,37 @@ msgstr "" msgid "Source list entries for this disc are:\n" msgstr "" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "" -#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "" -#: apt-pkg/indexcopy.cc:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, c-format msgid "Skipping nonexistent file %s" msgstr "" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, c-format msgid "Hash mismatch for: %s" msgstr "" @@ -2943,12 +2954,12 @@ msgstr "" msgid "Installing %s" msgstr " Instalirano:" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, fuzzy, c-format msgid "Configuring %s" msgstr "Povezujem se sa %s" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, fuzzy, c-format msgid "Removing %s" msgstr "Otvaram %s" @@ -2968,92 +2979,93 @@ msgstr "" msgid "Running post-installation trigger %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, fuzzy, c-format msgid "Could not open file '%s'" msgstr "Ne mogu otvoriti %s" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, fuzzy, c-format msgid "Preparing %s" msgstr "Otvaram %s" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, fuzzy, c-format msgid "Unpacking %s" msgstr "Otvaram %s" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, fuzzy, c-format msgid "Installed %s" msgstr " Instalirano:" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, fuzzy, c-format msgid "Removed %s" msgstr "PreporuÄuje" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, fuzzy, c-format msgid "Completely removed %s" msgstr "Ne mogu ukloniti %s" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -3,19 +3,21 @@ # Antoni Bella Perez <bella5@teleline.es>, 2002, 2003. # Matt Bonner <mateubonet@yahoo.com>, 2003. # Jordi Mallach <jordi@debian.org>, 2004, 2005, 2006, 2008, 2009. -# +# Agustà Grau <fletxa@gmail.com>, 2010. msgid "" msgstr "" "Project-Id-Version: apt 0.7.22\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" -"PO-Revision-Date: 2009-06-06 02:17+0200\n" -"Last-Translator: Jordi Mallach <jordi@debian.org>\n" +"POT-Creation-Date: 2010-09-28 17:23+0200\n" +"PO-Revision-Date: 2010-09-02 11:51+0100\n" +"Last-Translator: Agustà Grau <fletxa@gmail.com>\n" "Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Virtaal 0.6.1\n" #: cmdline/apt-cache.cc:156 #, c-format @@ -27,9 +29,8 @@ msgid "Total package names: " msgstr "Nombre total de paquets: " #: cmdline/apt-cache.cc:286 -#, fuzzy msgid "Total package structures: " -msgstr "Nombre total de paquets: " +msgstr "Total d'estructures de paquets: " #: cmdline/apt-cache.cc:326 msgid " Normal packages: " @@ -97,9 +98,8 @@ msgid "Package file %s is out of sync." msgstr "El fitxer %s del paquet està desincronitzat." #: cmdline/apt-cache.cc:1273 -#, fuzzy msgid "You must give at least one search pattern" -msgstr "Heu de donar exactament un patró" +msgstr "Heu de donar com a mÃnim un patró de cerca" #: cmdline/apt-cache.cc:1429 cmdline/apt-cache.cc:1431 #: cmdline/apt-cache.cc:1508 @@ -150,15 +150,14 @@ msgstr " Etiqueta del paquet: " msgid " Version table:" msgstr " Taula de versió:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, 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:1739 -#, fuzzy +#: cmdline/apt-cache.cc:1745 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -215,7 +214,8 @@ msgstr "" " dumpavail - Genera un registre llegible a stdout\n" " unmet - Mostra dependències sense satisfer\n" " search - Cerca en la llista de paquets per un patró d'expressió regular\n" -" show - Mostra un registre llegible pel paquet\n" +" show - Mostra un registre llegible pel paquet \n" +" showauto - Mostra una llista de paquets instal·lats automà ticanent\n" " depends - Mostra informació de dependències (en cru) d'un paquet\n" " rdepends - Mostra informació de dependències enrere d'un paquet\n" " pkgnames - Llista els noms de tots els paquets del sistema\n" @@ -235,18 +235,17 @@ msgstr "" "informació.\n" #: cmdline/apt-cdrom.cc:77 -#, fuzzy 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 2.1r1 Disc 1»" +msgstr "Doneu un nom per a aquest disc, com per exemple «Debian 5.0.3 Disk 1»" #: cmdline/apt-cdrom.cc:92 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:127 -#, fuzzy, c-format +#, c-format msgid "Failed to mount '%s' to '%s'" -msgstr "No s'ha pogut canviar el nom de %s a %s" +msgstr "No s'ha pogut muntar '%s' a '%s'" #: cmdline/apt-cdrom.cc:162 msgid "Repeat this process for the rest of the CDs in your set." @@ -322,31 +321,31 @@ msgstr "No es pot escriure en %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "No es pot determinar la versió de debconf. Està instal·lat debconf?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "La llista de les extensions dels paquets és massa llarga" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "S'ha produït un error en processar el directori %s" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "La llista d'extensions de les fonts és massa llarga" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 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:405 +#: ftparchive/apt-ftparchive.cc:407 #, 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:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -427,11 +426,11 @@ msgstr "" " -c=? Llegeix aquest fitxer de configuració\n" " -o=? Estableix una opció de configuració arbitrà ria" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "No s'ha trobat cap selecció" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, 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'" @@ -447,7 +446,6 @@ msgid "DB is old, attempting to upgrade %s" msgstr "La BD és vella, s'està intentant actualitzar %s" #: ftparchive/cachedb.cc:72 -#, fuzzy msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -544,7 +542,7 @@ msgstr "Arxiu sense el camp paquet" msgid " %s has no override entry\n" msgstr " %s no té una entrada dominant\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " el mantenidor de %s és %s, no %s\n" @@ -654,79 +652,79 @@ msgstr "S'ha trobat un problema treient l'enllaç %s" msgid "Failed to rename %s to %s" msgstr "No s'ha pogut canviar el nom de %s a %s" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "S" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "S'ha produït un error de compilació de l'expressió regular - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "Els següents paquets tenen dependències sense satisfer:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "però està instal·lat %s" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "però s'instal·larà %s" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "però no és instal·lable" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "però és un paquet virtual" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "però no està instal·lat" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "però no serà instal·lat" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " o" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "S'instal·laran els paquets NOUS següents:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "Es SUPRIMIRAN els paquets següents:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "S'han mantingut els paquets següents:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "S'actualitzaran els paquets següents:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "Es DESACTUALITZARAN els paquets següents:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "Es canviaran els paquets retinguts següents:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (per %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -734,65 +732,64 @@ 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!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu actualitzats, %lu nous a instal·lar, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu reinstal·lats, " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu desactualitzats, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu a suprimir i %lu no actualitzats.\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu no instal·lats o suprimits completament.\n" -#: cmdline/apt-get.cc:634 -#, fuzzy, c-format +#: cmdline/apt-get.cc:635 +#, c-format msgid "Note, selecting '%s' for task '%s'\n" -msgstr "Nota: s'està seleccionant %s per a l'expressió regular '%s'\n" +msgstr "Nota: s'està seleccionant '%s' per a la tasca '%s'\n" -#: cmdline/apt-get.cc:640 -#, fuzzy, c-format +#: cmdline/apt-get.cc:641 +#, c-format msgid "Note, selecting '%s' for regex '%s'\n" -msgstr "Nota: s'està seleccionant %s per a l'expressió regular '%s'\n" +msgstr "Nota: s'està seleccionant '%s' per a l'expressió regular '%s'\n" -#: cmdline/apt-get.cc:647 -#, fuzzy, c-format +#: cmdline/apt-get.cc:648 +#, c-format msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Versió seleccionada %s (%s) per a %s\n" +msgstr "Versió seleccionada '%s' (%s) per a '%s'\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "El paquet %s és un paquet virtual proveït per:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [Instal·lat]" -#: cmdline/apt-get.cc:677 -#, fuzzy +#: cmdline/apt-get.cc:678 msgid " [Not candidate version]" -msgstr "Versions candidates" +msgstr "[Versió no candidata]" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "Necessiteu seleccionar-ne un explÃcitament per a instal·lar-lo." -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -803,171 +800,174 @@ msgstr "" "en fa referència. Això normalment vol dir que el paquet falta,\n" "s'ha tornat obsolet o només és disponible des d'una altra font.\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "Tot i que els següents paquets el reemplacen:" -#: cmdline/apt-get.cc:712 -#, fuzzy, c-format +#: cmdline/apt-get.cc:713 +#, c-format msgid "Package '%s' has no installation candidate" -msgstr "El paquet %s no té candidat d'instal·lació" +msgstr "El paquet '%s' no té candidat d'instal·lació" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" -msgstr "" +msgstr "Els paquets virtuals com '%s' no poden ser esborrats\n" -#: cmdline/apt-get.cc:754 -#, fuzzy, c-format +#: cmdline/apt-get.cc:755 +#, c-format msgid "Note, selecting '%s' instead of '%s'\n" -msgstr "Nota: s'està seleccionant %s en comptes de %s\n" +msgstr "Nota: s'està seleccionant '%s' en comptes de '%s'\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" "S'està ometent %s, ja està instal·lat i l'actualització no està establerta.\n" -#: cmdline/apt-get.cc:788 -#, fuzzy, c-format +#: cmdline/apt-get.cc:789 +#, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" -"S'està ometent %s, ja està instal·lat i l'actualització no està establerta.\n" +"S'està ometent '%s', no està instal·lat i només es demana l'actualització.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "No es possible la reinstal·lació del paquet %s, no es pot baixar.\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s ja es troba en la versió més recent.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, c-format msgid "%s set to manually installed.\n" msgstr "S'ha marcat %s com instal·lat manualment.\n" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "El paquet %s no està instal·lat, aixà doncs no es suprimirà \n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "S'estan corregint les dependències..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " ha fallat." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "No es poden corregir les dependències" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "No es pot minimitzar el joc de versions revisades" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " Fet" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 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." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "Dependències sense satisfer. Proveu-ho emprant -f." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "AVÃS: No es poden autenticar els següents paquets!" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "S'ha descartat l'avÃs d'autenticació.\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "Voleu instal·lar aquests paquets sense verificar-los [s/N]? " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "No s'ha pogut autenticar alguns paquets" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "Hi ha problemes i s'ha emprat -y sense --force-yes" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 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!" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "" "Els paquets necessiten ser suprimits però s'ha inhabilitat la supressió." -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "S'ha produït un error intern, l'ordenació no ha acabat" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "No s'ha pogut llegir la llista de les fonts." - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 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" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Es necessita obtenir %sB/%sB d'arxius.\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Es necessita obtenir %sB d'arxius.\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" "Després d'aquesta operació s'empraran %sB d'espai en disc addicional.\n" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, 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" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, 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:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "No teniu prou espai lliure en %s." -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Es va especificar Trivial Only però aquesta operació no és trivial." -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "SÃ, fes el que et dic!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -978,28 +978,28 @@ msgstr "" "Per a continuar escriviu la frase «%s»\n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "Avortat." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "Voleu continuar [S/n]? " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "No s'ha pogut obtenir %s %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "Alguns fitxers no s'han pogut baixar" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "Descà rrega completa i en mode de només descà rrega" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1007,19 +1007,19 @@ msgstr "" "No es poden baixar alguns arxius, proveu a executar apt-get update o " "intenteu-ho amb --fix-missing." -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing i els medi intercanviables actualment no estan suportats" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "No es poden corregir els paquets que falten." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "S'està avortant la instal·lació." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1027,65 +1027,68 @@ msgid_plural "" "The following packages disappeared from your system as\n" "all files have been overwritten by other packages:" msgstr[0] "" +"El següent paquet ha desaparegut del vostre sistema ja\n" +"que tots els fitxers s'han sobreescrit per altres paquets:" msgstr[1] "" +"Els següents paquets han desaparegut del vostre sistema ja\n" +"que tots els fitxers s'han sobreescrit per altres paquets:" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." -msgstr "" +msgstr "Nota: Això es realitzarà automà ticament a propòsit del dpkg." -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" -msgstr "" +msgstr "Ignorar la versió objectiu '%s' no disponible del paquet '%s'" -#: cmdline/apt-get.cc:1486 -#, fuzzy, c-format +#: cmdline/apt-get.cc:1498 +#, c-format msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "No s'ha pogut llegir la llista de paquets font %s" +msgstr "S'està agafant '%s' com a paquet font en comptes de '%s'\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" -msgstr "" +msgstr "Ignorar la versió '%s' no disponible del paquet '%s'" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "L'ordre update no pren arguments" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "Es suposa que no hauriem de suprimir coses, no es pot iniciar el supressor " "automà tic" -#: cmdline/apt-get.cc:1653 -#, fuzzy +#: cmdline/apt-get.cc:1666 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" "The following packages were automatically installed and are no longer " "required:" msgstr[0] "" -"Els paquets següents s'instal·laren automà ticament i ja no són necessaris:" +"El paquet següent s'ha instal·lat automà ticament i ja no serà necessari:" msgstr[1] "" -"Els paquets següents s'instal·laren automà ticament i ja no són necessaris:" +"Els paquets següents s'han instal·lat automà ticament i ja no són necessaris:" -#: cmdline/apt-get.cc:1657 -#, fuzzy, c-format +#: cmdline/apt-get.cc:1670 +#, 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] "" -"Els paquets següents s'instal·laren automà ticament i ja no són necessaris:" +"El paquet %lu es va instal·lar automà ticament i ja no és necessari:\n" msgstr[1] "" -"Els paquets següents s'instal·laren automà ticament i ja no són necessaris:" +"Els paquets %lu es van s'instal·lar automà ticament i ja no són necessaris:\n" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "Empreu «apt-get autoremove» per a suprimir-los." -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1103,23 +1106,23 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "La informació següent pot ajudar-vos a resoldre la situació:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" msgstr "S'ha produït un error intern, el supressor automà tic ha trencat coses" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "Error intern, AllUpgrade ha trencat coses" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 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:" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1127,7 +1130,7 @@ msgstr "" "Dependències insatisfetes. Intenteu 'apt-get -f install' sense paquets (o " "especifiqueu una solució)." -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1139,149 +1142,160 @@ msgstr "" "unstable i alguns paquets requerits encara no han estat creats o bé\n" "encara no els hi han afegit." -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "Paquets trencats" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "S'instal·laran els següents paquets extres:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "Paquets suggerits:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "Paquets recomanats:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "No s'ha pogut trobar el paquet %s" -#: cmdline/apt-get.cc:1981 -#, fuzzy, c-format +#: cmdline/apt-get.cc:1994 +#, c-format msgid "%s set to automatically installed.\n" -msgstr "S'ha marcat %s com instal·lat manualment.\n" +msgstr "S'ha marcat %s com instal·lat automà ticament.\n" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "S'està calculant l'actualització... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "Ha fallat" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "Fet" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 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:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "No és possible blocar el directori de descà rrega" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 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:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "No es pot trobar un paquet de fonts per a %s" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" +"AvÃs: L'empaquetat '%s' és mantingut pel sistema de control de versions '%s' " +"a:\n" +"%s\n" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" "bzr get %s\n" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" +"Utilitzeu:\n" +"bzr get %s\n" +"per a recuperar les últimes actualitzacions (possiblement inèdites) del " +"paquet.\n" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "S'està ometent el fitxer ja baixat «%s»\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "No teniu prou espai lliure en %s" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Es necessita baixar %sB/%sB d'arxius font.\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Es necessita baixar %sB d'arxius font.\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "Obté el font %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "No s'ha pogut baixar alguns arxius." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, 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:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "L'ordre de desempaquetar «%s» ha fallat.\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Comproveu si el paquet «dpkgdev» està instal·lat.\n" -#: cmdline/apt-get.cc:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "L'ordre de construir «%s» ha fallat.\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "Ha fallat el procés fill" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 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:2506 +#: cmdline/apt-get.cc:2524 #, 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:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "%s no té dependències de construcció.\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1290,7 +1304,7 @@ msgstr "" "La dependència %s en %s no es pot satisfer per que no es pot trobar el " "paquet %s" -#: cmdline/apt-get.cc:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1299,33 +1313,32 @@ msgstr "" "La dependència %s per a %s no es pot satisfer per que cap versió del paquet " "%s pot satisfer els requeriments de versions" -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, 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 instal·lat %s " "és massa nou" -#: cmdline/apt-get.cc:2693 +#: cmdline/apt-get.cc:2711 #, 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:2709 +#: cmdline/apt-get.cc:2727 #, 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:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "No es poden processar les dependències de construcció" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "Mòduls suportats:" -#: cmdline/apt-get.cc:2786 -#, fuzzy +#: cmdline/apt-get.cc:2804 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1392,6 +1405,8 @@ msgstr "" " clean - Esborra els fitxers d'arxiu baixats\n" " autoclean - Esborra els fitxers d'arxiu antics baixats\n" " check - Verifica que no hi hagi dependències trencades\n" +" markauto - Marca els paquets donats com a instal·lats automà ticament\n" +" unmarkauto - Marca els paquets donats com a instal·lats manualment\n" "\n" "Opcions:\n" " -h Aquest text d'ajuda.\n" @@ -1412,13 +1427,17 @@ msgstr "" "per a obtenir més informació i opcions.\n" " Aquest APT té superpoders bovins\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" " Keep also in mind that locking is deactivated,\n" " so don't depend on the relevance to the real current situation!" msgstr "" +"Nota: Això només és una simulació!\n" +" l'apt-get necessita privilegis de root per a l'execució real.\n" +" Tingueu en ment que el bloqueig està desactivat,\n" +" per tant, no es depèn de la situació actual real." #: cmdline/acqprogress.cc:55 msgid "Hit " @@ -1499,15 +1518,14 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "Voleu suprimir els paquets .deb baixats prèviament?" #: dselect/install:101 -#, fuzzy msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "S'han produït alguns errors en desempaquetar. Es configuraran" +msgstr "" +"S'han produït alguns errors en desempaquetar. Els paquets que s'han " +"instal·lat" #: dselect/install:102 -#, fuzzy msgid "will be configured. This may result in duplicate errors" -msgstr "" -"els paquets que s'han instal·lat. Això pot resultar en errors duplicats" +msgstr "seran configurats. Això pot provocar errors duplicats" #: dselect/install:103 msgid "or errors caused by missing dependencies. This is OK, only the errors" @@ -1556,9 +1574,9 @@ 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:90 -#, fuzzy, c-format +#, c-format msgid "Invalid archive member header %s" -msgstr "La capçalera del membre de l'arxiu no és và lida" +msgstr "La capçalera %s del membre de l'arxiu no és và lida" #: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" @@ -1662,10 +1680,10 @@ msgstr "El fitxer %s/%s sobreescriu al que està en el paquet %s" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1802,23 +1820,23 @@ msgstr "No s'ha trobat un fitxer de control và lid" msgid "Unparsable control file" msgstr "El fitxer de control no es pot analitzar" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "No s'ha pogut obrir un conducte per a %s" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "S'ha produït un error en llegir des del procés %s" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "L'estat ha fallat" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "No s'ha pogut establir el temps de modificació" @@ -1911,7 +1929,7 @@ msgstr "Temps de connexió finalitzat" msgid "Server closed the connection" msgstr "El servidor ha tancat la connexió" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "Error de lectura" @@ -1923,7 +1941,7 @@ msgstr "Una resposta ha desbordat la memòria temporal." msgid "Protocol corruption" msgstr "Protocol corromput" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "Error d'escriptura" @@ -1978,7 +1996,7 @@ msgstr "S'ha esgotat el temps de connexió al sòcol de dades" msgid "Unable to accept connection" msgstr "No es pot acceptar la connexió" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "Problema escollint el fitxer" @@ -2053,20 +2071,20 @@ msgid "Temporary failure resolving '%s'" msgstr "S'ha produït un error temporal en resoldre '%s'" #: methods/connect.cc:196 -#, fuzzy, c-format +#, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Ha passat alguna cosa estranya en resoldre «%s:%s» (%i)" +msgstr "Ha passat alguna cosa estranya en resoldre '%s:%s' (%i - %s)" #: methods/connect.cc:243 -#, fuzzy, c-format +#, c-format msgid "Unable to connect to %s:%s:" -msgstr "No es pot connectar amb %s %s:" +msgstr "No es pot connectar amb %s:%s:" #. TRANSLATOR: %s is the trusted keyring parts directory #: methods/gpgv.cc:71 -#, fuzzy, c-format +#, c-format msgid "No keyring installed in %s." -msgstr "S'està avortant la instal·lació." +msgstr "No s'ha instal·lat cap clauer a %s." #: methods/gpgv.cc:163 msgid "" @@ -2080,10 +2098,9 @@ msgid "At least one invalid signature was encountered." msgstr "S'ha trobat almenys una signatura invà lida." #: methods/gpgv.cc:172 -#, fuzzy msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"No s'ha pogut executar «%s» per a verificar la signatura (està instal·lat el " +"No s'ha pogut executar 'gpgv' per a verificar la firma (està instal·lat el " "gpgv?)" #: methods/gpgv.cc:177 @@ -2115,68 +2132,68 @@ msgstr "S'ha obtingut una capçalera d'una sola lÃnea de més de %u carà cters" msgid "Bad header line" msgstr "LÃnia de capçalera incorrecta" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "El servidor HTTP ha enviat una capçalera de resposta no và lida" -#: methods/http.cc:594 +#: methods/http.cc:600 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/http.cc:609 +#: methods/http.cc:615 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/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "Aquest servidor HTTP té el suport d'abast trencat" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "Format de la data desconegut" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "Ha fallat la selecció" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "Connexió finalitzada" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "S'ha produït un error en escriure al fitxer de sortida" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "S'ha produït un error en escriure al fitxer" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "S'ha produït un error en escriure al fitxer" -#: methods/http.cc:894 +#: methods/http.cc:900 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:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "S'ha produït un error en llegir des del servidor" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 msgid "Failed to truncate file" msgstr "No s'ha pogut truncar el fitxer %s" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "Capçalera de dades no và lida" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "Ha fallat la connexió" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "Error intern" @@ -2185,9 +2202,9 @@ msgid "Can't mmap an empty file" msgstr "No es pot transferir un fitxer buit a memòria" #: apt-pkg/contrib/mmap.cc:89 -#, fuzzy, c-format +#, c-format msgid "Couldn't duplicate file descriptor %i" -msgstr "No s'ha pogut obrir un conducte per a %s" +msgstr "No s'ha pogut duplicar el descriptor del fitxer %i" #: apt-pkg/contrib/mmap.cc:97 apt-pkg/contrib/mmap.cc:250 #, c-format @@ -2195,14 +2212,12 @@ msgid "Couldn't make mmap of %lu bytes" msgstr "No s'ha pogut crear un mapa de memòria de %lu octets" #: apt-pkg/contrib/mmap.cc:124 -#, fuzzy msgid "Unable to close mmap" -msgstr "No es pot obrir %s" +msgstr "No es pot tancar el mmap" #: apt-pkg/contrib/mmap.cc:152 apt-pkg/contrib/mmap.cc:180 -#, fuzzy msgid "Unable to synchronize mmap" -msgstr "No es pot invocar" +msgstr "No es pot sincronitzar el mmap" #: apt-pkg/contrib/mmap.cc:300 #, c-format @@ -2219,11 +2234,15 @@ msgid "" "Unable to increase the size of the MMap as the limit of %lu bytes is already " "reached." msgstr "" +"No s'ha pogut incrementar la mida del MMap ja que el limit de %lu bytes ja " +"s'ha superat." #: apt-pkg/contrib/mmap.cc:402 msgid "" "Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" +"No s'ha pogut incrementar la mida del MMap ja que el creixement automà tic " +"està deshabilitat per l'usuari." #. d means days, h means hours, min means minutes, s means seconds #: apt-pkg/contrib/strutl.cc:371 @@ -2239,9 +2258,9 @@ msgstr "%lih %limin %lis" #. min means minutes, s means seconds #: apt-pkg/contrib/strutl.cc:385 -#, fuzzy, c-format +#, c-format msgid "%limin %lis" -msgstr "limin %lis" +msgstr "%limin %lis" #. s means seconds #: apt-pkg/contrib/strutl.cc:390 @@ -2300,9 +2319,11 @@ msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Error sintà ctic %s:%u: Directriu no suportada «%s»" #: apt-pkg/contrib/configuration.cc:777 -#, fuzzy, c-format +#, c-format msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "Error sintà ctic %s:%u: Es permeten directrius només al nivell més alt" +msgstr "" +"Error sintà ctic %s:%u: la directiva clear requereix un arbre d'opcions com a " +"argument" #: apt-pkg/contrib/configuration.cc:827 #, c-format @@ -2370,14 +2391,14 @@ msgstr "Operació no và lida %s" msgid "Unable to stat the mount point %s" msgstr "No es pot obtenir informació del punt de muntatge %s" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "No es pot canviar a %s" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "No s'ha pogut fer «stat» del cdrom" @@ -2402,149 +2423,149 @@ msgstr "No s'empren blocats per al fitxer de blocat %s de muntar nfs" msgid "Could not get lock %s" msgstr "No s'ha pogut blocar %s" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Esperava %s però no hi era" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Sub-procés %s ha rebut una violació de segment." -#: apt-pkg/contrib/fileutl.cc:635 -#, fuzzy, c-format +#: apt-pkg/contrib/fileutl.cc:657 +#, c-format msgid "Sub-process %s received signal %u." -msgstr "Sub-procés %s ha rebut una violació de segment." +msgstr "Sub-procés %s ha rebut una senyal %u." -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Sub-procés %s ha retornat un codi d'error (%u)" -#: apt-pkg/contrib/fileutl.cc:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "El sub-procés %s ha sortit inesperadament" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "No s'ha pogut obrir el fitxer %s" -#: apt-pkg/contrib/fileutl.cc:714 -#, fuzzy, c-format +#: apt-pkg/contrib/fileutl.cc:745 +#, c-format msgid "Could not open file descriptor %d" -msgstr "No s'ha pogut obrir un conducte per a %s" +msgstr "No s'ha pogut obrir el descriptor del fitxer %d" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "llegits, falten %lu per llegir, però no queda res" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "escrits, falten %lu per escriure però no s'ha pogut" -#: apt-pkg/contrib/fileutl.cc:906 -#, fuzzy, c-format +#: apt-pkg/contrib/fileutl.cc:937 +#, c-format msgid "Problem closing the gzip file %s" -msgstr "Ha hagut un problema en tancar el fitxer" +msgstr "Ha hagut un problema en tancar el fitxer gzip %s" -#: apt-pkg/contrib/fileutl.cc:909 -#, fuzzy, c-format +#: apt-pkg/contrib/fileutl.cc:940 +#, c-format msgid "Problem closing the file %s" -msgstr "Ha hagut un problema en tancar el fitxer" +msgstr "Ha hagut un problema en tancar el fitxer %s" -#: apt-pkg/contrib/fileutl.cc:914 -#, fuzzy, c-format +#: apt-pkg/contrib/fileutl.cc:945 +#, c-format msgid "Problem renaming the file %s to %s" -msgstr "Ha hagut un problema en sincronitzar el fitxer" +msgstr "Ha hagut un problema en reanomenar el fitxer %s a %s" -#: apt-pkg/contrib/fileutl.cc:925 -#, fuzzy, c-format +#: apt-pkg/contrib/fileutl.cc:956 +#, c-format msgid "Problem unlinking the file %s" -msgstr "Ha hagut un problema en desenllaçar el fitxer" +msgstr "Ha hagut un problema en desenllaçar el fitxer %s" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "Ha hagut un problema en sincronitzar el fitxer" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "Memòria cau de paquets és buida" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "El fitxer de memòria cau de paquets està corromput" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 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:158 +#: apt-pkg/pkgcache.cc:161 #, 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:163 +#: apt-pkg/pkgcache.cc:166 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:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "Depèn" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "Predepèn" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "Suggereix" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "Recomana" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "Entra en conflicte" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "Reemplaça" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "Fa obsolet" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "Trenca" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" -msgstr "" +msgstr "Millores" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "important" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "requerit" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "està ndard" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "opcional" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "extra" @@ -2578,6 +2599,8 @@ msgstr "No s'ha pogut escriure el fitxer d'estat temporal %s" #, c-format msgid "Internal error, group '%s' has no installable pseudo package" msgstr "" +"S'ha produït un error intern, el grup '%s' no disposa d'un pseudopaquet " +"instal·lable" #: apt-pkg/tagfile.cc:102 #, c-format @@ -2590,29 +2613,32 @@ msgid "Unable to parse package file %s (2)" msgstr "No es pot analitzar el fitxer del paquet %s (2)" #: apt-pkg/sourcelist.cc:92 -#, fuzzy, c-format +#, c-format msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "LÃnia %lu malformada en la llista de fonts %s (analitzant dist)" +msgstr "" +"LÃnia %lu malformada en la llista de fonts %s ([opció] no reconeixible)" #: apt-pkg/sourcelist.cc:95 -#, fuzzy, c-format +#, c-format msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "LÃnia %lu malformada en la llista de fonts %s (dist)" +msgstr "LÃnia %lu malformada en la llista de fonts %s ([opció] massa curta)" #: apt-pkg/sourcelist.cc:106 -#, fuzzy, c-format +#, 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 (analitzant dist)" +msgstr "" +"LÃnia %lu malformada en la llista de fonts %s ([%s] no és una assignació)" #: apt-pkg/sourcelist.cc:112 -#, fuzzy, c-format +#, 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 (analitzant dist)" +msgstr "LÃnia %lu malformada en la llista de fonts %s ([%s] no té clau)" #: apt-pkg/sourcelist.cc:115 -#, fuzzy, c-format +#, 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 (analitzant dist)" +msgstr "" +"LÃnia %lu malformada en la llista de fonts %s ([%s] la clau %s no té valor)" #: apt-pkg/sourcelist.cc:128 #, c-format @@ -2662,9 +2688,11 @@ msgstr "El tipus «%s» no és conegut en la lÃnia %u de la llista de fonts %s" #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" +"No s'ha pogut realitzar la configuració immediata de '%s'. Consulteu man 5 " +"apt.conf, secció APT::Immediate-Configure per a més detalls. (%d)" #: apt-pkg/packagemanager.cc:452 #, c-format @@ -2681,9 +2709,11 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" +"No s'ha pogut realitzar la configuració immediata de '%s' ja desempaquetat. " +"Consulteu man 5 apt.conf, secció APT::Immediate-Configure per a més detalls." #: apt-pkg/pkgrecords.cc:32 #, c-format @@ -2697,7 +2727,7 @@ msgid "" msgstr "" "El paquet %s necessita ser reinstal·lat, però no se li pot trobar un arxiu." -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2705,13 +2735,13 @@ msgstr "" "Error, pkgProblemResolver::Resolve ha generat pauses, això pot haver estat " "causat per paquets retinguts." -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "" "No es poden corregir els problemes, teniu paquets retinguts que estan " "trencats." -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2720,28 +2750,28 @@ msgstr "" "s'han emprat els antics." #: apt-pkg/acquire.cc:79 -#, fuzzy, c-format +#, c-format msgid "List directory %spartial is missing." msgstr "Falta el directori de llistes %spartial." #: apt-pkg/acquire.cc:83 -#, fuzzy, c-format +#, c-format msgid "Archives directory %spartial is missing." -msgstr "Falta el directori d'arxiu %spartial." +msgstr "Falta el directori d'arxius %spartial." #: apt-pkg/acquire.cc:91 -#, fuzzy, c-format +#, c-format msgid "Unable to lock directory %s" -msgstr "No es pot blocar el directori de la llista" +msgstr "No es pot blocar el directori %s" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, 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:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "S'està obtenint el fitxer %li de %li" @@ -2761,12 +2791,12 @@ msgstr "El mètode %s no s'ha iniciat correctament" 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:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "El sistema d'empaquetament «%s» no està suportat" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "No es pot determinar un tipus de sistema d'empaquetament adequat." @@ -2789,17 +2819,21 @@ 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/policy.cc:343 -#, fuzzy, c-format +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "No s'ha pogut llegir la llista de les fonts." + +#: apt-pkg/policy.cc:344 +#, c-format msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Registre no và lid al fitxer de preferències, paquet sense capçalera" +msgstr "Registre no và lid al fitxer de preferències %s, paquet sense capçalera" -#: apt-pkg/policy.cc:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "No s'ha entès el pin de tipus %s" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "No hi ha prioritat especificada per al pin (o és zero)" @@ -2834,9 +2868,9 @@ msgstr "S'ha produït un error durant el processament de %s (NewFileVer1)" #: apt-pkg/pkgcachegen.cc:306 apt-pkg/pkgcachegen.cc:316 #: apt-pkg/pkgcachegen.cc:324 -#, fuzzy, c-format +#, c-format msgid "Error occurred while processing %s (NewVersion%d)" -msgstr "S'ha produït un error durant el processament de %s (NewVersion1)" +msgstr "S'ha produït un error durant el processament de %s (NewVersion%d)" #: apt-pkg/pkgcachegen.cc:320 #, c-format @@ -2909,41 +2943,44 @@ msgstr "no s'ha pogut canviar el nom, %s (%s -> %s)." msgid "MD5Sum mismatch" msgstr "La suma MD5 no concorda" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" msgstr "La suma resum no concorda" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 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" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 -#, fuzzy, c-format +#: apt-pkg/acquire-item.cc:1281 +#, c-format msgid "Release file expired, ignoring %s (invalid since %s)" -msgstr "El fitxer Release ha caducat, s'està ignorant %s (và lid fins a %s)" +msgstr "El fitxer Release ha caducat, s'està ignorant %s (invà lid des de %s)" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, 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:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" +"S'ha produït un error durant la verificació de la firma. El repositori no " +"està actualitzat i serà utilitzat el fitxer d'Ãndex anterior. error GPG: %s: " +"%s\n" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" -msgstr "" +msgstr "S'ha produït un error amb el GPG: %s: %s" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2953,7 +2990,7 @@ msgstr "" "significar que haureu d'arreglar aquest paquet manualment (segons " "arquitectura)." -#: apt-pkg/acquire-item.cc:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2962,7 +2999,7 @@ msgstr "" "No s'ha trobat un fitxer pel paquet %s. Això podria significar que haureu " "d'arreglar aquest paquet manualment." -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2970,7 +3007,7 @@ msgstr "" "L'Ãndex dels fitxers en el paquet està corromput. Fitxer no existent: camp " "per al paquet %s." -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "La mida no concorda" @@ -2990,14 +3027,14 @@ msgid "No Hash entry in Release file %s" msgstr "No hi ha una entrada Hash al fitxer Release %s" #: apt-pkg/indexrecords.cc:107 -#, fuzzy, c-format +#, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "No hi ha una entrada Hash al fitxer Release %s" +msgstr "No hi ha una entrada 'Valid-Until' và lida al fitxer Release %s" #: apt-pkg/indexrecords.cc:122 -#, fuzzy, c-format +#, c-format msgid "Invalid 'Date' entry in Release file %s" -msgstr "No hi ha una entrada Hash al fitxer Release %s" +msgstr "No hi ha una entrada 'date' al fitxer Release %s" #: apt-pkg/vendorlist.cc:66 #, c-format @@ -3062,6 +3099,8 @@ msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" +"No s'ha pogut localitzar cap fitxer del paquet, potser no és un disc de " +"Debian o la arquitectura és incorrecta?" #: apt-pkg/cdrom.cc:703 #, c-format @@ -3093,42 +3132,42 @@ msgstr "S'està escrivint una nova llista de fonts\n" msgid "Source list entries for this disc are:\n" msgstr "Les entrades de la llista de fonts per a aquest disc són:\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "S'han escrit %i registres.\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, 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:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, 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:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" "S'han escrit %i registres, on falten %i fitxers i hi ha %i fitxers no " "coincidents\n" -#: apt-pkg/indexcopy.cc:532 -#, fuzzy, c-format +#: apt-pkg/indexcopy.cc:537 +#, c-format msgid "Skipping nonexistent file %s" -msgstr "S'està obrint el fitxer de configuració %s" +msgstr "S'està ometent el fitxer %s que no existeix" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" -msgstr "" +msgstr "No s'ha pogut trobar el registre d'autenticatió per a: %s" -#: apt-pkg/indexcopy.cc:544 -#, fuzzy, c-format +#: apt-pkg/indexcopy.cc:549 +#, c-format msgid "Hash mismatch for: %s" -msgstr "La suma resum no concorda" +msgstr "El resum no coincideix per a: %s" #: apt-pkg/cacheset.cc:337 #, c-format @@ -3141,19 +3180,21 @@ msgid "Version '%s' for '%s' was not found" msgstr "No s'ha trobat la versió «%s» per a «%s»" #: apt-pkg/cacheset.cc:447 -#, fuzzy, c-format +#, c-format msgid "Couldn't find task '%s'" -msgstr "No s'ha pogut trobar la tasca %s" +msgstr "No s'ha pogut trobar la tasca '%s'" #: apt-pkg/cacheset.cc:454 -#, fuzzy, c-format +#, c-format msgid "Couldn't find any package by regex '%s'" -msgstr "No s'ha pogut trobar el paquet %s" +msgstr "No s'ha pogut trobar el paquet a través de l'expressió regular '%s'" #: apt-pkg/cacheset.cc:467 #, c-format msgid "Can't select versions from package '%s' as it purely virtual" msgstr "" +"No s'han pogut seleccionar les versions del paquet '%s' ja que és purament " +"virtual" #: apt-pkg/cacheset.cc:475 apt-pkg/cacheset.cc:483 #, c-format @@ -3161,143 +3202,160 @@ msgid "" "Can't select installed nor candidate version from package '%s' as it has " "neither of them" msgstr "" +"No s'han pogut seleccionar la versió instal·lada ni la candidata del paquet " +"'%s' ja que no estan disponibles cap de les dues" #: apt-pkg/cacheset.cc:491 #, 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:499 #, 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:507 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "" +"No s'ha pogut seleccionar la versió instal·lada del paquet %s ja que no està " +"instal·lada" #: apt-pkg/deb/dpkgpm.cc:52 #, c-format msgid "Installing %s" msgstr "S'està instal·lant %s" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "S'està configurant el paquet %s" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "S'està suprimint el paquet %s" #: apt-pkg/deb/dpkgpm.cc:55 -#, fuzzy, c-format +#, c-format msgid "Completely removing %s" -msgstr "S'ha suprimit completament el paquet %s" +msgstr "S'ha suprimit completament %s" #: apt-pkg/deb/dpkgpm.cc:56 #, c-format msgid "Noting disappearance of %s" -msgstr "" +msgstr "Anotant la desaparició de %s" #: apt-pkg/deb/dpkgpm.cc:57 #, c-format msgid "Running post-installation trigger %s" msgstr "S'està executant l'activador de postinstal·lació %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "Manca el directori «%s»" -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 -#, fuzzy, c-format +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 +#, c-format msgid "Could not open file '%s'" -msgstr "No s'ha pogut obrir el fitxer %s" +msgstr "No s'ha pogut obrir el fitxer '%s'" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "S'està preparant el paquet %s" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "S'està desempaquetant %s" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "S'està preparant per a configurar el paquet %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "S'ha instal·lat el paquet %s" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "S'està preparant per a la supressió del paquet %s" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "S'ha suprimit el paquet %s" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "S'està preparant per a suprimir completament el paquet %s" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "S'ha suprimit completament el paquet %s" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "No es pot escriure el registre, ha fallat openpty() (no s'ha muntat /dev/" "pts?)\n" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" -msgstr "" +msgstr "S'està executant dpkg" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 msgid "No apport report written because MaxReports is reached already" -msgstr "" +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:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" -msgstr "" +msgstr "S'han produït problemes de depències, es deixa sense configurar" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" +"No s'ha escrit cap informe perquè el missatge d'error indica que és un error " +"consequent de una fallida anterior." -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" +"No s'ha escrit cap informe perquè el missatge d'error indica una fallida per " +"disc ple" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" +"No s'ha escrit cap informe perquè el missatge d'error indica una fallida per " +"falta de memòria" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 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'I/O del dpkg" #: apt-pkg/deb/debsystem.cc:69 #, c-format @@ -3305,11 +3363,13 @@ msgid "" "Unable to lock the administration directory (%s), is another process using " "it?" msgstr "" +"No s'ha pogut bloquejar el directori d'administració (%s), hi ha cap altre " +"procés utilitzant-lo?" #: apt-pkg/deb/debsystem.cc:72 -#, fuzzy, c-format +#, c-format msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "No es pot blocar el directori de la llista" +msgstr "No es pot blocar el directori d'administració (%s), sou root?" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a @@ -3318,6 +3378,8 @@ msgstr "No es pot blocar el directori de la llista" msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " msgstr "" +"S'ha interromput el dpkg, harieu d'executar manualment '%s' per a corregir " +"el problema." #: apt-pkg/deb/debsystem.cc:106 msgid "Not locked" @@ -3328,12 +3390,12 @@ msgstr "No blocat" #: methods/mirror.cc:200 #, c-format msgid "No mirror file '%s' found " -msgstr "" +msgstr "No s'ha trobat el fitxer rèplica '%s'" #: methods/mirror.cc:343 #, c-format msgid "[Mirror: %s]" -msgstr "" +msgstr "[Rèplica: %s]" #: methods/rred.cc:465 #, c-format @@ -3341,6 +3403,8 @@ msgid "" "Could not patch %s with mmap and with file operation usage - the patch seems " "to be corrupt." msgstr "" +"No s'ha pogut apedaçar %s amb el mmap ni amb la utilització de la operació " +"del fitxer - el pedaç sembla ser incorrecte" #: methods/rred.cc:470 #, c-format @@ -3348,6 +3412,8 @@ msgid "" "Could not patch %s with mmap (but no mmap specific fail) - the patch seems " "to be corrupt." msgstr "" +"No s'ha pogut apedaçar %s amb el mmap (però no s'ha produït un error " +"especÃfic del mmap) - el pedaç sembla ser incorrecte" #: methods/rsh.cc:329 msgid "Connection closed prematurely" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+0200\n" "PO-Revision-Date: 2008-11-16 18:05+0100\n" "Last-Translator: Miroslav Kure <kurem@debian.cz>\n" "Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n" @@ -148,14 +148,14 @@ msgstr " VypÃchnutý balÃk: " msgid " Version table:" msgstr " Tabulka verzÃ:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, 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:1739 +#: cmdline/apt-cache.cc:1745 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -318,31 +318,31 @@ msgstr "Nemohu zapsat do %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Nemohu urÄit verzi programu debconf. Je debconf nainstalován?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "Seznam rozÅ¡ÃÅ™enà balÃku je pÅ™ÃliÅ¡ dlouhý" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "Chyba zpracovánà adresáře %s" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "Seznam zdrojových rozÅ¡ÃÅ™enà je pÅ™ÃliÅ¡ dlouhý" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "Chyba pÅ™i zapisovánà hlaviÄky do souboru" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "Chyba pÅ™i zpracovávánà obsahu %s" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -422,11 +422,11 @@ msgstr "" " -c=? NaÄte tento konfiguraÄnà soubor\n" " -o=? Nastavà libovolnou volbu" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "Žádný výbÄ›r nevyhovÄ›l" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, 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" @@ -539,7 +539,7 @@ msgstr "Archiv nemá pole Package" msgid " %s has no override entry\n" msgstr " %s nemá žádnou položku pro override\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " správce %s je %s, ne %s\n" @@ -649,79 +649,79 @@ msgstr "Problém s odlinkovánÃm %s" msgid "Failed to rename %s to %s" msgstr "Selhalo pÅ™ejmenovánà %s na %s" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "Chyba pÅ™i kompilaci regulárnÃho výrazu - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "NásledujÃcà balÃky majà nesplnÄ›né závislosti:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "ale %s je nainstalován" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "ale %s se bude instalovat" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "ale nedá se nainstalovat" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "ale je to virtuálnà balÃk" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "ale nenà nainstalovaný" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "ale nebude se instalovat" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " nebo" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "NásledujÃcà NOVÉ balÃky budou nainstalovány:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "NásledujÃcà balÃky budou ODSTRANÄšNY:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "NásledujÃcà balÃky jsou podrženy v aktuálnà verzi:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "NásledujÃcà balÃky budou aktualizovány:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "NásledujÃcà balÃky budou DEGRADOVÃNY:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "NásledujÃcà podržené balÃky budou zmÄ›nÄ›ny:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (kvůli %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -729,65 +729,65 @@ 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!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu aktualizováno, %lu novÄ› instalováno, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu reinstalováno, " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu degradováno, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu k odstranÄ›nà a %lu neaktualizováno.\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu instalováno nebo odstranÄ›no pouze ÄásteÄnÄ›.\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, fuzzy, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "Pozn: vybÃrám %s pro regulárnà výraz „%s“\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, fuzzy, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "Pozn: vybÃrám %s pro regulárnà výraz „%s“\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, fuzzy, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "Vybraná verze %s (%s) pro %s\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "BalÃk %s je virtuálnà balÃk poskytovaný:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr "[Instalovaný]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 #, fuzzy msgid " [Not candidate version]" msgstr "Kandidátské verze" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "MÄ›li byste explicitnÄ› vybrat jeden k instalaci." -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -798,165 +798,168 @@ msgstr "" "To může znamenat že balÃk chybÃ, byl zastarán, nebo je dostupný\n" "pouze z jiného zdroje\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "NicménÄ› následujÃcà balÃky jej nahrazujÃ:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, fuzzy, c-format msgid "Package '%s' has no installation candidate" msgstr "BalÃk %s nemá kandidáta pro instalaci" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, fuzzy, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "Pozn: VybÃrám %s mÃsto %s\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "PÅ™eskakuji %s, protože je již nainstalován.\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, fuzzy, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "PÅ™eskakuji %s, protože je již nainstalován.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "Reinstalace %s nenà možná, protože nelze stáhnout.\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s je již nejnovÄ›jÅ¡Ã verze.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, c-format msgid "%s set to manually installed.\n" msgstr "%s nastaven jako instalovaný ruÄnÄ›.\n" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "BalÃk %s nenà nainstalován, nelze tedy odstranit\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "Opravuji závislosti..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " selhalo." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "Nemohu opravit závislosti" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "Nemohu minimalizovat sadu pro aktualizaci" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " Hotovo" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "Pro opravenà můžete spustit „apt-get -f install“." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "NesplnÄ›né závislosti. Zkuste použÃt -f." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "VAROVÃNÃ: NásledujÃcà balÃky nemohou být autentizovány!" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "AutentizaÄnà varovánà potlaÄeno.\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "Instalovat tyto balÃky bez ověřenà [y/N]? " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "NÄ›které balÃky nemohly být autentizovány" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "Vyskytly se problémy a -y bylo použito bez --force-yes" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "VnitÅ™nà chyba, InstallPackages byl zavolán s poruÅ¡enými balÃky!" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "BalÃk je potÅ™eba odstranit ale funkce Odstranit je vypnuta." -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "VnitÅ™nà chyba, tÅ™ÃdÄ›nà nedobÄ›hlo do konce" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "Nelze pÅ™eÄÃst seznam zdrojů." - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 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" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "PotÅ™ebuji stáhnout %sB/%sB archivů.\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "PotÅ™ebuji stáhnout %sB archivů.\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, 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" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, 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" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "Nemohu urÄit volné mÃsto v %s" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "V %s nemáte dostatek volného mÃsta." -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Udáno „pouze triviálnÓ, ovÅ¡em toto nenà triviálnà operace." -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "Ano, udÄ›lej to tak, jak Å™Ãkám!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -967,28 +970,28 @@ msgstr "" "Pro pokraÄovánà opiÅ¡te frázi „%s“\n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "PÅ™eruÅ¡eno." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "Chcete pokraÄovat [Y/n]? " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Selhalo staženà %s %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "NÄ›které soubory nemohly být staženy" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "Stahovánà dokonÄeno v režimu pouze stáhnout" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -996,19 +999,19 @@ msgstr "" "Nemohu stáhnout nÄ›které archivy. Možná spusÅ¥te apt-get update nebo zkuste --" "fix-missing?" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing a výmÄ›na média nejsou momentálnÄ› podporovány" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "Nemohu opravit chybÄ›jÃcà balÃky." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "PÅ™eruÅ¡uji instalaci." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1018,35 +1021,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "NeÅ¡lo vyhodnotit seznam zdrojových balÃků %s" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "PÅ™Ãkaz update neakceptuje žádné argumenty" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "NemÄ›li bychom mazat vÄ›ci, nemůžu spustit AutoRemover" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1058,7 +1061,7 @@ msgstr[0] "" msgstr[1] "" "NásledujÃcà balÃky byly nainstalovány automaticky a již nejsou potÅ™eba:" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1068,11 +1071,11 @@ msgstr[0] "" msgstr[1] "" "NásledujÃcà balÃky byly nainstalovány automaticky a již nejsou potÅ™eba:" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "Pro jejich odstranÄ›nà použijte „apt-get autoremove“." -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1090,23 +1093,23 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "NásledujÃcà informace vám mohou pomoci vyÅ™eÅ¡it tuto situaci:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" msgstr "VnitÅ™nà chyba, AutoRemover pokazil vÄ›ci" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "VnitÅ™nà chyba, AllUpgrade pokazil vÄ›ci" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Pro opravenà následujÃcÃch můžete spustit „apt-get -f install“:" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1114,7 +1117,7 @@ msgstr "" "NesplnÄ›né závislosti. Zkuste spustit „apt-get -f install“ bez balÃků (nebo " "navrhnÄ›te Å™eÅ¡enÃ)." -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1125,69 +1128,69 @@ msgstr "" "nemožnou situaci, nebo, pokud použÃváte nestabilnà distribuci, že\n" "vyžadované balÃky jeÅ¡tÄ› nebyly vytvoÅ™eny nebo pÅ™esunuty z PÅ™Ãchozà fronty." -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "PoÅ¡kozené balÃky" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "NásledujÃcà extra balÃky budou instalovány:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "Navrhované balÃky:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "DoporuÄované balÃky:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "Nemohu najÃt balÃk %s" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "%s nastaven jako instalovaný ruÄnÄ›.\n" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "PropoÄÃtávám aktualizaci... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "Selhalo" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "Hotovo" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "VnitÅ™nà chyba, Å™eÅ¡itel problémů pokazil vÄ›ci" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "Nemohu zamknout adresář pro stahovánÃ" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 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:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "Nemohu najÃt zdrojový balÃk pro %s" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1195,83 +1198,87 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "PÅ™eskakuji dÅ™Ãve stažený soubor „%s“\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "Na %s nemáte dostatek volného mÃsta" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "PotÅ™ebuji stáhnout %sB/%sB zdrojových archivů.\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, 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:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "Stáhnout zdroj %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "Staženà nÄ›kterých archivů selhalo." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, 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:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "PÅ™Ãkaz pro rozbalenà „%s“ selhal.\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, 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:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "PÅ™Ãkaz pro sestavenà „%s“ selhal.\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "Synovský proces selhal" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 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:2506 +#: cmdline/apt-get.cc:2524 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Nemohu zÃskat závislosti pro sestavenà %s" -#: cmdline/apt-get.cc:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "%s nemá žádné závislosti pro sestavenÃ.\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "%s závislost pro %s nemůže být splnÄ›na, protože balÃk %s nebyl nalezen" -#: cmdline/apt-get.cc:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1280,31 +1287,31 @@ msgstr "" "%s závislost pro %s nemůže být splnÄ›na protože nenà k dispozici verze balÃku " "%s, která odpovÃdá požadavku na verzi" -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Selhalo splnÄ›nà %s závislosti pro %s: Instalovaný balÃk %s je pÅ™ÃliÅ¡ nový" -#: cmdline/apt-get.cc:2693 +#: cmdline/apt-get.cc:2711 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Selhalo splnÄ›nà %s závislosti pro %s: %s" -#: cmdline/apt-get.cc:2709 +#: cmdline/apt-get.cc:2727 #, 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:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "Chyba pÅ™i zpracovánà závislostà pro sestavenÃ" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "Podporované moduly:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1390,7 +1397,7 @@ msgstr "" "a apt.conf(5).\n" " Tato APT má schopnosti svaté krávy.\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1635,10 +1642,10 @@ msgstr "Soubor %s/%s pÅ™episuje ten z balÃku %s" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1773,23 +1780,23 @@ msgstr "Nelze najÃt platný kontrolnà soubor" msgid "Unparsable control file" msgstr "Nezpracovatelný kontrolnà soubor" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "Nemohu otevÅ™Ãt rouru pro %s" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "Chyba Ätenà z procesu %s" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "Selhalo vyhodnocenÃ" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "Nelze nastavit Äas modifikace" @@ -1882,7 +1889,7 @@ msgstr "ÄŒas spojenà vyprÅ¡el" msgid "Server closed the connection" msgstr "Server uzavÅ™el spojenÃ" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "Chyba ÄtenÃ" @@ -1894,7 +1901,7 @@ msgstr "OdpovÄ›Ä pÅ™eplnila buffer." msgid "Protocol corruption" msgstr "PoruÅ¡enà protokolu" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "Chyba zápisu" @@ -1948,7 +1955,7 @@ msgstr "Spojenà datového socketu vyprÅ¡elo" msgid "Unable to accept connection" msgstr "Nemohu pÅ™ijmout spojenÃ" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "Problém s hashovánÃm souboru" @@ -2082,67 +2089,67 @@ msgstr "ZÃskal jsem jednu řádku hlaviÄky pÅ™es %u znaků" msgid "Bad header line" msgstr "Chybná hlaviÄka" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "Http server poslal neplatnou hlaviÄku odpovÄ›di" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "Http server poslal neplatnou hlaviÄku Content-Length" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "Http server poslal neplatnou hlaviÄku Content-Range" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "Tento HTTP server má porouchanou podporu rozsahů" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "Neznámý formát data" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "VýbÄ›r selhal" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "ÄŒas spojenà vyprÅ¡el" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "Chyba zápisu do výstupnÃho souboru" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "Chyba zápisu do souboru" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "Chyba zápisu do souboru" -#: methods/http.cc:894 +#: methods/http.cc:900 msgid "Error reading from server. Remote end closed connection" msgstr "Chyba Ätenà ze serveru. Druhá strana zavÅ™ela spojenÃ" -#: methods/http.cc:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "Chyba Ätenà ze serveru" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 msgid "Failed to truncate file" msgstr "Nelze zmenÅ¡it soubor" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "Å patné datové záhlavÃ" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "Spojenà selhalo" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "VnitÅ™nà chyba" @@ -2336,14 +2343,14 @@ msgstr "Neplatná operace %s" msgid "Unable to stat the mount point %s" msgstr "Nelze vyhodnotit pÅ™Ãpojný bod %s" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "Nemohu pÅ™ejÃt do %s" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "NezdaÅ™ilo se vyhodnotit cdrom" @@ -2367,149 +2374,149 @@ msgstr "NepoužÃvám zamykánà pro zámkový soubor %s pÅ™ipojený pÅ™es nfs" msgid "Could not get lock %s" msgstr "Nemohu zÃskat zámek %s" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "ÄŒekal jsem na %s, ale nebyl tam" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Podproces %s obdržel chybu segmentace." -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "Podproces %s obdržel chybu segmentace." -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, 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:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Podproces %s neoÄekávanÄ› skonÄil" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "Nemohu otevÅ™Ãt soubor %s" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "Nemohu otevÅ™Ãt rouru pro %s" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "ÄtenÃ, stále mám k pÅ™eÄtenà %lu, ale už nic nezbývá" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "zápis, stále mám %lu k zápisu, ale nejde to" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, fuzzy, c-format msgid "Problem closing the gzip file %s" msgstr "Problém pÅ™i zavÃránà souboru" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "Problém pÅ™i zavÃránà souboru" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "Problém pÅ™i synchronizovánà souboru" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "Problém pÅ™i odstraňovánà souboru" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "Problém pÅ™i synchronizovánà souboru" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "Cache balÃků je prázdná" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "Cache soubor balÃků je poÅ¡kozen" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "Cache soubor balÃků je v nekompatibilnà verzi" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, 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:163 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache was built for a different architecture" msgstr "Cache balÃků byla vytvoÅ™ena pro jinou architekturu" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "Závisà na" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "PÅ™edzávisà na" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "Navrhuje" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "DoporuÄuje" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "Koliduje s" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "Nahrazuje" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "Zastarává" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "PoruÅ¡uje" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "důležitý" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "vyžadovaný" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "standardnÃ" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "volitelný" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "extra" @@ -2627,7 +2634,7 @@ msgstr "Typ „%s“ na řádce %u v seznamu zdrojů %s nenà známý" #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" @@ -2645,7 +2652,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" @@ -2660,7 +2667,7 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "BalÃk %s je potÅ™eba pÅ™einstalovat, ale nemohu pro nÄ›j nalézt archiv." -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2668,11 +2675,11 @@ msgstr "" "Chyba, pkgProblemResolver::Resolve vytvářà poruchy, to může být způsobeno " "podrženými balÃky." -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "Nemohu opravit problémy, nÄ›které balÃky držÃte v porouchaném stavu." -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2697,12 +2704,12 @@ msgstr "Nemohu uzamknout list adresář" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Stahuji soubor %li z %li (%s zbývá)" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "Stahuji soubor %li z %li" @@ -2722,12 +2729,12 @@ msgstr "Metoda %s nebyla spuÅ¡tÄ›na správnÄ›" 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:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "BalÃÄkovacà systém „%s“ nenà podporován" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "Nebylo možno urÄit vhodný typ balÃÄkovacÃho systému" @@ -2749,17 +2756,21 @@ msgstr "" 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/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "Nelze pÅ™eÄÃst seznam zdrojů." + +#: apt-pkg/policy.cc:344 #, fuzzy, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "Neplatný záznam v souboru preferencÃ, žádné záhlavà balÃku" -#: apt-pkg/policy.cc:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "NerozumÃm vypÃchnutà typu %s" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "Pro vypÃchnutà nebyla zadána žádná (nebo nulová) priorita" @@ -2861,41 +2872,41 @@ msgstr "pÅ™ejmenovánà selhalo, %s (%s -> %s)." msgid "MD5Sum mismatch" msgstr "Neshoda MD5 souÄtů" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" msgstr "Neshoda kontrolnÃch souÄtů" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 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" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2904,7 +2915,7 @@ msgstr "" "Nebyl jsem schopen 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:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2913,14 +2924,14 @@ msgstr "" "Nebyl jsem schopen nalézt soubor s balÃkem %s. Asi budete muset tento balÃk " "opravit ruÄnÄ›." -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, 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/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "Velikosti nesouhlasÃ" @@ -3043,38 +3054,38 @@ msgstr "Zapisuji nový seznam balÃků\n" msgid "Source list entries for this disc are:\n" msgstr "Seznamy zdrojů na tomto disku jsou:\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "Zapsal jsem %i záznamů.\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Zapsal jsem %i záznamů s chybÄ›jÃcÃmi soubory (%i).\n" -#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Zapsal jsem %i záznamů s nesouhlasÃcÃmi soubory (%i).\n" -#: apt-pkg/indexcopy.cc:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" "Zapsal jsem %i záznamů s chybÄ›jÃcÃmi (%i) a nesouhlasÃcÃmi (%i) soubory.\n" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, fuzzy, c-format msgid "Skipping nonexistent file %s" msgstr "OtevÃrám konfiguraÄnà soubor %s" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, fuzzy, c-format msgid "Hash mismatch for: %s" msgstr "Neshoda kontrolnÃch souÄtů" @@ -3131,12 +3142,12 @@ msgstr "" msgid "Installing %s" msgstr "Instaluji %s" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "Nastavuji %s" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "Odstraňuji %s" @@ -3156,92 +3167,93 @@ msgstr "" msgid "Running post-installation trigger %s" msgstr "SpouÅ¡tÃm poinstalaÄnà spouÅ¡tÄ›Ä %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "Adresář „%s“ chybÃ" -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, fuzzy, c-format msgid "Could not open file '%s'" msgstr "Nemohu otevÅ™Ãt soubor %s" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "PÅ™ipravuji %s" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "Rozbaluji %s" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "PÅ™ipravuji nastavenà %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "Nainstalován %s" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "PÅ™ipravuji odstranÄ›nà %s" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "OdstranÄ›n %s" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "PÅ™ipravuji úplné odstranÄ›nà %s" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "KompletnÄ› odstranÄ›n %s" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "Nelze zapsat log, volánà openpty() selhalo (/dev/pts nenà pÅ™ipojen?)\n" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: APT\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+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" @@ -166,14 +166,14 @@ msgstr " Pin Pecyn: " msgid " Version table:" msgstr " Tabl Fersiynnau:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, 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:1739 +#: cmdline/apt-cache.cc:1745 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -343,32 +343,32 @@ msgstr "Ni ellir ysgrifennu i %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Ni ellir cael fersiwn debconf. Ydi debconf wedi ei sefydlu?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "Mae'r rhestr estyniad pecyn yn rhy hir." -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, fuzzy, c-format msgid "Error processing directory %s" msgstr "Gwall wrth brosesu'r cyfeiriadur %s" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "Mae'r rhestr estyniad ffynhonell yn rhy hir" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "Gwall wrth ysgrifennu pennawd i'r ffeil cynnwys" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, fuzzy, c-format msgid "Error processing contents %s" msgstr "Gwall wrth Brosesu Cynnwys %s" # FIXME: full stops -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 #, fuzzy msgid "" "Usage: apt-ftparchive [options] command\n" @@ -450,11 +450,11 @@ msgstr "" " -c=? Darllen y ffeil cyfluniad hwn\n" " -o=? Gosod opsiwn cyfluniad mympwyol" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "Dim dewisiadau'n cyfateb" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, 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'" @@ -565,7 +565,7 @@ msgstr "Doedd dim maes pecyn gan yr archif" msgid " %s has no override entry\n" msgstr " Does dim cofnod gwrthwneud gan %s\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " Cynaliwr %s yw %s nid %s\n" @@ -676,82 +676,82 @@ msgstr "Gwall wrth datgysylltu %s" msgid "Failed to rename %s to %s" msgstr "Methwyd ailenwi %s at %s" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "I" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "Gwall crynhoi patrwm - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "Mae gan y pecynnau canlynol ddibyniaethau heb eu bodloni:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "ond mae %s wedi ei sefydlu" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "ond mae %s yn mynd i gael ei sefydlu" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "ond ni ellir ei sefydlu" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "ond mae'n becyn rhithwir" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "ond nid yw wedi ei sefydlu" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "ond nid yw'n mynd i gael ei sefydlu" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " neu" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "Caiff y pecynnau canlynol eu TYNNU:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 #, fuzzy msgid "The following packages have been kept back:" msgstr "Mae'r pecynnau canlynol wedi eu dal yn ôl" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 #, fuzzy msgid "The following packages will be upgraded:" msgstr "Caiff y pecynnau canlynol eu uwchraddio" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 #, fuzzy msgid "The following packages will be DOWNGRADED:" msgstr "Caiff y pecynnau canlynol eu ISRADDIO" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "Caiff y pecynnau wedi eu dal canlynol eu newid:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (oherwydd %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 #, fuzzy msgid "" "WARNING: The following essential packages will be removed.\n" @@ -761,66 +761,66 @@ msgstr "" "NI DDYLIR gwneud hyn os nad ydych chi'n gwybod yn union beth rydych chi'n\n" "ei wneud!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu wedi uwchraddio, %lu newydd eu sefydlu, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu wedi ailsefydlu, " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu wedi eu israddio, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu i'w tynnu a %lu heb eu uwchraddio.\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu heb eu sefydlu na tynnu'n gyflawn.\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, fuzzy, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "Sylwer, yn dewis %s ar gyfer y patrwm '%s'\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, fuzzy, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "Sylwer, yn dewis %s ar gyfer y patrwm '%s'\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, fuzzy, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "Dewiswyd fersiwn %s (%s) ar gyfer %s\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "Mae'r pecyn %s yn becyn rhithwir a ddarparir gan:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [Sefydliwyd]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 #, fuzzy msgid " [Not candidate version]" msgstr "Fersiynau Posib" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "Dylech ddewis un yn benodol i'w sefydlu." # FIXME: punctuation -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, fuzzy, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -832,168 +832,171 @@ msgstr "" "gael ei uwchlwytho, cafodd ei ddarfod neu nid yw ar gael drwy gynnwys y\n" "ffeil sources.list.\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "Fodd bynnag, mae'r pecynnau canlynol yn cymryd ei le:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, fuzzy, c-format msgid "Package '%s' has no installation candidate" msgstr "Does dim ymgeisydd sefydlu gan y pecyn %s" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, fuzzy, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "Sylwer, yn dewis %s yn hytrach na %s\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "Yn hepgor %s, mae wedi ei sefydlu a nid yw uwchraddio wedi ei osod.\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, fuzzy, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "Yn hepgor %s, mae wedi ei sefydlu a nid yw uwchraddio wedi ei osod.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "Nid yw ailsefydlu %s yn bosib, gan ni ellir ei lawrlwytho.\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "Mae %s y fersiwn mwyaf newydd eisioes.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "ond mae %s yn mynd i gael ei sefydlu" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "Nid yw'r pecyn %s wedi ei sefydlu, felly ni chaif ei dynnu\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "Yn cywiro dibyniaethau..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " wedi methu." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "Ni ellir cywiro dibyniaethau" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "Ni ellir bychanu y set uwchraddio" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " Wedi Gorffen" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 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." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "Dibyniaethau heb eu bodloni. Ceisiwch ddefnyddio -f." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 #, fuzzy msgid "WARNING: The following packages cannot be authenticated!" msgstr "RHYBUDD: Ni ellir dilysu'r pecynnau canlynol yn ddiogel!" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "" -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 #, fuzzy msgid "Some packages could not be authenticated" msgstr "RHYBUDD: Ni ellir dilysu'r pecynnau canlynol yn ddiogel!" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "Mae problemau a defnyddwyd -y heb --force-yes" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 #, fuzzy msgid "Packages need to be removed but remove is disabled." msgstr "Rhaid tynnu pecynnau on mae Tynnu wedi ei analluogi." -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 #, fuzzy msgid "Internal error, Ordering didn't finish" msgstr "Gwall Mewnol wrth ychwanegu dargyfeiriad" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "Methwyd darllen y rhestr ffynhonellau." - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Mae angeyn cyrchu %sB/%sB o archifau.\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Mae angen cyrchu %sB o archifau.\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, fuzzy, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "Ar ôl dadbacio defnyddir %sB o ofod disg ychwanegol.\n" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, fuzzy, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Ar ôl dadbactio caiff %sB o ofod disg ei rhyddhau.\n" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, 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:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "Does dim digon o le rhydd gennych yn %s." -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Penodwyd Syml Yn Unig ond nid yw hyn yn weithred syml." -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "Ie, gwna fel rydw i'n dweud!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, fuzzy, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -1004,29 +1007,29 @@ msgstr "" "Er mwyn mynd ymlaen, teipiwch y frawddeg '%s'\n" " ?]" -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "Erthylu." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 #, fuzzy msgid "Do you want to continue [Y/n]? " msgstr "Ydych chi eisiau mynd ymlaen? [Y/n] " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Methwyd cyrchu %s %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "Methodd rhai ffeiliau lawrlwytho" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "Lawrlwytho yn gyflawn ac yn y modd lawrlwytho'n unig" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1034,20 +1037,20 @@ msgstr "" "Ni ellir cyrchu rhai archifau, efallai dylwch rhedeg apt-get update, neu " "geidio defnyddio --fix-missing?" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "Ni chynhelir cyfnewid cyfrwng efo --fix-missing ar hyn o bryd" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "Ni ellir cywiro pecynnau ar goll." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 #, fuzzy msgid "Aborting install." msgstr "Yn Erthylu'r Sefydliad." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1057,35 +1060,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Methwyd stat() o'r rhestr pecyn ffynhonell %s" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "Nid yw'r gorchymyn diweddaru yn derbyn ymresymiadau" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1095,7 +1098,7 @@ msgid_plural "" msgstr[0] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" msgstr[1] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1103,11 +1106,11 @@ msgid_plural "" msgstr[0] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" msgstr[1] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1123,26 +1126,26 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "Gall y wybodaeth canlynol gynorthwyo'n datrys y sefyllfa:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "Gwall Mewnol, torrodd AllUpgrade bethau" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 #, fuzzy msgid "Internal error, AllUpgrade broke stuff" msgstr "Gwall Mewnol, torrodd AllUpgrade bethau" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Efallai hoffech rhedeg 'apt-get -f install' er mwyn cywiro'r rhain:" # FIXME -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1151,7 +1154,7 @@ msgstr "" "pecyn (neu penodwch ddatrys)" # FIXME: needs commas -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1163,71 +1166,71 @@ msgstr "" "ansefydlog, fod rhai pecynnau angenrheidiol heb gael eu creu eto neu\n" "heb gael eu symud allan o Incoming." -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "Pecynnau wedi torri" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "Caiff y pecynnau canlynol ychwanegol eu sefydlu:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "Pecynnau a awgrymmir:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "Pecynnau a argymhellir:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "Methwyd canfod pecyn %s" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "ond mae %s yn mynd i gael ei sefydlu" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 #, fuzzy msgid "Calculating upgrade... " msgstr "Yn Cyfrifo'r Uwchraddiad... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "Methwyd" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "Wedi Gorffen" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 #, fuzzy msgid "Internal error, problem resolver broke stuff" msgstr "Gwall Mewnol, torrodd AllUpgrade bethau" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "Ni ellir cloi'r cyfeiriadur lawrlwytho" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 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:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "Ni ellir canfod pecyn ffynhonell ar gyfer %s" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1235,75 +1238,79 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, 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:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "Does dim digon o le rhydd yn %s gennych" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Rhaid cyrchu %sB/%sB o archifau ffynhonell.\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Rhaid cyrchu %sB o archifau ffynhonell.\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, fuzzy, c-format msgid "Fetch source %s\n" msgstr "Cyrchu Ffynhonell %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "Methwyd cyrchu rhai archifau." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, 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:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Methodd y gorchymyn dadbacio '%s'.\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "Methodd y gorchymyn adeiladu '%s'.\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "Methodd proses plentyn" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 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:2506 +#: cmdline/apt-get.cc:2524 #, 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:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "Nid oes dibyniaethau adeiladu gan %s.\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1312,7 +1319,7 @@ msgstr "" "Ni ellir bodloni dibyniaeth %s ar gyfer %s oherwydd ni ellir canfod y pecyn " "%s" -#: cmdline/apt-get.cc:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1321,34 +1328,34 @@ 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:2666 +#: cmdline/apt-get.cc:2684 #, 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:2693 +#: cmdline/apt-get.cc:2711 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Methwyd bodloni dibyniaeth %s am %s: %s" -#: cmdline/apt-get.cc:2709 +#: cmdline/apt-get.cc:2727 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Methwyd bodloni'r dibyniaethau adeiladu ar gyfer %s." -#: cmdline/apt-get.cc:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "Methwyd prosesu dibyniaethau adeiladu" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 #, fuzzy msgid "Supported modules:" msgstr "Modylau a Gynhelir:" # FIXME: split -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1435,7 +1442,7 @@ msgstr "" "\n" " Mae gan yr APT hwn bŵerau buwch hudol.\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1689,10 +1696,10 @@ msgstr "Mae'r ffeil %s/%s yn trosysgrifo'r un yn y pecyn %s" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1837,23 +1844,23 @@ msgstr "Methwyd lleoli ffeil rheoli dilys" msgid "Unparsable control file" msgstr "Ffeil rheoli ni ellir ei ramadegu" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "Methwyd agor pibell ar gyfer %s" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "Gwall darllen o broses %s" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "Methwyd stat()" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "Methwyd gosod amser newid" @@ -1951,7 +1958,7 @@ msgstr "Goramser cysylltu" msgid "Server closed the connection" msgstr "Caeodd y gweinydd y cysylltiad" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "Gwall darllen" @@ -1963,7 +1970,7 @@ msgstr "Gorlifodd ateb y byffer." msgid "Protocol corruption" msgstr "Llygr protocol" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "Gwall ysgrifennu" @@ -2019,7 +2026,7 @@ msgstr "Goramserodd cysylltiad y soced data" msgid "Unable to accept connection" msgstr "Methwyd derbyn cysylltiad" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "Problem wrth stwnshio ffeil" @@ -2151,74 +2158,74 @@ msgstr "Derbynnwyd llinell pennaws sengl dros %u nod" msgid "Bad header line" msgstr "Llinell pennawd gwael" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 #, fuzzy msgid "The HTTP server sent an invalid reply header" msgstr "Danfonodd y gweinydd HTTP bennawd ateb annilys" -#: methods/http.cc:594 +#: methods/http.cc:600 #, fuzzy msgid "The HTTP server sent an invalid Content-Length header" msgstr "Danfonodd y gweinydd HTTP bennawd Content-Length annilys" -#: methods/http.cc:609 +#: methods/http.cc:615 #, fuzzy msgid "The HTTP server sent an invalid Content-Range header" msgstr "Danfonodd y gweinydd HTTP bennawd Content-Range annilys" -#: methods/http.cc:611 +#: methods/http.cc:617 #, fuzzy msgid "This HTTP server has broken range support" msgstr "Mae cynaliaeth amrediad y gweinydd hwn wedi torri" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "Fformat dyddiad anhysbys" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "Methwyd dewis" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "Goramserodd y cysylltiad" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "Gwall wrth ysgrifennu i ffeil allbwn" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "Gwall wrth ysgrifennu at ffeil" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "Gwall wrth ysgrifennu at y ffeil" -#: methods/http.cc:894 +#: methods/http.cc:900 #, 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:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "Gwall wrth ddarllen o'r gweinydd" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 #, fuzzy msgid "Failed to truncate file" msgstr "Methwyd ysgrifennu ffeil %s" -#: methods/http.cc:1154 +#: methods/http.cc:1160 #, fuzzy msgid "Bad header data" msgstr "Data pennawd gwael" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "Methodd y cysylltiad" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "Gwall mewnol" @@ -2416,14 +2423,14 @@ msgstr "Gweithred annilys %s" msgid "Unable to stat the mount point %s" msgstr "Ni ellir gwneud stat() o'r pwynt clymu %s" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "Ni ellir newid i %s" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "Methwyd gwneud stat() o'r CD-ROM" @@ -2447,152 +2454,152 @@ msgstr "Ddim yn cloi'r ffeil clo ar NFS %s" msgid "Could not get lock %s" msgstr "Methwyd cael y clo %s" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, fuzzy, c-format msgid "Waited for %s but it wasn't there" msgstr "Arhoswyd am %s ond nid oedd e yna" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Derbyniodd is-broses %s wall segmentu." -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "Derbyniodd is-broses %s wall segmentu." -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, 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:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Gorffenodd is-broses %s yn annisgwyl" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "Methwyd agor ffeil %s" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "Methwyd agor pibell ar gyfer %s" # FIXME -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "o hyd %lu i ddarllen ond dim ar ôl" # FIXME -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "o hyd %lu i ysgrifennu ond methwyd" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, fuzzy, c-format msgid "Problem closing the gzip file %s" msgstr "Gwall wrth gau'r ffeil" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "Gwall wrth gau'r ffeil" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "Gwall wrth gyfamseru'r ffeil" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "Gwall wrth dadgysylltu'r ffeil" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "Gwall wrth gyfamseru'r ffeil" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "Storfa pecyn gwag" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "Mae'r ffeil storfa pecyn yn llygredig" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "Mae'r ffeil storfa pecyn yn fersiwn anghyflawn" # FIXME: capitalisation? -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, 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:163 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache was built for a different architecture" msgstr "Adeiladwyd y storfa pecyn ar gyfer pernsaerniaeth gwahanol" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "Dibynnu" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "CynDdibynnu" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "Awgrymu" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "Argymell" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "Gwrthdaro" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "Amnewid" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "Darfodi" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "pwysig" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "angenrheidiol" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "safonnol" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "opsiynnol" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "ychwanegol" @@ -2720,7 +2727,7 @@ msgstr "Mae'r math '%s' yn anhysbys ar linell %u yn y rhestr ffynhonell %s" #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" @@ -2739,7 +2746,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" @@ -2756,7 +2763,7 @@ msgstr "" "Mae angen ailsefydlu'r pecyn %s, ond dydw i ddim yn gallu canfod archif ar " "ei gyfer." -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2764,12 +2771,12 @@ msgstr "" "Gwall: Cynhyrchodd pkgProblemResolver::Resolve doriadau. Fe all hyn fod wedi " "ei achosi gan pecynnau wedi eu dal." -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Ni ellir cywiro'r problemau gan eich bod chi wedi dal pecynnau torredig." -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2794,12 +2801,12 @@ msgstr "Ni ellir cloi'r cyfeiriadur rhestr" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, fuzzy, c-format msgid "Retrieving file %li of %li" msgstr "Yn Darllen Rhestr Ffeiliau" @@ -2822,12 +2829,12 @@ msgstr "" " '%s'\n" "yn y gyrriant '%s' a gwasgwch Enter\n" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Ni chynhelir y system pecynnu '%s'" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 #, fuzzy msgid "Unable to determine a suitable packaging system type" msgstr "Ni ellir canfod math system addas" @@ -2850,19 +2857,23 @@ msgstr "Methwyd agor neu ramadegu'r ffeil rhestrau neu statws." 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:106 +msgid "The list of sources could not be read." +msgstr "Methwyd darllen y rhestr ffynhonellau." + # FIXME: literal -#: apt-pkg/policy.cc:343 +#: apt-pkg/policy.cc:344 #, 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:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "Methwyd daeall y math pin %s" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "Dim blaenoriath (neu sero) wedi ei benodi ar gyfer pin" @@ -2967,43 +2978,43 @@ msgstr "methwyd ailenwi, %s (%s -> %s)." msgid "MD5Sum mismatch" msgstr "Camgyfatebiaeth swm MD5" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 #, fuzzy msgid "Hash Sum mismatch" msgstr "Camgyfatebiaeth swm MD5" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 msgid "There is no public key available for the following key IDs:\n" msgstr "" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "" # FIXME: case -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3012,7 +3023,7 @@ 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:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -3021,14 +3032,14 @@ msgstr "" "Methais i leoli ffeila r gyfer y pecyn %s. Fa all hyn olygu bod rhaid i chi " "drwsio'r pecyn hyn a law." -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" "Mae'r ffeiliau mynegai pecyn yn llygr. Dim maes Filename: gan y pecyn %s." -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "Camgyfatebiaeth maint" @@ -3151,37 +3162,37 @@ msgstr "Llinell %u yn rhy hir yn y rhestr ffynhonell %s." msgid "Source list entries for this disc are:\n" msgstr "" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "" -#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "" -#: apt-pkg/indexcopy.cc:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, fuzzy, c-format msgid "Skipping nonexistent file %s" msgstr "Yn agor y ffeil cyfluniad %s" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, fuzzy, c-format msgid "Hash mismatch for: %s" msgstr "Camgyfatebiaeth swm MD5" @@ -3238,12 +3249,12 @@ msgstr "" msgid "Installing %s" msgstr " Wedi Sefydlu: " -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, fuzzy, c-format msgid "Configuring %s" msgstr "Yn cysylltu i %s" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, fuzzy, c-format msgid "Removing %s" msgstr "Yn agor %s" @@ -3263,92 +3274,93 @@ msgstr "" msgid "Running post-installation trigger %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, fuzzy, c-format msgid "Directory '%s' missing" msgstr "Mae'r cyfeiriadur rhestrau %spartial ar goll." -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, fuzzy, c-format msgid "Could not open file '%s'" msgstr "Methwyd agor ffeil %s" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, fuzzy, c-format msgid "Preparing %s" msgstr "Yn agor %s" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, fuzzy, c-format msgid "Unpacking %s" msgstr "Yn agor %s" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, fuzzy, c-format msgid "Preparing to configure %s" msgstr "Yn agor y ffeil cyfluniad %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, fuzzy, c-format msgid "Installed %s" msgstr " Wedi Sefydlu: " -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, fuzzy, c-format msgid "Removed %s" msgstr "Argymell" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, fuzzy, c-format msgid "Preparing to completely remove %s" msgstr "Yn agor y ffeil cyfluniad %s" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, fuzzy, c-format msgid "Completely removed %s" msgstr "Methwyd dileu %s" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -1,38 +1,37 @@ -# translation of apt_po_da.po to Danish -# translation of da.po to Danish -# Advanced Package Transfer - APT message translation catalog -# Danish messages -# +# Danish translation apt. +# Copyright (C) 2010 apt & nedenstÃ¥ende oversættere. +# This file is distributed under the same license as the apt package. # Claus Hindsgaul <claus_h@image.dk>, 2002,2003, 2004, 2005, 2006. # Claus Hindsgaul <claus.hindsgaul@gmail.com>, 2006, 2007. +# Joe Hansen <joedalton2@yahoo.dk>, 2010. +# msgid "" msgstr "" -"Project-Id-Version: apt-da\n" +"Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" -"PO-Revision-Date: 2007-09-06 21:40+0200\n" -"Last-Translator: Claus Hindsgaul <claus.hindsgaul@gmail.com>\n" -"Language-Team: Danish\n" +"POT-Creation-Date: 2010-09-28 17:23+0200\n" +"PO-Revision-Date: 2010-09-01 23:51+0200\n" +"Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n" +"Language-Team: Danish <debian-l10n-danish@lists.debian.org> \n" "Language: \n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: cmdline/apt-cache.cc:156 #, c-format msgid "Package %s version %s has an unmet dep:\n" -msgstr "<Pakken %s version %s har en uopfyldt afhængighed:\n" +msgstr "Pakken %s version %s har en uopfyldt afhængighed:\n" #: cmdline/apt-cache.cc:284 msgid "Total package names: " -msgstr "Totale pakkenavne : " +msgstr "Samlet antal pakkenavne: " #: cmdline/apt-cache.cc:286 -#, fuzzy msgid "Total package structures: " -msgstr "Totale pakkenavne : " +msgstr "Samlet antal pakkestrukturer: " #: cmdline/apt-cache.cc:326 msgid " Normal packages: " @@ -64,7 +63,7 @@ msgstr "Sammenlagt forskellige beskrivelser: " #: cmdline/apt-cache.cc:336 msgid "Total dependencies: " -msgstr "Sammenlagt afhængigheder: " +msgstr "Sammenlagt afhængigheder: " #: cmdline/apt-cache.cc:339 msgid "Total ver/file relations: " @@ -80,11 +79,11 @@ msgstr "Sammenlagt 'Tilbyder'-markeringer: " #: cmdline/apt-cache.cc:355 msgid "Total globbed strings: " -msgstr "Totalle søgemønsterstrenge: " +msgstr "Totalle søgemønsterstrenge: " #: cmdline/apt-cache.cc:369 msgid "Total dependency version space: " -msgstr "Total afhængighedsversions-plads: " +msgstr "Total afhængighedsversions-plads: " #: cmdline/apt-cache.cc:374 msgid "Total slack space: " @@ -92,7 +91,7 @@ msgstr "Total 'Slack'-plads: " #: cmdline/apt-cache.cc:382 msgid "Total space accounted for: " -msgstr "Total plads, der kan gøres rede for: " +msgstr "Total plads, der kan gøres rede for: " #: cmdline/apt-cache.cc:513 cmdline/apt-cache.cc:1194 #, c-format @@ -100,9 +99,8 @@ msgid "Package file %s is out of sync." msgstr "Pakkefilen %s er ude af trit." #: cmdline/apt-cache.cc:1273 -#, fuzzy msgid "You must give at least one search pattern" -msgstr "Du skal angive mindst ét filnavn" +msgstr "Du skal angive mindst ét søgemønster" #: cmdline/apt-cache.cc:1429 cmdline/apt-cache.cc:1431 #: cmdline/apt-cache.cc:1508 @@ -115,7 +113,7 @@ msgid "Unable to locate package %s" msgstr "Kunne ikke lokalisere pakken %s" # Overskriften til apt-cache policy, -# forkorter "Package" væk. CH +# forkorter "Package" væk. CH #: cmdline/apt-cache.cc:1533 msgid "Package files:" msgstr "Pakkefiler:" @@ -154,15 +152,14 @@ msgstr " Pakke-pin: " msgid " Version table:" msgstr " Versionstabel:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 -#, fuzzy, c-format +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 +#, c-format msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s for %s oversat %s %s\n" +msgstr "%s %s for %s kompileret pÃ¥ %s %s\n" -#: cmdline/apt-cache.cc:1739 -#, fuzzy +#: cmdline/apt-cache.cc:1745 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -206,54 +203,55 @@ msgstr "" " apt-cache [tilvalg] showpkg pakke1 [pakke2 ...]\n" " apt-cache [tilvalg] showsrc pakke1 [pakke2 ...]\n" "\n" -"apt-cache er et lavniveau-værktøj, der bruge håndtere APTs\n" -"binære mellemlager-filer og hente oplysninger fra dem.\n" +"apt-cache er et lavniveauværktøj, brugt til at manipulere APTs\n" +"binære mellemlagerfiler og hente oplysninger fra dem.\n" "\n" "Kommandoer:\n" -" add - Tilføj en pakkefil til kilde-mellemlageret\n" -" gencaches - Opbyg både pakke- og kilde-mellemlageret\n" +" add - Tilføj en pakkefil til kildemellemlageret\n" +" gencaches - Opbyg bÃ¥de pakke- og kildemellemlageret\n" " showpkg - Vis generelle oplysninger om en enkelt pakke\n" " showsrc - Vis kildetekstposter\n" -" stats - Vis nogle grundlæggende statistikker\n" +" stats - Vis nogle grundlæggende statistikker\n" " dump - Vis hele filen i kort form\n" -" dumpavail - Udlæs en 'available'-fil til standard-ud\n" -" unmet - Vis uopfyldte afhængigheder\n" -" search - Gennemsøg pakkelisten med et regulært udtryk\n" -" show - Vis en læsbar post for pakken\n" -" depends - Vis de rå afhængighedsoplysninger for en pakke\n" -" rdepends - Vis omvendte afhængighedsoplysninger for en pakke\n" -" pkgnames - Vis navnene på alle pakker\n" -" dotty - Generér pakkegrafer til GraphViz\n" -" xvcg - Generér pakkegrafer til xvcg\n" +" dumpavail - Udlæs en 'available'-fil til standard-ud\n" +" unmet - Vis uopfyldte afhængigheder\n" +" search - Gennemsøg pakkelisten med et regulært udtryk\n" +" show - Vis en læsbar post for pakken\n" +" showauto - Vis en liste af automatisk installerede pakker\n" +" depends - Vis de rÃ¥ afhængighedsoplysninger for en pakke\n" +" rdepends - Vis omvendte afhængighedsoplysninger for en pakke\n" +" pkgnames - Vis navnene pÃ¥ alle pakker\n" +" dotty - Generér pakkegrafer til GraphViz\n" +" xvcg - Generér pakkegrafer til xvcg\n" " policy - Vis policy-indstillinger\n" "\n" "Tilvalg:\n" -" -h Denne hjælpetekst.\n" -" -p=? Pakke-mellemlageret.\n" -" -s=? Kilde-mellemlageret.\n" -" -q Deaktivér fremgangsindikatoren.\n" -" -i Vis kun vigtige afhængigheder for 'unmet'-kommandoen.\n" -" -c=? Læs denne opsætningsfil\n" -" -o=? Angiv et opsætningstilvalg. F.eks. -o dir::cache=/tmp\n" +" -h Denne hjælpetekst.\n" +" -p=? Pakkemellemlageret.\n" +" -s=? Kildemellemlageret.\n" +" -q Deaktivér fremgangsindikatoren.\n" +" -i Vis kun vigtige afhængigheder for kommandoen 'unmet'.\n" +" -c=? Læs denne opsætningsfil\n" +" -o=? Angiv et opsætningstilvalg. F.eks. -o dir::cache=/tmp\n" "Se manualsiderne for apt-cache(8) og apt.conf(5) for flere oplysninger.\n" #: cmdline/apt-cdrom.cc:77 -#, fuzzy msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Angiv et navn for denne disk, som f.eks. 'Debian 2.1r1 Disk 1'" +msgstr "" +"Angiv venligst et navn for denne disk, som f.eks. 'Debian 5.0.3 Disk 1'" #: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" -msgstr "Indsæt en disk i drevet og tryk retur" +msgstr "Indsæt en disk i drevet og tryk retur" #: cmdline/apt-cdrom.cc:127 -#, fuzzy, c-format +#, c-format msgid "Failed to mount '%s' to '%s'" -msgstr "Kunne ikke omdøbe %s til %s" +msgstr "Kunne ikke montere %s til %s" #: cmdline/apt-cdrom.cc:162 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." +msgstr "Gentag processen for resten af cd'erne i dit sæt." #: cmdline/apt-config.cc:41 msgid "Arguments not in pairs" @@ -276,16 +274,16 @@ msgid "" msgstr "" "Brug: apt-config [tilvalg] kommando\n" "\n" -"apt-config er et simpelt værktøj til at læse APTs opsætningsfil\n" +"apt-config er et simpelt værktøj til at læse APTs opsætningsfil\n" "\n" "Kommandoer:\n" " shell - Skal-tilstand\n" -" dump - Vis opsætningen\n" +" dump - Vis opsætningen\n" "\n" "Tilvalg:\n" -" -h Denne hjælpetekst.\n" -" -c=? Læs denne opsætningsfil\n" -" -o=? Angiv et opsætningstilvalg. F.eks. -o dir::cache=/tmp\n" +" -h Denne hjælpetekst.\n" +" -c=? Læs denne opsætningsfil\n" +" -o=? Angiv et opsætningstilvalg. F.eks. -o dir::cache=/tmp\n" #: cmdline/apt-extracttemplates.cc:98 #, c-format @@ -307,14 +305,14 @@ msgid "" msgstr "" "Brug: apt-extracttemplates fil1 [fil2 ...]\n" "\n" -"apt-extracttemplates er et værktøj til at uddrage opsætnings- og skabelon-" +"apt-extracttemplates er et værktøj til at uddrage opsætnings- og skabelon-" "oplysninger fra Debianpakker\n" "\n" "Tilvalg:\n" -" -h Denne hjælpetekst\n" +" -h Denne hjælpetekst\n" " -t Angiv temp-mappe\n" -" -c=? Læs denne opsætningsfil\n" -" -o=? Angiv et opsætningstilvalg. F.eks. -o dir::cache=/tmp\n" +" -c=? Læs denne opsætningsfil\n" +" -o=? Angiv et opsætningstilvalg. F.eks. -o dir::cache=/tmp\n" #: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:1171 #, c-format @@ -325,31 +323,31 @@ msgstr "Kunne ikke skrive til %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Kan ikke finde debconfs version. Er debconf installeret?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "Pakkeudvidelseslisten er for lang" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "Fejl under behandling af mappen %s" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "Kildeudvidelseslisten er for lang" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "Fejl under skrivning af hovedet til indholdsfil" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "Fejl under behandling af indhold %s" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -391,49 +389,49 @@ msgid "" " -o=? Set an arbitrary configuration option" msgstr "" "Brug: apt-ftparchive [tilvalg] kommando\n" -"Kommandoer: packges binærsti [tvangsfil [sti]]\n" +"Kommandoer: packges binærsti [tvangsfil [sti]]\n" " sources kildesti [tvangsfil [sti]]\n" " contents sti\n" " release sti\n" " generate config [grupper]\n" " clean config\n" "\n" -"apt-ftparchive laver indeksfiler til Debianarkiver. Det understøtter \n" +"apt-ftparchive laver indeksfiler til Debianarkiver. Det understøtter \n" "mange former for generering, lige fra fuldautomatiske til funktionelle\n" "erstatninger for dpkg-scanpackages og dpkg-scansources\n" "\n" -"apt-ftparchive genererer Package-filer ud fra træer af .deb'er.\n" -"Package-filen indeholder alle styrefelterne fra hver pakke såvel\n" -"som MD5-mønstre og filstørrelser. En tvangsfil understøttes til at\n" +"apt-ftparchive genererer Package-filer ud fra træer af .deb'er.\n" +"Package-filen indeholder alle styrefelterne fra hver pakke sÃ¥vel\n" +"som MD5-mønstre og filstørrelser. En tvangsfil understøttes til at\n" "gennemtvinge indholdet af Priority og Section.\n" "\n" -"På samme måde genererer apt-ftparchive Sources-filer ud fra træer\n" +"PÃ¥ samme mÃ¥de genererer apt-ftparchive Sources-filer ud fra træer\n" "med .dsc'er. Tvangstilvalget --source-override kan bruges til at\n" "angive en src-tvangsfil.\n" "\n" -"Kommandoerne 'packages' og 'sources' skal køres i roden af træet.\n" -"binærsti skal pege på basen af rekursive søgninger og tvangsfilen\n" +"Kommandoerne 'packages' og 'sources' skal køres i roden af træet.\n" +"binærsti skal pege pÃ¥ basen af rekursive søgninger og tvangsfilen\n" "skal indeholde tvangsflagene. Sti foranstilles eventuelle\n" -"filnavnfelter. Et eksempel på brug fra Debianarkivet:\n" +"filnavnfelter. Et eksempel pÃ¥ brug fra Debianarkivet:\n" " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n" " dists/potato/main/binary-i386/Packages\n" "\n" "Tilvalg:\n" -" -h Denne hjælpetekst\n" +" -h Denne hjælpetekst\n" " --md5 Styr generering af MD5\n" " -s=? Kilde-tvangsfil\n" " -q Stille\n" -" -d=? Vælg den valgfrie mellemlager-database\n" -" --no-delink Aktivér \"delinking\"-fejlsporingstilstand\n" +" -d=? Vælg den valgfrie mellemlager-database\n" +" --no-delink Aktivér \"delinking\"-fejlsporingstilstand\n" " --contents Bestem generering af indholdsfil\n" -" -c=? Læs denne opsætningsfil\n" -" -o=? Sæt en opsætnings-indstilling" +" -c=? Læs denne opsætningsfil\n" +" -o=? Sæt en opsætnings-indstilling" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "Ingen valg passede" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Visse filer mangler i pakkefilgruppen '%s'" @@ -441,26 +439,25 @@ msgstr "Visse filer mangler i pakkefilgruppen '%s'" #: ftparchive/cachedb.cc:43 #, c-format msgid "DB was corrupted, file renamed to %s.old" -msgstr "DB var ødelagt, filen omdøbt til %s.old" +msgstr "DB var ødelagt, filen omdøbt til %s.old" #: ftparchive/cachedb.cc:61 #, c-format msgid "DB is old, attempting to upgrade %s" -msgstr "DB er gammel, forsøger at opgradere %s" +msgstr "DB er gammel, forsøger at opgradere %s" #: ftparchive/cachedb.cc:72 -#, fuzzy msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." msgstr "" -"Databaseformatet er ugyldigt. Hvis du har opgraderet fra en tidligere " -"version af apt, så fjern og genskab databasen." +"Databaseformatet er ugyldigt. Hvis du har opgraderet fra en ældre version af " +"apt, sÃ¥ fjern og genskab databasen." #: ftparchive/cachedb.cc:77 #, c-format msgid "Unable to open DB file %s: %s" -msgstr "Kunne ikke åbne DB-filen %s: %s" +msgstr "Kunne ikke Ã¥bne DB-filen %s: %s" #: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190 #: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117 @@ -474,17 +471,17 @@ msgstr "Arkivet har ingen kontrolindgang" #: ftparchive/cachedb.cc:448 msgid "Unable to get a cursor" -msgstr "Kunne skaffe en markør" +msgstr "Kunne skaffe en markør" #: ftparchive/writer.cc:73 #, c-format msgid "W: Unable to read directory %s\n" -msgstr "A: Kunne ikke læse mappen %s\n" +msgstr "A: Kunne ikke læse mappen %s\n" #: ftparchive/writer.cc:78 #, c-format msgid "W: Unable to stat %s\n" -msgstr "W: Kunne ikke finde finde %s\n" +msgstr "W: Kunne ikke finde %s\n" #: ftparchive/writer.cc:134 msgid "E: " @@ -496,21 +493,21 @@ msgstr "A: " #: ftparchive/writer.cc:143 msgid "E: Errors apply to file " -msgstr "F: Fejlene vedrører filen " +msgstr "F: Fejlene vedrører filen " #: ftparchive/writer.cc:161 ftparchive/writer.cc:193 #, c-format msgid "Failed to resolve %s" -msgstr "Kunne ikke omsætte navnet %s" +msgstr "Kunne ikke omsætte navnet %s" #: ftparchive/writer.cc:174 msgid "Tree walking failed" -msgstr "Trævandring mislykkedes" +msgstr "Trævandring mislykkedes" #: ftparchive/writer.cc:201 #, c-format msgid "Failed to open %s" -msgstr "Kunne ikke åbne %s" +msgstr "Kunne ikke Ã¥bne %s" #: ftparchive/writer.cc:260 #, c-format @@ -525,17 +522,17 @@ msgstr "Kunne ikke 'readlink' %s" #: ftparchive/writer.cc:272 #, c-format msgid "Failed to unlink %s" -msgstr "Kunne ikke frigøre %s" +msgstr "Kunne ikke frigøre %s" #: ftparchive/writer.cc:279 #, c-format msgid "*** Failed to link %s to %s" -msgstr "*** Kunne ikke lænke %s til %s" +msgstr "*** Kunne ikke lænke %s til %s" #: ftparchive/writer.cc:289 #, c-format msgid " DeLink limit of %sB hit.\n" -msgstr " Nåede DeLink-begrænsningen på %sB.\n" +msgstr " NÃ¥ede DeLink-begrænsningen pÃ¥ %sB.\n" #: ftparchive/writer.cc:393 msgid "Archive had no package field" @@ -546,7 +543,7 @@ msgstr "Arkivet havde intet package-felt" msgid " %s has no override entry\n" msgstr " %s har ingen tvangs-post\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " pakkeansvarlig for %s er %s, ikke %s\n" @@ -554,13 +551,13 @@ msgstr " pakkeansvarlig for %s er %s, ikke %s\n" #: ftparchive/writer.cc:698 #, c-format msgid " %s has no source override entry\n" -msgstr " %s har ingen linje med tilsidesættelse af standard for kildefiler\n" +msgstr " %s har ingen linje med tilsidesættelse af standard for kildefiler\n" #: ftparchive/writer.cc:702 #, 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" +" %s har ingen linje med tilsidesættelse af standard for binøre filer\n" #: ftparchive/contents.cc:321 #, c-format @@ -574,7 +571,7 @@ msgstr "realloc - Kunne ikke allokere hukommelse" #: ftparchive/override.cc:34 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" -msgstr "Kunne ikke åbne %s" +msgstr "Kunne ikke Ã¥bne %s" #: ftparchive/override.cc:60 ftparchive/override.cc:166 #, c-format @@ -594,7 +591,7 @@ msgstr "Ugyldig gennemtvangs %s-linje %lu #3" #: 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" +msgstr "Kunne ikke læse gennemtvangsfilen %s" #: ftparchive/multicompress.cc:72 #, c-format @@ -604,11 +601,11 @@ msgstr "Ukendt komprimeringsalgoritme '%s'" #: ftparchive/multicompress.cc:102 #, c-format msgid "Compressed output %s needs a compression set" -msgstr "Komprimerede uddata %s kræver et komprimeringssæt" +msgstr "Komprimerede uddata %s kræver et komprimeringssæt" #: ftparchive/multicompress.cc:169 methods/rsh.cc:91 msgid "Failed to create IPC pipe to subprocess" -msgstr "Kunne ikke oprette IPC-videreførsel til underproces" +msgstr "Kunne ikke oprette IPC-videreførsel til underproces" #: ftparchive/multicompress.cc:195 msgid "Failed to create FILE*" @@ -633,7 +630,7 @@ msgstr "Kunne ikke oprette underproces IPC" #: ftparchive/multicompress.cc:321 msgid "Failed to exec compressor " -msgstr "Kunne ikke udføre komprimeringsprogram" +msgstr "Kunne ikke udføre komprimeringsprogram " #: ftparchive/multicompress.cc:360 msgid "decompressor" @@ -645,381 +642,383 @@ msgstr "IO til underproces/fil mislykkedes" #: ftparchive/multicompress.cc:455 msgid "Failed to read while computing MD5" -msgstr "Kunne ikke læse under beregning af MD5" +msgstr "Kunne ikke læse under beregning af MD5" #: ftparchive/multicompress.cc:472 #, c-format msgid "Problem unlinking %s" -msgstr "Problem under aflænkning af %s" +msgstr "Problem under aflænkning af %s" #: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185 #, c-format msgid "Failed to rename %s to %s" -msgstr "Kunne ikke omdøbe %s til %s" +msgstr "Kunne ikke omdøbe %s til %s" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "J" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" -msgstr "Fejl ved tolkning af regulært udtryk - %s" +msgstr "Fejl ved tolkning af regulært udtryk - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" -msgstr "Følgende pakker har uopfyldte afhængigheder:" +msgstr "Følgende pakker har uopfyldte afhængigheder:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "men %s er installeret" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "men %s forventes installeret" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "men den kan ikke installeres" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "men det er en virtuel pakke" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "men den er ikke installeret" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "men den bliver ikke installeret" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " eller" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" -msgstr "Følgende NYE pakker vil blive installeret:" +msgstr "Følgende NYE pakker vil blive installeret:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" -msgstr "Følgende pakker vil blive AFINSTALLERET:" +msgstr "Følgende pakker vil blive AFINSTALLERET:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" -msgstr "Følgende pakker er blevet holdt tilbage:" +msgstr "Følgende pakker er blevet holdt tilbage:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" -msgstr "Følgende pakker vil blive opgraderet:" +msgstr "Følgende pakker vil blive opgraderet:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" -msgstr "Følgende pakker vil blive NEDGRADERET:" +msgstr "Følgende pakker vil blive NEDGRADERET:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" -msgstr "Følgende tilbageholdte pakker vil blive ændret:" +msgstr "Følgende tilbageholdte pakker vil blive ændret:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (grundet %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" msgstr "" -"ADVARSEL: Følgende essentielle pakker vil blive afinstalleret\n" -"Dette bør IKKE ske medmindre du er helt klar over, hvad du laver!" +"ADVARSEL: Følgende essentielle pakker vil blive afinstalleret\n" +"Dette bør IKKE ske medmindre du er helt klar over, hvad du laver!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu opgraderes, %lu nyinstalleres, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu geninstalleres, " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu nedgraderes, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu afinstalleres og %lu opgraderes ikke.\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" -msgstr "%lu ikke fuldstændigt installerede eller afinstallerede.\n" +msgstr "%lu ikke fuldstændigt installerede eller afinstallerede.\n" -#: cmdline/apt-get.cc:634 -#, fuzzy, c-format +#: cmdline/apt-get.cc:635 +#, c-format msgid "Note, selecting '%s' for task '%s'\n" -msgstr "Bemærk, vælger %s som regulært udtryk '%s'\n" +msgstr "Bemærk, vælger '%s' til opgave '%s'\n" -#: cmdline/apt-get.cc:640 -#, fuzzy, c-format +#: cmdline/apt-get.cc:641 +#, c-format msgid "Note, selecting '%s' for regex '%s'\n" -msgstr "Bemærk, vælger %s som regulært udtryk '%s'\n" +msgstr "Bemærk, vælger '%s' for regulært udtryk '%s'\n" -#: cmdline/apt-get.cc:647 -#, fuzzy, c-format +#: cmdline/apt-get.cc:648 +#, c-format msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Valgte version %s (%s) af %s\n" +msgstr "Valgte version '%s' (%s) for '%s'\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "Pakken %s er en virtuel pakke, der kan leveres af:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [Installeret]" -#: cmdline/apt-get.cc:677 -#, fuzzy +#: cmdline/apt-get.cc:678 msgid " [Not candidate version]" -msgstr "Kandidatversioner" +msgstr " [Ingen kandidatversion]" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." -msgstr "Du bør eksplicit vælge en at installere." +msgstr "Du bør eksplicit vælge en at installere." -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" "This may mean that the package is missing, has been obsoleted, or\n" "is only available from another source\n" msgstr "" -"Pakken %s har ingen tilgængelig version, men der refereres til den i en \n" -"anden pakke. Det kan betyde at denne pakke blevet overflødiggjort eller \n" +"Pakken %s har ingen tilgængelig version, men der refereres til den i en \n" +"anden pakke. Det kan betyde at denne pakke blevet overflødiggjort eller \n" "kun kan hentes fra andre kilder\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" -msgstr "Dog kan følgende pakker erstatte den:" +msgstr "Dog kan følgende pakker erstatte den:" -#: cmdline/apt-get.cc:712 -#, fuzzy, c-format +#: cmdline/apt-get.cc:713 +#, c-format msgid "Package '%s' has no installation candidate" -msgstr "Pakken %s har ingen installationskandidat" +msgstr "Pakken '%s' har ingen installationskandidat" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" -msgstr "" +msgstr "Virtuelle pakker som '%s' kan ikke fjernes\n" -#: cmdline/apt-get.cc:754 -#, fuzzy, c-format +#: cmdline/apt-get.cc:755 +#, c-format msgid "Note, selecting '%s' instead of '%s'\n" -msgstr "Bemærk, at %s vælges fremfor %s\n" +msgstr "Bemærk, vælger '%s' fremfor '%s'\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" "Overspringer %s, da den allerede er installeret og opgradering er " "deaktiveret.\n" -#: cmdline/apt-get.cc:788 -#, fuzzy, c-format +#: cmdline/apt-get.cc:789 +#, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" -"Overspringer %s, da den allerede er installeret og opgradering er " -"deaktiveret.\n" +"Overspringer %s, den er ikke installeret og der er kun forespurgt efter " +"opgraderinger.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "Geninstallering af %s er ikke mulig, da den ikke kan hentes.\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s er i forvejen den nyeste version.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 -#, fuzzy, c-format +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 +#, c-format msgid "%s set to manually installed.\n" msgstr "%s sat til manuelt installeret.\n" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" -msgstr "Pakken %s er ikke installeret, så den afinstalleres ikke\n" +msgstr "Pakken %s er ikke installeret, sÃ¥ den afinstalleres ikke\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." -msgstr "Retter afhængigheder..." +msgstr "Retter afhængigheder..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " mislykkedes." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" -msgstr "Kunne ikke rette afhængigheder" +msgstr "Kunne ikke rette afhængigheder" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" -msgstr "Kunne ikke minimere opgraderingssættet" +msgstr "Kunne ikke minimere opgraderingssættet" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" -msgstr " Færdig" +msgstr " Færdig" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 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'." +msgstr "Du kan muligvis rette dette ved at køre 'apt-get -f install'." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." -msgstr "Uopfyldte afhængigheder. Prøv med -f." +msgstr "Uopfyldte afhængigheder. Prøv med -f." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" -msgstr "ADVARSEL: Følgende pakkers autenticitet kunne ikke verificeres!" +msgstr "ADVARSEL: Følgende pakkers autenticitet kunne ikke verificeres!" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "Autentifikationsadvarsel tilsidesat.\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " -msgstr "Installér disse pakker uden verifikation (y/N)? " +msgstr "Installér disse pakker uden verifikation (y/N)? " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "Nogle pakker kunne ikke autentificeres" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "Der er problemer og -y blev brugt uden --force-yes" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Intern fejl. InstallPackages blev kaldt med ødelagte pakker!" +msgstr "Intern fejl. InstallPackages blev kaldt med ødelagte pakker!" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "Pakker skal afinstalleres, men Remove er deaktiveret." -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" -msgstr "Intern fejl. Sortering blev ikke fuldført" +msgstr "Intern fejl. Sortering blev ikke fuldført" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "Listen med kilder kunne ikke læses." - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 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" +msgstr "Mystisk.. Størrelserne passede ikke, skriv til apt@packages.debian.org" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "%sB/%sB skal hentes fra arkiverne.\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "%sB skal hentes fra arkiverne.\n" -#: cmdline/apt-get.cc:1113 -#, fuzzy, c-format +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 +#, c-format msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Efter udpakning vil %sB yderligere diskplads være brugt.\n" +msgstr "Efter denne handling, vil %sB yderligere diskplads være brugt.\n" -#: cmdline/apt-get.cc:1116 -#, fuzzy, c-format +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 +#, c-format msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Efter udpakning vil %sB diskplads blive frigjort.\n" +msgstr "Efter denne handling, vil %sB diskplads blive frigjort.\n" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "Kunne ikke bestemme ledig plads i %s" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "Du har ikke nok ledig plads i %s." -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "'Trivial Only' angivet, men dette er ikke en triviel handling." -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" -msgstr "Ja, gør som jeg siger!" +msgstr "Ja, gør som jeg siger!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" "To continue type in the phrase '%s'\n" " ?] " msgstr "" -"Du er ved at gøre noget, der kan være skadeligt\n" -"For at fortsætte, skal du skrive '%s'\n" +"Du er ved at gøre noget, der kan være skadeligt\n" +"For at fortsætte, skal du skrive '%s'\n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "Afbryder." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " -msgstr "Vil du fortsætte [J/n]? " +msgstr "Vil du fortsætte [J/n]? " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Kunne ikke hente %s %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "Nedhentningen af filer mislykkedes" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "Nedhentning afsluttet i 'hent-kun'-tilstand" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" msgstr "" -"Kunne ikke hente nogle af arkiverne. Prøv evt. at køre 'apt-get update' " -"eller prøv med --fix-missing." +"Kunne ikke hente nogle af arkiverne. Prøv evt. at køre 'apt-get update' " +"eller prøv med --fix-missing." -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing og medieskift understøttes endnu ikke" +msgstr "--fix-missing og medieskift understøttes endnu ikke" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "Kunne ikke rette manglende pakker." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "Afbryder installationen." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1027,65 +1026,67 @@ msgid_plural "" "The following packages disappeared from your system as\n" "all files have been overwritten by other packages:" msgstr[0] "" +"Den følgende pakke forsvandt fra dit system, da\n" +"alle filer er blevet overskrevet af andre pakker:" msgstr[1] "" +"De følgende pakker forsvandt fra dit system, da\n" +"alle filer er blevet overskrevet af andre pakker:" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." -msgstr "" +msgstr "Bemærk: Dette sker automatisk og med vilje af dpkg." -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" -msgstr "" +msgstr "Ignorer utilgængelig mÃ¥ludgivelse '%s' af pakke '%s'" -#: cmdline/apt-get.cc:1486 -#, fuzzy, c-format +#: cmdline/apt-get.cc:1498 +#, c-format msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Kunne ikke finde kildepakkelisten %s" +msgstr "Vælger '%s' som kildepakke fremfor '%s'\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" -msgstr "" +msgstr "Ignorer utilgængelig version '%s' af pakke '%s'" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "'update'-kommandoen benytter ingen parametre" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "Det er ikke meningen, at vi skal slette ting og sager, kan ikke starte " "AutoRemover" -#: cmdline/apt-get.cc:1653 -#, fuzzy +#: cmdline/apt-get.cc:1666 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" "The following packages were automatically installed and are no longer " "required:" msgstr[0] "" -"Følgende pakker blev installeret automatisk, og behøves ikke længere:" +"Følgende pakke blev installeret automatisk, og behøves ikke længere:" msgstr[1] "" -"Følgende pakker blev installeret automatisk, og behøves ikke længere:" +"Følgende pakker blev installeret automatisk, og behøves ikke længere:" -#: cmdline/apt-get.cc:1657 -#, fuzzy, c-format +#: cmdline/apt-get.cc:1670 +#, 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] "" -"Følgende pakker blev installeret automatisk, og behøves ikke længere:" +msgstr[0] "Pakken %lu blev installeret automatisk, og behøves ikke længere.\n" msgstr[1] "" -"Følgende pakker blev installeret automatisk, og behøves ikke længere:" +"Pakkerne %lu blev installeret automatisk, og behøves ikke længere.\n" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "Brug 'apt-get autoremove' til at fjerne dem." -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1103,222 +1104,230 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" -msgstr "Følgende oplysninger kan hjælpe dig med at klare situationen:" +msgstr "Følgende oplysninger kan hjælpe dig med at klare situationen:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" -msgstr "Intern fejl. AutoRemover ødelagde noget" +msgstr "Intern fejl. AutoRemover ødelagde noget" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" -msgstr "Intern fejl, AllUpgrade ødelagde noget" +msgstr "Intern fejl, AllUpgrade ødelagde noget" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 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':" +msgstr "Du kan muligvis rette det ved at køre 'apt-get -f install':" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." msgstr "" -"Uopfyldte afhængigheder. Prøv 'apt-get -f install' uden pakker (eller angiv " -"en løsning)." +"Uopfyldte afhængigheder. Prøv 'apt-get -f install' uden pakker (eller angiv " +"en løsning)." -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" "distribution that some required packages have not yet been created\n" "or been moved out of Incoming." msgstr "" -"Nogle pakker kunne ikke installeres. Det kan betyde at du har ønsket\n" +"Nogle pakker kunne ikke installeres. Det kan betyde at du har ønsket\n" "en umulig situation eller bruger den ustabile distribution, hvor enkelte\n" -"pakker endnu ikke er lavet eller gjort tilgængelige." +"pakker endnu ikke er lavet eller gjort tilgængelige." -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" -msgstr "Ødelagte pakker" +msgstr "Ødelagte pakker" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" -msgstr "Følgende yderligere pakker vil blive installeret:" +msgstr "Følgende yderligere pakker vil blive installeret:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" -msgstr "Foreslåede pakker:" +msgstr "ForeslÃ¥ede pakker:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "Anbefalede pakker:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "Kunne ikke finde pakken %s" -#: cmdline/apt-get.cc:1981 -#, fuzzy, c-format +#: cmdline/apt-get.cc:1994 +#, c-format msgid "%s set to automatically installed.\n" -msgstr "%s sat til manuelt installeret.\n" +msgstr "%s sat til automatisk installation.\n" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "Beregner opgraderingen... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "Mislykkedes" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" -msgstr "Færdig" +msgstr "Færdig" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" -msgstr "Intern fejl. Problemløseren ødelagde noget" +msgstr "Intern fejl. Problemløseren ødelagde noget" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" -msgstr "Kunne ikke låse nedhentningsmappen" +msgstr "Kunne ikke lÃ¥se nedhentningsmappen" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 msgid "Must specify at least one package to fetch source for" -msgstr "Du skal angive mindst én pakke at hente kildeteksten til" +msgstr "Du skal angive mindst én pakke at hente kildeteksten til" -#: cmdline/apt-get.cc:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "Kunne ikke finde kildetekstpakken for %s" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" +"BEMÆRK: Pakning af '%s' vedligeholdes i versionskontrolsystemet '%s' pÃ¥:\n" +"%s\n" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" "bzr get %s\n" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" +"Brug venligst:\n" +"bzr get %s\n" +"for at hente de seneste (muligvis ikke udgivet) opdateringer til pakken.\n" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Overspringer allerede hentet fil '%s'\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "Du har ikke nok ledig plads i %s" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "%sB/%sB skal hentes fra kildetekst-arkiverne.\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "%sB skal hentes fra kildetekst-arkiverne.\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "Henter kildetekst %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "Nogle arkiver kunne ikke hentes." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, 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:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Udpakningskommandoen '%s' fejlede.\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, 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:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "Opbygningskommandoen '%s' fejlede.\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "Barneprocessen fejlede" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 msgid "Must specify at least one package to check builddeps for" -msgstr "Skal angive mindst én pakke at tjekke opbygningsafhængigheder for" +msgstr "Skal angive mindst én pakke at tjekke opbygningsafhængigheder for" -#: cmdline/apt-get.cc:2506 +#: cmdline/apt-get.cc:2524 #, c-format msgid "Unable to get build-dependency information for %s" -msgstr "Kunne ikke hente oplysninger om opbygningsafhængigheder for %s" +msgstr "Kunne ikke hente oplysninger om opbygningsafhængigheder for %s" -#: cmdline/apt-get.cc:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" -msgstr "%s har ingen opbygningsafhængigheder.\n" +msgstr "%s har ingen opbygningsafhængigheder.\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "" -"%s-afhængigheden for %s kan ikke opfyldes, da pakken %s ikke blev fundet" +"%s-afhængigheden for %s kan ikke opfyldes, da pakken %s ikke blev fundet" -#: cmdline/apt-get.cc:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " "package %s can satisfy version requirements" msgstr "" -"%s-afhængigheden for %s kan ikke opfyldes, da ingen af de tilgængelige " +"%s-afhængigheden for %s kan ikke opfyldes, da ingen af de tilgængelige " "udgaver af pakken %s kan tilfredsstille versions-kravene" -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, 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 " +"Kunne ikke opfylde %s-afhængigheden for %s: Den installerede pakke %s er for " "ny" -#: cmdline/apt-get.cc:2693 +#: cmdline/apt-get.cc:2711 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Kunne ikke opfylde %s-afhængigheden for %s: %s" +msgstr "Kunne ikke opfylde %s-afhængigheden for %s: %s" -#: cmdline/apt-get.cc:2709 +#: cmdline/apt-get.cc:2727 #, c-format msgid "Build-dependencies for %s could not be satisfied." -msgstr "Opbygningsafhængigheden for %s kunne ikke opfyldes." +msgstr "Opbygningsafhængigheden for %s kunne ikke opfyldes." -#: cmdline/apt-get.cc:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" -msgstr "Kunne ikke behandler opbygningsafhængighederne" +msgstr "Kunne ikke behandler opbygningsafhængighederne" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" -msgstr "Understøttede moduler:" +msgstr "Understøttede moduler:" -#: cmdline/apt-get.cc:2786 -#, fuzzy +#: cmdline/apt-get.cc:2804 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1367,49 +1376,56 @@ msgstr "" " apt-get [tilvalg] install|remove pakke1 [pakke2 ...]\n" " apt-get [tilvalg] source pakke1 [pakke2 ...]\n" "\n" -"apt-get er en simpel kommandolinjegrænseflade til at hente og\n" +"apt-get er en simpel kommandolinjegrænseflade til at hente og\n" "installere pakker. De hyppigst brugte kommandoer er update og\n" "install.\n" "\n" "Kommandoer:\n" " update - Hent nye lister over pakker\n" -" upgrade - Udfør en opgradering\n" -" install - Installér nye pakker (pakke er libc6, ikke libc6.deb)\n" -" remove - Afinstallér pakker\n" -" purge - Fjern og udrens pakker\n" +" upgrade - Udfør en opgradering\n" +" install - Installér nye pakker (pakke er libc6, ikke libc6.deb)\n" +" remove - Afinstallér pakker\n" +" autoremove - Afinstallér automatisk alle ubrugte pakker\n" +" purge - Fjern pakker og konfigurationsfiler\n" " source - Hent kildetekstarkiver\n" -" build-dep - Sæt opbygningsafhængigheder op for kildetekstpakker\n" +" build-dep - Sæt opbygningsafhængigheder op for kildetekstpakker\n" " dist-upgrade - Distributionsopgradering, se apt-get(8)\n" -" dselect-upgrade - Følg valgene fra dselect\n" +" dselect-upgrade - Følg valgene fra dselect\n" " clean - Slet hentede arkivfiler\n" " autoclean - Slet gamle hentede arkivfiler\n" -" check - Tjek at der ikke er uopfyldte afhængigheder\n" +" check - Tjek at der ikke er uopfyldte afhængigheder\n" +" markauto - Marker de angivne pakker som automatisk installeret\n" +" unmarkauto - Marker de angivne pakker som manuelt installeret\n" "\n" "Tilvalg:\n" -" -h Denne hjælpetekst.\n" +" -h Denne hjælpetekst.\n" " -q Uddata, der kan logges - ingen fremgangsindikator\n" " -qq Ingen uddata, kun fejl\n" -" -d Hent kun - installér eller udpak IKKE arkiverne\n" -" -s Gør intet. Simulér handlingen\n" -" -y Antag 'ja'-svar til alle spørgsmål uden at spørge\n" -" -f Forsøg at fortsætte selvom integritetstjek fejler\n" -" -m Forsøg at fortsætte selvom arkiverne ikke kan findes\n" -" -u Vis også en liste over opgraderede pakker\n" +" -d Hent kun - installér eller udpak IKKE arkiverne\n" +" -s Gør intet. Simulér handlingen\n" +" -y Antag 'ja'-svar til alle spørgsmÃ¥l uden at spørge\n" +" -f Forsøg at fortsætte selvom integritetstjek fejler\n" +" -m Forsøg at fortsætte selvom arkiverne ikke kan findes\n" +" -u Vis ogsÃ¥ en liste over opgraderede pakker\n" " -b Byg kildetekstpakken efter at have hentet den\n" " -V Vis detaljerede versionsnumre\n" -" -c=? Læs denne opsætningsfil\n" -" -o=? Angiv et opsætningsvalg. F.eks. -o dir::cache=/tmp\n" +" -c=? Læs denne opsætningsfil\n" +" -o=? Angiv et arbitrært opsætningsvalg. F.eks. -o dir::cache=/tmp\n" "Se manualsiderne for apt-get(8), sources.list(5) og apt.conf(5)\n" "for flere oplysninger og tilvalg.\n" " Denne APT har \"Super Cow Powers\".\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" " Keep also in mind that locking is deactivated,\n" " so don't depend on the relevance to the real current situation!" msgstr "" +"BEMÆRK: Dette er kun en simulering!\n" +" apt-get kræver rootprivilegier for reel kørsel.\n" +" Husk ogsÃ¥ at lÃ¥sning er deaktiveret,\n" +" sÃ¥ stol ikke pÃ¥ relevansen for den reelle aktuelle situation!" #: cmdline/acqprogress.cc:55 msgid "Hit " @@ -1430,7 +1446,7 @@ msgstr "Fejl " #: cmdline/acqprogress.cc:135 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Hentede %sB på %s (%sB/s)\n" +msgstr "Hentede %sB pÃ¥ %s (%sB/s)\n" #: cmdline/acqprogress.cc:225 #, c-format @@ -1444,7 +1460,7 @@ msgid "" " '%s'\n" "in the drive '%s' and press enter\n" msgstr "" -"Medieskift: Indsæt disken med navnet\n" +"Medieskift: Indsæt disken med navnet\n" " '%s'\n" "i drevet '%s' og tryk retur\n" @@ -1467,14 +1483,14 @@ msgid "" msgstr "" "Brug: apt-sortpkgs [tilvalg] fil1 [fil2 ...]\n" "\n" -"apt-sortpkgs er et simpelt værktøj til at sortere pakkefiler. Tilvalget -s\n" +"apt-sortpkgs er et simpelt værktøj til at sortere pakkefiler. Tilvalget -s\n" "bruges til at angive filens type.\n" "\n" "Tilvalg:\n" -" -h Denne hjælpetekst\n" +" -h Denne hjælpetekst\n" " -s Benyt kildefils-sortering\n" -" -c=? Læs denne opsætningsfil\n" -" -o=? Angiv en opsætningsindstilling. F.eks. -o dir::cache=/tmp\n" +" -c=? Læs denne opsætningsfil\n" +" -o=? Angiv en opsætningsindstilling. F.eks. -o dir::cache=/tmp\n" #: dselect/install:32 msgid "Bad default setting!" @@ -1483,55 +1499,53 @@ msgstr "Ugyldig standardindstilling!" #: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94 #: dselect/install:105 dselect/update:45 msgid "Press enter to continue." -msgstr "Tryk retur for at fortsætte." +msgstr "Tryk retur for at fortsætte." #: dselect/install:91 msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "" +msgstr "Ønsker du at slette nogle tidligere hentede .deb-filer?" # Note to translators: The following four messages belong together. It doesn't # matter where sentences start, but it has to fit in just these four lines, and # at only 80 characters per line, if possible. #: dselect/install:101 -#, fuzzy msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Der opstod fejl under udpakningen. Jeg vil opsætte de" +msgstr "Der opstod fejl under udpakningen. Pakker som blev installeret" #: dselect/install:102 -#, fuzzy msgid "will be configured. This may result in duplicate errors" -msgstr "pakker, der blev installeret. Det kan give gentagne fejl" +msgstr "vil blive konfigureret. Det kan give gentagne fejl" #: dselect/install:103 msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" -"eller fejl, der skyldes manglende afhængigheder. Dette er o.k. Det er kun" +"eller fejl, der skyldes manglende afhængigheder. Dette er o.k. Det er kun" #: dselect/install:104 msgid "" "above this message are important. Please fix them and run [I]nstall again" msgstr "" -"fejlene over denne besked, der er vigtige. Ret dem og kør [I]nstallér igen" +"fejlene over denne besked, der er vigtige. Ret dem og kør [I]nstallér igen" #: dselect/update:30 msgid "Merging available information" -msgstr "Sammenfletter tilgængelighedsoplysninger" +msgstr "Sammenfletter tilgængelighedsoplysninger" #: apt-inst/contrib/extracttar.cc:114 msgid "Failed to create pipes" -msgstr "Kunne ikke oprette videreførsler" +msgstr "Kunne ikke oprette videreførsler" #: apt-inst/contrib/extracttar.cc:141 msgid "Failed to exec gzip " -msgstr "Kunne ikke udføre gzip " +msgstr "Kunne ikke udføre gzip " #: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204 msgid "Corrupted archive" -msgstr "Ødelagt arkiv" +msgstr "Ødelagt arkiv" #: apt-inst/contrib/extracttar.cc:193 msgid "Tar checksum failed, archive corrupted" -msgstr "Tar-tjeksum fejlede, arkivet er ødelagt" +msgstr "Tar-tjeksum fejlede, arkivet er ødelagt" #: apt-inst/contrib/extracttar.cc:296 #, c-format @@ -1544,12 +1558,12 @@ msgstr "Ugyldig arkivsignatur" #: apt-inst/contrib/arfile.cc:78 msgid "Error reading archive member header" -msgstr "Fejl under læsning af arkivelements hoved" +msgstr "Fejl under læsning af arkivelements hoved" #: apt-inst/contrib/arfile.cc:90 -#, fuzzy, c-format +#, c-format msgid "Invalid archive member header %s" -msgstr "Ugyldigt arkivelementhoved" +msgstr "Ugyldigt arkivelementhoved %s" #: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" @@ -1561,7 +1575,7 @@ msgstr "Arkivet er for kort" #: apt-inst/contrib/arfile.cc:132 msgid "Failed to read the archive headers" -msgstr "Kunne ikke læse arkivhovederne" +msgstr "Kunne ikke læse arkivhovederne" #: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" @@ -1582,17 +1596,17 @@ msgstr "Intern fejl i AddDiversion" #: apt-inst/filelist.cc:477 #, c-format msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Forsøger at overskrive en omrokering, %s -> %s og %s/%s" +msgstr "Forsøger at overskrive en omrokering, %s -> %s og %s/%s" #: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" -msgstr "Dobbelt tilføjelse af omrokering %s -> %s" +msgstr "Dobbelt tilføjelse af omrokering %s -> %s" #: apt-inst/filelist.cc:549 #, c-format msgid "Duplicate conf file %s/%s" -msgstr "Dobbelt opsætningsfil %s/%s" +msgstr "Dobbelt opsætningsfil %s/%s" #: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49 #, c-format @@ -1622,7 +1636,7 @@ msgstr "Mappen %s er omrokeret" #: apt-inst/extract.cc:144 #, 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" +msgstr "Pakken forsøger at skrive til omrokeret mÃ¥l %s/%s" #: apt-inst/extract.cc:154 apt-inst/extract.cc:297 msgid "The diversion path is too long" @@ -1653,14 +1667,14 @@ msgstr "File %s/%s overskriver filen i pakken %s" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" -msgstr "Kunne ikke læse %s" +msgstr "Kunne ikke læse %s" #: apt-inst/extract.cc:491 #, c-format @@ -1690,7 +1704,7 @@ msgstr "Mapperne info og temp skal ligge i samme filsystem" #: apt-pkg/pkgcachegen.cc:1174 apt-pkg/pkgcachegen.cc:1180 #: apt-pkg/pkgcachegen.cc:1326 msgid "Reading package lists" -msgstr "Indlæser pakkelisterne" +msgstr "Indlæser pakkelisterne" #: apt-inst/deb/dpkgdb.cc:176 #, c-format @@ -1704,7 +1718,7 @@ msgstr "Intern fejl under hentning af et pakkenavn" #: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382 msgid "Reading file listing" -msgstr "Læser fillisten" +msgstr "Læser fillisten" #: apt-inst/deb/dpkgdb.cc:212 #, c-format @@ -1713,14 +1727,14 @@ msgid "" "then make it empty and immediately re-install the same version of the " "package!" msgstr "" -"Kunne ikke åbne listefilen '%sinfo/%s'. Hvis du ikke kan genskabe denne fil, " -"kan du gøre dem tom og med det samme geninstallere den samme version af " +"Kunne ikke Ã¥bne listefilen '%sinfo/%s'. Hvis du ikke kan genskabe denne fil, " +"kan du gøre dem tom og med det samme geninstallere den samme version af " "pakken!" #: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238 #, c-format msgid "Failed reading the list file %sinfo/%s" -msgstr "Kunne ikke læse listefilen %sinfo/%s" +msgstr "Kunne ikke læse listefilen %sinfo/%s" #: apt-inst/deb/dpkgdb.cc:262 msgid "Internal error getting a node" @@ -1729,11 +1743,11 @@ msgstr "Intern fejl under hentning af knude" #: apt-inst/deb/dpkgdb.cc:305 #, c-format msgid "Failed to open the diversions file %sdiversions" -msgstr "Kunne ikke åbne omrokeringsfilen %sdiversions" +msgstr "Kunne ikke Ã¥bne omrokeringsfilen %sdiversions" #: apt-inst/deb/dpkgdb.cc:320 msgid "The diversion file is corrupted" -msgstr "Pakkeomrokeringsfilen er ødelagt" +msgstr "Pakkeomrokeringsfilen er ødelagt" #: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332 #: apt-inst/deb/dpkgdb.cc:337 @@ -1743,11 +1757,11 @@ msgstr "Ugyldig linje i omrokeringsfilen: %s" #: apt-inst/deb/dpkgdb.cc:358 msgid "Internal error adding a diversion" -msgstr "Intern fejl under tilføjelse af omrokering" +msgstr "Intern fejl under tilføjelse af omrokering" #: apt-inst/deb/dpkgdb.cc:379 msgid "The pkg cache must be initialized first" -msgstr "pkg-mellemlageret skal initialiseres først" +msgstr "pkg-mellemlageret skal initialiseres først" #: apt-inst/deb/dpkgdb.cc:439 #, c-format @@ -1770,11 +1784,11 @@ 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:50 -#, fuzzy, c-format +#, c-format msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member" msgstr "" -"Dette er ikke et gyldigt DEB-arkiv, det har intet''%s', '%s' eller '%s'-" -"elementet" +"Dette er ikke et gyldigt DEB-arkiv, det har intet '%s', '%s' eller '%s'-" +"element" #: apt-inst/deb/debfile.cc:110 #, c-format @@ -1793,39 +1807,39 @@ msgstr "Kunne ikke finde en gyldig kontrolfil" msgid "Unparsable control file" msgstr "Ikke-tolkbar kontrolfil" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" -msgstr "Kunne ikke åbne datarør for %s" +msgstr "Kunne ikke Ã¥bne datarør for %s" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" -msgstr "Læsefejl fra %s-process" +msgstr "Læsefejl fra %s-process" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "Kunne ikke finde" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" -msgstr "Kunne ikke angive ændringstidspunkt" +msgstr "Kunne ikke angive ændringstidspunkt" #: methods/cdrom.cc:199 #, c-format msgid "Unable to read the cdrom database %s" -msgstr "Kunne ikke læse cdrom-databasen %s" +msgstr "Kunne ikke læse cdrom-databasen %s" #: methods/cdrom.cc:208 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" msgstr "" -"Brug apt-cdrom for at apt kan lære den at kende. apt-get update kan ikke " -"bruges til at tilføje nye cd'er" +"Brug apt-cdrom for at apt kan lære den at kende. apt-get update kan ikke " +"bruges til at tilføje nye cd'er" #: methods/cdrom.cc:218 msgid "Wrong CD-ROM" @@ -1846,12 +1860,12 @@ msgstr "Fil blev ikke fundet" #: methods/file.cc:44 msgid "Invalid URI, local URIS must not start with //" -msgstr "Ugyldig URI, lokale URI'er må ikke starte med //" +msgstr "Ugyldig URI, lokale URI'er mÃ¥ ikke starte med //" #. Login must be before getpeername otherwise dante won't work. #: methods/ftp.cc:168 msgid "Logging in" -msgstr "Logget på" +msgstr "Logget pÃ¥" #: methods/ftp.cc:174 msgid "Unable to determine the peer name" @@ -1864,7 +1878,7 @@ msgstr "Kunne ikke bestemme det lokale navn" #: methods/ftp.cc:210 methods/ftp.cc:238 #, c-format msgid "The server refused the connection and said: %s" -msgstr "Serveren nægtede os forbindelse og sagde: %s" +msgstr "Serveren nægtede os forbindelse og sagde: %s" #: methods/ftp.cc:216 #, c-format @@ -1881,13 +1895,13 @@ msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." msgstr "" -"Der blev angivet en proxyserver men intet logpå-skript; Acquire::ftp::" +"Der blev angivet en proxyserver men intet logpÃ¥-skript; Acquire::ftp::" "ProxyLogin er tom." #: methods/ftp.cc:271 #, c-format msgid "Login script command '%s' failed, server said: %s" -msgstr "Logpå-skriptets kommando '%s' mislykkedes. Serveren sagde: %s" +msgstr "LogpÃ¥-skriptets kommando '%s' mislykkedes. Serveren sagde: %s" #: methods/ftp.cc:297 #, c-format @@ -1896,15 +1910,15 @@ msgstr "TYPE mislykkedes. Serveren sagde: %s" #: methods/ftp.cc:335 methods/ftp.cc:446 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" -msgstr "Tidsudløb på forbindelsen" +msgstr "Tidsudløb pÃ¥ forbindelsen" #: methods/ftp.cc:341 msgid "Server closed the connection" msgstr "Serveren lukkede forbindelsen" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" -msgstr "Læsefejl" +msgstr "Læsefejl" #: methods/ftp.cc:351 methods/rsh.cc:197 msgid "A response overflowed the buffer." @@ -1914,7 +1928,7 @@ msgstr "Mellemlageret blev overfyldt af et svar." msgid "Protocol corruption" msgstr "Protokolfejl" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "Skrivefejl" @@ -1924,7 +1938,7 @@ msgstr "Kunne ikke oprette sokkel" #: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" -msgstr "Kunne ikke forbinde datasokkel, tidsudløb på forbindelsen" +msgstr "Kunne ikke forbinde datasokkel, tidsudløb pÃ¥ forbindelsen" #: methods/ftp.cc:709 msgid "Could not connect passive socket." @@ -1932,7 +1946,7 @@ msgstr "Kunne ikke forbinde passiv sokkel." #: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo kunne ikke få en lyttesokkel" +msgstr "getaddrinfo kunne ikke fÃ¥ en lyttesokkel" #: methods/ftp.cc:741 msgid "Could not bind a socket" @@ -1940,7 +1954,7 @@ msgstr "Kunne ikke tilknytte en sokkel" #: methods/ftp.cc:745 msgid "Could not listen on the socket" -msgstr "Kunne ikke lytte på soklen" +msgstr "Kunne ikke lytte pÃ¥ soklen" #: methods/ftp.cc:752 msgid "Could not determine the socket's name" @@ -1962,13 +1976,13 @@ msgstr "EPRT mislykkedes. Serveren sagde: %s" #: methods/ftp.cc:823 msgid "Data socket connect timed out" -msgstr "Tidsudløb på datasokkel-forbindelse" +msgstr "Tidsudløb pÃ¥ datasokkel-forbindelse" #: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "Kunne ikke acceptere forbindelse" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "Problem ved \"hashing\" af fil" @@ -1979,21 +1993,21 @@ msgstr "Kunne ikke hente fil. Serveren sagde '%s'" #: methods/ftp.cc:897 methods/rsh.cc:321 msgid "Data socket timed out" -msgstr "Tidsudløb ved datasokkel" +msgstr "Tidsudløb ved datasokkel" #: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" -msgstr "Dataoverførsel mislykkedes, serveren sagde '%s'" +msgstr "Dataoverførsel mislykkedes, serveren sagde '%s'" #. Get the files information #: methods/ftp.cc:1004 msgid "Query" -msgstr "Forespørgsel" +msgstr "Forespørgsel" #: methods/ftp.cc:1116 msgid "Unable to invoke " -msgstr "Kunne ikke udføre " +msgstr "Kunne ikke udføre " #: methods/connect.cc:71 #, c-format @@ -2018,7 +2032,7 @@ msgstr "Kan ikke oprette forbindelse til %s:%s (%s)." #: methods/connect.cc:103 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Kunne ikke forbinde til %s:%s (%s) grundet tidsudløb" +msgstr "Kunne ikke forbinde til %s:%s (%s) grundet tidsudløb" #: methods/connect.cc:121 #, c-format @@ -2035,60 +2049,59 @@ msgstr "Forbinder til %s" #: methods/connect.cc:168 methods/connect.cc:187 #, c-format msgid "Could not resolve '%s'" -msgstr "Kunne ikke omsætte navnet '%s'" +msgstr "Kunne ikke omsætte navnet '%s'" #: methods/connect.cc:193 #, c-format msgid "Temporary failure resolving '%s'" -msgstr "Midlertidig fejl ved omsætning af navnet '%s'" +msgstr "Midlertidig fejl ved omsætning af navnet '%s'" #: methods/connect.cc:196 -#, fuzzy, c-format +#, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Der skete noget underligt under navneomsætning af '%s:%s' (%i)" +msgstr "Der skete noget underligt under opløsning af '%s:%s' (%i - %s)" #: methods/connect.cc:243 -#, fuzzy, c-format +#, c-format msgid "Unable to connect to %s:%s:" -msgstr "Kunne ikke forbinde til %s %s:" +msgstr "Kunne ikke forbinde til %s:%s:" #. TRANSLATOR: %s is the trusted keyring parts directory #: methods/gpgv.cc:71 -#, fuzzy, c-format +#, c-format msgid "No keyring installed in %s." -msgstr "Afbryder installationen." +msgstr "Ingen nøglering installeret i %s." #: methods/gpgv.cc:163 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"Intern fejl: Gyldig signatur, men kunne ikke afgøre nøgle-fingeraftryk?!" +"Intern fejl: Gyldig signatur, men kunne ikke afgøre nøgle-fingeraftryk?!" #: methods/gpgv.cc:168 msgid "At least one invalid signature was encountered." -msgstr "Stødte på mindst én ugyldig signatur." +msgstr "Stødte pÃ¥ mindst én ugyldig signatur." #: methods/gpgv.cc:172 -#, fuzzy msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"Kunne ikke køre '%s' for at verificere signaturen (er gpgv installeret?)" +"Kunne ikke køre 'gpgv' for at verificere signaturen (er gpgv installeret?)" #: methods/gpgv.cc:177 msgid "Unknown error executing gpgv" -msgstr "Ukendt fejl ved kørsel af gpgv" +msgstr "Ukendt fejl ved kørsel af gpgv" #: methods/gpgv.cc:211 methods/gpgv.cc:218 msgid "The following signatures were invalid:\n" -msgstr "Følgende signaturer var ugyldige:\n" +msgstr "Følgende signaturer var ugyldige:\n" #: methods/gpgv.cc:225 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" msgstr "" -"Følgende signaturer kunne ikke verificeret, da den offentlige nøgle ikke er " -"tilgængelig:\n" +"Følgende signaturer kunne ikke verificeret, da den offentlige nøgle ikke er " +"tilgængelig:\n" #: methods/http.cc:385 msgid "Waiting for headers" @@ -2097,101 +2110,98 @@ msgstr "Afventer hoveder" #: methods/http.cc:531 #, c-format msgid "Got a single header line over %u chars" -msgstr "Fandt en enkelt linje i hovedet på over %u tegn" +msgstr "Fandt en enkelt linje i hovedet pÃ¥ over %u tegn" #: methods/http.cc:539 msgid "Bad header line" msgstr "Ugyldig linje i hovedet" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" -msgstr "http-serveren sendte et ugyldigt svarhovede" +msgstr "Http-serveren sendte et ugyldigt svarhovede" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" -msgstr "http-serveren sendte et ugyldigt Content-Length-hovede" +msgstr "Http-serveren sendte et ugyldigt Content-Length-hovede" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" -msgstr "http-serveren sendte et ugyldigt Content-Range-hovede" +msgstr "Http-serveren sendte et ugyldigt Content-Range-hovede" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "" -"Denne http-servere har fejlagtig understøttelse af intervaller ('ranges')" +"Denne http-servere har fejlagtig understøttelse af intervaller ('ranges')" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "Ukendt datoformat" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "Valg mislykkedes" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" -msgstr "Tidsudløb på forbindelsen" +msgstr "Tidsudløb pÃ¥ forbindelsen" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "Fejl ved skrivning af uddatafil" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "Fejl ved skrivning til fil" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "Fejl ved skrivning til filen" -#: methods/http.cc:894 +#: methods/http.cc:900 msgid "Error reading from server. Remote end closed connection" -msgstr "Fejl ved læsning fra serveren. Den fjerne ende lukkede forbindelsen" +msgstr "Fejl ved læsning fra serveren. Den fjerne ende lukkede forbindelsen" -#: methods/http.cc:896 +#: methods/http.cc:902 msgid "Error reading from server" -msgstr "Fejl ved læsning fra server" +msgstr "Fejl ved læsning fra server" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 -#, fuzzy +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 msgid "Failed to truncate file" -msgstr "Kunne ikke skrive filen %s" +msgstr "Kunne ikke afkorte filen" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "Ugyldige hoved-data" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "Forbindelsen mislykkedes" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "Intern fejl" #: apt-pkg/contrib/mmap.cc:77 msgid "Can't mmap an empty file" -msgstr "Kan ikke udføre mmap for en tom fil" +msgstr "Kan ikke udføre mmap for en tom fil" #: apt-pkg/contrib/mmap.cc:89 -#, fuzzy, c-format +#, c-format msgid "Couldn't duplicate file descriptor %i" -msgstr "Kunne ikke åbne datarør for %s" +msgstr "Kunne ikke duplikere filbeskrivelse %i" #: apt-pkg/contrib/mmap.cc:97 apt-pkg/contrib/mmap.cc:250 #, c-format msgid "Couldn't make mmap of %lu bytes" -msgstr "Kunne ikke udføre mmap for %lu byte" +msgstr "Kunne ikke udføre mmap for %lu byte" #: apt-pkg/contrib/mmap.cc:124 -#, fuzzy msgid "Unable to close mmap" -msgstr "Kunne ikke åbne %s" +msgstr "Kunne ikke lukke mmap" #: apt-pkg/contrib/mmap.cc:152 apt-pkg/contrib/mmap.cc:180 -#, fuzzy msgid "Unable to synchronize mmap" -msgstr "Kunne ikke udføre " +msgstr "Kunne ikke synkronisere mmap" #: apt-pkg/contrib/mmap.cc:300 #, c-format @@ -2199,6 +2209,8 @@ msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " "Current value: %lu. (man 5 apt.conf)" msgstr "" +"Dynamisk MMap løb tør for plads. Øg venligst størrelsen pÃ¥ APT::Cache-Limit. " +"Aktuel værdi: %lu. (man 5 apt.conf)" #: apt-pkg/contrib/mmap.cc:399 #, c-format @@ -2206,35 +2218,39 @@ msgid "" "Unable to increase the size of the MMap as the limit of %lu bytes is already " "reached." msgstr "" +"Kunne ikke øge størrelsen pÃ¥ MMap da begrænsningen pÃ¥ %lu byte allerede er " +"nÃ¥et." #: apt-pkg/contrib/mmap.cc:402 msgid "" "Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" +"Kunne ikke øge størrelsen pÃ¥ MMap da automatisk øgning er deaktiveret af " +"bruger." #. d means days, h means hours, min means minutes, s means seconds #: apt-pkg/contrib/strutl.cc:371 #, c-format msgid "%lid %lih %limin %lis" -msgstr "" +msgstr "%lid %lih %limin %lis" #. h means hours, min means minutes, s means seconds #: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lih %limin %lis" -msgstr "" +msgstr "%lih %limin %lis" #. min means minutes, s means seconds #: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%limin %lis" -msgstr "" +msgstr "%limin %lis" #. s means seconds #: apt-pkg/contrib/strutl.cc:390 #, c-format msgid "%lis" -msgstr "" +msgstr "%lis" #: apt-pkg/contrib/strutl.cc:1119 #, c-format @@ -2249,7 +2265,7 @@ msgstr "Ukendt type-forkortelse: '%c'" #: apt-pkg/contrib/configuration.cc:510 #, c-format msgid "Opening configuration file %s" -msgstr "Åbner konfigurationsfilen %s" +msgstr "Ã…bner konfigurationsfilen %s" #: apt-pkg/contrib/configuration.cc:678 #, c-format @@ -2259,12 +2275,12 @@ msgstr "Syntaksfejl %s:%u: Blokken starter uden navn." #: apt-pkg/contrib/configuration.cc:697 #, c-format msgid "Syntax error %s:%u: Malformed tag" -msgstr "Syntaksfejl %s:%u: Forkert udformet mærke" +msgstr "Syntaksfejl %s:%u: Forkert udformet mærke" #: apt-pkg/contrib/configuration.cc:714 #, c-format msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Syntaksfejl %s:%u: Overskydende affald efter værdien" +msgstr "Syntaksfejl %s:%u: Overskydende affald efter værdien" #: apt-pkg/contrib/configuration.cc:754 #, c-format @@ -2274,7 +2290,7 @@ msgstr "Syntaksfejl %s:%u: Direktiver kan kun angives i topniveauet" #: apt-pkg/contrib/configuration.cc:761 #, c-format msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Syntaksfejl %s:%u: For mange sammenkædede inkluderinger" +msgstr "Syntaksfejl %s:%u: For mange sammenkædede inkluderinger" #: apt-pkg/contrib/configuration.cc:765 apt-pkg/contrib/configuration.cc:770 #, c-format @@ -2284,12 +2300,12 @@ msgstr "Syntaksfejl %s:%u: Inkluderet herfra" #: apt-pkg/contrib/configuration.cc:774 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Syntaksfejl %s:%u: Ikke-understøttet direktiv '%s'" +msgstr "Syntaksfejl %s:%u: Ikke-understøttet direktiv '%s'" #: apt-pkg/contrib/configuration.cc:777 -#, fuzzy, c-format +#, c-format msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "Syntaksfejl %s:%u: Direktiver kan kun angives i topniveauet" +msgstr "Syntaksfejl %s:%u: ryd direktiv kræver et tilvalgstræ som argument" #: apt-pkg/contrib/configuration.cc:827 #, c-format @@ -2304,7 +2320,7 @@ msgstr "%c%s... Fejl!" #: apt-pkg/contrib/progress.cc:155 #, c-format msgid "%c%s... Done" -msgstr "%c%s... Færdig" +msgstr "%c%s... Færdig" #: apt-pkg/contrib/cmndline.cc:77 #, c-format @@ -2315,7 +2331,7 @@ msgstr "Kommandolinjetilvalget '%c' [fra %s] kendes ikke." #: apt-pkg/contrib/cmndline.cc:119 #, c-format msgid "Command line option %s is not understood" -msgstr "Kommandolinjetilvalget %s blev ikke forstået" +msgstr "Kommandolinjetilvalget %s blev ikke forstÃ¥et" #: apt-pkg/contrib/cmndline.cc:124 #, c-format @@ -2325,17 +2341,17 @@ msgstr "Kommandolinjetilvalget %s er ikke boolsk" #: apt-pkg/contrib/cmndline.cc:165 apt-pkg/contrib/cmndline.cc:186 #, c-format msgid "Option %s requires an argument." -msgstr "Tilvalget %s kræver et parameter." +msgstr "Tilvalget %s kræver et parameter." #: apt-pkg/contrib/cmndline.cc:200 apt-pkg/contrib/cmndline.cc:206 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Tilvalg %s: Opsætningspostens specifikation skal have en =<værdi>." +msgstr "Tilvalg %s: Opsætningspostens specifikation skal have en =<værdi>." #: apt-pkg/contrib/cmndline.cc:236 #, c-format msgid "Option %s requires an integer argument, not '%s'" -msgstr "Tilvalget %s kræver et heltalligt parameter, ikke '%s'" +msgstr "Tilvalget %s kræver et heltalligt parameter, ikke '%s'" #: apt-pkg/contrib/cmndline.cc:267 #, c-format @@ -2345,7 +2361,7 @@ msgstr "Tilvalget '%s' er for langt" #: apt-pkg/contrib/cmndline.cc:300 #, c-format msgid "Sense %s is not understood, try true or false." -msgstr "%s blev ikke forstået, prøv med 'true' eller 'false'." +msgstr "%s blev ikke forstÃ¥et, prøv med 'true' eller 'false'." #: apt-pkg/contrib/cmndline.cc:350 #, c-format @@ -2357,186 +2373,186 @@ msgstr "Ugyldig handling %s" msgid "Unable to stat the mount point %s" msgstr "Kunne ikke finde monteringspunktet %s" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "Kunne ikke skifte til %s" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "Kunne ikke finde cdrommen" #: apt-pkg/contrib/fileutl.cc:154 #, c-format msgid "Not using locking for read only lock file %s" -msgstr "Benytter ikke låsning for skrivebeskyttet låsefil %s" +msgstr "Benytter ikke lÃ¥sning for skrivebeskyttet lÃ¥sefil %s" #: apt-pkg/contrib/fileutl.cc:159 #, c-format msgid "Could not open lock file %s" -msgstr "Kunne ikke åbne låsefilen %s" +msgstr "Kunne ikke Ã¥bne lÃ¥sefilen %s" #: apt-pkg/contrib/fileutl.cc:177 #, c-format msgid "Not using locking for nfs mounted lock file %s" -msgstr "Benytter ikke låsning for nfs-monteret låsefil %s" +msgstr "Benytter ikke lÃ¥sning for nfs-monteret lÃ¥sefil %s" #: apt-pkg/contrib/fileutl.cc:181 #, c-format msgid "Could not get lock %s" -msgstr "Kunne ikke opnå låsen %s" +msgstr "Kunne ikke opnÃ¥ lÃ¥sen %s" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" -msgstr "Ventede på %s, men den var der ikke" +msgstr "Ventede pÃ¥ %s, men den var der ikke" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Underprocessen %s modtog en segmenteringsfejl." -#: apt-pkg/contrib/fileutl.cc:635 -#, fuzzy, c-format +#: apt-pkg/contrib/fileutl.cc:657 +#, c-format msgid "Sub-process %s received signal %u." -msgstr "Underprocessen %s modtog en segmenteringsfejl." +msgstr "Underprocessen %s modtog en signal %u." -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Underprocessen %s returnerede en fejlkode (%u)" -#: apt-pkg/contrib/fileutl.cc:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Underprocessen %s afsluttedes uventet" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" -msgstr "Kunne ikke åbne filen %s" +msgstr "Kunne ikke Ã¥bne filen %s" -#: apt-pkg/contrib/fileutl.cc:714 -#, fuzzy, c-format +#: apt-pkg/contrib/fileutl.cc:745 +#, c-format msgid "Could not open file descriptor %d" -msgstr "Kunne ikke åbne datarør for %s" +msgstr "Kunne ikke Ã¥bne filbeskrivelse %d" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" -msgstr "læs, mangler stadig at læse %lu men der er ikke flere" +msgstr "læs, mangler stadig at læse %lu men der er ikke flere" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "skriv, mangler stadig at skrive %lu men kunne ikke" -#: apt-pkg/contrib/fileutl.cc:906 -#, fuzzy, c-format +#: apt-pkg/contrib/fileutl.cc:937 +#, c-format msgid "Problem closing the gzip file %s" -msgstr "Problem under lukning af fil" +msgstr "Problem under lukning af gzip-filen %s" -#: apt-pkg/contrib/fileutl.cc:909 -#, fuzzy, c-format +#: apt-pkg/contrib/fileutl.cc:940 +#, c-format msgid "Problem closing the file %s" -msgstr "Problem under lukning af fil" +msgstr "Problem under lukning af filen %s" -#: apt-pkg/contrib/fileutl.cc:914 -#, fuzzy, c-format +#: apt-pkg/contrib/fileutl.cc:945 +#, c-format msgid "Problem renaming the file %s to %s" -msgstr "Problem under synkronisering af fil" +msgstr "Problem under omdøbning af filen %s til %s" -#: apt-pkg/contrib/fileutl.cc:925 -#, fuzzy, c-format +#: apt-pkg/contrib/fileutl.cc:956 +#, c-format msgid "Problem unlinking the file %s" -msgstr "Fejl ved frigivelse af filen" +msgstr "Fejl ved frigivelse af filen %s" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "Problem under synkronisering af fil" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "Tomt pakke-mellemlager" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" -msgstr "Pakke-mellemlagerets fil er ødelagt" +msgstr "Pakke-mellemlagerets fil er ødelagt" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "Pakke-mellemlagerets fil er af en inkompatibel version" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, c-format msgid "This APT does not support the versioning system '%s'" -msgstr "Denne APT understøtter ikke versionssystemet '%s'" +msgstr "Denne APT understøtter ikke versionssystemet '%s'" -#: apt-pkg/pkgcache.cc:163 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache was built for a different architecture" msgstr "Pakke-mellemlageret er lavet til en anden arkitektur" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" -msgstr "Afhængigheder" +msgstr "Afhængigheder" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" -msgstr "Præ-afhængigheder" +msgstr "Præ-afhængigheder" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" -msgstr "Foreslåede" +msgstr "ForeslÃ¥ede" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "Anbefalede" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "Konflikter" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "Erstatter" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" -msgstr "Overflødiggør" +msgstr "Overflødiggør" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" -msgstr "Ødelægger" +msgstr "Ødelægger" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" -msgstr "" +msgstr "Forbedringer" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "vigtig" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" -msgstr "krævet" +msgstr "krævet" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "standard" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "frivillig" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "ekstra" #: apt-pkg/depcache.cc:124 apt-pkg/depcache.cc:153 msgid "Building dependency tree" -msgstr "Opbygger afhængighedstræ" +msgstr "Opbygger afhængighedstræ" #: apt-pkg/depcache.cc:125 msgid "Candidate versions" @@ -2544,16 +2560,16 @@ msgstr "Kandidatversioner" #: apt-pkg/depcache.cc:154 msgid "Dependency generation" -msgstr "Afhængighedsgenerering" +msgstr "Afhængighedsgenerering" #: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:207 apt-pkg/depcache.cc:211 msgid "Reading state information" -msgstr "Læser tilstandsoplysninger" +msgstr "Læser tilstandsoplysninger" #: apt-pkg/depcache.cc:236 #, c-format msgid "Failed to open StateFile %s" -msgstr "Kunne ikke åbne StateFile %s" +msgstr "Kunne ikke Ã¥bne StateFile %s" #: apt-pkg/depcache.cc:242 #, c-format @@ -2561,9 +2577,9 @@ msgid "Failed to write temporary StateFile %s" msgstr "Kunne ikke skrive den midlertidige StateFile %s" #: apt-pkg/depcache.cc:921 -#, fuzzy, c-format +#, c-format msgid "Internal error, group '%s' has no installable pseudo package" -msgstr "Intern fejl. Kunne ikke tolke pakkeindgangen" +msgstr "Intern fejl, gruppe '%s' har ingen installationsbar pseudopakke" #: apt-pkg/tagfile.cc:102 #, c-format @@ -2576,29 +2592,29 @@ msgid "Unable to parse package file %s (2)" msgstr "Kunne ikke tolke pakkefilen %s (2)" #: apt-pkg/sourcelist.cc:92 -#, fuzzy, c-format +#, c-format msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Ugyldig linje %lu i kildelisten %s (tolkning af dist)" +msgstr "Ugyldig linje %lu i kildelisten %s ([tilvalg] kunne ikke fortolkes)" #: apt-pkg/sourcelist.cc:95 -#, fuzzy, c-format +#, c-format msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Ugyldig linje %lu i kildelisten %s (dist)" +msgstr "Ugyldig linje %lu i kildelisten %s ([tilvalg] for kort)" #: apt-pkg/sourcelist.cc:106 -#, fuzzy, c-format +#, c-format msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Ugyldig linje %lu i kildelisten %s (tolkning af dist)" +msgstr "Ugyldig linje %lu i kildelisten %s ([%s] er ikke en opgave)" #: apt-pkg/sourcelist.cc:112 -#, fuzzy, c-format +#, c-format msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Ugyldig linje %lu i kildelisten %s (tolkning af dist)" +msgstr "Ugyldig linje %lu i kildelisten %s ([%s] har ingen nøgle)" #: apt-pkg/sourcelist.cc:115 -#, fuzzy, c-format +#, c-format msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "Ugyldig linje %lu i kildelisten %s (tolkning af dist)" +msgstr "Ugyldig linje %lu i kildelisten %s ([%s] nøgle %s har ingen værdi)" #: apt-pkg/sourcelist.cc:128 #, c-format @@ -2628,7 +2644,7 @@ msgstr "Ugyldig linje %lu i kildelisten %s (tolkning af dist)" #: apt-pkg/sourcelist.cc:244 #, c-format msgid "Opening %s" -msgstr "Åbner %s" +msgstr "Ã…bner %s" #: apt-pkg/sourcelist.cc:261 apt-pkg/cdrom.cc:438 #, c-format @@ -2643,14 +2659,16 @@ msgstr "Ugyldig linje %u i kildelisten %s (type)" #: apt-pkg/sourcelist.cc:285 #, 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" +msgstr "Typen '%s' er ukendt pÃ¥ linje %u i kildelisten %s" #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" 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:452 #, c-format @@ -2659,22 +2677,24 @@ msgid "" "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " "you really want to do it, activate the APT::Force-LoopBreak option." msgstr "" -"Kørsel af denne installation kræver midlertidig afinstallation af den " -"essentielle pakke %s grundet en afhængighedsløkke. Det er ofte en dårlig " -"idé, men hvis du virkelig vil gøre det, kan du aktivere valget 'APT::Force-" +"Kørsel af denne installation kræver midlertidig afinstallation af den " +"essentielle pakke %s grundet en afhængighedsløkke. Det er ofte en dÃ¥rlig " +"idé, men hvis du virkelig vil gøre det, kan du aktivere valget 'APT::Force-" "LoopBreak'." #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" +"Kunne ikke udføre øjeblikkelig konfiguration pÃ¥ allerede udpakket '%s'. Se " +"venligst man 5 apt.conf under APT:Immediate-Cinfigure for detaljer." #: apt-pkg/pkgrecords.cc:32 #, c-format msgid "Index file type '%s' is not supported" -msgstr "Indeksfiler af typen '%s' understøttes ikke" +msgstr "Indeksfiler af typen '%s' understøttes ikke" #: apt-pkg/algorithms.cc:292 #, c-format @@ -2683,7 +2703,7 @@ msgid "" msgstr "" "Pakken %s skal geninstalleres, men jeg kan ikke finde noget arkiv med den." -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2691,12 +2711,12 @@ msgstr "" "Fejl, pkgProblemResolver::Resolve satte stopklodser op, det kan skyldes " "tilbageholdte pakker." -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "" -"Kunne ikke korrigere problemerne, da du har tilbageholdt ødelagte pakker." +"Kunne ikke korrigere problemerne, da du har tilbageholdt ødelagte pakker." -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2705,28 +2725,28 @@ msgstr "" "bruges i stedet." #: apt-pkg/acquire.cc:79 -#, fuzzy, c-format +#, c-format msgid "List directory %spartial is missing." msgstr "Listemappen %spartial mangler." #: apt-pkg/acquire.cc:83 -#, fuzzy, c-format +#, c-format msgid "Archives directory %spartial is missing." msgstr "Arkivmappen %spartial mangler." #: apt-pkg/acquire.cc:91 -#, fuzzy, c-format +#, c-format msgid "Unable to lock directory %s" -msgstr "Kunne ikke låse listemappen" +msgstr "Kunne ikke lÃ¥se mappen %s" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Henter fil %li ud af %li (%s tilbage)" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "Henter fil %li ud af %li" @@ -2744,14 +2764,14 @@ msgstr "Metoden %s startede ikke korrekt" #: apt-pkg/acquire-worker.cc:413 #, 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." +msgstr "Indsæt disken med navnet: '%s' i drevet '%s' og tryk retur." -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" -msgstr "Pakkesystemet '%s' understøttes ikke" +msgstr "Pakkesystemet '%s' understøttes ikke" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "Kunne ikke bestemme en passende pakkesystemtype" @@ -2766,23 +2786,27 @@ msgstr "Du skal have nogle 'source'-URI'er i din sources.list" #: apt-pkg/cachefile.cc:84 msgid "The package lists or status file could not be parsed or opened." -msgstr "Pakkelisterne eller statusfilen kunne ikke tolkes eller åbnes." +msgstr "Pakkelisterne eller statusfilen kunne ikke tolkes eller Ã¥bnes." #: apt-pkg/cachefile.cc:88 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'" +msgstr "Du kan muligvis rette problemet ved at køre 'apt-get update'" + +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "Listen med kilder kunne ikke læses." -#: apt-pkg/policy.cc:343 -#, fuzzy, c-format +#: apt-pkg/policy.cc:344 +#, c-format msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Ugyldig indgang i indstillingsfilen. Pakkehovedet mangler" +msgstr "Ugyldig indgang i indstillingsfilen %s, pakkehovedet mangler" -#: apt-pkg/policy.cc:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" -msgstr "Kunne ikke forstå pin-type %s" +msgstr "Kunne ikke forstÃ¥ pin-type %s" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "Ingen prioritet (eller prioritet nul) angivet ved pin" @@ -2817,9 +2841,9 @@ msgstr "Der skete en fejl under behandlingen af %s (NewFileVer1)" #: apt-pkg/pkgcachegen.cc:306 apt-pkg/pkgcachegen.cc:316 #: apt-pkg/pkgcachegen.cc:324 -#, fuzzy, c-format +#, c-format msgid "Error occurred while processing %s (NewVersion%d)" -msgstr "Der skete en fejl under behandlingen af %s (NewVersion1)" +msgstr "Der skete en fejl under behandlingen af %s (NewVersion%d)" #: apt-pkg/pkgcachegen.cc:320 #, c-format @@ -2834,20 +2858,20 @@ msgstr "Der skete en fejl under behandlingen af %s (NewFileDesc2)" #: apt-pkg/pkgcachegen.cc:360 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." +"Hold da op! Du nÃ¥ede over det antal pakkenavne, denne APT kan hÃ¥ndtere." #: apt-pkg/pkgcachegen.cc:363 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." +msgstr "Hold da op! Du nÃ¥ede over det antal versioner, denne APT kan hÃ¥ndtere." #: apt-pkg/pkgcachegen.cc:366 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." +msgstr "Hold da op! Du nÃ¥ede over det antal versioner, denne APT kan hÃ¥ndtere." #: apt-pkg/pkgcachegen.cc:369 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." +"Hold da op! Du nÃ¥ede over det antal afhængigheder, denne APT kan hÃ¥ndtere." #: apt-pkg/pkgcachegen.cc:398 #, c-format @@ -2862,7 +2886,7 @@ msgstr "Der skete en fejl under behandlingen af %s (CollectfileProvides)" #: apt-pkg/pkgcachegen.cc:418 #, 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" +msgstr "Pakken %s %s blev ikke fundet under behandlingen af filafhængigheder" #: apt-pkg/pkgcachegen.cc:982 #, c-format @@ -2880,105 +2904,106 @@ msgstr "IO-fejl ved gemning af kilde-mellemlageret" #: apt-pkg/acquire-item.cc:136 #, c-format msgid "rename failed, %s (%s -> %s)." -msgstr "omdøbning mislykkedes, %s (%s -> %s)." +msgstr "omdøbning mislykkedes, %s (%s -> %s)." #: apt-pkg/acquire-item.cc:484 msgid "MD5Sum mismatch" msgstr "MD5Sum stemmer ikke" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 -#, fuzzy +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" -msgstr "MD5Sum stemmer ikke" +msgstr "Hashsum stemmer ikke" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 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" +"Der er ingen tilgængelige offentlige nøgler for følgende nøgle-ID'er:\n" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" -msgstr "" +msgstr "Udgivelsesfil udløbet, ignorerer %s (ugyldig siden %s)" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "" +msgstr "Konfliktdistribution: %s (forventede %s men fik %s)" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" +"Der opstod en fejl under underskriftsbekræftelse. Arkivet er ikke opdateret " +"og den forrige indeksfil vil blive brugt. GPG-fejl: %s: %s\n" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" -msgstr "" +msgstr "GPG-fejl: %s: %s" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " "to manually fix this package. (due to missing arch)" msgstr "" "Jeg kunne ikke lokalisere filen til %s-pakken. Det betyder muligvis at du er " -"nødt til manuelt at reparere denne pakke. (grundet manglende arch)" +"nødt til manuelt at reparere denne pakke. (grundet manglende arch)" -#: apt-pkg/acquire-item.cc:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " "manually fix this package." msgstr "" "Jeg kunne ikke lokalisere filen til %s-pakken. Det betyder muligvis at du er " -"nødt til manuelt at reparere denne pakke." +"nødt til manuelt at reparere denne pakke." -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, 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/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" -msgstr "Størrelsen stemmer ikke" +msgstr "Størrelsen stemmer ikke" #: apt-pkg/indexrecords.cc:53 -#, fuzzy, c-format +#, c-format msgid "Unable to parse Release file %s" -msgstr "Kunne ikke tolke pakkefilen %s (1)" +msgstr "Kunne ikke fortolke udgivelsesfil %s" #: apt-pkg/indexrecords.cc:60 -#, fuzzy, c-format +#, c-format msgid "No sections in Release file %s" -msgstr "Bemærk, at %s vælges fremfor %s\n" +msgstr "Ingen afsnit i udgivelsesfil %s" #: apt-pkg/indexrecords.cc:94 #, c-format msgid "No Hash entry in Release file %s" -msgstr "" +msgstr "Intet hashpunkt i udgivelsesfil %s" #: apt-pkg/indexrecords.cc:107 -#, fuzzy, c-format +#, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Ugyldig linje i omrokeringsfilen: %s" +msgstr "Ugyldigt punkt 'Valid-Until' i udgivelsesfil %s" #: apt-pkg/indexrecords.cc:122 -#, fuzzy, c-format +#, c-format msgid "Invalid 'Date' entry in Release file %s" -msgstr "Kunne ikke tolke pakkefilen %s (1)" +msgstr "Ugyldigt punkt 'Date' i udgivelsesfil %s" #: apt-pkg/vendorlist.cc:66 #, c-format msgid "Vendor block %s contains no fingerprint" -msgstr "Leverandørblok %s inderholder intet fingeraftryk" +msgstr "Leverandørblok %s inderholder intet fingeraftryk" #: apt-pkg/cdrom.cc:518 #, c-format @@ -2996,7 +3021,7 @@ msgstr "Identificerer.. " #: apt-pkg/cdrom.cc:552 #, c-format msgid "Stored label: %s\n" -msgstr "Gemt mærkat: %s \n" +msgstr "Gemt mærkat: %s \n" #: apt-pkg/cdrom.cc:559 apt-pkg/cdrom.cc:827 msgid "Unmounting CD-ROM...\n" @@ -3013,7 +3038,7 @@ msgstr "Afmonterer cdrom\n" #: apt-pkg/cdrom.cc:600 msgid "Waiting for disc...\n" -msgstr "Venter på disken...\n" +msgstr "Venter pÃ¥ disken...\n" #. Mount the new CDROM #: apt-pkg/cdrom.cc:608 @@ -3025,29 +3050,30 @@ msgid "Scanning disc for index files..\n" msgstr "Skanner disken for indeksfiler..\n" #: apt-pkg/cdrom.cc:666 -#, fuzzy, c-format +#, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " "%zu signatures\n" msgstr "" -"Fandt %i pakkeindekser, %i kildeindekser, %i oversættelsesindekser og %i " +"Fandt %zu pakkeindekser, %zu kildeindekser, %zu oversættelsesindekser og %zu " "signaturer\n" #: apt-pkg/cdrom.cc:677 -#, fuzzy msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" -msgstr "Kunne ikke finde nogen pakkefiler. Det er muligvis ikke en Debiandisk" +msgstr "" +"Kunne ikke finde nogen pakkefiler, det er muligvis ikke en Debiandisk eller " +"den forkerte arkitektur?" #: apt-pkg/cdrom.cc:703 #, c-format msgid "Found label '%s'\n" -msgstr "Fandt mærkatet '%s'\n" +msgstr "Fandt mærkatet '%s'\n" #: apt-pkg/cdrom.cc:732 msgid "That is not a valid name, try again.\n" -msgstr "Det er ikke et gyldigt navn, prøv igen.\n" +msgstr "Det er ikke et gyldigt navn, prøv igen.\n" #: apt-pkg/cdrom.cc:748 #, c-format @@ -3068,42 +3094,42 @@ msgstr "Skriver ny kildeliste\n" #: apt-pkg/cdrom.cc:787 msgid "Source list entries for this disc are:\n" -msgstr "Denne disk har følgende kildeliste-indgange:\n" +msgstr "Denne disk har følgende kildeliste-indgange:\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "Skrev %i poster.\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Skrev %i poster med %i manglende filer.\n" -#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, 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:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, 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" -#: apt-pkg/indexcopy.cc:532 -#, fuzzy, c-format +#: apt-pkg/indexcopy.cc:537 +#, c-format msgid "Skipping nonexistent file %s" -msgstr "Åbner konfigurationsfilen %s" +msgstr "Springer ikkeeksisterende fil over %s" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" -msgstr "" +msgstr "Kan ikke finde godkendelsesregistrering for: %s" -#: apt-pkg/indexcopy.cc:544 -#, fuzzy, c-format +#: apt-pkg/indexcopy.cc:549 +#, c-format msgid "Hash mismatch for: %s" -msgstr "MD5Sum stemmer ikke" +msgstr "Hashsum stemmer ikke: %s" #: apt-pkg/cacheset.cc:337 #, c-format @@ -3116,19 +3142,19 @@ msgid "Version '%s' for '%s' was not found" msgstr "Versionen '%s' for '%s' blev ikke fundet" #: apt-pkg/cacheset.cc:447 -#, fuzzy, c-format +#, c-format msgid "Couldn't find task '%s'" -msgstr "Kunne ikke finde opgaven %s" +msgstr "Kunne ikke finde opgaven '%s'" #: apt-pkg/cacheset.cc:454 -#, fuzzy, c-format +#, c-format msgid "Couldn't find any package by regex '%s'" -msgstr "Kunne ikke finde pakken %s" +msgstr "Kunne ikke finde nogle pakker med regulært udtryk '%s'" #: apt-pkg/cacheset.cc:467 #, c-format msgid "Can't select versions from package '%s' as it purely virtual" -msgstr "" +msgstr "Kan ikke vælge versioner fra pakke '%s' som er vitalt" #: apt-pkg/cacheset.cc:475 apt-pkg/cacheset.cc:483 #, c-format @@ -3136,141 +3162,152 @@ msgid "" "Can't select installed nor candidate version from package '%s' as it has " "neither of them" msgstr "" +"Kan ikke vælge installeret eller kandidatversion fra pakke '%s' da den ikke " +"har nogen af dem" #: apt-pkg/cacheset.cc:491 #, c-format msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" +msgstr "Kan ikke vælge nyeste version fra pakke '%s' som er vital" #: apt-pkg/cacheset.cc:499 #, 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:507 #, 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/deb/dpkgpm.cc:52 -#, fuzzy, c-format +#, c-format msgid "Installing %s" -msgstr "Installerede %s" +msgstr "Installerer %s" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" -msgstr "Sætter %s op" +msgstr "Sætter %s op" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "Fjerner %s" #: apt-pkg/deb/dpkgpm.cc:55 -#, fuzzy, c-format +#, c-format msgid "Completely removing %s" -msgstr "Fjernede %s helt" +msgstr "Fjerner %s helt" #: apt-pkg/deb/dpkgpm.cc:56 #, c-format msgid "Noting disappearance of %s" -msgstr "" +msgstr "Bemærker forsvinding af %s" #: apt-pkg/deb/dpkgpm.cc:57 #, c-format msgid "Running post-installation trigger %s" -msgstr "" +msgstr "Kører førinstallationsudløser %s" -#: apt-pkg/deb/dpkgpm.cc:643 -#, fuzzy, c-format +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 +#, c-format msgid "Directory '%s' missing" -msgstr "Listemappen %spartial mangler." +msgstr "Mappe '%s' mangler" -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 -#, fuzzy, c-format +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 +#, c-format msgid "Could not open file '%s'" -msgstr "Kunne ikke åbne filen %s" +msgstr "Kunne ikke Ã¥bne filen '%s'" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" -msgstr "Klargør %s" +msgstr "Klargør %s" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "Pakker %s ud" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" -msgstr "Gør klar til at sætte %s op" +msgstr "Gør klar til at sætte %s op" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "Installerede %s" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" -msgstr "Gør klar til afinstallation af %s" +msgstr "Gør klar til afinstallation af %s" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "Fjernede %s" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" -msgstr "Gør klar til at fjerne %s helt" +msgstr "Gør klar til at fjerne %s helt" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "Fjernede %s helt" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" -msgstr "" +msgstr "Kan ikke skrive log, openpty() mislykkedes (/dev/pts ej monteret?)\n" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" -msgstr "" +msgstr "Kører dpkg" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 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:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" -msgstr "" +msgstr "afhængighedsproblemer - efterlader ukonfigureret" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" +"Ingen apportrapport skrevet da fejlbeskeden indikerer, at det er en " +"opfølgningsfejl fra en tidligere fejl." -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 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:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" +"Ingen apportrapport skrevet da fejlbeskeden indikerer en ikke nok " +"hukommelsesfejl" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" -msgstr "" +msgstr "Ingen apportrapport skrevet da fejlbeskeden indikerer en dpkg I/O-fejl" #: apt-pkg/deb/debsystem.cc:69 #, c-format @@ -3278,11 +3315,12 @@ msgid "" "Unable to lock the administration directory (%s), is another process using " "it?" msgstr "" +"Kunne ikke lÃ¥se administrationsmappen (%s), bruger en anden proces den?" #: apt-pkg/deb/debsystem.cc:72 -#, fuzzy, c-format +#, c-format msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Kunne ikke låse listemappen" +msgstr "Kunne ikke lÃ¥se administrationsmappen (%s), er du rod (root)?" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a @@ -3290,23 +3328,23 @@ msgstr "Kunne ikke låse listemappen" #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" +msgstr "dpkg blev afbrudt, du skal manuelt køre '%s' for at rette problemet." #: apt-pkg/deb/debsystem.cc:106 msgid "Not locked" -msgstr "" +msgstr "Ikke lÃ¥st" #. FIXME: fallback to a default mirror here instead #. and provide a config option to define that default #: methods/mirror.cc:200 #, c-format msgid "No mirror file '%s' found " -msgstr "" +msgstr "Ingen spejlfil '%s' fundet " #: methods/mirror.cc:343 #, c-format msgid "[Mirror: %s]" -msgstr "" +msgstr "[Spejl: %s]" #: methods/rred.cc:465 #, c-format @@ -3314,6 +3352,8 @@ msgid "" "Could not patch %s with mmap and with file operation usage - the patch seems " "to be corrupt." msgstr "" +"Kunne ikke fejlrette (patch) %s med mmap og med filhandlingsbrug - " +"fejlrettelsen ser ud til at være ødelagt." #: methods/rred.cc:470 #, c-format @@ -3321,328 +3361,9 @@ msgid "" "Could not patch %s with mmap (but no mmap specific fail) - the patch seems " "to be corrupt." msgstr "" +"Kunne ikke fejlrette (patch) %s med mmap (men ingen mmap specifik fejl) - " +"fejlrettelsen ser ud til at være ødelagt." #: methods/rsh.cc:329 msgid "Connection closed prematurely" msgstr "Forbindelsen lukkedes for hurtigt" - -#~ msgid "You must give exactly one pattern" -#~ msgstr "Du skal angive nøjagtig ét mønster" - -#~ msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting." -#~ msgstr "" -#~ "F: Argumentlisten fra Acquire::gpgv::Options er for lang. Afslutter." - -#~ msgid "Error occurred while processing %s (NewVersion2)" -#~ msgstr "Der skete en fejl under behandlingen af %s (NewVersion2)" - -#~ msgid "Malformed line %u in source list %s (vendor id)" -#~ msgstr "Ugyldig linje %u i kildelisten %s (producent-id)" - -#~ msgid "Couldn't access keyring: '%s'" -#~ msgstr "Kunne ikke tilgå nøgleringent '%s'" - -#~ msgid "Could not patch file" -#~ msgstr "Kunne ikke påføre filen %s en lap" - -#~ msgid " %4i %s\n" -#~ msgstr " %4i %s\n" - -#~ msgid "%4i %s\n" -#~ msgstr "%4i %s\n" - -#, fuzzy -#~ msgid "Processing triggers for %s" -#~ msgstr "Fejl under behandling af mappen %s" - -#~ msgid "" -#~ "Since you only requested a single operation it is extremely likely that\n" -#~ "the package is simply not installable and a bug report against\n" -#~ "that package should be filed." -#~ msgstr "" -#~ "Siden du kan bad om en enkelt handling, kan pakken højst sandsynligt " -#~ "slet\n" -#~ "ikke installeres og du bør indsende en fejlrapport for denne pakke." - -#, fuzzy -#~ msgid "Line %d too long (max %lu)" -#~ msgstr "Linjen %d er for lang (maks %u)" - -#, fuzzy -#~ msgid "Line %d too long (max %d)" -#~ msgstr "Linjen %d er for lang (maks %u)" - -#, fuzzy -#~ msgid "Error occured while processing %s (NewFileDesc1)" -#~ msgstr "Der skete en fejl under behandlingen af %s (NewFileDesc1)" - -#, fuzzy -#~ msgid "Error occured while processing %s (NewFileDesc2)" -#~ msgstr "Der skete en fejl under behandlingen af %s (NewFileDesc2)" - -#, fuzzy -#~ msgid "Stored label: %s \n" -#~ msgstr "Gemt mærkat: %s \n" - -#, fuzzy -#~ msgid "" -#~ "Found %i package indexes, %i source indexes, %i translation indexes and " -#~ "%i signatures\n" -#~ msgstr "" -#~ "Fandt %i pakkeindekser, %i kildeindekser, %i oversættelsesindekser og %i " -#~ "signaturer\n" - -#, fuzzy -#~ msgid "openpty failed\n" -#~ msgstr "Valg mislykkedes" - -#~ msgid "File date has changed %s" -#~ msgstr "Filens dato er ændret %s" - -#~ msgid "Reading file list" -#~ msgstr "Indlæser fillisten" - -#~ msgid "Could not execute " -#~ msgstr "Kunne ikke køre " - -#~ msgid "Preparing for remove with config %s" -#~ msgstr "Gør klar til at fjerne %s inklusive opsætning" - -#~ msgid "Removed with config %s" -#~ msgstr "Fjernede %s inklusive opsætning" - -#~ msgid "Unknown vendor ID '%s' in line %u of source list %s" -#~ msgstr "Ukendt leverandør-ID '%s' på linje %u i kildelisten %s" - -#~ msgid "" -#~ "Some broken packages were found while trying to process build-" -#~ "dependencies.\n" -#~ "You might want to run 'apt-get -f install' to correct these." -#~ msgstr "" -#~ "Det blev fundet ødelagte pakker under behandlingen af " -#~ "opbygningsafhængighederne.\n" -#~ "Du kan muligvis rette dette ved at køre 'apt-get -f install'." - -#~ msgid "Sorry, you don't have enough free space in %s to hold all the .debs." -#~ msgstr "" -#~ "Beklager, men du har ikke nok ledig plads i %s til at opbevare alle .deb-" -#~ "filerne." - -#~ msgid "<- '" -#~ msgstr "<- '" - -#~ msgid "'" -#~ msgstr "'" - -#~ msgid "-> '" -#~ msgstr "-> '" - -#~ msgid "Followed conf file from " -#~ msgstr "Fulgte conf-filen fra " - -#~ msgid " to " -#~ msgstr " til " - -#~ msgid "Extract " -#~ msgstr "Ekstrahér " - -#~ msgid "Aborted, backing out" -#~ msgstr "Afbrudt, tilbagetrækker" - -#~ msgid "De-replaced " -#~ msgstr "Gen-omplaceret " - -#~ msgid " from " -#~ msgstr " fra " - -#~ msgid "Backing out " -#~ msgstr "Tilbagetrækker " - -#~ msgid " [new node]" -#~ msgstr " [ny knude]" - -#~ msgid "Replaced file " -#~ msgstr "Erstattede filen " - -#~ msgid "Unimplemented" -#~ msgstr "Ikke implementeret" - -#~ msgid "Generating cache" -#~ msgstr "Opretter mellemlager" - -#~ msgid "Problem with SelectFile" -#~ msgstr "Problem med SelectFile" - -#~ msgid "Problem with MergeList" -#~ msgstr "Problem med MergeList" - -#~ msgid "Regex compilation error" -#~ msgstr "Fejl under oversættelse af regulært udtryk" - -#~ msgid "Write to stdout failed" -#~ msgstr "Skrivning til standard-ud mislykkedes" - -#~ msgid "Generate must be enabled for this function" -#~ msgstr "'Generate' skal være aktiveret for denne funktion" - -#~ msgid "Failed to stat %s%s" -#~ msgstr "Kunne ikke finde %s%s" - -#~ msgid "Failed to open %s.new" -#~ msgstr "Kunne ikke åbne %s.new" - -#~ msgid "Failed to rename %s.new to %s" -#~ msgstr "Kunne ikke omdøbe %s.new til %s" - -#~ msgid "I found (binary):" -#~ msgstr "Jeg fandt (binære programfiler):" - -#~ msgid "I found (source):" -#~ msgstr "Jeg fandt (kildefiler):" - -#~ msgid "Found " -#~ msgstr "Fandt " - -#~ msgid " source indexes." -#~ msgstr " kildeindekser." - -#~ msgid " '" -#~ msgstr " '" - -#~ msgid "" -#~ "Usage: apt-cdrom [options] command\n" -#~ "\n" -#~ "apt-cdrom is a tool to add CDROM's to APT's source list. The\n" -#~ "CDROM mount point and device information is taken from apt.conf\n" -#~ "and /etc/fstab.\n" -#~ "\n" -#~ "Commands:\n" -#~ " add - Add a CDROM\n" -#~ " ident - Report the identity of a CDROM\n" -#~ "\n" -#~ "Options:\n" -#~ " -h This help text\n" -#~ " -d CD-ROM mount point\n" -#~ " -r Rename a recognized CD-ROM\n" -#~ " -m No mounting\n" -#~ " -f Fast mode, don't check package files\n" -#~ " -a Thorough scan mode\n" -#~ " -c=? Read this configuration file\n" -#~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -#~ "See fstab(5)\n" -#~ msgstr "" -#~ "Brug: apt-cdrom [tilvalg] kommando\n" -#~ "\n" -#~ "apt-cdrom er et værktøj til at tilføje cdrom'er til APTs kildeliste.\n" -#~ "cdrom-monteringspunkt og enhedsoplysninger hentes fra apt.conf\n" -#~ "og /etc/fstab.\n" -#~ "\n" -#~ "Kommandoer:\n" -#~ " add - Tilføj en cdrom\n" -#~ " ident - Rapportér den cdroms identitet\n" -#~ "\n" -#~ "Tilvalg:\n" -#~ " -h Denne hjælpetekst\n" -#~ " -d cdrom monteringspunkt\n" -#~ " -r Omdøb en genkendt cdrom\n" -#~ " -m Montér ikke\n" -#~ " -f Hurtig-tilstand. Tjek ikke pakkefiler\n" -#~ " -a Grundig skannetilstand\n" -#~ " -c=? Læs denne opsætningsfil\n" -#~ " -o=? Angiv en opsætningsfunktion, f.eks. -o dir::cache=/tmp\n" -#~ "Se fstab(5)\n" - -#~ msgid "Internal error, non-zero counts" -#~ msgstr "Intern fejl. ikke-nul optælling" - -#~ msgid "Couldn't wait for subprocess" -#~ msgstr "Kunne ikke vente på underproces" - -#~ msgid "....\"Have you mooed today?\"..." -#~ msgstr "....\"Har du sagt 'mu' i dag?\"..." - -#~ msgid " New " -#~ msgstr " Ny " - -#~ msgid "B " -#~ msgstr "B " - -#~ msgid " files " -#~ msgstr " filer " - -#~ msgid " pkgs in " -#~ msgstr " pakker i " - -#~ msgid "" -#~ "Usage: apt-ftparchive [options] command\n" -#~ "Commands: packges binarypath [overridefile [pathprefix]]\n" -#~ " sources srcpath [overridefile [pathprefix]]\n" -#~ " contents path\n" -#~ " generate config [groups]\n" -#~ " clean config\n" -#~ msgstr "" -#~ "Brug: apt-ftparchive [tilvalg] kommando\n" -#~ "Kommandoer: packges binærsti [tvangsfil [foranstillet-sti]]\n" -#~ " sources kildesti [tvangsfil [foranstillet-sti]]\n" -#~ " contents sti\n" -#~ " generate config [grupper]\n" -#~ " clean config\n" - -#~ msgid "" -#~ "Options:\n" -#~ " -h This help text\n" -#~ " --md5 Control MD5 generation\n" -#~ " -s=? Source override file\n" -#~ " -q Quiet\n" -#~ " -d=? Select the optional caching database\n" -#~ " --no-delink Enable delinking debug mode\n" -#~ " --contents Control contents file generation\n" -#~ " -c=? Read this configuration file\n" -#~ " -o=? Set an arbitrary configuration option\n" -#~ msgstr "" -#~ "Tilvalg:\n" -#~ " -h Denne hjælpetekst\n" -#~ " --md5 Kontrollér MD5-generering\n" -#~ " -s=? Kilde-gennemtvangsfil\n" -#~ " -q Stille\n" -#~ " -d=? Vælg den frivillige mellemlager-database\n" -#~ " --no-delink Aktivér 'delinking debug'-tilstand\n" -#~ " --contents Kontrollér generering af indholdsfil\n" -#~ " -c=? Læs denne opsætningsfil\n" -#~ " -o=? Angiv en opsætningsfunktion\n" - -#~ msgid "Done Packages, Starting contents." -#~ msgstr "Færdig med Packages, starter indhold." - -#~ msgid "Hit contents update byte limit" -#~ msgstr "Stødte mod indholdsopdateringens byte-begrænsning" - -#~ msgid "Done. " -#~ msgstr "Færdig. " - -#~ msgid "B in " -#~ msgstr "B i " - -#~ msgid " archives. Took " -#~ msgstr " arkiver. Det tog " - -#~ msgid "B hit." -#~ msgstr "B ramtes." - -#~ msgid " not " -#~ msgstr " ikke " - -#~ msgid "DSC file '%s' is too large!" -#~ msgstr "DSC-filen '%s' er for stor!" - -#~ msgid "Could not find a record in the DSC '%s'" -#~ msgstr "Kunne ikke finde indgang i DSC '%s'" - -#~ msgid "Error parsing file record" -#~ msgstr "Fejl under tolkning af filindgang" - -#~ msgid "Failed too stat %s" -#~ msgstr "Kunne ikke finde %s" - -#~ msgid "Errors apply to file '%s'" -#~ msgstr "Fejlene vedrører filen '%s'" @@ -8,10 +8,10 @@ # msgid "" msgstr "" -"Project-Id-Version: apt 0.7.21\n" +"Project-Id-Version: apt 0.8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" -"PO-Revision-Date: 2010-02-27 13:17+0100\n" +"POT-Creation-Date: 2010-09-28 17:23+0200\n" +"PO-Revision-Date: 2010-09-08 22:37+0200\n" "Last-Translator: Holger Wansing <linux@wansing-online.de>\n" "Language-Team: Debian German <debian-l10n-german@lists.debian.org>\n" "Language: \n" @@ -23,16 +23,15 @@ msgstr "" #: cmdline/apt-cache.cc:156 #, c-format msgid "Package %s version %s has an unmet dep:\n" -msgstr "Paket %s Version %s hat eine nicht erfüllte Abhängigkeit:\n" +msgstr "Paket %s Version %s hat eine unerfüllte Abhängigkeit:\n" #: cmdline/apt-cache.cc:284 msgid "Total package names: " msgstr "Gesamtzahl an Paketnamen: " #: cmdline/apt-cache.cc:286 -#, fuzzy msgid "Total package structures: " -msgstr "Gesamtzahl an Paketnamen: " +msgstr "Gesamtzahl an Paketstrukturen: " #: cmdline/apt-cache.cc:326 msgid " Normal packages: " @@ -100,9 +99,8 @@ msgid "Package file %s is out of sync." msgstr "Paketdatei %s ist nicht synchronisiert." #: cmdline/apt-cache.cc:1273 -#, fuzzy msgid "You must give at least one search pattern" -msgstr "Sie müssen genau ein Muster angeben" +msgstr "Sie müssen mindestens ein Suchmuster angeben" #: cmdline/apt-cache.cc:1429 cmdline/apt-cache.cc:1431 #: cmdline/apt-cache.cc:1508 @@ -152,15 +150,14 @@ msgstr " Paket-Pinning: " msgid " Version table:" msgstr " Versionstabelle:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, 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:1739 -#, fuzzy +#: cmdline/apt-cache.cc:1745 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -214,26 +211,28 @@ msgstr "" " showsrc – Aufzeichnungen zu Quellen ausgeben\n" " stats – einige grundlegenden Statistiken ausgeben\n" " dump – gesamte Datei in Kurzform ausgeben\n" -" dumpavail – Datei »available« mit allen verfügbaren Paketen ausgeben\n" +" dumpavail – Datei verfügbarer Pakete nach stdout ausgeben\n" " unmet – unerfüllte Abhängigkeiten ausgeben\n" " search – die Paketliste mittels regulärem Ausdruck durchsuchen\n" " show – einen lesbaren Datensatz für das Paket ausgeben\n" +" showauto – eine Liste automatisch installierter Pakete ausgeben\n" " depends – rohe Abhängigkeitsinformationen eines Pakets ausgeben\n" " rdepends – umgekehrte Abhängigkeitsinformationen eines Pakets ausgeben\n" " pkgnames – die Namen aller Pakete im System auflisten\n" " dotty – Paketgraph zur Verwendung mit GraphViz erzeugen\n" " xvcg – Paketgraph zur Verwendung mit xvcg erzeugen\n" -" policy – »policy«-Einstellungen ausgeben\n" +" policy – Policy-Einstellungen ausgeben\n" "\n" "Optionen:\n" -" -h dieser Hilfe-Text.\n" -" -p=? der Paket-Cache.\n" -" -s=? der Quell-Cache.\n" +" -h dieser Hilfe-Text\n" +" -p=? der Paket-Cache\n" +" -s=? der Quell-Cache\n" " -q Fortschrittsanzeige abschalten\n" -" -i nur wichtige Abhängigkeiten für den »unmet«-Befehl zeigen\n" +" -i nur wichtige Abhängigkeiten für den »unmet«-Befehl ausgeben\n" " -c=? diese Konfigurationsdatei lesen\n" " -o=? eine beliebige Konfigurationsoption setzen, z.B. -o dir::cache=/tmp\n" -"Weitere Informationen finden Sie unter apt-cache(8) und apt.conf(5).\n" +"Weitere Informationen finden Sie in den Handbuchseiten von apt-cache(8)\n" +"und apt.conf(5).\n" #: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" @@ -248,9 +247,9 @@ msgstr "" "Eingabetaste (Enter)" #: cmdline/apt-cdrom.cc:127 -#, fuzzy, c-format +#, c-format msgid "Failed to mount '%s' to '%s'" -msgstr "%s konnte nicht in %s umbenannt werden" +msgstr "»%s« konnte nicht in »%s« eingebunden werden" #: cmdline/apt-cdrom.cc:162 msgid "Repeat this process for the rest of the CDs in your set." @@ -329,31 +328,31 @@ msgid "Cannot get debconf version. Is debconf installed?" msgstr "" "Debconf-Version konnte nicht ermittelt werden. Ist debconf installiert?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "Paketerweiterungsliste ist zu lang" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "Fehler beim Verarbeiten von Verzeichnis %s" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "Quellerweiterungsliste ist zu lang" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "Fehler beim Schreiben der Kopfzeilen in die Inhaltsdatei" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "Fehler beim Verarbeiten der Inhalte %s" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -440,11 +439,11 @@ msgstr "" " -c=? diese Konfigurationsdatei lesen\n" " -o=? eine beliebige Konfigurationsoption setzen" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "Keine Auswahl traf zu" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Einige Dateien fehlen in der Paketdateigruppe »%s«" @@ -546,7 +545,7 @@ msgstr "*** Erzeugen einer Verknüpfung von %s zu %s fehlgeschlagen" #: ftparchive/writer.cc:289 #, c-format msgid " DeLink limit of %sB hit.\n" -msgstr " DeLink-Limit von %s B erreicht.\n" +msgstr " DeLink-Limit von %sB erreicht.\n" #: ftparchive/writer.cc:393 msgid "Archive had no package field" @@ -557,7 +556,7 @@ msgstr "Archiv hatte kein Feld »package«" msgid " %s has no override entry\n" msgstr " %s hat keinen Eintrag in der Override-Liste.\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s-Betreuer ist %s und nicht %s.\n" @@ -669,80 +668,80 @@ msgstr "Problem beim Entfernen (unlink) von %s" msgid "Failed to rename %s to %s" msgstr "%s konnte nicht in %s umbenannt werden" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "J" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "Fehler beim Kompilieren eines regulären Ausdrucks - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" -msgstr "Die folgenden Pakete haben nicht erfüllte Abhängigkeiten:" +msgstr "Die folgenden Pakete haben unerfüllte Abhängigkeiten:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "aber %s ist installiert" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "aber %s soll installiert werden" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "ist aber nicht installierbar" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "ist aber ein virtuelles Paket" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "ist aber nicht installiert" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "soll aber nicht installiert werden" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " oder" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "Die folgenden NEUEN Pakete werden installiert:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "Die folgenden Pakete werden ENTFERNT:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "Die folgenden Pakete sind zurückgehalten worden:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "Die folgenden Pakete werden aktualisiert (Upgrade):" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "" "Die folgenden Pakete werden DEAKTUALISIERT (ältere Version wird installiert):" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "Die folgenden gehaltenen Pakete werden verändert:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (wegen %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -750,65 +749,64 @@ msgstr "" "WARNUNG: Die folgenden essentiellen Pakete werden entfernt.\n" "Dies sollte NICHT geschehen, außer Sie wissen genau, was Sie tun!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu aktualisiert, %lu neu installiert, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu erneut installiert, " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu deaktualisiert, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu zu entfernen und %lu nicht aktualisiert.\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu nicht vollständig installiert oder entfernt.\n" -#: cmdline/apt-get.cc:634 -#, fuzzy, c-format +#: cmdline/apt-get.cc:635 +#, c-format msgid "Note, selecting '%s' for task '%s'\n" -msgstr "Hinweis: %s wird für regulären Ausdruck »%s« gewählt.\n" +msgstr "Hinweis: »%s« wird für Task »%s« gewählt.\n" -#: cmdline/apt-get.cc:640 -#, fuzzy, c-format +#: cmdline/apt-get.cc:641 +#, c-format msgid "Note, selecting '%s' for regex '%s'\n" -msgstr "Hinweis: %s wird für regulären Ausdruck »%s« gewählt.\n" +msgstr "Hinweis: »%s« wird für regulären Ausdruck »%s« gewählt.\n" -#: cmdline/apt-get.cc:647 -#, fuzzy, c-format +#: cmdline/apt-get.cc:648 +#, c-format msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Gewählte Version %s (%s) für %s\n" +msgstr "Version »%s« (%s) für »%s« gewählt\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "Paket %s ist ein virtuelles Paket, das bereitgestellt wird von:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [Installiert]" -#: cmdline/apt-get.cc:677 -#, fuzzy +#: cmdline/apt-get.cc:678 msgid " [Not candidate version]" -msgstr "Mögliche Versionen" +msgstr " [Nicht der Installationskandidat]" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "Sie sollten eines explizit zum Installieren auswählen." -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -819,172 +817,175 @@ msgstr "" "referenziert. Das kann heißen, dass das Paket fehlt, dass es veraltet\n" "ist oder nur aus einer anderen Quelle verfügbar ist.\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "Doch die folgenden Pakete ersetzen es:" -#: cmdline/apt-get.cc:712 -#, fuzzy, c-format +#: cmdline/apt-get.cc:713 +#, c-format msgid "Package '%s' has no installation candidate" -msgstr "Paket %s hat keinen Installationskandidaten" +msgstr "Paket »%s« hat keinen Installationskandidaten" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" -msgstr "" +msgstr "Virtuelle Pakete wie »%s« können nicht entfernt werden\n" -#: cmdline/apt-get.cc:754 -#, fuzzy, c-format +#: cmdline/apt-get.cc:755 +#, c-format msgid "Note, selecting '%s' instead of '%s'\n" -msgstr "Hinweis: %s wird an Stelle von %s gewählt\n" +msgstr "Hinweis: »%s« wird an Stelle von »%s« gewählt\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" -"%s wird übersprungen; es ist schon installiert und »upgrade« ist nicht " -"gesetzt.\n" +"%s wird übersprungen; es ist schon installiert und ein Upgrade ist nicht " +"angefordert.\n" -#: cmdline/apt-get.cc:788 -#, fuzzy, c-format +#: cmdline/apt-get.cc:789 +#, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" -"%s wird übersprungen; es ist schon installiert und »upgrade« ist nicht " -"gesetzt.\n" +"%s wird übersprungen; es ist nicht installiert und lediglich Upgrades sind " +"angefordert.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" "Erneute Installation von %s ist nicht möglich,\n" "es kann nicht heruntergeladen werden.\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s ist schon die neueste Version.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, c-format msgid "%s set to manually installed.\n" msgstr "%s wurde als manuell installiert festgelegt.\n" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "Paket %s ist nicht installiert, wird also auch nicht entfernt.\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "Abhängigkeiten werden korrigiert..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " fehlgeschlagen." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "Abhängigkeiten konnten nicht korrigiert werden" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "Menge der zu aktualisierenden Pakete konnte nicht minimiert werden" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " Fertig" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "Probieren Sie »apt-get -f install«, um dies zu korrigieren." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." -msgstr "Nicht-erfüllte Abhängigkeiten. Versuchen Sie, -f zu benutzen." +msgstr "Unerfüllte Abhängigkeiten. Versuchen Sie, -f zu benutzen." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "WARNUNG: Die folgenden Pakete können nicht authentifiziert werden!" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "Authentifizierungswarnung überstimmt.\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "Diese Pakete ohne Ãœberprüfung installieren [j/N]? " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "Einige Pakete konnten nicht authentifiziert werden" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "Es gab Probleme und -y wurde ohne --force-yes verwendet" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Interner Fehler, InstallPackages mit defekten Paketen aufgerufen!" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "Pakete müssen entfernt werden, aber Entfernen ist abgeschaltet." -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "Interner Fehler, Anordnung beendete nicht" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "Die Liste der Quellen konnte nicht gelesen werden." - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 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)." -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" -msgstr "Es müssen noch %s B von %s B an Archiven heruntergeladen werden.\n" +msgstr "Es müssen noch %sB von %sB an Archiven heruntergeladen werden.\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" -msgstr "Es müssen %s B an Archiven heruntergeladen werden.\n" +msgstr "Es müssen %sB an Archiven heruntergeladen werden.\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Nach dieser Operation werden %s B Plattenplatz zusätzlich benutzt.\n" +msgstr "Nach dieser Operation werden %sB Plattenplatz zusätzlich benutzt.\n" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, c-format msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Nach dieser Operation werden %s B Plattenplatz freigegeben.\n" +msgstr "Nach dieser Operation werden %sB Plattenplatz freigegeben.\n" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "Freier Platz in %s konnte nicht bestimmt werden" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "Sie haben nicht genug Platz in %s." -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "»Nur triviale« angegeben, aber dies ist keine triviale Operation." -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "Ja, tue was ich sage!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -995,28 +996,28 @@ msgstr "" "Zum Fortfahren geben Sie bitte »%s« ein.\n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "Abbruch." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "Möchten Sie fortfahren [J/n]? " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Fehlschlag beim Holen von %s %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "Einige Dateien konnten nicht heruntergeladen werden" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "Herunterladen abgeschlossen; Nur-Herunterladen-Modus aktiv" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1024,19 +1025,19 @@ msgstr "" "Einige Archive konnten nicht heruntergeladen werden; vielleicht »apt-get " "update« ausführen oder mit »--fix-missing« probieren?" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing und Wechselmedien werden derzeit nicht unterstützt" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "Fehlende Pakete konnten nicht korrigiert werden." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "Installation abgebrochen." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1044,66 +1045,69 @@ msgid_plural "" "The following packages disappeared from your system as\n" "all files have been overwritten by other packages:" msgstr[0] "" +"Das folgende Paket verschwand von Ihrem System, da alle\n" +"Dateien von anderen Paketen überschrieben wurden:" msgstr[1] "" +"Die folgenden Pakete verschwanden von Ihrem System, da alle\n" +"Dateien von anderen Paketen überschrieben wurden:" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." -msgstr "" +msgstr "Hinweis: Dies wird automatisch und absichtlich von dpkg durchgeführt." -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "Nicht verfügbare Veröffentlichung »%s« von Paket »%s« wird ignoriert" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Als Quellpaket wird »%s« statt »%s« gewählt\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "Nicht verfügbare Version »%s« von Paket »%s« wird ignoriert" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "Der Befehl »update« akzeptiert keine Argumente" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "Es soll nichts gelöscht werden, AutoRemover kann nicht gestartet werden" -#: cmdline/apt-get.cc:1653 -#, fuzzy +#: cmdline/apt-get.cc:1666 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" "The following packages were automatically installed and are no longer " "required:" msgstr[0] "" -"Die folgenden Pakete wurden automatisch installiert und werden nicht länger " +"Das folgende Paket wurde automatisch installiert und wird nicht mehr " "benötigt:" msgstr[1] "" -"Die folgenden Pakete wurden automatisch installiert und werden nicht länger " +"Die folgenden Pakete wurden automatisch installiert und werden nicht mehr " "benötigt:" -#: cmdline/apt-get.cc:1657 -#, fuzzy, c-format +#: cmdline/apt-get.cc:1670 +#, 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 Pakete wurden automatisch installiert und werden nicht mehr benötigt.\n" +"%lu Paket wurde automatisch installiert und wird nicht mehr benötigt.\n" msgstr[1] "" "%lu Pakete wurden automatisch installiert und werden nicht mehr benötigt.\n" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "Verwenden Sie »apt-get autoremove«, um sie zu entfernen." -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1122,32 +1126,32 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "" "Die folgenden Informationen helfen Ihnen vielleicht, die Situation zu lösen:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" msgstr "Interner Fehler, AutoRemover hat etwas beschädigt" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "Interner Fehler, AllUpgrade hat etwas beschädigt" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Probieren Sie »apt-get -f install«, um dies zu korrigieren:" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." msgstr "" -"Nicht erfüllte Abhängigkeiten. Versuchen Sie »apt-get -f install« ohne " -"Angabe eines Pakets (oder geben Sie eine Lösung an)." +"Unerfüllte Abhängigkeiten. Versuchen Sie »apt-get -f install« ohne Angabe " +"eines Pakets (oder geben Sie eine Lösung an)." -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1159,150 +1163,160 @@ msgstr "" "Unstable-Distribution verwenden, dass einige erforderliche Pakete noch\n" "nicht erstellt wurden oder Incoming noch nicht verlassen haben." -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "Beschädigte Pakete" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "Die folgenden zusätzlichen Pakete werden installiert:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "Vorgeschlagene Pakete:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "Empfohlene Pakete:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "Paket %s konnte nicht gefunden werden" -#: cmdline/apt-get.cc:1981 -#, fuzzy, c-format +#: cmdline/apt-get.cc:1994 +#, c-format msgid "%s set to automatically installed.\n" -msgstr "%s wurde als manuell installiert festgelegt.\n" +msgstr "%s wurde als automatisch installiert festgelegt.\n" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "Paketaktualisierung (Upgrade) wird berechnet... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "Fehlgeschlagen" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "Fertig" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "Interner Fehler, der Problemlöser hat etwas beschädigt" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "Das Downloadverzeichnis konnte nicht gesperrt werden." -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 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:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "Quellpaket für %s kann nicht gefunden werden" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" +"HINWEIS: »%s«-Paketierung wird betreut im »%s«-Versionsverwaltungssystem " +"auf:\n" +"%s\n" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" "bzr get %s\n" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" +"Bitte verwenden Sie:\n" +"bzr get %s\n" +"um die neuesten (möglicherweise noch unveröffentlichten) Aktualisierungen\n" +"für das Paket abzurufen.\n" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Bereits heruntergeladene Datei »%s« wird übersprungen.\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "Sie haben nicht genügend freien Speicherplatz in %s" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" -msgstr "" -"Es müssen noch %s B von %s B an Quellarchiven heruntergeladen werden.\n" +msgstr "Es müssen noch %sB von %sB an Quellarchiven heruntergeladen werden.\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" -msgstr "Es müssen %s B an Quellarchiven heruntergeladen werden.\n" +msgstr "Es müssen %sB an Quellarchiven heruntergeladen werden.\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "Quelle %s wird heruntergeladen.\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "Einige Archive konnten nicht heruntergeladen werden." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, 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:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Entpackbefehl »%s« fehlgeschlagen.\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, 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:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "Build-Befehl »%s« fehlgeschlagen.\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "Kindprozess fehlgeschlagen" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 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:2506 +#: cmdline/apt-get.cc:2524 #, 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:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "%s hat keine Bauabhängigkeiten.\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1311,7 +1325,7 @@ msgstr "" "»%s«-Abhängigkeit für %s kann nicht erfüllt werden, da Paket %s nicht " "gefunden werden kann." -#: cmdline/apt-get.cc:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1320,33 +1334,32 @@ msgstr "" "»%s«-Abhängigkeit für %s kann nicht erfüllt werden, da keine verfügbare " "Version des Pakets %s die Versionsanforderungen erfüllen kann." -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, 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:2693 +#: cmdline/apt-get.cc:2711 #, 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:2709 +#: cmdline/apt-get.cc:2727 #, 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:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "Verarbeitung der Bauabhängigkeiten fehlgeschlagen" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "Unterstützte Module:" -#: cmdline/apt-get.cc:2786 -#, fuzzy +#: cmdline/apt-get.cc:2804 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1416,7 +1429,9 @@ msgstr "" " dselect-upgrade – der Auswahl von »dselect« folgen\n" " clean – heruntergeladene Archive löschen\n" " autoclean – veraltete heruntergeladene Archive löschen\n" -" check – überprüfen, ob es nicht erfüllte Abhängigkeiten gibt\n" +" check – überprüfen, ob es unerfüllte Abhängigkeiten gibt\n" +" markauto – angegebene Pakete als automatisch installiert markieren\n" +" unmarkauto – angegebene Pakete als manuell installiert markieren\n" "\n" "Optionen:\n" " -h dieser Hilfetext\n" @@ -1427,17 +1442,16 @@ msgstr "" " -y für alle Antworten »Ja« annehmen und nicht nachfragen\n" " -f versuchen, ein System mit defekten Abhängigkeiten zu korrigieren\n" " -m versuchen fortzufahren, wenn Archive nicht auffindbar sind\n" -" -u auch eine Liste der aktualisierten Pakete anzeigen\n" +" -u ebenfalls eine Liste der aktualisierten Pakete ausgeben\n" " -b ein Quellpaket nach dem Herunterladen bauen\n" -" -V ausführliche Versionsnummern anzeigen\n" +" -V ausführliche Versionsnummern ausgeben\n" " -c=? Diese Konfigurationsdatei benutzen\n" " -o=? Beliebige Konfigurationsoption setzen, z.B. -o dir::cache=/tmp\n" -"Siehe auch die Handbuch-Seiten apt-get(8), sources.list(5) und apt.conf(5) " -"für\n" -"weitergehende Informationen und Optionen.\n" +"Siehe auch die Handbuchseiten apt-get(8), sources.list(5) und apt.conf(5)\n" +"bezüglich weitergehender Informationen und Optionen.\n" " Dieses APT hat Super-Kuh-Kräfte.\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1469,7 +1483,7 @@ msgstr "Fehl " #: cmdline/acqprogress.cc:135 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Es wurden %s B in %s geholt (%s B/s)\n" +msgstr "Es wurden %sB in %s geholt (%sB/s)\n" #: cmdline/acqprogress.cc:225 #, c-format @@ -1690,10 +1704,10 @@ msgstr "Durch die Datei %s/%s wird die Datei in Paket %s überschrieben" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1830,24 +1844,24 @@ msgstr "Es konnte keine gültige »control«-Datei gefunden werden" msgid "Unparsable control file" msgstr "Auswerten der »control«-Datei nicht möglich" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "Pipe (Weiterleitung) für %s konnte nicht geöffnet werden" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "Lesefehler von Prozess %s" # looks like someone hardcoded English grammar -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "»stat« konnte nicht ausgeführt werden" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "Änderungszeitpunkt kann nicht gesetzt werden" @@ -1942,7 +1956,7 @@ msgstr "Zeitüberschreitung der Verbindung" msgid "Server closed the connection" msgstr "Verbindung durch Server geschlossen" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "Lesefehler" @@ -1954,7 +1968,7 @@ msgstr "Durch eine Antwort wurde der Puffer zum Ãœberlaufen gebracht." msgid "Protocol corruption" msgstr "Protokoll beschädigt" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "Schreibfehler" @@ -2010,9 +2024,9 @@ msgstr "Zeitüberschreitung bei Datenverbindungsaufbau" msgid "Unable to accept connection" msgstr "Verbindung konnte nicht angenommen werden" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" -msgstr "Bei Bestimmung des Hashwertes einer Datei trat ein Problem auf" +msgstr "Problem bei Bestimmung des Hashwertes einer Datei" #: methods/ftp.cc:882 #, c-format @@ -2114,10 +2128,9 @@ msgid "At least one invalid signature was encountered." msgstr "Mindestens eine ungültige Signatur wurde entdeckt." #: methods/gpgv.cc:172 -#, fuzzy msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"»%s« zur Ãœberprüfung der Signatur konnte nicht ausgeführt werden (ist gpgv " +"»gpgv« konnte zur Ãœberprüfung der Signatur nicht ausgeführt werden (ist gpgv " "installiert?)" #: methods/gpgv.cc:177 @@ -2150,71 +2163,71 @@ msgstr "Einzelne Kopfzeile aus %u Zeichen erhalten" msgid "Bad header line" msgstr "Ungültige Kopfzeile" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "Vom HTTP-Server wurde eine ungültige Antwort-Kopfzeile gesandt" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "" "Vom HTTP-Server wurde eine ungültige »Content-Length«-Kopfzeile gesandt" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "Vom HTTP-Server wurde eine ungültige »Content-Range«-Kopfzeile gesandt" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "" "Teilweise Dateiübertragung wird vom HTTP-Server nur fehlerhaft unterstützt." -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "Unbekanntes Datumsformat" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "Auswahl fehlgeschlagen" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "Zeitüberschreitung bei Verbindung" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "Fehler beim Schreiben der Ausgabedatei" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "Fehler beim Schreiben in Datei" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "Fehler beim Schreiben der Datei" -#: methods/http.cc:894 +#: methods/http.cc:900 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:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "Fehler beim Lesen vom Server" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 msgid "Failed to truncate file" msgstr "Datei konnte nicht eingekürzt werden" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "Fehlerhafte Kopfzeilendaten" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "Verbindung fehlgeschlagen" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "Interner Fehler" @@ -2223,24 +2236,22 @@ msgid "Can't mmap an empty file" msgstr "Eine leere Datei kann nicht mit mmap abgebildet werden" #: apt-pkg/contrib/mmap.cc:89 -#, fuzzy, c-format +#, c-format msgid "Couldn't duplicate file descriptor %i" -msgstr "Pipe (Weiterleitung) für %s konnte nicht geöffnet werden" +msgstr "Datei-Deskriptor %i konnte nicht dupliziert werden" #: apt-pkg/contrib/mmap.cc:97 apt-pkg/contrib/mmap.cc:250 #, c-format msgid "Couldn't make mmap of %lu bytes" -msgstr "mmap von %lu Bytes konnte nicht durchgeführt werden" +msgstr "mmap mit %lu Byte Größe konnte nicht erzeugt werden" #: apt-pkg/contrib/mmap.cc:124 -#, fuzzy msgid "Unable to close mmap" -msgstr "%s konnte nicht geöffnet werden" +msgstr "mmap konnte nicht geschlossen werden" #: apt-pkg/contrib/mmap.cc:152 apt-pkg/contrib/mmap.cc:180 -#, fuzzy msgid "Unable to synchronize mmap" -msgstr "Aufruf nicht möglich: " +msgstr "mmap konnte nicht synchronisiert werden" #: apt-pkg/contrib/mmap.cc:300 #, c-format @@ -2257,11 +2268,15 @@ msgid "" "Unable to increase the size of the MMap as the limit of %lu bytes is already " "reached." msgstr "" +"Unmöglich, die Größe der MMap zu erhöhen, da das Limit von %lu Byte bereits " +"erreicht ist." #: apt-pkg/contrib/mmap.cc:402 msgid "" "Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" +"Unmöglich, die Größe der MMap zu erhöhen, da das automatische Anwachsen der " +"MMap vom Benutzer deaktiviert ist." #. d means days, h means hours, min means minutes, s means seconds #: apt-pkg/contrib/strutl.cc:371 @@ -2339,10 +2354,10 @@ msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Syntaxfehler %s:%u: Nicht unterstützte Direktive »%s«" #: apt-pkg/contrib/configuration.cc:777 -#, fuzzy, c-format +#, c-format msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"Syntaxfehler %s:%u: Direktiven können nur auf oberster Ebene benutzt werden" +"Syntaxfehler %s:%u: Löschdirektiven benötigen einen Optionsbaum als Argument" #: apt-pkg/contrib/configuration.cc:827 #, c-format @@ -2411,14 +2426,14 @@ msgstr "Ungültige Operation %s" msgid "Unable to stat the mount point %s" msgstr "»stat« konnte nicht auf den Einbindungspunkt %s ausgeführt werden" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "Es konnte nicht nach %s gewechselt werden" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "»stat« konnte nicht auf die CD-ROM ausgeführt werden" @@ -2442,151 +2457,151 @@ msgstr "Es wird keine Sperre für per NFS eingebundene Sperrdatei %s verwendet" msgid "Could not get lock %s" msgstr "Konnte Sperre %s nicht bekommen" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Es wurde auf %s gewartet, war jedoch nicht vorhanden" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Unterprozess %s hat einen Speicherzugriffsfehler empfangen." -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, c-format msgid "Sub-process %s received signal %u." msgstr "Unterprozess %s hat das Signal %u empfangen." -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Unterprozess %s hat Fehlercode zurückgegeben (%u)" -#: apt-pkg/contrib/fileutl.cc:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Unterprozess %s unerwartet beendet" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "Datei %s konnte nicht geöffnet werden" -#: apt-pkg/contrib/fileutl.cc:714 -#, fuzzy, c-format +#: apt-pkg/contrib/fileutl.cc:745 +#, c-format msgid "Could not open file descriptor %d" -msgstr "Pipe (Weiterleitung) für %s konnte nicht geöffnet werden" +msgstr "Datei-Deskriptor %d konnte nicht geöffnet werden" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "Lesevorgang: es verbleiben noch %lu zu lesen, jedoch nichts mehr übrig" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "" "Schreibvorgang: es verbleiben noch %lu zu schreiben, jedoch Schreiben nicht " "möglich" -#: apt-pkg/contrib/fileutl.cc:906 -#, fuzzy, c-format +#: apt-pkg/contrib/fileutl.cc:937 +#, c-format msgid "Problem closing the gzip file %s" -msgstr "Beim Schließen der Datei trat ein Problem auf" +msgstr "Problem beim Schließen der gzip-Datei %s" -#: apt-pkg/contrib/fileutl.cc:909 -#, fuzzy, c-format +#: apt-pkg/contrib/fileutl.cc:940 +#, c-format msgid "Problem closing the file %s" -msgstr "Beim Schließen der Datei trat ein Problem auf" +msgstr "Problem beim Schließen der Datei %s" -#: apt-pkg/contrib/fileutl.cc:914 -#, fuzzy, c-format +#: apt-pkg/contrib/fileutl.cc:945 +#, c-format msgid "Problem renaming the file %s to %s" -msgstr "Beim Synchronisieren der Datei trat ein Problem auf" +msgstr "Problem beim Umbenennen der Datei %s nach %s" -#: apt-pkg/contrib/fileutl.cc:925 -#, fuzzy, c-format +#: apt-pkg/contrib/fileutl.cc:956 +#, c-format msgid "Problem unlinking the file %s" -msgstr "Beim Entfernen (unlink) der Datei trat ein Problem auf" +msgstr "Problem beim Entfernen (unlink) der Datei %s" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" -msgstr "Beim Synchronisieren der Datei trat ein Problem auf" +msgstr "Problem beim Synchronisieren der Datei" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "Leerer Paket-Cache" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "Die Paket-Cache-Datei ist beschädigt" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "Die Paket-Cache-Datei liegt in einer inkompatiblen Version vor" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, 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:163 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache was built for a different architecture" msgstr "Der Paket-Cache wurde für eine andere Architektur aufgebaut" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "Hängt ab von" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "Hängt ab von (vorher)" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "Schlägt vor" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "Empfiehlt" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "Kollidiert mit" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "Ersetzt" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "Veraltet" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "Stört" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "Wertet auf" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "wichtig" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "erforderlich" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "standard" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "optional" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "extra" @@ -2619,7 +2634,7 @@ msgstr "Temporäres StateFile %s konnte nicht geschrieben werden" #: apt-pkg/depcache.cc:921 #, c-format msgid "Internal error, group '%s' has no installable pseudo package" -msgstr "" +msgstr "Interner Fehler, Gruppe »%s« hat kein installierbares Pseudo-Paket" #: apt-pkg/tagfile.cc:102 #, c-format @@ -2632,29 +2647,30 @@ msgid "Unable to parse package file %s (2)" msgstr "Paketdatei %s konnte nicht verarbeitet werden (2)" #: apt-pkg/sourcelist.cc:92 -#, fuzzy, c-format +#, c-format msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s (»dist parse«)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s ([Option] nicht auswertbar)" #: apt-pkg/sourcelist.cc:95 -#, fuzzy, c-format +#, c-format msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s (»dist«)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s ([Option] zu kurz)" #: apt-pkg/sourcelist.cc:106 -#, fuzzy, c-format +#, c-format msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s (»dist parse«)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s ([%s] ist keine Zuweisung)" #: apt-pkg/sourcelist.cc:112 -#, fuzzy, c-format +#, c-format msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s (»dist parse«)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s ([%s] hat keinen Schlüssel)" #: apt-pkg/sourcelist.cc:115 -#, fuzzy, c-format +#, c-format msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s (»dist parse«)" +msgstr "" +"Missgestaltete Zeile %lu in Quellliste %s ([%s] Schlüssel %s hat keinen Wert)" #: apt-pkg/sourcelist.cc:128 #, c-format @@ -2704,7 +2720,7 @@ msgstr "Typ »%s« in Zeile %u der Quellliste %s ist unbekannt" #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" "»%s« konnte nicht unmittelbar konfiguriert werden. Lesen Sie »man 5 apt." @@ -2725,7 +2741,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" "»%s« (bereits entpackt) konnte nicht unmittelbar konfiguriert werden. Lesen " @@ -2745,7 +2761,7 @@ msgstr "" "Das Paket %s muss neu installiert werden, es kann jedoch kein Archiv dafür " "gefunden werden." -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2753,12 +2769,12 @@ msgstr "" "Fehler: Unterbrechungen durch pkgProblemResolver::Resolve hervorgerufen; " "dies könnte durch gehaltene Pakete verursacht worden sein." -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Probleme können nicht korrigiert werden, Sie haben gehaltene defekte Pakete." -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2767,28 +2783,28 @@ msgstr "" "ignoriert oder alte an ihrer Stelle benutzt." #: apt-pkg/acquire.cc:79 -#, fuzzy, c-format +#, c-format msgid "List directory %spartial is missing." msgstr "Listenverzeichnis %spartial fehlt." #: apt-pkg/acquire.cc:83 -#, fuzzy, c-format +#, c-format msgid "Archives directory %spartial is missing." msgstr "Archivverzeichnis %spartial fehlt." #: apt-pkg/acquire.cc:91 -#, fuzzy, c-format +#, c-format msgid "Unable to lock directory %s" -msgstr "Das Listenverzeichnis kann nicht gesperrt werden" +msgstr "Das Verzeichnis %s kann nicht gesperrt werden" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Holen der Datei %li von %li (noch %s)" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "Holen der Datei %li von %li" @@ -2810,12 +2826,12 @@ 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:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Paketierungssystem »%s« wird nicht unterstützt" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "Bestimmung eines passenden Paketierungssystemtyps nicht möglich" @@ -2840,18 +2856,22 @@ msgstr "" 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/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "Die Liste der Quellen konnte nicht gelesen werden." + +#: apt-pkg/policy.cc:344 #, 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:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "Pinning-Typ %s kann nicht interpretiert werden" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "Keine Priorität (oder Null) für Pin angegeben" @@ -2862,43 +2882,43 @@ msgstr "Cache hat ein inkompatibles Versionssystem" #: apt-pkg/pkgcachegen.cc:198 #, c-format msgid "Error occurred while processing %s (NewPackage)" -msgstr "Ein Fehler trat auf beim Verarbeiten von %s (NewPackage)" +msgstr "Fehler aufgetreten beim Verarbeiten von %s (NewPackage)" #: apt-pkg/pkgcachegen.cc:215 #, c-format msgid "Error occurred while processing %s (UsePackage1)" -msgstr "Ein Fehler trat auf beim Verarbeiten von %s (UsePackage1)" +msgstr "Fehler aufgetreten beim Verarbeiten von %s (UsePackage1)" #: apt-pkg/pkgcachegen.cc:253 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" -msgstr "Ein Fehler trat auf beim Verarbeiten von %s (NewFileDesc1)" +msgstr "Fehler aufgetreten beim Verarbeiten von %s (NewFileDesc1)" #: apt-pkg/pkgcachegen.cc:285 #, c-format msgid "Error occurred while processing %s (UsePackage2)" -msgstr "Ein Fehler trat auf beim Verarbeiten von %s (UsePackage2)" +msgstr "Fehler aufgetreten beim Verarbeiten von %s (UsePackage2)" #: apt-pkg/pkgcachegen.cc:289 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" -msgstr "Ein Fehler trat auf beim Verarbeiten von %s (NewFileVer1)" +msgstr "Fehler aufgetreten beim Verarbeiten von %s (NewFileVer1)" #: apt-pkg/pkgcachegen.cc:306 apt-pkg/pkgcachegen.cc:316 #: apt-pkg/pkgcachegen.cc:324 -#, fuzzy, c-format +#, c-format msgid "Error occurred while processing %s (NewVersion%d)" -msgstr "Ein Fehler trat auf beim Verarbeiten von %s (NewVersion1)" +msgstr "Fehler aufgetreten beim Verarbeiten von %s (NewVersion%d)" #: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Error occurred while processing %s (UsePackage3)" -msgstr "Ein Fehler trat auf beim Verarbeiten von %s (UsePackage3)" +msgstr "Fehler aufgetreten beim Verarbeiten von %s (UsePackage3)" #: apt-pkg/pkgcachegen.cc:353 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" -msgstr "Ein Fehler trat auf beim Verarbeiten von %s (NewFileDesc2)" +msgstr "Fehler aufgetreten beim Verarbeiten von %s (NewFileDesc2)" #: apt-pkg/pkgcachegen.cc:360 msgid "Wow, you exceeded the number of package names this APT is capable of." @@ -2927,12 +2947,12 @@ msgstr "" #: apt-pkg/pkgcachegen.cc:398 #, c-format msgid "Error occurred while processing %s (FindPkg)" -msgstr "Ein Fehler trat auf beim Verarbeiten von %s (FindPkg)" +msgstr "Fehler aufgetreten beim Verarbeiten von %s (FindPkg)" #: apt-pkg/pkgcachegen.cc:412 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" -msgstr "Ein Fehler trat auf beim Verarbeiten von %s (CollectFileProvides)" +msgstr "Fehler aufgetreten beim Verarbeiten von %s (CollectFileProvides)" #: apt-pkg/pkgcachegen.cc:418 #, c-format @@ -2962,12 +2982,12 @@ msgstr "Umbenennen fehlgeschlagen, %s (%s -> %s)." msgid "MD5Sum mismatch" msgstr "MD5-Summe stimmt nicht überein" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" msgstr "Hash-Summe stimmt nicht überein" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 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" @@ -2975,29 +2995,32 @@ msgstr "" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" -msgstr "" +msgstr "Release-Datei abgelaufen, %s wird ignoriert (ungültig seit %s)" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "" +msgstr "Konflikt bei Distribution: %s (%s erwartet, aber %s bekommen)" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" +"Während der Ãœberprüfung der Signatur trat ein Fehler auf. Das Repository " +"wurde nicht aktualisiert und die vorherigen Indexdateien werden verwendet. " +"GPG-Fehler: %s: %s\n" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" -msgstr "" +msgstr "GPG-Fehler: %s: %s" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3006,7 +3029,7 @@ msgstr "" "Es konnte keine Datei für Paket %s gefunden werden. Das könnte heißen, dass " "Sie dieses Paket von Hand korrigieren müssen (aufgrund fehlender Architektur)" -#: apt-pkg/acquire-item.cc:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -3015,14 +3038,14 @@ msgstr "" "Es konnte keine Datei für Paket %s gefunden werden. Das könnte heißen, dass " "Sie dieses Paket von Hand korrigieren müssen." -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, 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/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "Größe stimmt nicht überein" @@ -3042,14 +3065,14 @@ msgid "No Hash entry in Release file %s" msgstr "Kein Hash-Eintrag in Release-Datei %s" #: apt-pkg/indexrecords.cc:107 -#, fuzzy, c-format +#, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Kein Hash-Eintrag in Release-Datei %s" +msgstr "Ungültiger »Valid-Until«-Eintrag in Release-Datei %s" #: apt-pkg/indexrecords.cc:122 -#, fuzzy, c-format +#, c-format msgid "Invalid 'Date' entry in Release file %s" -msgstr "Kein Hash-Eintrag in Release-Datei %s" +msgstr "Ungültiger »Date«-Eintrag in Release-Datei %s" #: apt-pkg/vendorlist.cc:66 #, c-format @@ -3147,39 +3170,39 @@ msgstr "Schreiben der neuen Quellliste\n" msgid "Source list entries for this disc are:\n" msgstr "Quelllisteneinträge für dieses Medium sind:\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "Es wurden %i Datensätze geschrieben.\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, 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:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, 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:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" "Es wurden %i Datensätze mit %i fehlenden und %i nicht passenden Dateien " "geschrieben.\n" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, c-format msgid "Skipping nonexistent file %s" msgstr "Nicht vorhandene Datei %s wird übersprungen" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "Authentifizierungs-Datensatz konnte nicht gefunden werden für: %s" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, c-format msgid "Hash mismatch for: %s" msgstr "Hash-Summe stimmt nicht überein für: %s" @@ -3195,19 +3218,21 @@ msgid "Version '%s' for '%s' was not found" msgstr "Version »%s« für »%s« konnte nicht gefunden werden" #: apt-pkg/cacheset.cc:447 -#, fuzzy, c-format +#, c-format msgid "Couldn't find task '%s'" -msgstr "Task %s konnte nicht gefunden werden" +msgstr "Task »%s« konnte nicht gefunden werden" #: apt-pkg/cacheset.cc:454 -#, fuzzy, c-format +#, c-format msgid "Couldn't find any package by regex '%s'" -msgstr "Paket %s konnte nicht gefunden werden" +msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden" #: apt-pkg/cacheset.cc:467 #, c-format msgid "Can't select versions from package '%s' as it purely virtual" msgstr "" +"Es können keine Versionen von Paket »%s« ausgewählt werden, da es rein " +"virtuell ist" #: apt-pkg/cacheset.cc:475 apt-pkg/cacheset.cc:483 #, c-format @@ -3215,33 +3240,41 @@ msgid "" "Can't select installed nor candidate version from package '%s' as it has " "neither of them" msgstr "" +"Es kann weder eine installierte Version noch ein Installationskandidat von " +"Paket »%s« ausgewählt werden, da beide nicht existieren" #: apt-pkg/cacheset.cc:491 #, 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:499 #, 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:507 #, 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/deb/dpkgpm.cc:52 #, c-format msgid "Installing %s" msgstr "%s wird installiert" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "%s wird konfiguriert" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "%s wird entfernt" @@ -3254,104 +3287,115 @@ msgstr "%s wird vollständig entfernt" #: apt-pkg/deb/dpkgpm.cc:56 #, c-format msgid "Noting disappearance of %s" -msgstr "" +msgstr "Verschwinden von %s festgestellt" #: apt-pkg/deb/dpkgpm.cc:57 #, c-format msgid "Running post-installation trigger %s" msgstr "Aufruf des Nach-Installations-Triggers %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "Verzeichnis »%s« fehlt" -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 -#, fuzzy, c-format +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 +#, c-format msgid "Could not open file '%s'" -msgstr "Datei %s konnte nicht geöffnet werden" +msgstr "Datei »%s« konnte nicht geöffnet werden" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "%s wird vorbereitet" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "%s wird entpackt" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "Konfiguration von %s wird vorbereitet" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "%s installiert" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "Entfernen von %s wird vorbereitet" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "%s entfernt" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "Vollständiges Entfernen von %s wird vorbereitet" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "%s vollständig entfernt" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Schreiben des Protokolls nicht möglich, openpty() fehlgeschlagen (/dev/pts " "nicht eingebunden?)\n" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "Ausführen von dpkg" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 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:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" -msgstr "" +msgstr "Abhängigkeitsprobleme - verbleibt unkonfiguriert" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" +"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung darauf " +"hindeutet, dass dies lediglich ein Folgefehler eines vorherigen Problems ist." -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" +"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung auf einen Fehler " +"wegen voller Festplatte hindeutet" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" +"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung auf einen Fehler " +"wegen erschöpftem Arbeitsspeicher hindeutet" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 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:69 #, c-format @@ -3371,12 +3415,12 @@ msgstr "" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a #: apt-pkg/deb/debsystem.cc:88 -#, fuzzy, c-format +#, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " msgstr "" -"Der dpkg-Prozess wurde unterbrochen; Sie müssen »dpkg --configure -a« " -"manuell ausführen, um das Problem zu beheben." +"Der dpkg-Prozess wurde unterbrochen; Sie müssen manuell »%s« ausführen, um " +"das Problem zu beheben." #: apt-pkg/deb/debsystem.cc:106 msgid "Not locked" @@ -3387,12 +3431,12 @@ msgstr "Nicht gesperrt" #: methods/mirror.cc:200 #, c-format msgid "No mirror file '%s' found " -msgstr "" +msgstr "Keine Datei von Spiegelserver »%s« gefunden" #: methods/mirror.cc:343 #, c-format msgid "[Mirror: %s]" -msgstr "" +msgstr "[Spiegelserver: %s]" #: methods/rred.cc:465 #, c-format @@ -3415,23 +3459,3 @@ msgstr "" #: methods/rsh.cc:329 msgid "Connection closed prematurely" msgstr "Verbindung vorzeitig beendet" - -#~ msgid "E: Too many keyrings should be passed to gpgv. Exiting." -#~ msgstr "" -#~ "F: Zu viele Schlüsselringe sollten an gpgv übergeben werden. Abbruch." - -#~ msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting." -#~ msgstr "F: Argumentenliste von Acquire::gpgv::Options zu lang. Abbruch." - -#~ msgid "" -#~ "The size of a MMap has already reached the defined limit of %lu bytes," -#~ "abort the try to grow the MMap." -#~ msgstr "" -#~ "Die MMap-Größe hat bereits das festgelegte Limit von %lu Byte erreicht. " -#~ "Der Versuch, die MMap zu vergrößern, wird abgebrochen." - -#~ msgid "Error occurred while processing %s (NewVersion2)" -#~ msgstr "Ein Fehler trat auf beim Verarbeiten von %s (NewVersion2)" - -#~ msgid "Malformed line %u in source list %s (vendor id)" -#~ msgstr "Missgestaltete Zeile %u in Quellliste %s (»vendor id«)" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po.pot\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+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" @@ -154,14 +154,14 @@ msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གྱི་à½à½–་གཟེར:" msgid " Version table:" msgstr "à½à½¼à½“་རིམ་à½à½²à½‚་à½à¾²à½˜à¼:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, 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:1739 +#: cmdline/apt-cache.cc:1745 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -327,31 +327,31 @@ msgstr " %sལུ་འབྲི་མ་ཚུགསà¼" msgid "Cannot get debconf version. Is debconf installed?" msgstr "debconf ་་འà½à½¼à½“་རིམ་འདི་ལེན་མ་ཚུགས༠debconf འདི་གཞི་བཙུགས་འབད་ཡི་ག་?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་རྒྱ་བསà¾à¾±à½ºà½‘་à½à½¼à½‚་ཡིག་འདི་གནམ་མེད་ས་མེད་རིངམ་འདུག" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "སྣོད་à½à½¼à¼‹%s་ལས་སྦྱོར་འབདà½à¼‹à½‘་འཛོལ་བ་འà½à½¼à½“་ཡིà¼" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "འབྱུང་à½à½´à½„ས་རྒྱ་བསà¾à¾±à½ºà½‘་ཀྱི་à½à½¼à½‚་ཡིག་འདི་གནམ་མེད་ས་མེད་རིང་པསà¼" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "ནང་དོན་ཡིག་སྣོད་ལུ་མགོ་ཡིག་འཛོལ་བ་འབྲི་ནིའི་མགོ་ཡིག" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "%sའཛོལ་བ་ལས་སྦྱོར་འབད་ནིའི་ནང་དོནà¼" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -435,11 +435,11 @@ msgstr "" " -c=? འ་ནི་རིམ་སྒྲིག་ཡིག་སྣོད་འདི་ལྷག\n" " -o=? མà½à½´à½“་སྒྲིག་རིམ་སྒྲིག་གི་གདམ་à½à¼‹à½…ིག་གཞི་སྒྲིག་འབདà¼" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "སེལ་འà½à½´à¼‹à½šà½´à¼‹à½˜à½à½´à½“་སྒྲིག་མིན་འདུག" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "ཡིག་སྣོད་ལ་ལུ་ཅིག་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཡིག་སྣོད་སྡེ་ཚན་`%s'ནང་བརླག་སྟོར་ཞུགས་ནུག" @@ -552,7 +552,7 @@ msgstr "ཡིག་མཛོད་ལུ་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཅི msgid " %s has no override entry\n" msgstr " %sལུ་ཟུར་བཞག་à½à½¼à¼‹à½–ཀོད་མེདà¼\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s ་རྒྱུན་སà¾à¾±à½¼à½„་པ་འདི་ %s ཨིན་ %s མེནà¼\n" @@ -662,79 +662,79 @@ msgstr "%s་འབྲེལ་འà½à½´à½‘་མེདཔ་བཟོ་ནིà msgid "Failed to rename %s to %s" msgstr "%s་ལུ་%s་བསà¾à¾±à½¢à¼‹à½˜à½²à½„་བà½à½‚ས་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "à½à½ ིà¼" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "རི་ཇེགསི་ཕྱོགས་སྒྲིག་འཛོལ་བ་- %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་ལུ་རྟེན་འབྲེལ་མ་ཚང་པས:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "འདི་འབདà½à¼‹à½‘་%s་འདི་གཞི་བཙུགས་འབད་ཡོདà¼" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "འདི་འབདà½à¼‹à½‘་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིནà¼" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "འདི་འབདà½à¼‹à½‘་%s་འདི་གཟི་བཙུགས་འབད་མི་བà½à½´à½–་པསà¼" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "འདི་འབདà½à¼‹à½‘་ འདི་བར་ཅུ་ཡལ་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཅིག་ཨིན་པསà¼" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "འདི་འབདà½à¼‹à½‘་འདི་གཞི་བཙུགས་མ་འབད་བསà¼" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "འདི་འབདà½à¼‹à½‘་འདི་གཞི་བཙུགས་མི་འབད་ནི་ཨིན་པསà¼" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr "ཡང་ནà¼" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིས་གསརཔ་འདི་ཚུ་à½à½žà½²à¼‹à½–ཙུགས་འབད་འོང་:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་ཚུ་རྩ བསà¾à¾²à½‘་གà½à½„་འོང་:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་ཚུ་ལོག་སྟེ་རང་བཞག་ནུག:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་ཚུ་ཡར་བསà¾à¾±à½ºà½‘་འབད་འོང་:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲལ་འདི་ཚུ་མར་ཕབ་འབད་འོང་:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "འོག་གི་འཆང་ཡོད་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་བསྒྱུར་བཅོས་འབད་འོང་:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s( %s་གིས་སྦེ)" -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -742,65 +742,65 @@ msgstr "" "ཉེན་བརྡ:འོག་གི་ཉོ་མà½à½¼à¼‹à½–འི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་རྩ་བསà¾à¾²à½‘་གà½à½„་འོང་à¼\n" "à½à¾±à½¼à½‘་ཀྱིས་à½à¾±à½¼à½‘་རང་ག་ཅི་འབདà½à¼‹à½¨à½²à½“་ན་ངེས་སྦེ་མ་ཤེས་ཚུན་འདི་འབད་ནི་མི་འོང་à¼!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu་ཡར་བསà¾à¾±à½ºà½‘་འབད་ཡོད་ %lu་འདི་གསརཔ་སྦེ་གཞི་བཙུགས་འབད་ཡོདà¼" -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu་འདི་ལོག་གཞི་བཙུགས་འབད་ཡོདà¼" -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu་འདི་མར་ཕབ་འབད་ཡོདà¼" -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "རྩ་བསà¾à¾²à½‘་འབད་ནི་ལུ་%lu་དང་%lu་ཡར་བསà¾à¾±à½ºà½‘་མ་འབད་བསà¼\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu་འདི་ཆ་ཚང་སྦེ་གཞི་བཙུགས་མ་འབད་ཡང་ན་རྩ་བསà¾à¾²à½‘་མ་གà½à½„་པསà¼\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, fuzzy, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "དྲན་འཛིན་ རི་ཇེགསི་'%s'གི་དོན་ལུ་%s་སེལ་འà½à½´à¼‹à½ བད་དོà¼\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, fuzzy, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "དྲན་འཛིན་ རི་ཇེགསི་'%s'གི་དོན་ལུ་%s་སེལ་འà½à½´à¼‹à½ བད་དོà¼\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, fuzzy, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "(%s)གི་དོན་ལུ་སེལ་འà½à½´à¼‹à½ བད་ཡོད་པའི་འà½à½¼à½“་རིམ་'%s'(%s)\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "གྱིས་བྱིན་à½à½ºà¼‹à½¡à½¼à½‘་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་%s་འདི་བར་ཅུ་ཡལ་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཅིག་ཨིནà¼\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [གཞི་བཙུགས་འབད་ཡོདà¼]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 #, fuzzy msgid " [Not candidate version]" msgstr "མི་ངོ་འà½à½¼à½“་རིམཚུà¼" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "à½à¾±à½¼à½‘་ཀྱི་གཞི་བཙུགས་འབད་ནི་ལུ་གà½à½“་འà½à½£à¼‹à½¦à¾¦à½ºà¼‹à½‚ཅིག་སེལ་འà½à½´à¼‹à½ བད་དགོ" -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -811,172 +811,175 @@ msgstr "" "འདི་གིས་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཅིག་བརླག་སྟོར་ཞུགས་ཡོདཔ་ཨིནམ་སྟོནམ་ཨིནམ་དང་ ཕན་མེད་སྦེ་གནས་ཡོདཔ་ ཡང་ན་\n" "འདི་གཞན་འབྱུང་ཅིག་ནང་ལས་ལས་རà¾à¾±à½„མ་ཅིག་འà½à½¼à½–་ཚུགསཔ་ཨིན་པསà¼\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "ག་དེ་སྦེ་ཨིན་རུང་འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་གིས་ འདི་ཚབ་བཙུགསཔ་ཨིན:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, fuzzy, c-format msgid "Package '%s' has no installation candidate" msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་%s་ལུ་གཞི་བཙུགས་ཀྱི་མི་ངོ་མིན་འདུག" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, fuzzy, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "%s་གི་ཚབ་ལུ་%s་སེལ་འà½à½´à¼‹à½ བད་ནི་སེམས་à½à½¢à¼‹à½–ཞག\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" "%s་གོམ་འགྱོ་འབད་དོ་ འདི་ཧེ་མ་ལས་རང་གཞི་བཙུགས་འབད་འོདཔ་དང་དུས་ཡར་བསà¾à¾±à½ºà½‘་འབད་ནི་འདི་གཞི་སྒྲིག་མ་" "འབད་བསà¼\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, fuzzy, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" "%s་གོམ་འགྱོ་འབད་དོ་ འདི་ཧེ་མ་ལས་རང་གཞི་བཙུགས་འབད་འོདཔ་དང་དུས་ཡར་བསà¾à¾±à½ºà½‘་འབད་ནི་འདི་གཞི་སྒྲིག་མ་" "འབད་བསà¼\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "%s ་ལོག་གཞི་བཙུགས་འབད་ནི་འདི་མི་སྲིད་པ་ཅིག་ཨིན་པས་ འདི་ཕབ་ལེན་འབད་མི་བà½à½´à½–་པསà¼\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s ་འདི་ཧེ་མ་ལས་རང་འà½à½¼à½“་རིམ་གསར་ཤོས་ཅིག་ཨིནà¼\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "འདི་འབདà½à¼‹à½‘་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིནà¼" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་%s་འདི་གཞི་བཙུགས་མ་འབད་བས་ འདི་འབད་ནི་དི་གིས་རྩ་བསà¾à¾²à½‘་མ་གà½à½„་པསà¼à¼‹\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "རྟེན་འབྲེལ་ནོར་བཅོས་འབད་དོà¼" -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr "འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "རྟེན་འབྲེལ་འདི་ནོར་བཅོས་འབད་མི་ཚུགས་པསà¼" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "ཡར་བསà¾à¾±à½ºà½‘་འབད་ཡོད་པའི་ཆ་ཚན་འདི་ཆུང་ཀུ་བཟོ་མི་ཚུགས་པསà¼" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr "འབད་ཚར་ཡིà¼" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "འ་ནི་འདི་ཚུ་ནོར་བཅོས་འབད་ནི་ལུ་à½à¾±à½¼à½‘་ཀྱི་'apt-get -f install'དེ་གཡོག་བཀོལ་དགོཔ་འོང་à¼" -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "མ་ཚང་པའི་རྟེན་འབྲེལ་ཚུ༠-f ལག་ལེན་འà½à½–་སྟེ་འབད་རྩོལ་བསà¾à¾±à½ºà½‘à¼" -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ཉེན་བརྡ:འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་ཚུ་བདེན་བཤད་འབད་མི་བà½à½´à½–་པསà¼" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "བདེན་བཤད་ཉེན་བརྡ་འདི་ཟུར་འབད་ཡོདà¼\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "བདེན་སྦྱོར་མ་འབད་བར་འ་ནི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་ཚུ་གཞི་བཙུགས་འབད་ནི་ཨིན་ན་[y/N]? " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ལ་ལུ་ཅིག་བདེན་བཤད་འབད་མ་ཚུགསà¼" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "དཀའ་ངལ་ཚུ་ཡོདཔ་ལས་-y ་འདི་ --force-yes་མེདà½à½¼à½‚་ལས་ལག་ལེན་འà½à½–་སྟེ་ཡོདà¼" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" "ནང་འà½à½¼à½‘་ཀྱི་འཛོལ་བ་ གཞི་བཙུགས་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་ ཆད་པ་ཡོད་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་དང་གཅིག་à½à½¢à¼‹à½–ོད་བརྡ་འབད་འདི་" "ཡོད!" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་རྩ་བསà¾à¾²à½‘་བà½à½„་དགོཔ་འདུག་འདི་འབདགà½à¼‹à½‘་རྩ་བསà¾à¾²à½‘་གà½à½„་ནི་འདི་ལྕོགས་མིན་à½à½£à¼‹à½à½ºà¼‹à½ དུག" -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "ནང་འà½à½¼à½‘་འཛོལ་བ་ གོ་རིམ་བཟོ་ནི་ཚུ་མཇུག་མ་བསྡུ་བསà¼" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "འབྱུང་à½à½´à½„ས་ཚུ་ཀྱི་à½à½¼à¼‹à½¡à½²à½‚་དེ་ལྷག་མི་ཚུགས་པསà¼" - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" "ག་ཅི་གི་ཡ་མཚན་ཆེ་མི་ཆེ་ ཚད་འདི་གིས་ email apt@packages.debian.org་ལུ་མà½à½´à½“་སྒྲིག་མི་འབད་" "བསà¼" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "%sBལེན་ནི་ལུ་དགོཔ་པས༠ཡིག་མཛོད་ཚི་གི་%sB་\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "ཡིག་མཛོད་ཀྱི་%sB་འདི་ལེན་དགོ་པསà¼\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, fuzzy, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "à½à¼‹à½¦à¾à½¼à½„་གི་%sB་འདི་བཤུབ་པའི་ཤུལ་ལས་ཌིཀསི་གི་བར་སྟོང་དེ་ལག་ལེན་འà½à½–་འོང་à¼\n" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, fuzzy, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "%sB་འདི་ཤུབ་པའི་ཤུལ་ལས་ཀྱི་བར་སྟོང་དེ་དལà½à¼‹à½¦à¾¦à½ºà¼‹à½£à½´à½¦à¼‹à½ ོང་à¼\n" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "%s་ནང་བར་སྟོང་" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "%s ནང་à½à¾±à½¼à½‘་ལུ་བར་སྟོང་དལà½à¼‹à½£à½„མ་སྦེ་མིན་འདུག" -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "གལ་ཆུང་རà¾à¾±à½„མ་ཅིག་à½à½¦à½£à¼‹à½–ཀོད་འབད་ནུག་ འདི་འབདà½à¼‹à½‘་འ་ནི་འདི་གལ་ཆུང་གི་བཀོལ་སྤྱོད་མེནà¼" -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "ཨིན་ ང་གིས་སླབ་དོ་བཟུམ་སྦེ་རང་འབད!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -987,28 +990,28 @@ msgstr "" "འཕྲོ་མà½à½´à½‘་འབད་ནིའི་དོན་ལུ་'%s'ཚིག་ཚན་ནང་ལུ་ཡིག་དཔར་རà¾à¾±à½–སà¼\n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "བར་བཤོལ་འབདà¼" -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "à½à¾±à½¼à½“་ཀྱི་འཕྲོ་མà½à½´à½‘་ནི་འབད་ནི་ཨིན་ན་[Y/n]?" -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s %s་ ལེན་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "ཡིག་སྣོད་ལ་ལུ་ཅིག་ཕབ་ལེན་འབད་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "ཕབ་ལེན་à½à½–ས་ལམ་རà¾à¾±à½„མ་གཅིག་ནང་མཇུག་བསྡུà½à¼‹à½¦à¾¦à½ºà¼‹à½¢à½„་ཕབ་ལེན་འབདà¼" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1016,19 +1019,19 @@ msgstr "" "ཡིག་མཛོད་ལ་ལུ་ཅིག་ལེན་མི་ཚུགས་པས་ apt-get་དུས་མà½à½´à½“་བཟོ་ནི་གཡོག་བཀོལ་ནི་ཨིན་ན་ཡང་ན་--fix-" "missing་དང་གཅིག་à½à½¢à¼‹à½ བད་རྩོལ་བསà¾à¾±à½ºà½‘་ནི་ཨིན་ན་?" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing་དང་བརྡ་ལམ་བརྗེ་སོར་འབད་ནི་འདི་ད་ལྟོ་ལས་རང་རྒྱབ་སà¾à¾±à½¼à½¢à¼‹à½˜à½²à¼‹à½ བད་བསà¼" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "བརླག་སྟོར་ཞུགས་ཡོད་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ་ནོར་བཅོས་འབད་མི་ཚུགས་པསà¼" -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "གཞི་བཙུགས་བར་བཤོལ་འབད་དོà¼" -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1038,35 +1041,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "འབྱུང་à½à½´à½„ས་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གྱི་à½à½¼à¼‹à½¡à½²à½‚་%s་དེ་ངོ་བཤུས་འབད་མ་ཚུགསà¼" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "དུས་མà½à½´à½“་བཟོ་བའི་བརྡ་བཀོད་འདི་གིས་སྒྲུབ་རྟགས་ཚུ་མི་འབག་འབདà¼" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1076,7 +1079,7 @@ msgid_plural "" msgstr[0] "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིས་གསརཔ་འདི་ཚུ་à½à½žà½²à¼‹à½–ཙུགས་འབད་འོང་:" msgstr[1] "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིས་གསརཔ་འདི་ཚུ་à½à½žà½²à¼‹à½–ཙུགས་འབད་འོང་:" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1084,11 +1087,11 @@ msgid_plural "" msgstr[0] "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིས་གསརཔ་འདི་ཚུ་à½à½žà½²à¼‹à½–ཙུགས་འབད་འོང་:" msgstr[1] "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིས་གསརཔ་འདི་ཚུ་à½à½žà½²à¼‹à½–ཙུགས་འབད་འོང་:" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1104,24 +1107,24 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "འོག་གི་བརྡ་དོན་དེ་གིས་དུས་སà¾à½–ས་འདི་མོས་མà½à½´à½“་བཟོ་ནི་ལུ་གྲོགས་རམ་འབད་འོང་:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "ནང་འà½à½¼à½‘་འཛོལ་བ་ དཀའ་ངལ་མོས་མà½à½´à½“་འབད་མི་ཅ་ཆས་ཚུ་མེདཔ་à½à½£à¼‹à½¡à½¼à½‘à¼" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "ནང་འགོད་འཛོལ་བ་ ཡར་བསà¾à¾±à½ºà½‘་ཀྱི་ཅ་ཆས་ཆ་མཉམ་མེདཔ་à½à½£à¼‹à½¡à½¼à½‘à¼" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "འདི་ཚུ་ནོར་བཅོས་འབད་ནིའི་དོན་ལུ་à½à¾±à½¼à½‘་ཀྱི་'apt-get -f install'དེ་གཡོག་བཀོལ་དགོཔ་འོང་:" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1129,7 +1132,7 @@ msgstr "" "མ་ཚང་བའི་རྟེན་འབྲེལ་ à½à½´à½¦à¼‹à½¦à¾’ྲིལ་མེད་མི་ཚུ་དང་གཅིག་à½à½¢à¼‹ 'apt-get -f install'དེ་འབà½à¼‹à½¢à¾©à½¼à½£à¼‹à½–སà¾à¾±à½ºà½‘པà¼" "(ཡང་ན་à½à½–ས་ཤེས་ཅིག་གསལ་བཀོད་འབདà¼)" -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1140,69 +1143,69 @@ msgstr "" "འབད་འབདà½à¼‹à½ ོང་ནི་མས་ ཡང་ན་ད་ལྟོ་ཡང་གསར་བསà¾à¾²à½´à½“་མ་འབད་བར་ཡོད་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ལ་ལུ་ཅིག་ཡང་ན་ནང་" "འབྱོར་གྱི་ཕྱི་à½à½¢à¼‹à½¢à¾©à¼‹à½–སà¾à¾²à½‘་བà½à½„་ཡོད་པའི་རྩ་བརྟན་མེད་པའི་བགོ་འགྲེམ་ཚུ་ལག་ལེན་འà½à½–་དོ་ཡོདཔ་འོང་ནི་ཨིན་པསà¼" -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "ཆད་པ་ཡོད་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུà¼" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "འོག་གི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་à½à½ºà½–ས་ཚུ་གཞི་བཙུགས་འབད་འོང་:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "བསམ་འཆར་བཀོད་ཡོད་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "འོས་སྦྱོར་འབད་ཡོད་པའི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཚུ:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "%s་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འཚོལ་མ་à½à½¼à½–à¼" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "འདི་འབདà½à¼‹à½‘་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིནà¼" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "ཡར་བསà¾à¾±à½ºà½‘་རྩིས་བà½à½¼à½“་དོ་... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "འབད་ཚར་ཡིà¼" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "ནང་འà½à½¼à½‘་འཛོལ་བ་ དཀའ་ངལ་མོས་མà½à½´à½“་འབད་མི་ཅ་ཆས་ཚུ་མེདཔ་à½à½£à¼‹à½¡à½¼à½‘à¼" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "ཕབ་ལེན་འབད་ནིའི་སྣོད་ཡིག་འདི་ལྡེ་མིག་རà¾à¾±à½–ས་མ་ཚུགས་པསà¼" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 msgid "Must specify at least one package to fetch source for" msgstr "གི་དོན་ལུ་འབྱུང་à½à½´à½„ས་ལེན་ནི་ལུ་ཉུང་མà½à½ ་རང་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གཅིག་ལེན་དགོ" -#: cmdline/apt-get.cc:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "%s་གི་དོན་ལུ་འབྱུང་à½à½´à½„ས་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཅིག་འཚོལ་མ་འà½à½¼à½–" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1210,81 +1213,85 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "གོམ་འགྱོ་གིས་ཧེ་མ་ལས་རང་'%s'་ཡིག་སྣོད་དེ་ཕབ་ལེན་འབད་ནུག\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr " %s་ནང་à½à¾±à½¼à½‘་ལུ་བར་སྟོང་ཚུ་ལངམ་སྦེ་མིན་འདུག་" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "%sB་ལེན་དགོཔ་འདུག་ འབྱུང་à½à½´à½„ས་ཡིག་མཛོད་ཀྱི་%sBà¼\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "འབྱུང་à½à½´à½„ས་ཡིག་མཛོད་ཚུ་ཀྱི་%sB་ལེན་དགོ་པསསà¼\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "%s་འབྱུང་à½à½´à½„ས་ལེནà¼\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "ཡིག་མཛོད་ལ་ལུ་ཅིག་ལེན་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "%s་ནང་ཧེ་མ་ལས་སྦུང་ཚན་བཟོ་བཤོལ་ཨིན་མའི་སྦུང་ཚན་བཟོ་བཤོལ་གོམ་འགྱོ་འབད་དོà¼\n" -#: cmdline/apt-get.cc:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "'%s'སྦུང་ཚན་བཟོ་བཤོལ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "'dpkg-dev'་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་དེ་གཞི་བཙུགས་འབད་ཡོད་པ་ཅིན་ཨེབ་གà½à½„་འབདà¼\n" -#: cmdline/apt-get.cc:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "'%s'་བཟོ་བརྩིགས་བརྡ་བཀོད་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "ཆ་ལག་ལས་སྦྱོར་དེ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ནུག" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 msgid "Must specify at least one package to check builddeps for" msgstr "builddeps ཞིབ་དཔྱད་འབད་ནིའི་དོན་ལུ་ཉུང་མà½à½ ་རང་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གཅིག་གསལ་བཀོད་འབད་དགོ" -#: cmdline/apt-get.cc:2506 +#: cmdline/apt-get.cc:2524 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "%s་གི་དོན་ལུ་བཟོ་བརྩིགས་-རྟེན་འབྲེལ་བརྡ་དོན་དེ་ལེན་མ་ཚུགསà¼" -#: cmdline/apt-get.cc:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "%s ལུ་བཟོ་བརྩིགས་རྟེན་འབྲེལ་མིན་འདུག\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, 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:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1293,32 +1300,32 @@ msgstr "" "%s གི་དོན་ལུ་%s་རྟེན་འབྲེལ་འདི་གི་རེ་བ་སà¾à½¼à½„་མི་ཚུགས་ནུག་ག་ཅི་འབད་ཟེར་བ་ཅིན་à½à½´à½˜à¼‹à½¦à¾’རིལ་%s་གི་འà½à½¼à½“་རིམ་" "ཚུ་འà½à½¼à½–་མ་ཚུགསཔ་ལས་བརྟེན་འà½à½¼à½“་རིམ་དགོས་མà½à½¼à¼‹à½šà½´à¼‹à½‚ི་རེ་བ་དོ་སà¾à½¼à½„་མ་ཚུགས་པསà¼" -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "%s:གི་དོན་ལུ་%s་རྟེན་འབྲེལ་དེ་གི་རེ་བ་སà¾à½¼à½„་ནི་འདི་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདཔ་ཨིན་ གཞི་བཙུགས་འབད་ཡོད་པའི་à½à½´à½˜à¼‹" "སྒྲིལ་%s་དེ་གནམ་མེད་ས་མེད་གསརཔ་ཨིན་པསà¼" -#: cmdline/apt-get.cc:2693 +#: cmdline/apt-get.cc:2711 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "%s: %s་གི་དོན་ལུ་་%s་རྟེན་འབྲེལ་འདི་ངལ་རངས་འབད་ནི་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ནུག" -#: cmdline/apt-get.cc:2709 +#: cmdline/apt-get.cc:2727 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr " %s་གི་དོན་ལུ་བཟོ་བརྩིགས་-རྟེན་འབྲེལ་འདི་ངལ་རངས་མ་ཚུགས་པསà¼" -#: cmdline/apt-get.cc:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "བཟོ་བརྩིགས་རྟེན་འབྲེལ་འདི་ལས་སྦྱོར་འབད་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདཔ་ཨིནà¼" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "རྒྱབ་སà¾à¾±à½¼à½¢à¼‹à½ བད་ཡོད་པའི་ཚད་གཞི་ཚུ:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1407,7 +1414,7 @@ msgstr "" "ཤོག་ལེབ་ཚུ་ལུ་བལྟà¼\n" " འ་ནི་ ཨེ་ཊི་པི་འདི་ལུ་ཡང་དག་ ཀའུ་ ནུས་ཤུགས་ཚུ་ཡོདà¼\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1658,10 +1665,10 @@ msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་%s་ནང་ལུ་་ཡིག་སà #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1795,23 +1802,23 @@ msgstr "ནུས་ཅན་ཡོད་པའི་ཚད་འཛིན་ཡ msgid "Unparsable control file" msgstr "མིང་དཔྱད་འབད་མ་བà½à½´à½–་པའི་ཚད་འཛིན་ཡིག་སྣོདà¼" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "%s་གི་དོན་ལུ་རྒྱུད་དུང་འདི་à½à¼‹à½•à¾±à½ºà¼‹à½˜à¼‹à½šà½´à½‚སà¼" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "%s་ལས་སྦྱོར་ནང་ལས་འཛོལ་བ་ཚུ་ལྷག" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "ངོ་བཤུས་འབད་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "ཆུ་ཚོད་ལེགས་བཅོས་གཞི་སྒྲིག་འབà½à¼‹à½“ི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" @@ -1905,7 +1912,7 @@ msgstr "མà½à½´à½‘་ལམ་ངལ་མཚམས" msgid "Server closed the connection" msgstr "སར་བར་གྱིས་མà½à½´à½‘་ལམ་འདི་à½à¼‹à½–སྡམས་à½à½ºà¼‹à½¡à½¼à½‘པ་ཨིནà¼" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "འཛོལ་བ་ལྷབà¼" @@ -1917,7 +1924,7 @@ msgstr "ལན་གྱིས་ གནད་à½à½¼à½„ས་གུར་ལས༠msgid "Protocol corruption" msgstr "གནད་སྤེལ་ལམ་ལུགས་ ངན་ཅནà¼" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "འཛོལ་བ་འབྲིà¼" @@ -1971,7 +1978,7 @@ msgstr "གནད་སྡུད་སོ་ཀེཊི་ མà½à½´à½‘་ནའmsgid "Unable to accept connection" msgstr "མà½à½´à½‘་ལམ་འདི་དང་ལེན་འབད་མ་ཚུགསà¼" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "ཡིག་སྣོད་ལུ་་དྲà¾à¼‹à½¢à¾Ÿà½‚ས་བཀལ་བའི་བསྒང་དཀའ་ངལà¼" @@ -2106,68 +2113,68 @@ msgstr "%u་ཡིག་འབྲུ་ཚུ་གི་ལྟག་ལས་à msgid "Bad header line" msgstr "མགོ་ཡིག་གི་གྲལ་à½à½²à½‚་བྱང་ཉེསà¼" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ནུས་མེད་ལན་གསལ་གི་མགོ་ཡིག་ཅིག་བà½à½„་ཡོདà¼" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "ཨེཆི་ཊི་ཊི་པི་སར་བར་འདི་གིས་ནུས་མེད་ནང་དོན་རིང་-ཚད་ཀྱི་མགོ་ཡིག་ཅིག་བà½à½„་ཡོདà¼" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ ནུས་མེད་ ནང་དོན་-à½à¾±à½–་ཚད་ཀྱི་མགོ་ཡིག་ཅིག་བà½à½„་ཡོདà¼" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "འ་ནི་ ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ à½à¾±à½–་ཚད་ཀྱི་རྒྱབ་སà¾à¾±à½¼à½¢à¼‹à½‘ེ་ཆད་པ་བཟོ་བà½à½„་ནུག" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "མ་ཤེས་པའི་ཚེས་རྩ་སྒྲིག" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "སེལ་འà½à½´à¼‹à½ à½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "མà½à½´à½‘་ལམ་ངལ་མཚམས་འབད་ཡོདà¼" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "ཨའུཊི་པུཊི་ཡིག་སྣོད་ལུ་འབྲིà½à¼‹à½‘་འཛོལ་བà¼" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "ཡིག་སྣོད་ལུ་འབྲིà½à¼‹à½‘་འཛོལ་བà¼" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "ཡིག་སྣོད་འདི་ལུ་འབྲིà½à¼‹à½‘་འཛོལ་བà¼" -#: methods/http.cc:894 +#: methods/http.cc:900 msgid "Error reading from server. Remote end closed connection" msgstr "སར་བར་ནང་ལས་ལྷག་པའི་བསྒང་འཛོལ་བ༠à½à½‚་རིང་མཇུག་གི་མà½à½´à½‘་ལམ་དེ་à½à¼‹à½–སྡམསà¼" -#: methods/http.cc:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "སར་བར་ནང་ལས་ལྷག་པའི་བསྒང་འཛོལ་བà¼" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 #, fuzzy msgid "Failed to truncate file" msgstr "%s་ཡིག་སྣོད་འདི་འབྲི་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "མགོ་ཡིག་གནད་སྡུད་བྱང་ཉེསà¼" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "བà½à½´à½‘་ལམ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "ནང་འà½à½¼à½‘་འཛོལ་བà¼" @@ -2359,14 +2366,14 @@ msgstr "ནུས་མེད་བཀོལ་སྤྱོད་%s" msgid "Unable to stat the mount point %s" msgstr "སྦྱར་བརྩེགས་ས་ཚིགས་%s་འདི་ངོ་བཤུས་འབད་མ་ཚུགསà¼" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "%s་ལུ་བསྒྱུར་བཅོས་འབད་མ་ཚུགསà¼" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "སི་ཌི་རོམ་འདི་ངོ་བཤུས་འབད་ནི་ལུ་འà½à½´à½¦à¼‹à½¤à½¼à½¢à¼‹à½–ྱུང་ཡོདà¼" @@ -2391,149 +2398,149 @@ msgstr "" msgid "Could not get lock %s" msgstr "%sལྡེ་མིག་རà¾à¾±à½–་ནི་ལེན་མ་ཚུགསà¼" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "%s་གི་དོན་ལུ་བསྒུག་སྡོད་ཅི་ འདི་འབདà½à¼‹à½‘་ཕར་མིན་འདུག" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "ཡན་ལག་ལས་སྦྱོར་%s་ལུ་ཆ་བགོས་ཀྱི་སà¾à¾±à½¼à½“་ཅིག་à½à½¼à½–་ཡོདཔ་ཨིནà¼" -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "ཡན་ལག་ལས་སྦྱོར་%s་ལུ་ཆ་བགོས་ཀྱི་སà¾à¾±à½¼à½“་ཅིག་à½à½¼à½–་ཡོདཔ་ཨིནà¼" -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "ཡན་ལག་ལས་སྦྱོར་%s་གིས་འཛོལ་བའི་ཨང་རྟགས་(%u)ཅིག་སླར་ལོག་འབད་ཡོདཔ་ཨིནà¼" -#: apt-pkg/contrib/fileutl.cc:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "ཡན་ལག་ལས་སྦྱོར་་%s་གིས་རེ་བ་མེད་པར་ཕྱིར་à½à½¼à½“་ཡོདཔ་ཨིནà¼" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "%s་ཡིག་སྣོད་འདི་à½à¼‹à½•à¾±à½ºà¼‹à½˜à¼‹à½šà½´à½‚སà¼" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "%s་གི་དོན་ལུ་རྒྱུད་དུང་འདི་à½à¼‹à½•à¾±à½ºà¼‹à½˜à¼‹à½šà½´à½‚སà¼" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "ལྷག་ ད་ལྟོ་ཡང་ལྷག་ནི་ལུ་%lu་ཡོད་འདི་འབདà½à¼‹à½‘་ཅི་ཡང་ལྷག་ལུས་མིན་འདུག" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "འབྲི་ ད་ལྟོ་ཡང་འབྲི་ནི་ལུ་%lu་ཡོད་འདི་འདབà½à¼‹à½‘་འབད་མ་ཚུགསà¼" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, fuzzy, c-format msgid "Problem closing the gzip file %s" msgstr "ཡིག་སྣོད་འདི་à½à¼‹à½–སྡམས་པའི་བསྒང་དཀའ་ངལà¼" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "ཡིག་སྣོད་འདི་à½à¼‹à½–སྡམས་པའི་བསྒང་དཀའ་ངལà¼" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "ཡིག་སྣོད་མཉམ་བྱུང་འབདà½à¼‹à½‘་དཀའ་ངལà¼" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "ཡིག་སྣོད་འདི་འབྲེལལམ་མེདཔ་བཟོ་བའི་བསྒང་དཀའ་ངལà¼" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "ཡིག་སྣོད་མཉམ་བྱུང་འབདà½à¼‹à½‘་དཀའ་ངལà¼" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདྲ་མཛོད་སྟོངམà¼" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདྲ་མཛོད་ཡིག་སྣོད་འདི་ངན་ཅན་ཨིན་པསà¼" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིས་འདྲ་མཛོད་ཡིག་སྣོད་འདི་ མི་མà½à½´à½“་པའི་འà½à½¼à½“་རིམ་ཅིག་ཨིན་པསà¼" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "འ་ནི་ཨེ་པི་ཊི་ འདི་གིས་ '%s'འà½à½¼à½“་རིམ་བཟོ་ནིའི་རིམ་ལུགས་དེ་ལུ་རྒྱབ་སà¾à¾±à½¼à½¢à¼‹à½˜à½²à¼‹à½ བད་བསà¼" -#: apt-pkg/pkgcache.cc:163 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache was built for a different architecture" msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདྲ་མཛོད་འདི་བཟོ་བཀོད་སོ་སོ་ཅིག་གི་དོན་ལུ་བཟོ་བརྩིགས་འབད་འབདà½à¼‹à½¨à½²à½“པསà¼" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "རྟེནམ་ཨིནà¼" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "སྔོན་གོང་མ་རྟེནམ་ཨིནà¼" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "བསམ་འཆར་བཀོདཔ་ཨིནà¼" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "འོས་སྦྱོར་འབདà½à¼‹à½¨à½²à½“à¼" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "མི་མà½à½´à½“མ་ཨིནà¼" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "ཚབ་བཙུགསཔ་ཨིནà¼" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "ཕན་མེདཔ་བཟོà½à¼‹à½¨à½²à½“à¼" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "གལ་ཅནà¼" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "དགོས་མà½à½¼à¼‹à½¡à½¼à½‘པà¼" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "ཚད་ལྡནà¼" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "གདམ་à½à¼‹à½…ནà¼" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "à½à½ºà½–སà¼" @@ -2652,7 +2659,7 @@ msgstr "དབྱེ་བ་'%s'་འདི་གྲལ་à½à½²à½‚་%u་ག #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" @@ -2671,7 +2678,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" @@ -2688,7 +2695,7 @@ msgstr "" "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་%s་འདི་ལོག་འདི་རང་གཞི་བཙུགས་འབད་དགོཔ་འདུག་ འདི་འབདà½à¼‹à½‘་འདི་གི་དོན་ལུ་ཡིག་མཛོད་ཅིག་འཚོལ་" "མ་à½à½¼à½–à¼" -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2696,11 +2703,11 @@ msgstr "" "འཛོལ་བ་ pkgProblemResolver::གིས་བཟོ་བà½à½¼à½“་འབད་ཡོད་པའི་མཚམས་དེ་ཚུ་མོས་མà½à½´à½“་བཟོà½à¼‹à½¨à½²à½“ འ་ནི་à½à½´à½˜à¼‹" "སྒྲིལ་ཚུ་འཛིན་པའི་རྒྱུ་རà¾à¾±à½ºà½“་ལས་བརྟེན་ཨིན་པསà¼" -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "དཀའ་ངལ་འདི་ནོར་བཅོས་འབད་མ་ཚུགས་ à½à¾±à½¼à½‘་ཀྱི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ཆད་པ་ཚུ་འཆང་འདི་འདུག" -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2725,12 +2732,12 @@ msgstr "à½à½¼à¼‹à½–ཀོད་འབད་ཡོད་པའི་སྣོད #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "%li་ གི་བརླག་སྟོར་ཞུགས་པའི་ཡིག་སྣོད་%li (%s ལྷག་ལུས་དོà¼)" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr " %li་གི་བརླག་སྟོར་ཟུགསཔའི་ཡིག་སྣོད་ %li" @@ -2750,12 +2757,12 @@ msgstr "à½à½–ས་ལམ་ %s འདི་ངེས་བདེན་སྦའmsgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "à½à¼‹à½¡à½²à½‚་བཀོད་ཡོད་པའི་ ཌིསི་འདི་བཙུགས་གནང་༠'%s'འདྲེན་འཕྲུལ་ནང་'%s' དང་ལོག་ལྡེ་འདི་ཨེབà¼à¼‹" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "སྦུང་ཚན་བཟོ་ནིའི་རིམ་ལུགས་ '%s' འདི་ལུ་རྒྱབ་སà¾à¾±à½¼à½¢à¼‹à½˜à¼‹à½ བད་བསà¼" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "འོས་འབབ་དང་ལྡན་པའི་སྦུང་ཚན་རིམ་ལུགས་ཀྱི་དབྱེ་བ་ཅིག་གà½à½“་འབེབས་བཟོ་མི་ཚུགས་པསà¼" @@ -2777,17 +2784,21 @@ msgstr "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གྱི་à½à½¼à¼‹à½¡à½²à½‚་ཡང་ msgid "You may want to run apt-get update to correct these problems" msgstr "འ་ནི་དཀའ་ངལ་འདི་ཚུ་སེལ་ནིའི་ལུ་ à½à¾±à½¼à½‘་ཀྱི་ apt-get update་དེ་གཡོག་བཀོལ་དགོཔ་འོང་à¼" -#: apt-pkg/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "འབྱུང་à½à½´à½„ས་ཚུ་ཀྱི་à½à½¼à¼‹à½¡à½²à½‚་དེ་ལྷག་མི་ཚུགས་པསà¼" + +#: apt-pkg/policy.cc:344 #, fuzzy, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "དགའ་གདམ་ཡིག་སྣོད་ནང་ལུ་ནུས་མེད་ཀྱི་དྲན་à½à½¼à¼‹ à½à½´à½˜à¼‹à½¦à¾’ྲིལ་མགོ་ཡིག་མིན་འདུག" -#: apt-pkg/policy.cc:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "ངོ་རྟགས་ཨང་གི་དབྱེ་བ་ %s འདི་ཧ་གོ་མ་ཚུགསà¼" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "གོ་རྟགས་ཨང་གི་དོན་ལུ་ གཙོ་རིམ་(ཡང་ན་ ཀླད་ཀོར་)ཚུ་གསལ་བཀོད་མ་འབད་བསà¼" @@ -2890,42 +2901,42 @@ msgstr "%s (%s -> %s)བསà¾à¾±à½¢à¼‹à½˜à½²à½„་བà½à½‚ས་ནི་འའmsgid "MD5Sum mismatch" msgstr "ཨེམ་ཌི་༥་ à½à¾±à½¼à½“་བསྡོམས་མ་མà½à½´à½“་པà¼" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 #, fuzzy msgid "Hash Sum mismatch" msgstr "ཨེམ་ཌི་༥་ à½à¾±à½¼à½“་བསྡོམས་མ་མà½à½´à½“་པà¼" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 msgid "There is no public key available for the following key IDs:\n" msgstr "འོག་གི་ ཨའི་ཌི་་ ལྡེ་མིག་ཚུ་གི་དོན་ལུ་མི་དམང་གི་ལྡེ་མིག་འདི་འà½à½¼à½–་མི་ཚུགས་པས:\n" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2934,7 +2945,7 @@ msgstr "" " %s་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གི་དོན་ལུ་ང་་གི་ཡིག་སྣོད་ཅིག་ག་ཡོད་འཚོལ་མི་འà½à½¼à½–་པས༠འདི་འབདà½à¼‹à½£à½¦à¼‹à½à¾±à½¼à½‘་ཀྱི་ལག་à½à½¼à½‚་ལས་ " "འ་ནི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་གི་དཀའ་ངལ་སེལ་དགོཔ་འདུག (arch འདི་བྱིག་སོངམ་ལས་བརྟེནà¼)" -#: apt-pkg/acquire-item.cc:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2943,14 +2954,14 @@ msgstr "" " %s་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གི་དོན་ལུ་ང་་གི་ཡིག་སྣོད་ཅིག་ག་ཡོད་འཚོལ་མི་འà½à½¼à½–་པས༠འདི་འབདà½à¼‹à½£à½¦à¼‹à½à¾±à½¼à½‘་ཀྱི་ལག་à½à½¼à½‚་ལས་ " "འ་ནི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་གི་དཀའ་ངལ་སེལ་དགོཔ་འདུག " -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" "à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ ཟུར་à½à½¼à¼‹à½¡à½²à½‚་སྣོད་ཚུ་ངན་ཅན་འགྱོ་ནུག ཡིག་སྣོད་ཀྱི་མིང་མིན་འདུག: %s་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་གྱི་དོན་ལུ་ས་སྒོà¼" -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "ཚད་མ་མà½à½´à½“à¼" @@ -3072,39 +3083,39 @@ msgstr "འབྱུང་à½à½´à½„ས་ཀྱི་à½à½¼à¼‹à½¡à½²à½‚་གས msgid "Source list entries for this disc are:\n" msgstr "འ་ནི་ ཌིསིཀ་གི་དོན་ལུ་ འབྱུང་à½à½´à½„ས་ཧྲིལ་བུ་ཚུ་:\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "%i་དྲན་མà½à½¼à¼‹à½‘ེ་ཚུ་བྲིས་ཡོདà¼\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i བྱིག་འགྱོ་ཡོད་པའི་ཡིག་སྣོད་ཚུ་དང་གཅིག་à½à½¢à¼‹ %i དྲན་à½à½¼à¼‹à½ དི་ཚུ་བྲིས་ཡོདà¼\n" -#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i་མà½à½´à½“་སྒྲིག་མེདཔ་པའི་ཡིག་སྣོད་ཚུ་དང་གཅིག་à½à½¢à¼‹ %i་དྲན་à½à½¼à¼‹à½šà½´à¼‹à½–ྲིས་བཞག་ཡོདཔ་ཨིནà¼\n" -#: apt-pkg/indexcopy.cc:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" "%i བྱིག་འགྱོ་ཡོད་པའི་ཡིག་སྣོད་ཚུ་དང་ %iམà½à½´à½“་སྒྲིག་མེད་པའི་ཡིག་སྣོད་ཚུ་དང་གཅིག་à½à½¢à¼‹ %i དྲན་à½à½¼à¼‹à½ དི་ཚུ་བྲིས་" "ཡོདཔ་ཨིནà¼\n" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, fuzzy, c-format msgid "Skipping nonexistent file %s" msgstr "རིམ་སྒྲིག་ཡིག་སྣོད་%s་འདི་à½à¼‹à½•à¾±à½ºà¼‹à½‘ོà¼" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, fuzzy, c-format msgid "Hash mismatch for: %s" msgstr "ཨེམ་ཌི་༥་ à½à¾±à½¼à½“་བསྡོམས་མ་མà½à½´à½“་པà¼" @@ -3161,12 +3172,12 @@ msgstr "" msgid "Installing %s" msgstr "གཞི་བཙུགས་འབད་ཡོད་པའི་%sà¼" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "%s་རིམ་སྒྲིག་འབད་དོà¼" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "%s་རྩ་བསà¾à¾²à½‘་གà½à½„་དོà¼" @@ -3186,92 +3197,93 @@ msgstr "" msgid "Running post-installation trigger %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, fuzzy, c-format msgid "Directory '%s' missing" msgstr "à½à½¼à¼‹à½–ཀོད་འབད་མི་སྣོད་à½à½¼à¼‹%s་ཆ་ཤས་འདི་བརླག་སྟོར་ཟུགས་à½à½ºà¼‹à½ དུག" -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, fuzzy, c-format msgid "Could not open file '%s'" msgstr "%s་ཡིག་སྣོད་འདི་à½à¼‹à½•à¾±à½ºà¼‹à½˜à¼‹à½šà½´à½‚སà¼" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "%s་ གྲ་སྒྲིག་འབད་དོà¼" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr " %s་ གི་སྦུང་ཚན་བཟོ་བཤོལ་འབད་དོà¼" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "%s་ རིམ་སྒྲིག་ལུ་གྲ་སྒྲིག་འབད་དོà¼" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "གཞི་བཙུགས་འབད་ཡོད་པའི་%sà¼" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "%s་ རྩ་བསà¾à¾²à½‘་གà½à½„་ནིའི་དོན་ལུ་གྲ་སྒྲིག་འབད་དོà¼" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "རྩ་བསà¾à¾²à½‘་བà½à½„་ཡོད་པའི་%s" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "%s མཇུག་བསྡུà½à¼‹à½¦à¾¦à½ºà¼‹à½¢à½„་རྩ་བསà¾à¾²à½‘་གà½à½„་ནིའི་དོན་ལུ་གྲ་སྒྲིག་འབད་དོà¼" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "%s མཇུག་བསྡུà½à¼‹à½¦à¾¦à½ºà¼‹à½¢à½„་རྩ་བསà¾à¾²à½‘་བà½à½„་ཡོདà¼" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_el\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+0200\n" "PO-Revision-Date: 2008-08-26 18:25+0300\n" "Last-Translator: quad-nrg.net <yodesy@quad-nrg.net>\n" "Language-Team: Greek <debian-l10n-greek@lists.debian.org>\n" @@ -160,14 +160,14 @@ msgstr " Καθήλωση ΠακÎτου: " msgid " Version table:" msgstr " Πίνακας Έκδοσης:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s για %s είναι μεταγλωττισμÎνο σε %s %s\n" -#: cmdline/apt-cache.cc:1739 +#: cmdline/apt-cache.cc:1745 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -335,31 +335,31 @@ msgstr "ΑδÏνατη η εγγÏαφή στο %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Δεν βÏÎθηκε η Îκδοση του debconf. Είναι το debconf εγκατεστημÎνο;" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "Ο κατάλογος επεκτάσεων του πακÎτου είναι υπεÏβολικά μακÏÏÏ‚" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "Σφάλμα επεξεÏγασίας του καταλόγου %s" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "Ο κατάλογος επεκτάσεων των πηγών είναι υπεÏβολικά μακÏÏÏ‚" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "Σφάλμα εγγÏαφής κεφαλίδων στο αÏχείο πεÏιεχομÎνων" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "Σφάλμα επεξεÏγασίας πεÏιεχομÎνων του %s" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -443,11 +443,11 @@ msgstr "" " -c=? ΧÏήση Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… αÏχείου Ïυθμίσεων\n" " -o=? ΟÏισμός αυθαίÏετης επιλογής ÏÏθμισης" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "Δεν ταιÏιαξε καμία επιλογή" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Λείπουν μεÏικά αÏχεία από την ομάδα πακÎτων '%s'" @@ -560,7 +560,7 @@ msgstr "Η αÏχειοθήκη δεν πεÏιÎχει πεδίο πακÎτωΠmsgid " %s has no override entry\n" msgstr " %s δεν πεÏιÎχει εγγÏαφή παÏάκαμψης\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s συντηÏητής είναι ο %s όχι ο %s\n" @@ -670,79 +670,79 @@ msgstr "Î Ïόβλημα κατά την αποσÏνδεση του %s" msgid "Failed to rename %s to %s" msgstr "Αποτυχία μετονομασίας του %s σε %s" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "σφάλμα μεταγλωτισμου - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "Τα ακόλουθα πακÎτα Îχουν ανεπίλυτες εξαÏτήσεις:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "αλλά το %s είναι εγκατεστημÎνο" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "αλλά το %s Ï€Ïόκειται να εγκατασταθεί" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "αλλά δεν είναι εγκαταστάσημο" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "αλλά είναι Îνα εικονικό πακÎτο" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "αλλά δεν είναι εγκατεστημÎνο" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "αλλά δεν Ï€Ïόκειται να εγκατασταθεί" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " η" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "Τα ακόλουθα ÎΕΑ πακÎτα θα εγκατασταθοÏν:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "Τα ακόλουθα πακÎτα θα ΑΦΑΙΡΕΘΟΥÎ:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "Τα ακόλουθα πακÎτα θα μείνουν ως Îχουν:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "Τα ακόλουθα πακÎτα θα αναβαθμιστοÏν:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "Τα ακόλουθα πακÎτα θα ΥΠΟΒΑΘΜΙΣΤΟΥÎ:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "Τα ακόλουθα κÏατημÎνα πακÎτα θα αλλαχθοÏν:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (λόγω του %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -750,65 +750,65 @@ msgstr "" "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Τα ακόλουθα απαÏαίτητα πακÎτα θα αφαιÏεθοÏν\n" "Αυτό ΔΕΠθα ÎÏ€Ïεπε να συμβεί, εκτός αν ξÎÏετε τι ακÏιβώς κάνετε!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu αναβαθμίστηκαν, %lu νÎο εγκατεστημÎνα, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu επανεγκατεστημÎνα," -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu υποβαθμισμÎνα, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu θα αφαιÏεθοÏν και %lu δεν αναβαθμίζονται.\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu μη πλήÏως εγκατεστημÎνα ή αφαιÏÎθηκαν.\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, fuzzy, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "Σημείωση, επιλÎχτηκε το %s στη θÎση του '%s'\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, fuzzy, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "Σημείωση, επιλÎχτηκε το %s στη θÎση του '%s'\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, fuzzy, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "ΕπιλÎχθηκε η Îκδοση %s (%s) για το%s\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "Το πακÎτο %s είναι εικονικό και παÏÎχεται από τα:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [ΕγκατεστημÎνα]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 #, fuzzy msgid " [Not candidate version]" msgstr "Υποψήφιες Εκδόσεις" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "Θα Ï€ÏÎπει επακÏιβώς να επιλÎξετε Îνα για εγκατάσταση." -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -820,174 +820,177 @@ msgstr "" "Αυτό σημαίνει ότι το πακÎτο αυτό λείπει, είναι παλαιωμÎνο, ή είναι διαθÎσιμο " "από άλλη πηγή\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "ΠάÏαυτα το ακόλουθο πακÎτο το αντικαθιστά:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, fuzzy, c-format msgid "Package '%s' has no installation candidate" msgstr "Το πακÎτο %s δεν είναι υποψήφιο για εγκατάσταση" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, fuzzy, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "Σημείωση, επιλÎχθηκε το %s αντί του%s\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" "ΠαÏάκαμψη του %s, είναι εγκατεστημÎνο και η αναβάθμιση δεν Îχει οÏιστεί.\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, fuzzy, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" "ΠαÏάκαμψη του %s, είναι εγκατεστημÎνο και η αναβάθμιση δεν Îχει οÏιστεί.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" "Η επανεγκατάσταση του %s δεν είναι εφικτή, δεν είναι δυνατή η μεταφόÏτωσή " "του\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "το %s είναι ήδη η τελευταία Îκδοση.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, c-format msgid "%s set to manually installed.\n" msgstr "το %s Îχει εγκατασταθεί με το χÎÏι\n" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "Το πακÎτο %s δεν είναι εγκατεστημÎνο και δεν θα αφαιÏεθεί\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "ΔιόÏθωση εξαÏτήσεων..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " απÎτυχε." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "ΑδÏνατη η διόÏθωση των εξαÏτήσεων" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "ΑδÏνατη η ελαχιστοποίηση του συνόλου αναβαθμίσεων" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " Ετοιμο" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "" "Ίσως να Ï€ÏÎπει να Ï„ÏÎξετε apt-get -f install για να διοÏθώσετε αυτά τα " "Ï€Ïοβλήματα." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "Ανεπίλυτες εξαÏτήσεις. Δοκιμάστε με το -f." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Τα ακόλουθα πακÎτα δεν εξακÏιβώθηκαν!" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "ΠαÏάκαμψη Ï€Ïοειδοποίησης ταυτοποίησης.\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "Εγκατάσταση των πακÎτων χωÏίς επαλήθευση [ν/Ο]; " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "ΜεÏικά πακÎτα δεν εξαακÏιβώθηκαν" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "ΥπάÏχουν Ï€Ïοβλήματα και δώσατε -y χωÏίς το --force-yes" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "ΕσωτεÏικό σφάλμα, Îγινε κλήση του Install Packages με σπασμÎνα πακÎτα!" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "" "ΜεÏικά πακÎτα Ï€ÏÎπει να αφαιÏεθοÏν αλλά η ΑφαίÏεση είναι απενεÏγοποιημÎνη." -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "ΕσωτεÏικό Σφάλμα, η Ταξινόμηση δεν ολοκληÏώθηκε" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "ΑδÏνατη η ανάγνωση της λίστας πηγών." - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" "Î Î¿Î»Ï Ï€ÎµÏίεÏγο! Τα μεγÎθη δεν ταιÏιάζουν, στείλτε μήνυμα στο apt@packages." "debian.org" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "ΧÏειάζεται να μεταφοÏτωθοÏν %sB/%sB από αÏχεία.\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "ΧÏειάζεται να μεταφοÏτωθοÏν %sB από αÏχεία.\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" "Μετά από αυτή τη λειτουÏγία, θα χÏησιμοποιηθοÏν %sB χώÏου από το δίσκο.\n" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Μετά από αυτή τη λειτουÏγία, θα ελευθεÏωθοÏν %sB χώÏου από το δίσκο.\n" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "Δεν μπόÏεσα να Ï€ÏοσδιοÏίσω τον ελεÏθεÏο χώÏο στο %s" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "Δεν διαθÎτετε αÏκετό ελεÏθεÏο χώÏο στο %s." -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "ΚαθοÏίσατε συνηθισμÎνο, αλλά αυτή δεν είναι μια συνηθισμÎνη εÏγασία" -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "Îαι, κανε ότι λÎω!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -998,28 +1001,28 @@ msgstr "" "Για να συνεχίσετε πληκτÏολογήστε τη φÏάση '%s'\n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "Εγκατάλειψη." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "ΘÎλετε να συνεχίσετε [Î/ο]; " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Αποτυχία ανάκτησης του %s %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "Για μεÏικά αÏχεία απÎτυχε η μεταφόÏτωση" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "ΟλοκληÏώθηκε η μεταφόÏτωση μόνο" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1027,20 +1030,20 @@ msgstr "" "ΑδÏνατη η μεταφόÏτωση μεÏικών αÏχείων, ίσως αν δοκιμάζατε με apt-get update " "ή το --fix-missing;" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "" "ο συνδυασμός --fix-missing με εναλλαγή μÎσων δεν υποστηÏίζεται για την ÏŽÏα" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "ΑδÏνατη η επίλυση των χαμÎνων πακÎτων." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "Εγκατάλειψη της εγκατάστασης." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1050,36 +1053,36 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "ΑδÏνατη η εÏÏεση της κατάστασης της λίστας πηγαίων πακÎτων %s" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "Η εντολή update δεν παίÏνει οÏίσματα" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "Δεν επιτÏÎπεται οποιαδήποτε διαγÏαφή· αδυναμία εκκίνησης του AutoRemover" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1091,7 +1094,7 @@ msgstr[0] "" msgstr[1] "" "Τα ακόλουθα πακÎτα εγκαταστάθηκαν αυτόματα και δεν χÏειάζονται πλÎον:" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1101,11 +1104,11 @@ msgstr[0] "" msgstr[1] "" "Τα ακόλουθα πακÎτα εγκαταστάθηκαν αυτόματα και δεν χÏειάζονται πλÎον:" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "ΧÏησιμοποιήστε 'apt-get autoremove' για να τα διαγÏάψετε." -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1123,23 +1126,23 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "Οι ακόλουθες πληÏοφοÏίες ίσως βοηθήσουν στην επίλυση του Ï€Ïοβλήματος:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" msgstr "ΕσωτεÏικό Σφάλμα, το AutoRemover δημιοÏÏγησε κάποιο Ï€Ïόβλημα" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "ΕσωτεÏικό Σφάλμα, η διαδικασία αναβάθμισης χάλασε" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Aν Ï„ÏÎξετε 'apt-get -f install' ίσως να διοÏθώσετε αυτά τα Ï€Ïοβλήματα:" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1147,7 +1150,7 @@ msgstr "" "Ανεπίλυτες εξαÏτήσεις. Δοκιμάστε 'apt-get -f install' χωÏίς να οÏίσετε " "πακÎτο (ή καθοÏίστε μια λÏση)." -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1159,73 +1162,73 @@ msgstr "" "διανομή, ότι μεÏικά από τα πακÎτα δεν Îχουν ακόμα δημιουÏγηθεί ή Îχουν\n" "μετακινηθεί από τα εισεÏχόμενα." -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "ΧαλασμÎνα πακÎτα" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "Τα ακόλουθα επιπλÎον πακÎτα θα εγκατασταθοÏν:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "Î Ïοτεινόμενα πακÎτα:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "Συνιστώμενα πακÎτα:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "ΑδÏνατη η εÏÏεση του πακÎτου %s" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "το %s Îχει εγκατασταθεί με το χÎÏι\n" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "Υπολογισμός της αναβάθμισης... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "ΑπÎτυχε" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "Ετοιμο" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "" "ΕσωτεÏικό Σφάλμα, η Ï€Ïοσπάθεια επίλυσης του Ï€Ïοβλήματος \"Îσπασε\" κάποιο " "υλικό" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "ΑδÏνατο το κλείδωμα του καταλόγου μεταφόÏτωσης" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 msgid "Must specify at least one package to fetch source for" msgstr "" "Θα Ï€ÏÎπει να καθοÏίσετε τουλάχιστον Îνα πακÎτο για να μεταφοÏτώσετε τον " "κωδικάτου" -#: cmdline/apt-get.cc:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "Αδυναμία ÎµÎ½Ï„Î¿Ï€Î¹ÏƒÎ¼Î¿Ï Ï„Î¿Ï… κώδικά του πακÎτου %s" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1233,75 +1236,79 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "ΠαÏάκαμψη του ήδη μεταφοÏτωμÎνου αÏχείου `%s`\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "Δεν διαθÎτετε αÏκετό ελεÏθεÏο χώÏο στο %s" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "ΧÏειάζεται να μεταφοÏτωθοÏν %sB/%sB πηγαίου κώδικα.\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "ΧÏειάζεται να μεταφοÏτωθοÏν %sB πηγαίου κώδικα.\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "ΜεταφόÏτωση Κωδικα %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "Αποτυχία μεταφόÏτωσης μεÏικών αÏχειοθηκών." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "ΠαÏάκαμψη της αποσυμπίεσης ήδη μεταφοÏτωμÎνου κώδικα στο %s\n" -#: cmdline/apt-get.cc:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "ΑπÎτυχε η εντολή αποσυμπίεσης %s\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "ΕλÎγξτε αν είναι εγκαταστημÎνο το πακÎτο 'dpkg-dev'.\n" -#: cmdline/apt-get.cc:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "ΑπÎτυχε η εντολή χτισίματος %s.\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "Η απογονική διεÏγασία απÎτυχε" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 msgid "Must specify at least one package to check builddeps for" msgstr "" "Θα Ï€ÏÎπει να καθοÏίσετε τουλάχιστον Îνα πακÎτο για Îλεγχο των εξαÏτήσεων του" -#: cmdline/apt-get.cc:2506 +#: cmdline/apt-get.cc:2524 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "ΑδÏνατη η εÏÏεση πληÏοφοÏιών χτισίματος για το %s" -#: cmdline/apt-get.cc:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "το %s δεν Îχει εξαÏτήσεις χτισίματος.\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1309,7 +1316,7 @@ msgid "" msgstr "" "%s εξαÏτήσεις για το %s δεν ικανοποιοÏνται επειδή το πακÎτο %s δεν βÏÎθηκε" -#: cmdline/apt-get.cc:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1318,32 +1325,32 @@ msgstr "" "%s εξαÏτήσεις για το %s δεν ικανοποιοÏνται επειδή δεν υπάÏχουν διαθÎσιμες " "εκδόσεις του πακÎτου %s που να ικανοποιοÏν τις απαιτήσεις Îκδοσης" -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Αποτυχία ικανοποίησης %s εξαÏτήσεων για το %s: Το εγκατεστημÎνο πακÎτο %s " "είναι νεώτεÏο" -#: cmdline/apt-get.cc:2693 +#: cmdline/apt-get.cc:2711 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Αποτυχία ικανοποίησης %s εξάÏτησης για το %s: %s" -#: cmdline/apt-get.cc:2709 +#: cmdline/apt-get.cc:2727 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Οι εξαÏτήσεις χτισίματος για το %s δεν ικανοποιοÏνται." -#: cmdline/apt-get.cc:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "Αποτυχία επεξεÏγασίας εξαÏτήσεων χτισίματος" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "ΥποστηÏιζόμενοι Οδηγοί:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1428,7 +1435,7 @@ msgstr "" "για πεÏισσότεÏες πληÏοφοÏίες και επιλογÎÏ‚.\n" " This APT has Super Cow Powers.\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1678,10 +1685,10 @@ msgstr "Το αÏχείο %s/%s αντικαθιστά αυτό στο πακÎÏ #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1817,23 +1824,23 @@ msgstr "Αποτυχία ÎµÎ½Ï„Î¿Ï€Î¹ÏƒÎ¼Î¿Ï ÎµÎ½ÏŒÏ‚ ÎγκυÏου αÏχεί msgid "Unparsable control file" msgstr "Μη αναλÏσιμο αÏχείο control" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "ΑδÏνατο το άνοιγμα διασωλήνωσης για το %s" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "Σφάλμα ανάγνωσης από τη διεÏγασία %s" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "Αποτυχία εÏÏεσης της κατάστασης" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "Αποτυχία οÏÎ¹ÏƒÎ¼Î¿Ï Ï„Î¿Ï… χÏόνου Ï„Ïοποποίησης" @@ -1926,7 +1933,7 @@ msgstr "Λήξη χÏόνου σÏνδεσης" msgid "Server closed the connection" msgstr "Ο διακομιστής Îκλεισε την σÏνδεση" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "Σφάλμα ανάγνωσης" @@ -1938,7 +1945,7 @@ msgstr "Το μήνυμα απάντησης υπεÏχείλισε την ενΠmsgid "Protocol corruption" msgstr "Αλλοίωση του Ï€Ïωτοκόλλου" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "Σφάλμα εγγÏαφής" @@ -1992,7 +1999,7 @@ msgstr "Λήξη χÏόνου σÏνδεσης στην υποδοχή δεδοΠmsgid "Unable to accept connection" msgstr "ΑδÏνατη η αποδοχή συνδÎσεων" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "Î Ïόβλημα κατά το hashing του αÏχείου" @@ -2129,69 +2136,69 @@ msgstr "Λήψη μίας και μόνης γÏαμμής επικεφαλίδΠmsgid "Bad header line" msgstr "Ελαττωματική γÏαμμή επικεφαλίδας" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "Ο διακομιστής http Îστειλε μια άκυÏη επικεφαλίδα απάντησης" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "Ο διακομιστής http Îστειλε μια άκυÏη επικεφαλίδα Content-Length" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "Ο διακομιστής http Îστειλε μια άκυÏη επικεφαλίδα Content-Range" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "Ο διακομιστής http δεν υποστηÏίζει πλήÏως το range" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "Άγνωστη μοÏφή ημεÏομηνίας" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "Η επιλογή απÎτυχε" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "Λήξη χÏόνου σÏνδεσης" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "Σφάλμα στην εγγÏαφή στο αÏχείο εξόδου" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "Σφάλμα στην εγγÏαφή στο αÏχείο" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "Σφάλμα στην εγγÏαφή στο αÏχείο" -#: methods/http.cc:894 +#: methods/http.cc:900 msgid "Error reading from server. Remote end closed connection" msgstr "" "Σφάλμα στην ανάγνωση από το διακομιστή, το άλλο άκÏο Îκλεισε τη σÏνδεση" -#: methods/http.cc:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "Σφάλμα στην ανάγνωση από το διακομιστή" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 #, fuzzy msgid "Failed to truncate file" msgstr "Αποτυχία εγγÏαφής του αÏχείου %s" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "Ελαττωματικά δεδομÎνα επικεφαλίδας" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "Η σÏνδεση απÎτυχε" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "ΕσωτεÏικό Σφάλμα" @@ -2386,14 +2393,14 @@ msgstr "Μη ÎγκυÏη λειτουÏγία %s" msgid "Unable to stat the mount point %s" msgstr "ΑδÏνατη η εÏÏεση της κατάστασης του σημείου επαφής %s" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "ΑδÏνατη η αλλαγή σε %s" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "ΑδÏνατη η εÏÏεση της κατάστασης του cdrom" @@ -2420,149 +2427,149 @@ msgstr "" msgid "Could not get lock %s" msgstr "ΑδÏνατο το κλείδωμα %s" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Αναμονή του %s, αλλά δε βÏισκόταν εκεί" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Η υποδιεÏγασία %s Îλαβε Îνα σφάλμα καταμεÏÎ¹ÏƒÎ¼Î¿Ï (segfault)" -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "Η υποδιεÏγασία %s Îλαβε Îνα σφάλμα καταμεÏÎ¹ÏƒÎ¼Î¿Ï (segfault)" -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Η υποδιεÏγασία %s επÎστÏεψε Îνα κωδικός σφάλματος (%u)" -#: apt-pkg/contrib/fileutl.cc:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Η υποδιεÏγασία %s εγκατÎλειψε απÏόσμενα" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "ΑδÏνατο το άνοιγμα του αÏχείου %s" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "ΑδÏνατο το άνοιγμα διασωλήνωσης για το %s" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "αναγνώστηκαν, απομÎνουν ακόμη %lu για ανάγνωση αλλά δεν απομÎνουν άλλα" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "γÏάφτηκαν, απομÎνουν %lu για εγγÏαφή αλλά χωÏίς επιτυχία" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, fuzzy, c-format msgid "Problem closing the gzip file %s" msgstr "Î Ïόβλημα κατά το κλείσιμο του αÏχείου" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "Î Ïόβλημα κατά το κλείσιμο του αÏχείου" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "Î Ïόβλημα κατά τον συγχÏονισμό του αÏχείου" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "Î Ïόβλημα κατά την διαγÏαφή του αÏχείου" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "Î Ïόβλημα κατά τον συγχÏονισμό του αÏχείου" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "Άδειο cache πακÎτων" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "Το αÏχείο cache των πακÎτων είναι κατεστÏαμμÎνο" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "Το αÏχείο cache των πακÎτων είναι ασÏμβατης Îκδοσης" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "Αυτό το APT δεν υποστηÏίζει το ΣÏστημα Απόδοσης Έκδοσης '%s'" -#: apt-pkg/pkgcache.cc:163 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache was built for a different architecture" msgstr "Η cache πακÎτων κατασκευάστηκε για μια διαφοÏετική αÏχιτεκτονική" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "ΕξαÏτάται από" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "Î ÏοΕξαÏτάται από" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "Î Ïοτείνει" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "Συστήνει" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "ΑσÏμβατο με" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "Αντικαθιστά" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "ΑπαÏχαιώνει" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "Χαλάει" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "σημαντικό" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "απαιτοÏμενο" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "καθιεÏωμÎνο" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "Ï€ÏοαιÏετικό" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "επιπλÎον" @@ -2680,7 +2687,7 @@ msgstr "Ο Ï„Ïπος '%s' στη γÏαμμή %u στη λίστα πηγών % #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" @@ -2699,7 +2706,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" @@ -2716,7 +2723,7 @@ msgstr "" "Το πακÎτο '%s' χÏειάζεται να επανεγκατασταθεί, αλλά είναι αδÏνατη η εÏÏεση " "κάποιας κατάλληλης αÏχείοθήκης." -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2724,11 +2731,11 @@ msgstr "" "Σφάλμα, το pkgProblemResolver::Resolve παÏήγαγε διακοπÎÏ‚, αυτό ίσως " "Ï€Ïοκλήθηκε από κÏατοÏμενα πακÎτα." -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "ΑδÏνατη η διόÏθωση Ï€Ïοβλημάτων, Îχετε κÏατοÏμενα ελαττωματικά πακÎτα." -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2753,12 +2760,12 @@ msgstr "ΑδÏνατο το κλείδωμα του καταλόγου" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "ΚατÎβασμα του αÏχείου %li του %li (απομÎνουν %s)" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "Λήψη αÏχείου %li του %li" @@ -2780,12 +2787,12 @@ msgstr "" "ΠαÏακαλώ εισάγετε το δίσκο με ετικÎτα '%s' στη συσκευή '%s' και πατήστε " "enter." -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Το σÏστημα συσκευασίας '%s' δεν υποστηÏίζεται" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "ΑδÏνατος ο καθοÏισμός ενός κατάλληλου Ï„Ïπου συστήματος πακÎτων" @@ -2808,17 +2815,21 @@ msgid "You may want to run apt-get update to correct these problems" msgstr "" "Ίσως να Ï€ÏÎπει να Ï„ÏÎξετε apt-get update για να διοÏθώσετε αυτά τα Ï€Ïοβλήματα" -#: apt-pkg/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "ΑδÏνατη η ανάγνωση της λίστας πηγών." + +#: apt-pkg/policy.cc:344 #, fuzzy, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "Μη ÎγκυÏη εγγÏαφή στο αÏχείο Ï€Ïοτιμήσεων, καμία επικεφαλίδα Package" -#: apt-pkg/policy.cc:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "ΑδÏνατη η κατανόηση του Ï„Ïπου καθήλωσης %s" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "" "Δεν Îχει οÏιστεί Ï€ÏοτεÏαιότητα (ή Îχει οÏιστεί μηδενική) για την καθήλωση" @@ -2925,41 +2936,41 @@ msgstr "απÎτυχε η μετονομασία, %s (%s -> %s)." msgid "MD5Sum mismatch" msgstr "Ανόμοιο MD5Sum" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" msgstr "Ανόμοιο MD5Sum" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 msgid "There is no public key available for the following key IDs:\n" msgstr "Δεν υπάÏχει διαθÎσιμο δημόσιο κλειδί για τα ακολουθα κλειδιά:\n" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2968,7 +2979,7 @@ msgstr "" "ΑδÏνατος ο εντοπισμός ενός αÏχείου για το πακÎτο %s. Αυτό ίσως σημαίνει ότι " "χÏειάζεται να διοÏθώσετε χειÏοκίνητα το πακÎτο. (λόγω χαμÎνου αÏχείου)" -#: apt-pkg/acquire-item.cc:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2977,7 +2988,7 @@ msgstr "" "ΑδÏνατος ο εντοπισμός ενός αÏχείου για το πακÎτο %s. Αυτό ίσως σημαίνει ότι " "χÏειάζεται να διοÏθώσετε χειÏοκίνητα το πακÎτο." -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2985,7 +2996,7 @@ msgstr "" "ΚατεστÏαμμÎνα αÏχεία ευÏετηÏίου πακÎτων. Δεν υπάÏχει πεδίο Filename: στο " "πακÎτο %s." -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "Ανόμοιο μÎγεθος" @@ -3108,37 +3119,37 @@ msgstr "EγγÏαφή νÎας λίστας πηγών\n" msgid "Source list entries for this disc are:\n" msgstr "Οι κατάλογοι με τις πηγÎÏ‚ Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… δίσκου είναι: \n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "Εγιναν %i εγγÏαφÎÏ‚.\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Εγιναν %i εγγÏαφÎÏ‚ με %i απώντα αÏχεία.\n" -#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Εγιναν %i εγγÏαφÎÏ‚ με %i ασÏμβατα αÏχεία.\n" -#: apt-pkg/indexcopy.cc:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "Εγιναν %i εγγÏαφÎÏ‚ με %i απώντα αÏχεία και %i ασÏμβατα αÏχεία\n" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, fuzzy, c-format msgid "Skipping nonexistent file %s" msgstr "Άνοιγμα του αÏχείου Ïυθμίσεων %s" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, fuzzy, c-format msgid "Hash mismatch for: %s" msgstr "Ανόμοιο MD5Sum" @@ -3195,12 +3206,12 @@ msgstr "" msgid "Installing %s" msgstr "Εγκατάσταση του %s" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "ΡÏθμιση του %s" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "ΑφαιÏÏŽ το %s" @@ -3220,94 +3231,95 @@ msgstr "" msgid "Running post-installation trigger %s" msgstr "ΕκτÎλεση του post-installation trigger %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "Ο φάκελος %s αγνοείται." -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, fuzzy, c-format msgid "Could not open file '%s'" msgstr "ΑδÏνατο το άνοιγμα του αÏχείου %s" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "Î Ïοετοιμασία του %s" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "ΞεπακετάÏισμα του %s" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "Î Ïοετοιμασία ÏÏθμισης του %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "Έγινε εγκατάσταση του %s" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "Î Ïοετοιμασία για την αφαίÏεση του %s" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "ΑφαίÏεσα το %s" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "Î Ïοετοιμασία πλήÏης αφαίÏεσης του %s" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "Το %s διαγÏάφηκε πλήÏως" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Αδυναμία εγγÏαφής στο αÏχείο γεγονότων, λόγω αποτυχίας του openpyt() (είναι " "Ï€ÏοσαÏτημÎνο το /dev/pts;)\n" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.18\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+0200\n" "PO-Revision-Date: 2008-11-15 21:52+0100\n" "Last-Translator: Javier Fernandez-Sanguino <jfs@debian.org>\n" "Language-Team: Debian Spanish <debian-l10n-spanish@lists.debian.org>\n" @@ -152,14 +152,14 @@ msgstr " Pin del paquete: " msgid " Version table:" msgstr " Tabla de versión:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, 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:1739 +#: cmdline/apt-cache.cc:1745 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -329,31 +329,31 @@ msgstr "No se puede escribir en %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "No se puede encontrar la versión de debconf. ¿Está debconf instalado?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "La lista de extensión de paquetes es demasiado larga" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "Error procesando el directorio %s" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "La lista de extensión de fuentes es demasiado larga" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "Error escribiendo cabeceras de archivos de contenido" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "Error procesando contenidos %s" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -438,11 +438,11 @@ msgstr "" " -c=? Lee este archivo de configuración\n" " -o=? Establece una opción de configuración arbitraria" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "Ninguna selección coincide" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, 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'" @@ -555,7 +555,7 @@ msgstr "Archivo no tiene campo de paquetes" msgid " %s has no override entry\n" msgstr " %s no tiene entrada de predominio\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " el encargado de %s es %s y no %s\n" @@ -665,79 +665,79 @@ msgstr "Hay problemas desligando %s" msgid "Failed to rename %s to %s" msgstr "Falló el renombre de %s a %s" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "S" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "Error de compilación de expresiones regulares - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "Los siguientes paquetes tienen dependencias incumplidas:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "pero %s está instalado" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "pero %s va a ser instalado" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "pero no es instalable" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "pero es un paquete virtual" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "pero no está instalado" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "pero no va a instalarse" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " o" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "Se instalarán los siguientes paquetes NUEVOS:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "Los siguientes paquetes se ELIMINARÁN:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "Los siguientes paquetes se han retenido:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "Se actualizarán los siguientes paquetes:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "Se DESACTUALIZARÁN los siguientes paquetes:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "Se cambiarán los siguientes paquetes retenidos:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (por %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -745,65 +745,65 @@ msgstr "" "AVISO: Se van a eliminar los siguientes paquetes esenciales.\n" "¡NO debe hacerse a menos que sepa exactamente lo que está haciendo!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu actualizados, %lu se instalarán, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu reinstalados, " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu desactualizados, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu para eliminar y %lu no actualizados.\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu no instalados del todo o eliminados.\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, fuzzy, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "Nota, seleccionando %s para la expresión regular '%s'\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, fuzzy, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "Nota, seleccionando %s para la expresión regular '%s'\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, fuzzy, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "Versión seleccionada %s (%s) para %s\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "El paquete %s es un paquete virtual provisto por:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [Instalado]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 #, fuzzy msgid " [Not candidate version]" msgstr "Versiones candidatas" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "Necesita seleccionar explícitamente uno para instalar." -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -814,167 +814,170 @@ msgstr "" "a él. Esto puede significar que el paquete falta, está obsoleto o sólo se\n" "encuentra disponible desde alguna otra fuente\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "Sin embargo, los siguientes paquetes lo reemplazan:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, fuzzy, c-format msgid "Package '%s' has no installation candidate" msgstr "El paquete %s no tiene candidato para su instalación" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, fuzzy, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "Nota, seleccionando %s en lugar de %s\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "Ignorando %s, ya esta instalado y la actualización no esta activada.\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, fuzzy, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "Ignorando %s, ya esta instalado y la actualización no esta activada.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "No es posible reinstalar el paquete %s, no se puede descargar.\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s ya está en su versión más reciente.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, c-format msgid "%s set to manually installed.\n" msgstr "fijado %s como instalado manualmente.\n" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "El paquete %s no esta instalado, no se eliminará\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "Corrigiendo dependencias..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " falló." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "No se puede corregir las dependencias" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "No se puede minimizar el conjunto de actualización" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " Listo" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "Tal vez quiera ejecutar 'apt-get -f install' para corregirlo." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "Dependencias incumplidas. Pruebe de nuevo usando -f." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "AVISO: ¡No se han podido autenticar los siguientes paquetes!" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "Aviso de autenticación ignorado.\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "¿Instalar estos paquetes sin verificación [s/N]? " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "Algunos paquetes no se pueden autenticar" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "Hay problemas y se utilizó -y sin --force-yes" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Error interno, InstallPackages fue llamado con un paquete roto!" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "Los paquetes necesitan eliminarse pero Remove está deshabilitado." -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "Error interno, no terminó el ordenamiento" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "No se pudieron leer las listas de fuentes." - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" "Que raro.. Los tamaños no concuerdan, mande un correo a \n" "apt@packages.debian.org" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Se necesita descargar %sB/%sB de archivos.\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Necesito descargar %sB de archivos.\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" "Se utilizarán %sB de espacio de disco adicional después de esta operación.\n" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, 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" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "No pude determinar el espacio libre en %s" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "No tiene suficiente espacio libre en %s." -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Se especificó Trivial Only pero ésta no es una operación trivial." -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "Sí, ¡haga lo que le digo!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -985,28 +988,28 @@ msgstr "" "Para continuar escriba la frase «%s»\n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "Abortado." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "¿Desea continuar [S/n]? " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Imposible obtener %s %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "Algunos archivos no pudieron descargarse" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "Descarga completa y en modo de sólo descarga" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1014,19 +1017,19 @@ msgstr "" "No se pudieron obtener algunos archivos, ¿quizás deba ejecutar\n" "apt-get update o deba intentarlo de nuevo con --fix-missing?" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "Actualmente no están soportados --fix-missing e intercambio de medio" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "No se pudieron corregir los paquetes que faltan." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "Abortando la instalación." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1036,36 +1039,36 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "No se puede leer la lista de paquetes fuente %s" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "El comando de actualización no toma argumentos" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "Se supone que no vamos a eliminar cosas, no se pudo iniciar «AutoRemover»" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1079,7 +1082,7 @@ msgstr[1] "" "Se instalaron de forma automática los siguientes paquetes y ya no son " "necesarios." -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1091,11 +1094,11 @@ msgstr[1] "" "Se instalaron de forma automática los siguientes paquetes y ya no son " "necesarios." -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "Utilice «apt-get autoremove» para eliminarlos." -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1113,23 +1116,23 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "La siguiente información puede ayudar a resolver la situación:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" msgstr "Error interno, «AutoRemover» rompió cosas" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "Error Interno, AllUpgrade rompió cosas" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Tal vez quiera ejecutar 'apt-get -f install' para corregirlo:" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1137,7 +1140,7 @@ msgstr "" "Dependencias incumplidas. Intente 'apt-get -f install' sin paquetes (o " "especifique una solución)." -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1149,71 +1152,71 @@ msgstr "" "inestable, que algunos paquetes necesarios no han sido creados o han\n" "sido movidos fuera de Incoming." -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "Paquetes rotos" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "Se instalarán los siguientes paquetes extras:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "Paquetes sugeridos:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "Paquetes recomendados" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "No se pudo encontrar el paquete %s" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "fijado %s como instalado manualmente.\n" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "Calculando la actualización... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "Falló" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "Listo" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "" "Error interno, el sistema de solución de problemas rompió\n" "algunas cosas" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "No se puede bloquear el directorio de descarga" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 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:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "No se pudo encontrar un paquete de fuentes para %s" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1221,76 +1224,80 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Ignorando fichero ya descargado '%s'\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "No tiene suficiente espacio libre en %s" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Necesito descargar %sB/%sB de archivos fuente.\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Necesito descargar %sB de archivos fuente.\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "Fuente obtenida %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "No se pudieron obtener algunos archivos." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, 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:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Falló la orden de desempaquetamiento '%s'.\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, 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:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "Falló la orden de construcción '%s'.\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "Falló el proceso hijo" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 msgid "Must specify at least one package to check builddeps for" msgstr "" "Debe especificar al menos un paquete para verificar sus\n" "dependencias de construcción" -#: cmdline/apt-get.cc:2506 +#: cmdline/apt-get.cc:2524 #, 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:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "%s no tiene dependencias de construcción.\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1299,7 +1306,7 @@ msgstr "" "La dependencia %s en %s no puede satisfacerse porque no se puede \n" "encontrar el paquete %s" -#: cmdline/apt-get.cc:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1308,32 +1315,32 @@ msgstr "" "La dependencia %s en %s no puede satisfacerse porque ninguna versión\n" "disponible del paquete %s satisface los requisitos de versión" -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, 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:2693 +#: cmdline/apt-get.cc:2711 #, 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:2709 +#: cmdline/apt-get.cc:2727 #, 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:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "No se pudieron procesar las dependencias de construcción" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "Módulos soportados:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1421,7 +1428,7 @@ msgstr "" "para más información y opciones.\n" " Este APT tiene poderes de Super Vaca.\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1673,10 +1680,10 @@ msgstr "El archivo %s/%s sobreescribe al que está en el paquete %s" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1812,23 +1819,23 @@ msgstr "No pude localizar un archivo de control válido" msgid "Unparsable control file" msgstr "Archivo de control inanalizable" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "No pude abrir una tubería para %s" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "Error de lectura de %s procesos" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "No pude leer" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "No pude poner el tiempo de modificación" @@ -1921,7 +1928,7 @@ msgstr "La conexión expiró" msgid "Server closed the connection" msgstr "El servidor cerró la conexión" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "Error de lectura" @@ -1933,7 +1940,7 @@ msgstr "Una respuesta desbordó el buffer." msgid "Protocol corruption" msgstr "Corrupción del protocolo" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "Error de escritura" @@ -1987,7 +1994,7 @@ msgstr "Expiró conexión a socket de datos" msgid "Unable to accept connection" msgstr "No pude aceptar la conexión" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "Hay problemas enlazando fichero" @@ -2122,67 +2129,67 @@ msgstr "Obtuve una sola línea de cabecera arriba de %u caracteres" msgid "Bad header line" msgstr "Mala línea de cabecera" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "El servidor de http envió una cabecera de respuesta inválida" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "El servidor de http envió una cabecera de Content-Length inválida" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "El servidor de http envió una cabecera de Content-Range inválida" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "Éste servidor de http tiene el soporte de alcance roto" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "Formato de fecha desconocido" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "Falló la selección" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "Expiró la conexión" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "Error escribiendo al archivo de salida" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "Error escribiendo a archivo" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "Error escribiendo al archivo" -#: methods/http.cc:894 +#: methods/http.cc:900 msgid "Error reading from server. Remote end closed connection" msgstr "Error leyendo del servidor, el lado remoto cerró la conexión." -#: methods/http.cc:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "Error leyendo del servidor" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 msgid "Failed to truncate file" msgstr "Falló al truncar el archivo" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "Mala cabecera Data" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "Fallo la conexión" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "Error interno" @@ -2380,14 +2387,14 @@ msgstr "Operación inválida: %s" 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:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "No se pudo cambiar a %s" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "No pude montar el cdrom" @@ -2411,149 +2418,149 @@ msgstr "No se utilizan bloqueos para el fichero de bloqueo de montaje nfs %s" msgid "Could not get lock %s" msgstr "No se pudo bloquear %s" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Esperaba %s pero no estaba allí" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, 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:635 +#: apt-pkg/contrib/fileutl.cc:657 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "El subproceso %s recibió un fallo de segmentación." -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, 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:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "El subproceso %s terminó de forma inesperada" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "No pude abrir el fichero %s" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "No pude abrir una tubería para %s" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "leídos, todavía debía leer %lu pero no queda nada" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "escritos, todavía tenía que escribir %lu pero no pude hacerlo" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, fuzzy, c-format msgid "Problem closing the gzip file %s" msgstr "Problemas cerrando el archivo" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "Problemas cerrando el archivo" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "Hay problemas sincronizando el fichero" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "Hay problemas desligando el fichero %s" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "Hay problemas sincronizando el fichero" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "Caché de paquetes vacía." -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "El archivo de caché de paquetes esta corrompido" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 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:158 +#: apt-pkg/pkgcache.cc:161 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "Este APT no soporta el sistema de versiones '%s'" -#: apt-pkg/pkgcache.cc:163 +#: apt-pkg/pkgcache.cc:166 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:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "Depende" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "PreDepende" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "Sugiere" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "Recomienda" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "Entra en conflicto" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "Reemplaza" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "Hace obsoleto" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "Rompe" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "importante" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "requiere" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "estándar" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "opcional" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "extra" @@ -2671,7 +2678,7 @@ msgstr "Tipo '%s' desconocido en la línea %u de lista de fuentes %s" #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" @@ -2690,7 +2697,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" @@ -2707,7 +2714,7 @@ msgstr "" "El paquete %s necesita ser reinstalado, pero no se encuentra un archivo para " "éste." -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2715,13 +2722,13 @@ msgstr "" "Error, pkgProblemResolver::Resolve generó cortes, esto puede haber sido " "causado por paquetes retenidos." -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "" "No se pudieron corregir los problemas, usted ha retenido paquetes\n" "rotos." -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2746,12 +2753,12 @@ msgstr "No se pudo bloquear el directorio de listas" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Descargando fichero %li de %li (falta %s)" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "Descargando fichero %li de %li" @@ -2771,12 +2778,12 @@ msgstr "El método %s no se inició correctamente" 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 presione Intro" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "El sistema de paquetes '%s' no está soportado" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "No se pudo determinar un tipo de sistema de paquetes adecuado" @@ -2799,18 +2806,22 @@ msgstr "" 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/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "No se pudieron leer las listas de fuentes." + +#: apt-pkg/policy.cc:344 #, fuzzy, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "" "Registro inválido en el archivo de preferencias, no hay cabecera de paquete" -#: apt-pkg/policy.cc:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "No se entiende el pin tipo %s" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "No hay prioridad especificada para pin (o es cero)" @@ -2918,12 +2929,12 @@ msgstr "falló el cambio de nombre, %s (%s -> %s)." msgid "MD5Sum mismatch" msgstr "La suma MD5 difiere" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" msgstr "La suma hash difiere" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 msgid "There is no public key available for the following key IDs:\n" msgstr "" "No existe ninguna clave pública disponible para los siguientes " @@ -2932,29 +2943,29 @@ msgstr "" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2964,7 +2975,7 @@ msgstr "" "que necesita arreglar manualmente este paquete (debido a que falta una " "arquitectura)" -#: apt-pkg/acquire-item.cc:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2973,7 +2984,7 @@ msgstr "" "No se pudo localizar un archivo para el paquete %s. Esto puede significar " "que necesita arreglar manualmente este paquete." -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2981,7 +2992,7 @@ msgstr "" "Los archivos de índice de paquetes están corrompidos. El campo 'Filename:' " "no existe para para el paquete %s." -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "El tamaño difiere" @@ -3107,38 +3118,38 @@ msgstr "Escribiendo nueva lista de fuente\n" msgid "Source list entries for this disc are:\n" msgstr "Las entradas de la lista de fuentes para este disco son:\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "%i registros escritos.\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, 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:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, 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:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" "%i registros escritos con %i fichero de menos y %i ficheros mal emparejados\n" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, fuzzy, c-format msgid "Skipping nonexistent file %s" msgstr "Abriendo fichero de configuración %s" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, fuzzy, c-format msgid "Hash mismatch for: %s" msgstr "La suma hash difiere" @@ -3195,12 +3206,12 @@ msgstr "" msgid "Installing %s" msgstr "Instalando %s" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "Configurando %s" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "Eliminando %s" @@ -3220,94 +3231,95 @@ msgstr "" msgid "Running post-installation trigger %s" msgstr "Ejecutando disparador post-instalación %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "Falta el directorio '%s'." -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, fuzzy, c-format msgid "Could not open file '%s'" msgstr "No pude abrir el fichero %s" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "Preparando %s" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "Desempaquetando %s" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "Preparándose para configurar %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "%s instalado" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "Preparándose para eliminar %s" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "%s eliminado" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "Preparándose para eliminar completamente %s" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "Se borró completamente %s" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "No se pudo escbribir en el registro, falló la llamada a «openpty()» (¿está " "montado /dev/pts?)\n" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_eu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+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" @@ -152,14 +152,14 @@ msgstr " Paketearen pin-a:" msgid " Version table:" msgstr " Bertsio taula:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, 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:1739 +#: cmdline/apt-cache.cc:1745 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -323,31 +323,31 @@ msgstr "%s : ezin da idatzi" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Ezin da debconf bertsioa eskuratu. Debconf instalatuta dago?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "Pakete luzapenen zerrenda luzeegia da" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "Errorea direktorioa prozesatzean %s" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "Iturburu luzapenen zerrenda luzeegia da" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "Errorea eduki fitxategiaren goiburua idaztean" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "Errorea edukiak prozesatzean %s" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -426,11 +426,11 @@ msgstr "" " -c=? Irakurri konfigurazio fitxategi hau\n" " -o=? Ezarri konfigurazio aukera arbitrario bat" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "Ez dago bat datorren hautapenik" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Fitxategi batzuk falta dira `%s' pakete fitxategien taldean" @@ -543,7 +543,7 @@ msgstr "Artxiboak ez du pakete eremurik" msgid " %s has no override entry\n" msgstr " %s: ez du override sarrerarik\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s mantentzailea %s da, eta ez %s\n" @@ -653,79 +653,79 @@ msgstr "Arazoa %s desestekatzean" msgid "Failed to rename %s to %s" msgstr "Huts egin du %s izenaren ordez %s ipintzean" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "Adierazpen erregularren konpilazio errorea - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "Ondorengo paketeetan bete gabeko mendekotasunak daude:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "baina %s instalatuta dago" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "baina %s instalatzeko dago" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "baina ez da instalagarria" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "baina pakete birtuala da" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "baina ez dago instalatuta" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "baina ez da instalatuko" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " edo" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "Ondorengo pakete BERRIAK instalatuko dira:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "Ondorengo paketeak KENDUKO dira:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "Ondorengo paketeak mantendu egin dira:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "Ondorengo paketeak bertsio-berrituko dira:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "Ondorengo paketeak AURREKO BERTSIORA itzuliko dira:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "Ondorengo pakete atxikiak aldatu egingo dira:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (arrazoia: %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -733,65 +733,65 @@ msgstr "" "KONTUZ: Ondorengo funtsezko paketeak kendu egingo dira\n" "EZ ezazu horrelakorik egin, ez badakizu ondo zertan ari zaren!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu bertsio berritua(k), %lu berriki instalatuta, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu berrinstalatuta, " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu aurreko bertsiora itzulita, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu kentzeko, eta %lu bertsio-berritu gabe.\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu ez erabat instalatuta edo kenduta.\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, fuzzy, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "Oharra: %s hautatzen '%s' adierazpen erregularrarentzat\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, fuzzy, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "Oharra: %s hautatzen '%s' adierazpen erregularrarentzat\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, fuzzy, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "Hautatutako bertsioa: %s (%s) -- %s\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "%s pakete birtual bat da, honek hornitua:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [Instalatuta]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 #, fuzzy msgid " [Not candidate version]" msgstr "Hautagaien bertsioak" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "Zehazki bat hautatu behar duzu instalatzeko." -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -802,166 +802,169 @@ msgstr "" "egiten dio. Beharbada paketea faltako da, edo zaharkituta egongo da, edo \n" "beste iturburu batean bakarrik egongo da erabilgarri\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "Baina ondorengo paketeek ordezten dute:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, fuzzy, c-format msgid "Package '%s' has no installation candidate" msgstr "%s paketeak ez du instalatzeko hautagairik" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, fuzzy, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "Oharra, %s hautatzen %s(r)en ordez\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "%s saltatzen. Instalatuta dago, eta ez dago bertsio-berritzerik.\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, fuzzy, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "%s saltatzen. Instalatuta dago, eta ez dago bertsio-berritzerik.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "%s berriro instalatzea ez da posible; ezin da deskargatu.\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s bertsiorik berriena da jada.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, c-format msgid "%s set to manually installed.\n" msgstr "%s eskuz instalatua bezala ezarri.\n" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "%s paketea ez dago instalatuta, eta, beraz, ez da kenduko\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "Mendekotasunak zuzentzen..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " : huts egin du." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "Ezin dira mendekotasunak zuzendu" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "Ezin da bertsio berritzeko multzoa minimizatu" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " Eginda" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "Beharbada 'apt-get -f install' exekutatu nahiko duzu zuzentzeko." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "Bete gabeko mendekotasunak. Probatu -f erabiliz." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "KONTUZ: Hurrengo paketeak ezin dira egiaztatu!" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "Egiaztapen abisua gainidazten.\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "Paketeak egiaztapen gabe instalatu [b/E]? " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "Zenbait pakete ezin dira egiaztatu" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "Arazoak daude, eta -y erabili da --force-yes gabe" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Barne errorea, InstallPackages apurturiko paketeez deitu da!" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "Paketeak ezabatu beharra dute baina Ezabatzea ezgaiturik dago." -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "Barne errorea, ez da ordenatzeaz amaitu" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "Ezin izan da Iturburu zerrenda irakurri." - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" "Hau bitxia.. Tamainak ez dira berdina, idatzi apt@packages.debian.org-ra " "berri emanez (ingelesez)" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Artxiboetako %sB/%sB eskuratu behar dira.\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Artxiboetako %sB eskuratu behar dira.\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "Ekintza honen ondoren, %sB gehiago erabiliko dira diskoan.\n" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Ekintza honen ondoren, %sB libratuko dira diskoan.\n" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "Ezin da %s(e)n duzun leku librea atzeman." -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "Ez daukazu nahikoa leku libre %s(e)n." -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "'Trivial Only' zehaztu da, baina hau ez da eragiketa tribial bat." -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "Bai, egin esandakoa!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -972,28 +975,28 @@ msgstr "" "Jarraitzeko, idatzi '%s' esaldia\n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "Abortatu." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "Aurrera jarraitu nahi al duzu [B/e]? " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Ezin da lortu %s %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "Fitxategi batzuk ezin izan dira deskargatu" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "Deskarga amaituta eta deskarga soileko moduan" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1001,19 +1004,19 @@ msgstr "" "Ezin izan dira artxibo batzuk lortu; beharbada apt-get update exekutatu, edo " "--fix-missing aukerarekin saiatu?" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing eta euskarri aldaketa ez dira onartzen oraingoz" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "Falta diren paketeak ezin dira zuzendu." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "Abortatu instalazioa." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1023,35 +1026,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Ezin da atzitu %s iturburu paketeen zerrenda" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "Eguneratzeko komandoak ez du argumenturik hartzen" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Suposatu ez dugun zerbait ezabatuko da, ezin da AutoRemover abiarazi" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1065,7 +1068,7 @@ msgstr[1] "" "Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago " "behar." -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1077,11 +1080,11 @@ msgstr[1] "" "Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago " "behar." -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "'apt-get autoremove' erabili ezabatzeko." -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1099,23 +1102,23 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "Informazio honek arazoa konpontzen lagun dezake:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" msgstr "Barne Errorea, AutoRemover-ek zerbait apurtu du" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "Barne Errorea, AllUpgade-k zerbait apurtu du" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Beharbada 'apt-get -f install' exekutatu nahiko duzu hauek zuzentzeko:" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1123,7 +1126,7 @@ msgstr "" "Bete gabeko mendekotasunak. Probatu 'apt-get -f install' paketerik gabe (edo " "zehaztu konponbide bat)." -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1135,69 +1138,69 @@ msgstr "" "beharrezko pakete batzuk ez ziren sortuko oraindik, edo \n" "Sarrerakoetan (Incoming) egoten jarraituko dute." -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "Hautsitako paketeak" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "Ondorengo pakete gehigarriak instalatuko dira:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "Iradokitako paketeak:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "Gomendatutako paketeak:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "Ezin izan da %s paketea aurkitu" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "%s eskuz instalatua bezala ezarri.\n" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "Berriketak kalkulatzen... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "Huts egin du" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "Eginda" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "Barne Errorea, arazo konpontzaileak zerbait apurtu du" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "Ezin da deskarga direktorioa blokeatu" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 msgid "Must specify at least one package to fetch source for" msgstr "Gutxienez pakete bat zehaztu behar duzu iturburua lortzeko" -#: cmdline/apt-get.cc:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "Ezin da iturburu paketerik aurkitu %s(r)entzat" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1205,76 +1208,80 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Dagoeneko deskargaturiko '%s' fitxategia saltatzen\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "Ez daukazu nahikoa leku libre %s(e)n." -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Iturburu artxiboetako %sB/%sB eskuratu behar dira.\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Iturburu artxiboetako %sB eskuratu behar dira.\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "Eskuratu %s iturburua\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "Huts egin du zenbat artxibo lortzean." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, 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:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Deskonprimitzeko '%s' komandoak huts egin du.\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Egiaztatu 'dpkg-dev' paketea instalaturik dagoen.\n" -#: cmdline/apt-get.cc:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "Eraikitzeko '%s' komandoak huts egin du.\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "Prozesu umeak huts egin du" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 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:2506 +#: cmdline/apt-get.cc:2524 #, 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:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "%s: ez du eraikitze mendekotasunik.\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1282,7 +1289,7 @@ msgid "" msgstr "" "%2$s(r)en %1$s mendekotasuna ezin da bete, %3$s paketea ezin delako aurkitu" -#: cmdline/apt-get.cc:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1291,32 +1298,32 @@ 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:2666 +#: cmdline/apt-get.cc:2684 #, 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:2693 +#: cmdline/apt-get.cc:2711 #, 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:2709 +#: cmdline/apt-get.cc:2727 #, 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:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "Huts egin du eraikitze mendekotasunak prozesatzean" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "Onartutako Moduluak:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1403,7 +1410,7 @@ msgstr "" "sources.list(5) eta apt.conf(5) orrialdeak eskuliburuan.\n" " APT honek Super Behiaren Ahalmenak ditu.\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1650,10 +1657,10 @@ msgstr "%s/%s fitxategiak %s paketekoa gainidazten du" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1789,23 +1796,23 @@ msgstr "Ezin izan da baliozko kontrol fitxategi bat lokalizatu" msgid "Unparsable control file" msgstr "Kontrol fitxategi ezin analizagarria" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "Ezin izan da %s(r)en kanalizazioa ireki" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "Irakurri errorea %s prozesutik" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "Huts egin du atzitzean" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "Huts egin du aldaketa ordua ezartzean" @@ -1901,7 +1908,7 @@ msgstr "Konexioa denboraz kanpo" msgid "Server closed the connection" msgstr "Zerbitzariak konexioa itxi du" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "Irakurketa errorea" @@ -1913,7 +1920,7 @@ msgstr "Erantzun batek bufferrari gainez eragin dio." msgid "Protocol corruption" msgstr "Protokolo hondatzea" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "Idazketa errorea" @@ -1968,7 +1975,7 @@ msgstr "Datu-socket konexioak denbora muga gainditu du" msgid "Unable to accept connection" msgstr "Ezin da konexioa onartu" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "Arazoa fitxategiaren hash egitean" @@ -2102,67 +2109,67 @@ msgstr "Goiburu-lerro bakarra eskuratu da %u karaktereen gainean" msgid "Bad header line" msgstr "Okerreko goiburu-lerroa" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "http zerbitzariak erantzun goiburu baliogabe bat bidali du." -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "http zerbitzariak Content-Length buru baliogabe bat bidali du" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "http zerbitzariak Content-Range buru baliogabe bat bidali du" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "http zerbitzariak barruti onarpena apurturik du" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "Datu formatu ezezaguna" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "Hautapenak huts egin du" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "Konexioaren denbora muga gainditu da" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "Errorea irteerako fitxategian idaztean" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "Errorea fitxategian idaztean" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "Errorea fitxategian idaztean" -#: methods/http.cc:894 +#: methods/http.cc:900 msgid "Error reading from server. Remote end closed connection" msgstr "Errorea zerbitzaritik irakurtzen Urrunetik amaitutako konexio itxiera" -#: methods/http.cc:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "Errorea zerbitzaritik irakurtzean" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 msgid "Failed to truncate file" msgstr "Huts fitxategia mozterakoan" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "Goiburu data gaizki dago" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "Konexioak huts egin du" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "Barne errorea" @@ -2357,14 +2364,14 @@ msgstr "Eragiketa baliogabea: %s" msgid "Unable to stat the mount point %s" msgstr "Ezin da atzitu %s muntatze puntua" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "Ezin da %s(e)ra aldatu" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "Huts egin du CDROMa atzitzean" @@ -2391,149 +2398,149 @@ msgstr "" msgid "Could not get lock %s" msgstr "Ezin izan da %s blokeoa hartu" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "%s espero zen baina ez zegoen han" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "%s azpiprozesuak segmentaziuo hutsegitea jaso du." -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "%s azpiprozesuak segmentaziuo hutsegitea jaso du." -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, 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:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "%s azpiprozesua ustekabean amaitu da" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "%s fitxategia ezin izan da ireki" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "Ezin izan da %s(r)en kanalizazioa ireki" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "irakurrita; oraindik %lu irakurtzeke, baina ez da ezer geratzen" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "idatzita; oraindik %lu idazteke, baina ezin da" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, fuzzy, c-format msgid "Problem closing the gzip file %s" msgstr "Arazoa fitxategia ixtean" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "Arazoa fitxategia ixtean" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "Arazoa fitxategia sinkronizatzean" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "Arazoa fitxategia desestekatzean" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "Arazoa fitxategia sinkronizatzean" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "Paketeen katxea hutsik" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "Paketeen katxe fitxategia hondatuta dago" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "Paketeen katxe fixategiaren bertsioa ez da bateragarria" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, 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:163 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache was built for a different architecture" msgstr "Paketeen katxea beste arkitektura batentzat sortuta dago" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "Mendekotasuna:" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "Aurremendekotasuna:" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "Iradokizuna:" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "Gomendioa:" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "Gatazka:" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "Ordeztea:" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "Zaharkitzea:" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "Apurturik" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "garrantzitsua" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "beharrezkoa" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "estandarra" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "aukerakoa" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "estra" @@ -2651,7 +2658,7 @@ msgstr "'%s' mota ez da ezagutzen %u lerroan %s Iturburu zerrendan" #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" @@ -2670,7 +2677,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" @@ -2686,7 +2693,7 @@ msgid "" msgstr "" "%s paketea berriro instalatu behar da, baina ezin dut artxiborik aurkitu." -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2694,11 +2701,11 @@ msgstr "" "Errorea: pkgProblemResolver::Resolve. Etenak sortu ditu, beharbada " "atxikitako paketeek eraginda." -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "Ezin dira arazoak konpondu; hautsitako paketeak atxiki dituzu." -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2723,12 +2730,12 @@ msgstr "Ezin da zerrenda direktorioa blokeatu" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "%li fitxategi deskargatzen %li -tik (%s falta da)" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "%li fitxategia jasotzen %li-tik" @@ -2748,12 +2755,12 @@ msgstr "%s metodoa ez da behar bezala abiarazi" 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:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "'%s' pakete sistema ez da onartzen" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "Ezin da pakete sistemaren mota egokirik zehaztu" @@ -2774,17 +2781,21 @@ msgstr "Pakete zerrenda edo egoera fitxategia ezin dira analizatu edo ireki." 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/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "Ezin izan da Iturburu zerrenda irakurri." + +#: apt-pkg/policy.cc:344 #, 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:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "Ez da ulertu %s orratz-mota (pin)" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "Ez da lehentasunik zehaztu orratzarentzat (pin) (edo zero da)" @@ -2886,41 +2897,41 @@ msgstr "huts egin du izen-aldaketak, %s (%s -> %s)." msgid "MD5Sum mismatch" msgstr "MD5Sum ez dator bat" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" msgstr "Egiaztapena ez dator bat" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 msgid "There is no public key available for the following key IDs:\n" msgstr "Ez dago gako publiko erabilgarririk hurrengo gako ID hauentzat:\n" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2929,7 +2940,7 @@ msgstr "" "Ezin izan dut %s paketeko fitxategi bat lokalizatu. Beharbada eskuz konpondu " "beharko duzu paketea. (arkitektura falta delako)" -#: apt-pkg/acquire-item.cc:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2938,7 +2949,7 @@ msgstr "" "Ezin izan dut %s paketeko fitxategi bat lokalizatu. Beharbada eskuz konpondu " "beharko duzu paketea." -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2946,7 +2957,7 @@ msgstr "" "Paketearen indize fitxategiak hondatuta daude. 'Filename:' eremurik ez %s " "paketearentzat." -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "Tamaina ez dator bat" @@ -3069,38 +3080,38 @@ msgstr "Jatorri zerrenda berria idazten\n" msgid "Source list entries for this disc are:\n" msgstr "Diskoarentzako jatorri sarrerak:\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "%i erregistro grabaturik.\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i erregistro eta %i galdutako fitxategi grabaturik.\n" -#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i erregistro eta %i okerreko fitxategi grabaturik\n" -#: apt-pkg/indexcopy.cc:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" "%i erregistro, %i galdutako fitxategi eta %i okerreko fitxategi grabaturik\n" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, fuzzy, c-format msgid "Skipping nonexistent file %s" msgstr "%s konfigurazio fitxategia irekitzen" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, fuzzy, c-format msgid "Hash mismatch for: %s" msgstr "Egiaztapena ez dator bat" @@ -3157,12 +3168,12 @@ msgstr "" msgid "Installing %s" msgstr "%s Instalatzen" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "%s konfiguratzen" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "%s kentzen" @@ -3182,94 +3193,95 @@ msgstr "" msgid "Running post-installation trigger %s" msgstr "Inbstalazio-ondorengo %s abiarazlea exekutatzen" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "'%s' direktorioa falta da" -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, fuzzy, c-format msgid "Could not open file '%s'" msgstr "%s fitxategia ezin izan da ireki" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "%s prestatzen" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "%s irekitzen" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "%s konfiguratzeko prestatzen" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "%s Instalatuta" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "%s kentzeko prestatzen" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "%s kendurik" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "%s guztiz ezabatzeko prestatzen" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "%s guztiz ezabatu da" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Ezin da erregistroa idatzi, openpty() -ek huts egin du (/dev/pts ez dago " "muntaturik?)\n" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.5.26\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+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" @@ -150,14 +150,14 @@ msgstr " Paketin tunnistenumero: " msgid " Version table:" msgstr " Versiotaulukko:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, 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:1739 +#: cmdline/apt-cache.cc:1745 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -320,32 +320,32 @@ msgstr "Tiedostoon %s kirjoittaminen ei onnistu" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Ohjelman debconf versiota ei saa selvitettyä. Onko debconf asennettu?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "Paketin laajennuslista on liian pitkä" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "Tapahtui virhe käsiteltäessa kansiota %s" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "Lähteiden laajennuslista on liian pitkä" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "" "Tapahtui virhe kirjoitettaessa otsikkotietoa sisällysluettelotiedostoon" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "Tapahtui virhe käsiteltäessä sisällysluetteloa %s" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -427,11 +427,11 @@ msgstr "" " -c=? Lue tämä asetustiedosto\n" " -o=? Aseta mikä asetusvalitsin tahansa" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "Mitkään valinnat eivät täsmänneet" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Pakettitiedostojen ryhmästä \"%s\" puuttuu joitain tiedostoja" @@ -544,7 +544,7 @@ msgstr "Arkistossa ei ollut pakettikenttää" msgid " %s has no override entry\n" msgstr " %s:llä ei ole poikkeustietuetta\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s ylläpitäjä on %s eikä %s\n" @@ -654,79 +654,79 @@ msgstr "Ilmeni pulmia poistettaessa tiedosto %s" msgid "Failed to rename %s to %s" msgstr "Nimen muuttaminen %s -> %s ei onnistunut" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "K" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "Käännösvirhe lausekkeessa - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "Näillä paketeilla on tyydyttämättömiä riippuvuuksia:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "mutta %s on asennettu" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "mutta %s on merkitty asennettavaksi" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "mutta ei ole asennuskelpoinen" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "mutta on näennäispaketti" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "mutta ei ole asennettu" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "mutta ei ole merkitty asennettavaksi" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " tai" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "Seuraavat UUDET paketit asennetaan:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "Seuraavat paketit POISTETAAN:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "Nämä paketit on jätetty odottamaan:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "Nämä paketit päivitetään:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "Nämä paketit VARHENNETAAN:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "Seuraavat pysytetyt paketit muutetaan:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (syynä %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -734,65 +734,65 @@ msgstr "" "VAROITUS: Seuraavat välttämättömät paketit poistetaan.\n" "Näin EI PITÄISI tehdä jos ei aivan tarkkaan tiedä mitä tekee!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu päivitetty, %lu uutta asennusta, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu uudelleen asennettua, " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu varhennettua, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu poistettavaa ja %lu päivittämätöntä.\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu ei asennettu kokonaan tai poistettiin.\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, fuzzy, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "Huomautus, valitaan %s lausekkeella \"%s\"\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, fuzzy, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "Huomautus, valitaan %s lausekkeella \"%s\"\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, fuzzy, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "Valittiin versio %s (%s) paketille %s\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "Paketti %s on näennäispaketti, jonka kattaa:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [Asennettu]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 #, fuzzy msgid " [Not candidate version]" msgstr "Mahdolliset versiot" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "Yksi pitää valita asennettavaksi." -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -803,166 +803,169 @@ msgstr "" "Tämä voi tarkoittaa paketin puuttuvan, olevan vanhentunut tai\n" "saatavilla vain jostain muusta lähteestä\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "Seuraavat paketit kuitenkin korvaavat sen:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, fuzzy, c-format msgid "Package '%s' has no installation candidate" msgstr "Paketilla %s ei ole asennettavaa valintaa" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, fuzzy, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "Huomautus, valitaan %s eikä %s\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "Ohitetaan %s, se on jo asennettu eikä ole komennettu päivitystä.\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, fuzzy, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "Ohitetaan %s, se on jo asennettu eikä ole komennettu päivitystä.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "Paketin %s uudelleenasennus ei ole mahdollista, sitä ei voi noutaa.\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s on jo uusin versio.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, c-format msgid "%s set to manually installed.\n" msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "Pakettia %s ei ole asennettu, niinpä sitä ei poisteta\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "Korjataan riippuvuuksia..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " ei onnistunut." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "Riippuvuuksien korjaus ei onnistu" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "Päivitysjoukon minimointi ei onnistu" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " Valmis" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "Halunnet suorittaa \"apt-get -f install\" korjaamaan nämä." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "Tyydyttämättömiä riippuvuuksia. Koita käyttää -f." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "VAROITUS: Seuraavian pakettien alkuperää ei voi varmistaa!" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "Varoitus varmistamisesta on ohitettu.\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "Asennetaanko nämä paketit ilman todennusta [y/N]? " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "Joidenkin pakettien alkuperästä ei voitu varmistua" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "Oli pulmia ja -y käytettiin ilman valitsinta --force-yes" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Sisäinen virhe, InstallPackages kutsuttiin rikkinäisille paketeille!" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "Paketteja pitäisi poistaa mutta Remove ei ole käytössä." -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "Tapahtui sisäinen virhe, järjestäminen keskeytyi" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "Lähteiden luetteloa ei pystynyt lukemaan." - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" "No jo on... Koot eivät täsmää, sähköpostita email apt@packages.debian.org" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Noudettavaa arkistoa %st/%st.\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Noudettavaa arkistoa %st.\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "Toiminnon jälkeen käytetään %s t lisää levytilaa.\n" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Toiminnon jälkeen vapautuu %s t levytilaa.\n" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "Kansion %s vapaan tilan määrä ei selvinnyt" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "Kansiossa %s ei ole riittävästi vapaata tilaa." -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "On määritetty Trivial Only mutta tämä ei ole itsestäänselvä toimenpide." -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "Kyllä, tee kuten käsketään!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -973,28 +976,28 @@ msgstr "" "Jatka kirjoittamalla \"%s\"\n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "Keskeytä." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "Haluatko jatkaa [K/e]? " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Tiedoston %s nouto ei onnistunut %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "Joidenkin tiedostojen nouto ei onnistunut" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "Nouto on valmis ja määrätty vain nouto" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1002,19 +1005,19 @@ msgstr "" "Joidenkin arkistojen nouto ei onnistunut, ehkä \"apt-get update\" auttaa tai " "kokeile --fix-missing?" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing ja taltion vaihto ei ole nyt tuettu" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "Puuttuvia paketteja ei voi korjata." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "Asennus keskeytetään." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1024,36 +1027,36 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "stat ei toiminut lähdepakettiluettelolle %s" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "Komento update ei käytä parametreja" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "On tarkoitus olla poistamatta mitään, joten AutoRemover:ia ei voi käynnistää" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1067,7 +1070,7 @@ msgstr[1] "" "Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää " "vaadittuja:" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1079,11 +1082,11 @@ msgstr[1] "" "Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää " "vaadittuja:" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "Poista ne komennolla \"apt-get autoremove\"." -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1101,23 +1104,23 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "Seuraavista tiedoista voi olla hyötyä selvitettäessä tilannetta:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" msgstr "Sisäinen virhe, AutoRemover rikkoi jotain" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "Sisäinen virhe, AllUpgrade rikkoi jotain" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Saatat haluta suorittaa \"apt-get -f install\" korjaamaan nämä:" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1125,7 +1128,7 @@ msgstr "" "Kaikkia riippuvuuksia ei ole tyydytetty. Kokeile \"apt-get -f install\" " "ilmanpaketteja (tai ratkaise itse)." -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1136,69 +1139,69 @@ msgstr "" "jos käytetään epävakaata jakelua, joitain vaadittuja paketteja ei ole\n" "vielä luotu tai siirretty Incoming-kansiosta." -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "Rikkinäiset paketit" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "Seuraavat ylimääräiset paketit on merkitty asennettaviksi:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "Ehdotetut paketit:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "Suositellut paketit:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "Pakettia %s ei löytynyt" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, 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:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "Käsitellään päivitystä ... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "Ei onnistunut" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "Valmis" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "Sisäinen virhe, resolver rikkoi jotain" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "Noutokansiota ei saatu lukittua" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 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:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "Paketin %s lähdekoodipakettia ei löytynyt" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1206,75 +1209,79 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Ohitetaan jo noudettu tiedosto \"%s\"\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "Kansiossa %s ei ole riittävästi vapaata tilaa" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "On noudettava %st/%st lähdekoodiarkistoja.\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "On noudettava %st lähdekoodiarkistoja.\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "Nouda lähdekoodi %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "Joidenkin arkistojen noutaminen ei onnistunut." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, 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:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Purkukomento \"%s\" ei onnistunut.\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Tarkista onko paketti \"dpkg-dev\" asennettu.\n" -#: cmdline/apt-get.cc:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "Paketointikomento \"%s\" ei onnistunut.\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "Lapsiprosessi kaatui" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 msgid "Must specify at least one package to check builddeps for" msgstr "" "On annettava ainakin yksi paketti jonka paketointiriippuvuudet tarkistetaan" -#: cmdline/apt-get.cc:2506 +#: cmdline/apt-get.cc:2524 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Paketille %s ei ole saatavilla riippuvuustietoja" -#: cmdline/apt-get.cc:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "Paketille %s ei ole määritetty paketointiriippuvuuksia.\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1282,7 +1289,7 @@ msgid "" msgstr "" "riippuvuutta %s paketille %s ei voi tyydyttää koska pakettia %s ei löydy" -#: cmdline/apt-get.cc:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1291,32 +1298,32 @@ msgstr "" "%s riippuvuutta paketille %s ei voi tyydyttää koska mikään paketin %s versio " "ei vastaa versioriippuvuuksia" -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, 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:2693 +#: cmdline/apt-get.cc:2711 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Riippuvuutta %s paketille %s ei voi tyydyttää: %s" -#: cmdline/apt-get.cc:2709 +#: cmdline/apt-get.cc:2727 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Paketointiriippuvuuksia paketille %s ei voi tyydyttää." -#: cmdline/apt-get.cc:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "Paketointiriippuvuuksien käsittely ei onnistunut" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "Tuetut moduulit:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1402,7 +1409,7 @@ msgstr "" "lisätietoja ja lisää valitsimia.\n" " This APT has Super Cow Powers.\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1650,10 +1657,10 @@ msgstr "Tiedosto %s/%s kirjoitetaan paketista %s tulleen päälle" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1790,23 +1797,23 @@ msgstr "Kelvollista ohjaustiedostoa ei löydy" msgid "Unparsable control file" msgstr "Ohjaustiedosto ei jäsenny" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "Putkea %s ei voitu avata" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "Prosessi %s ilmoitti lukuvirheestä" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "Komento stat ei toiminut" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "Tiedoston muutospäivämäärää ei saatu vaihdettua" @@ -1899,7 +1906,7 @@ msgstr "Yhteys aikakatkaistiin" msgid "Server closed the connection" msgstr "Palvelin sulki yhteyden" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "Lukuvirhe" @@ -1911,7 +1918,7 @@ msgstr "Vastaus aiheutti puskurin ylivuodon." msgid "Protocol corruption" msgstr "Yhteyskäytäntö on turmeltunut" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "Virhe kirjoitettaessa" @@ -1965,7 +1972,7 @@ msgstr "Pistokkeen kytkeminen aikakatkaistiin" msgid "Unable to accept connection" msgstr "Yhteyttä ei voitu hyväksyä" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "Pulmia tiedoston hajautuksessa" @@ -2100,67 +2107,67 @@ msgstr "Vastaanotettiin yksi otsikkorivi pituudeltaan yli %u merkkiä" msgid "Bad header line" msgstr "Virheellinen otsikkorivi" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "HTTP-palvelin lähetti virheellisen vastausotsikon" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "HTTP-palvelin lähetti virheellisen Content-Length-otsikon" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "HTTP-palvelin lähetti virheellisen Content-Range-otsikon" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "HTTP-palvelimen arvoaluetuki on rikki" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "Tuntematon päiväysmuoto" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "Select ei toiminut" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "Yhteys aikakatkaistiin" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "Tapahtui virhe kirjoitettaessa tulostustiedostoon" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "Tapahtui virhe kirjoitettaessa tiedostoon" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "Tapahtui virhe kirjoitettaessa tiedostoon" -#: methods/http.cc:894 +#: methods/http.cc:900 msgid "Error reading from server. Remote end closed connection" msgstr "Tapahtui virhe luettaessa palvelimelta. Etäpää sulki yhteyden" -#: methods/http.cc:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "Tapahtui virhe luettaessa palvelimelta" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 msgid "Failed to truncate file" msgstr "Tiedoston typistäminen ei onnistunut" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "Virheellinen otsikkotieto" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "Yhteys ei toiminut" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "Sisäinen virhe" @@ -2352,14 +2359,14 @@ msgstr "Virheellinen toiminto %s" msgid "Unable to stat the mount point %s" msgstr "Komento stat ei toiminut liitoskohdalle %s" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "Kansioon %s vaihto ei onnistu" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "Komento stat ei toiminut rompulle" @@ -2383,149 +2390,149 @@ msgstr "Lukitusta ei käytetä NFS-liitetylle tiedostolle %s" msgid "Could not get lock %s" msgstr "Lukkoa %s ei saada" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Odotettiin %s, mutta sitä ei ollut" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Aliprosessi %s aiheutti suojausvirheen." -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "Aliprosessi %s aiheutti suojausvirheen." -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Aliprosessi %s palautti virhekoodin (%u)" -#: apt-pkg/contrib/fileutl.cc:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Aliprosessi %s lopetti odottamatta" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "Tiedostoa %s ei voitu avata" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "Putkea %s ei voitu avata" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "read, vielä %lu lukematta mutta tiedosto loppui" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "write, vielä %lu kirjoittamatta mutta epäonnistui" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, fuzzy, c-format msgid "Problem closing the gzip file %s" msgstr "Pulmia tiedoston sulkemisessa" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "Pulmia tiedoston sulkemisessa" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "Pulmia tehtäessä tiedostolle sync" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "Pulmia tehtäessä tiedostolle unlink" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "Pulmia tehtäessä tiedostolle sync" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "Pakettivarasto on tyhjä" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "Pakettivarasto on turmeltunut" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "Pakettivaraston versio on yhteensopimaton" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, 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:163 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache was built for a different architecture" msgstr "Pakettivarasto on tehty muulle arkkitehtuurille" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "Riippuvuudet" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "Esiriippuvuudet" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "Ehdotukset" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "Suosittelut" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "Ristiriidat" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "Korvaavuudet" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "Täydet korvaavuudet" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "Rikkoo" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "tärkeä" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "välttämätön" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "perus" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "valinnainen" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "ylimääräinen" @@ -2643,7 +2650,7 @@ msgstr "Tyyppi \"%s\" on tuntematon rivillä %u lähdeluettelossa %s" #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" @@ -2661,7 +2668,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" @@ -2676,7 +2683,7 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "Paketti %s olisi asennettava uudelleen, mutta sen arkistoa ei löydy." -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2684,11 +2691,11 @@ msgstr "" "Virhe, pkgProblemResolver::Resolve tuotti katkoja, syynä voi olla pysytetyt " "paketit." -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "Pulmia ei voi korjata, rikkinäisiä paketteja on pysytetty." -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2713,12 +2720,12 @@ msgstr "Luettelokansiota ei voitu lukita" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Noudetaan tiedosto %li / %li (jäljellä %s)" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "Noudetaan tiedosto %li / %li" @@ -2738,12 +2745,12 @@ msgstr "Menetelmä %s ei käynnistynyt oikein" 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:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Paketointijärjestelmä \"%s\" ei ole tuettu" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "Sopivaa paketointijärjestelmän tyyppiä ei saa selvitettyä" @@ -2765,17 +2772,21 @@ msgstr "" 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/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "Lähteiden luetteloa ei pystynyt lukemaan." + +#: apt-pkg/policy.cc:344 #, 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:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "Tunnistetyyppi %s on tuntematon" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "Tärkeysjärjestystä ei määritetty tunnisteelle (tai se on nolla)" @@ -2878,41 +2889,41 @@ msgstr "nimen vaihto ei onnistunut, %s (%s -> %s)." msgid "MD5Sum mismatch" msgstr "MD5Sum ei täsmää" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" msgstr "Hash Sum täsmää" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 msgid "There is no public key available for the following key IDs:\n" msgstr "Julkisia avaimia ei ole saatavilla, avainten ID:t ovat:\n" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2921,7 +2932,7 @@ 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:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2930,7 +2941,7 @@ msgstr "" "Pakettia %s vastaavaa tiedostoa ei löytynyt. Voit ehkä joutua korjaamaan " "tämän paketin itse." -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2938,7 +2949,7 @@ msgstr "" "Pakettihakemistotiedostot ovat turmeltuneet. Paketille %s ei ole Filename-" "kenttää." -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "Koko ei täsmää" @@ -3061,39 +3072,39 @@ msgstr "Kirjoitetaan uusi lähdeluettelo\n" msgid "Source list entries for this disc are:\n" msgstr "Tämän levyn lähdekoodipakettien luettelon tietueita ovat:\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "Kirjoitettiin %i tietuetta.\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, 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:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, 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:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" "Kirjoitettiin %i tietuetta joissa oli %i puuttuvaa ja %i paritonta " "tiedostoa\n" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, fuzzy, c-format msgid "Skipping nonexistent file %s" msgstr "Avataan asetustiedosto %s" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, fuzzy, c-format msgid "Hash mismatch for: %s" msgstr "Hash Sum täsmää" @@ -3150,12 +3161,12 @@ msgstr "" msgid "Installing %s" msgstr "Asennetaan %s" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "Tehdään asetukset: %s" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "Poistetaan %s" @@ -3175,94 +3186,95 @@ msgstr "" msgid "Running post-installation trigger %s" msgstr "Suoritetaan jälkiasennusliipaisin %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "Kansio \"%s\" puuttuu." -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, fuzzy, c-format msgid "Could not open file '%s'" msgstr "Tiedostoa %s ei voitu avata" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "Valmistellaan %s" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "Puretaan %s" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "Valmistaudutaan tekemään asetukset: %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "%s asennettu" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "Valmistaudutaan poistamaan %s" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "%s poistettu" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "Valmistaudutaan poistamaan %s kokonaan" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "%s poistettiin kokonaan" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Lokiin ei voi kirjoittaa, openpty() epäonnistui (onko /dev/pts " "liittämättä?)\n" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+0200\n" "PO-Revision-Date: 2010-08-25 07:16+0200\n" "Last-Translator: Christian Perrier <bubulle@debian.org>\n" "Language-Team: French <debian-l10n-french@lists.debian.org>\n" @@ -149,14 +149,14 @@ msgstr " Étiquette de paquet : " msgid " Version table:" msgstr " Table de version :" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, 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:1739 +#: cmdline/apt-cache.cc:1745 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -327,31 +327,31 @@ msgid "Cannot get debconf version. Is debconf installed?" msgstr "" "Impossible d'obtenir la version de debconf. Est-ce que debconf est installé ?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "La liste d'extension du paquet est trop longue" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "Erreur lors du traitement du répertoire %s" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "La liste d'extension des sources est trop grande" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 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:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "Erreur du traitement du contenu %s" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -434,11 +434,11 @@ msgstr "" " -c=? Lit ce fichier de configuration\n" " -o=? Place une option de configuration arbitraire" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "Aucune sélection ne correspond" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "" @@ -551,7 +551,7 @@ msgstr "L'archive ne possède pas de champ de paquet" msgid " %s has no override entry\n" msgstr "%s ne possède pas d'entrée « override »\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " le responsable de %s est %s et non %s\n" @@ -661,79 +661,79 @@ msgstr "Problème en déliant %s" msgid "Failed to rename %s to %s" msgstr "Impossible de changer le nom %s en %s" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "O" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "Erreur de compilation de l'expression rationnelle - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "Les paquets suivants contiennent des dépendances non satisfaites :" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "mais %s est installé" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "mais %s devra être installé" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "mais il n'est pas installable" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "mais c'est un paquet virtuel" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "mais il n'est pas installé" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "mais ne sera pas installé" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " ou" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "Les NOUVEAUX paquets suivants seront installés :" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "Les paquets suivants seront ENLEVÉS :" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "Les paquets suivants ont été conservés :" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "Les paquets suivants seront mis à jour :" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "Les paquets suivants seront mis à une VERSION INFÉRIEURE :" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "Les paquets retenus suivants seront changés :" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (en raison de %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -742,64 +742,64 @@ msgstr "" "Vous NE devez PAS faire ceci, à moins de savoir exactement ce\n" "que vous êtes en train de faire." -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu mis à jour, %lu nouvellement installés, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu réinstallés, " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu remis à une version inférieure, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu à enlever et %lu non mis à jour.\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu partiellement installés ou enlevés.\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "Note : sélection de %s pour la tâche « %s »\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "Note : sélection de %s pour l'expression rationnelle « %s »\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "Version choisie « %s » (%s) pour « %s »\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "Le paquet %s est un paquet virtuel fourni par :\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [Installé]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 msgid " [Not candidate version]" msgstr " [Pas de version candidate]" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "Vous devez explicitement sélectionner un paquet à installer." -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -811,163 +811,166 @@ msgstr "" "devenu obsolète\n" "ou qu'il n'est disponible que sur une autre source\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "Cependant les paquets suivants le remplacent :" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, c-format msgid "Package '%s' has no installation candidate" msgstr "Le paquet « %s » n'a pas de version susceptible d'être installée" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "Les paquets virtuels comme « %s » ne peuvent pas être supprimés\n" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "Note : sélection de « %s » au lieu de « %s »\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "Passe %s, il est déjà installé et la mise à jour n'est pas prévue.\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" "%s ignoré : il n'est pas installé et seules des mises à jour ont été " "demandées.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" "La réinstallation de %s est impossible, il ne peut pas être téléchargé.\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s est déjà la plus récente version disponible.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, c-format msgid "%s set to manually installed.\n" msgstr "%s passé en « installé manuellement ».\n" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "Le paquet %s n'est pas installé, et ne peut donc être supprimé\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "Correction des dépendances..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " a échoué." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "Impossible de corriger les dépendances" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "Impossible de minimiser le nombre des paquets mis à jour" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " Fait" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "Vous pouvez lancer « apt-get -f install » pour corriger ces problèmes." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "Dépendances manquantes. Essayez d'utiliser l'option -f." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ATTENTION : les paquets suivants n'ont pas été authentifiés." -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "Avertissement d'authentification ignoré.\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "Faut-il installer ces paquets sans vérification (o/N) ? " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "Certains paquets n'ont pas pu être authentifiés" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "Il y a des problèmes et -y a été employé sans --force-yes" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Erreur interne, « InstallPackages » appelé avec des paquets cassés." -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 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." -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "Erreur interne. Le tri a été interrompu." -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "La liste des sources ne peut être lue." - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 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." -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Il est nécessaire de prendre %so/%so dans les archives.\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Il est nécessaire de prendre %so dans les archives.\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" "Après cette opération, %so d'espace disque supplémentaires seront utilisés.\n" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, 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" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "Impossible de déterminer l'espace disponible sur %s" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "Pas assez d'espace disponible sur %s" -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 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 " @@ -975,11 +978,11 @@ msgstr "" # The space before the exclamation mark must not be a non-breaking space; this # sentence is supposed to be typed by a user who cannot see the difference. -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "Oui, faites ce que je vous dis !" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -990,28 +993,28 @@ msgstr "" "Pour continuer, tapez la phrase « %s »\n" " ?]" -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "Annulation." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "Souhaitez-vous continuer [O/n] ? " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Impossible de récupérer %s %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "Certains fichiers n'ont pu être téléchargés." -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 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:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1019,20 +1022,20 @@ msgstr "" "Impossible de récupérer quelques archives, peut-être devrez-vous lancer apt-" "get update ou essayer avec --fix-missing ?" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "" "l'option --fix-missing et l'échange de support ne sont pas encore reconnus." -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "Impossible de corriger le fait que les paquets manquent." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "Annulation de l'installation." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1046,39 +1049,39 @@ msgstr[1] "" "Les paquets suivants ont disparu du système car tous leurs fichiers\n" "ont été remplacés par d'autres paquets :" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "" "Note : cette opération volontaire (effectuée par dpkg) est automatique." -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" "La distribution cible « %s » indisponible pour le paquet « %s » est ignorée" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Choix de « %s » comme paquet source à la place de « %s »\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "La version « %s » indisponible du paquet « %s » est ignorée" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "La commande de mise à jour ne prend pas d'argument" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "Aucune suppression n'est sensée se produire : impossible de lancer " "« Autoremover »" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1090,7 +1093,7 @@ msgstr[1] "" "Les paquets suivants ont été installés automatiquement et ne sont plus " "nécessaires :" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1100,11 +1103,11 @@ msgstr[0] "" msgstr[1] "" "%lu paquets ont été installés automatiquement et ne sont plus nécessaires.\n" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "Veuillez utiliser « apt-get autoremove » pour les supprimer." -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1123,25 +1126,25 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "L'information suivante devrait vous aider à résoudre la situation : " -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" msgstr "" "Erreur interne, l'outil de suppression automatique a cassé quelque chose." -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "Erreur interne, AllUpgrade a cassé le boulot !" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" "Vous pouvez lancer « apt-get -f install » pour corriger ces problèmes :" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1149,7 +1152,7 @@ msgstr "" "Dépendances non satisfaites. Essayez « apt-get -f install » sans paquet\n" "(ou indiquez une solution)." -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1161,64 +1164,64 @@ msgstr "" "la distribution unstable, que certains paquets n'ont pas encore\n" "été créés ou ne sont pas sortis d'Incoming." -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "Paquets défectueux" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "Les paquets supplémentaires suivants seront installés : " -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "Paquets suggérés :" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "Paquets recommandés :" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "Impossible de trouver le paquet %s" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s passé en « installé automatiquement ».\n" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "Calcul de la mise à jour... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "Échec" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "Fait" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 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:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "Impossible de verrouiller le répertoire de téléchargement" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 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:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "Impossible de trouver une source de paquet pour %s" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -1228,7 +1231,7 @@ msgstr "" "suivi de versions « %s » à l'adresse :\n" "%s\n" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1240,76 +1243,80 @@ msgstr "" "pour récupérer les dernières mises à jour (éventuellement non encore " "publiées) du paquet.\n" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, 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:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "Pas assez d'espace disponible sur %s" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Nécessité de prendre %so/%so dans les sources.\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, 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:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "Récupération des sources %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "Échec lors de la récupération de quelques archives." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, 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:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "La commande de décompactage « %s » a échoué.\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, 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:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "La commande de construction « %s » a échoué.\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "Échec du processus fils" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 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:2506 +#: cmdline/apt-get.cc:2524 #, 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:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "%s n'a pas de dépendance de construction.\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1318,7 +1325,7 @@ 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:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1327,33 +1334,33 @@ msgstr "" "La dépendance %s vis-à -vis de %s ne peut être satisfaite car aucune version " "du paquet %s ne peut satisfaire à la version requise" -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, 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:2693 +#: cmdline/apt-get.cc:2711 #, 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:2709 +#: cmdline/apt-get.cc:2727 #, 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:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "Impossible d'activer les dépendances de construction" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "Modules reconnus :" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1442,7 +1449,7 @@ msgstr "" "apt.conf(5) pour plus d'informations et d'option.\n" " Cet APT a les « Super Cow Powers »\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1697,10 +1704,10 @@ msgstr "Le fichier %s/%s écrase celui inclus dans le paquet %s" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1839,23 +1846,23 @@ msgstr "Impossible de localiser un fichier de contrôle valide" msgid "Unparsable control file" msgstr "Fichier de contrôle non traitable" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "Ne parvient pas à ouvrir le tube pour %s" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "Erreur de lecture du processus %s" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "Impossible de statuer" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "Impossible de modifier l'heure " @@ -1951,7 +1958,7 @@ msgstr "Dépassement du délai de connexion" msgid "Server closed the connection" msgstr "Le serveur a fermé la connexion" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "Erreur de lecture" @@ -1963,7 +1970,7 @@ msgstr "Une réponse a fait déborder le tampon." msgid "Protocol corruption" msgstr "Corruption du protocole" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "Erreur d'écriture" @@ -2018,7 +2025,7 @@ msgstr "Délai de connexion au port de données dépassé" msgid "Unable to accept connection" msgstr "Impossible d'accepter une connexion" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "Problème de hachage du fichier" @@ -2156,67 +2163,67 @@ msgstr "J'ai une simple ligne d'en-tête au-dessus du caractère %u" msgid "Bad header line" msgstr "Mauvaise ligne d'en-tête" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 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/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "Le serveur http a envoyé un en-tête « Content-Length » invalide" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "Le serveur http a envoyé un en-tête « Content-Range » invalide" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "Ce serveur http possède un support des limites non-valide" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "Format de date inconnu" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "Sélection défaillante" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "Délai de connexion dépassé" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "Erreur d'écriture du fichier de sortie" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "Erreur d'écriture sur un fichier" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "Erreur d'écriture sur le fichier" -#: methods/http.cc:894 +#: methods/http.cc:900 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:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "Erreur de lecture du serveur" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 msgid "Failed to truncate file" msgstr "Échec de la troncature du fichier" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "Mauvais en-tête de donnée" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "Échec de la connexion" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "Erreur interne" @@ -2417,14 +2424,14 @@ msgstr "L'opération %s n'est pas valable" msgid "Unable to stat the mount point %s" msgstr "Impossible de localiser le point de montage %s" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "Impossible d'accéder à %s" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "Impossible d'accéder au cédérom." @@ -2448,149 +2455,149 @@ msgstr "Verrou non utilisé pour le fichier %s se situant sur une partition nfs" msgid "Could not get lock %s" msgstr "Impossible d'obtenir le verrou %s" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "A attendu %s mais il n'était pas présent" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, 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:635 +#: apt-pkg/contrib/fileutl.cc:657 #, 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:639 +#: apt-pkg/contrib/fileutl.cc:661 #, 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:641 +#: apt-pkg/contrib/fileutl.cc:663 #, 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:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "Impossible d'ouvrir le fichier %s" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, c-format msgid "Could not open file descriptor %d" msgstr "Impossible d'ouvrir le descripteur de fichier %d" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "lu(s), %lu restant à lire, mais rien n'est disponible" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "écrit(s), %lu restant à écrire, mais l'écriture est impossible" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, c-format msgid "Problem closing the gzip file %s" msgstr "Problème de fermeture du fichier gzip %s" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, c-format msgid "Problem closing the file %s" msgstr "Problème de fermeture du fichier %s" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, 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:925 +#: apt-pkg/contrib/fileutl.cc:956 #, c-format msgid "Problem unlinking the file %s" msgstr "Problème de suppression du lien %s" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "Problème de synchronisation du fichier" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "Cache des paquets vide" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "Le fichier de cache des paquets est corrompu" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "Le fichier de cache des paquets a une version incompatible" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, 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:163 +#: apt-pkg/pkgcache.cc:166 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:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "Dépend" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "Pré-Dépend" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "Suggère" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "Recommande" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "Est en conflit avec" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "Remplace" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "Rend obsolète" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "Casse" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "Améliore" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "important" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "nécessaire" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "standard" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "optionnel" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "supplémentaire" @@ -2719,7 +2726,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" "Impossible d'effectuer la configuration immédiate de « %s ». Veuillez " @@ -2741,7 +2748,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" "Impossible d'effectuer la configuration immédiate du paquet « %s », déjà " @@ -2761,7 +2768,7 @@ msgstr "" "Le paquet %s doit être réinstallé, mais il est impossible de trouver son " "archive." -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2769,13 +2776,13 @@ msgstr "" "Erreur, pkgProblemResolver::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:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Impossible de corriger les problèmes, des paquets défectueux sont en mode " "« garder en l'état »." -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2800,12 +2807,12 @@ msgstr "Impossible de verrouiller le répertoire %s" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, 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:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "Téléchargement du fichier %li sur %li" @@ -2827,12 +2834,12 @@ msgstr "" "Veuillez insérer le disque « %s » dans le lecteur « %s » et appuyez sur la " "touche Entrée." -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Le système de paquet « %s » n'est pas supporté" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "Impossible de déterminer un type du système de paquets adéquat" @@ -2856,19 +2863,23 @@ msgstr "" 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/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "La liste des sources ne peut être lue." + +#: apt-pkg/policy.cc:344 #, 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:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "Étiquette %s inconnue" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "Aucune priorité (ou zéro) n'a été spécifiée pour l'étiquette" @@ -2981,12 +2992,12 @@ msgstr "impossible de changer le nom, %s (%s -> %s)." msgid "MD5Sum mismatch" msgstr "Somme de contrôle MD5 incohérente" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" msgstr "Somme de contrôle de hachage incohérente" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 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" @@ -2994,32 +3005,32 @@ msgstr "" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "Le fichier Release a expiré, %s ignoré (non valable depuis %s)" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, 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:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "Une erreur s'est produite lors du contrôle de la signature. Le dépôt n'est " "pas mis à jour et les fichiers d'index précédents seront utilisés. Erreur de " "GPG : %s : %s\n" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "Erreur de GPG : %s : %s" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3028,7 +3039,7 @@ 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:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -3037,7 +3048,7 @@ msgstr "" "Impossible de localiser un fichier du paquet %s. Cela signifie que vous " "devrez corriger ce paquet vous-même." -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -3045,7 +3056,7 @@ msgstr "" "Les fichiers d'index des paquets sont corrompus. Aucun champ « Filename: » " "pour le paquet %s." -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "Taille incohérente" @@ -3170,39 +3181,39 @@ msgstr "Écriture de la nouvelle liste de sources\n" msgid "Source list entries for this disc are:\n" msgstr "Les entrées de listes de sources pour ce disque sont :\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "%i enregistrements écrits.\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i enregistrements écrits avec %i fichiers manquants.\n" -#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, 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:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" "%i enregistrements écrits avec %i fichiers manquants et %i qui ne " "correspondent pas\n" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, c-format msgid "Skipping nonexistent file %s" msgstr "Fichier %s inexistant ignoré" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "Impossible de trouver l'enregistrement d'authentification pour %s" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, c-format msgid "Hash mismatch for: %s" msgstr "Somme de contrôle de hachage incohérente pour %s" @@ -3219,13 +3230,11 @@ msgstr "La version « %s » de « %s » n'a pu être trouvée" #: apt-pkg/cacheset.cc:447 #, c-format -#| msgid "Couldn't find task %s" msgid "Couldn't find task '%s'" msgstr "Impossible de trouver la tâche « %s »" #: apt-pkg/cacheset.cc:454 #, c-format -#| msgid "Couldn't find package %s" msgid "Couldn't find any package by regex '%s'" msgstr "" "Impossible de trouver de paquet correspondant à l'expression rationnelle " @@ -3272,12 +3281,12 @@ msgstr "" msgid "Installing %s" msgstr "Installation de %s" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "Configuration de %s" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "Suppression de %s" @@ -3297,76 +3306,77 @@ msgstr "Disparition de %s constatée" msgid "Running post-installation trigger %s" msgstr "Exécution des actions différées (« trigger ») de %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "Répertoire %s inexistant" -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Could not open file '%s'" msgstr "Impossible d'ouvrir le fichier « %s »" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "Préparation de %s" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "Décompression de %s" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "Préparation de la configuration de %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "%s installé" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "Préparation de la suppression de %s" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "%s supprimé" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "Préparation de la suppression complète de %s" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "%s complètement supprimé" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Impossible d'écrire le journal, échec d'openpty()\n" "(/dev/pts est-il monté ?)\n" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "Exécution de dpkg" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 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:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "problème de dépendances : laissé non configuré" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3374,14 +3384,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:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 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:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3389,7 +3399,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:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_gl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+0200\n" "PO-Revision-Date: 2008-12-17 22:44+0100\n" "Last-Translator: mvillarino <mvillarino@users.sourceforge.net>\n" "Language-Team: galician <proxecto@trasno.net>\n" @@ -153,14 +153,14 @@ msgstr " Inmobilizado: " msgid " Version table:" msgstr " Táboa de versións:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s para %s compilado o %s %s\n" -#: cmdline/apt-cache.cc:1739 +#: cmdline/apt-cache.cc:1745 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -328,31 +328,31 @@ msgstr "Non se puido escribir en %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Non se puido obter a versión de debconf. ¿Debconf está instalado?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "A lista de extensións de paquetes é longa de máis" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "Erro ao procesar o directorio %s" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "A lista de extensións de fontes é longa de máis" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "Erro ao gravar a cabeceira no ficheiro de contido" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "Erro ao procesar o contido %s" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -437,11 +437,11 @@ msgstr "" " -c=? Le este ficheiro de configuración\n" " -o=? Establece unha opción de configuración" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "Ningunha selección encaixou" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Fallan ficheiros no grupo de ficheiros de paquetes \"%s\"" @@ -555,7 +555,7 @@ msgstr "O arquivo non tiña un campo Package" msgid " %s has no override entry\n" msgstr " %s non ten unha entrada de \"override\"\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " O mantedor de %s é %s, non %s\n" @@ -665,79 +665,79 @@ msgstr "Problema ao borrar %s" msgid "Failed to rename %s to %s" msgstr "Non se puido cambiar o nome de %s a %s" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "S" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "Erro na compilación da expresión regular - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "Os seguintes paquetes teñen dependencias sen cumprir:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "pero %s está instalado" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "pero hase instalar %s" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "pero non é instalable" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "pero é un paquete virtual" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "pero non está instalado" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "pero non se ha instalar" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " ou" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "Os seguintes paquetes NOVOS hanse instalar:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "Os seguintes paquetes hanse ELIMINAR:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "Os seguintes paquetes consérvanse:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "Os seguintes paquetes hanse actualizar:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "Os seguintes paquetes hanse DESACTUALIZAR:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "Os seguintes paquetes retidos hanse modificar:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (debido a %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -745,65 +745,65 @@ msgstr "" "AVISO: Hanse eliminar os seguintes paquetes esenciais.\n" "¡Isto NON se debe facer a menos que saiba exactamente o que está a facer!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu actualizados, %lu instalados, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu reinstalados, " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu desactualizados, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu hanse eliminar e %lu sen actualizar.\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu non instalados ou eliminados de todo.\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, fuzzy, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "Nota, escóllese %s para a expresión regular \"%s\"\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, fuzzy, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "Nota, escóllese %s para a expresión regular \"%s\"\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, fuzzy, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "Escolleuse a versión %s (%s) de %s\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "O paquete %s é un paquete virtual fornecido por:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [Instalado]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 #, fuzzy msgid " [Not candidate version]" msgstr "Versións candidatas" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "DeberÃa escoller un para instalar." -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -814,165 +814,168 @@ msgstr "" "Isto pode significar que o paquete falla, está obsoleto ou só está\n" "dispoñible noutra fonte.\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "Nembargantes, os seguintes paquetes substitúeno:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, fuzzy, c-format msgid "Package '%s' has no installation candidate" msgstr "O paquete %s non ten un candidato para a instalación" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, fuzzy, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "Nota, escóllese %s no canto de %s\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "OmÃtese %s, xa está instalado e non se especificou a actualización.\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, fuzzy, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "OmÃtese %s, xa está instalado e non se especificou a actualización.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "A reinstalación de %s non é posible, non se pode descargar.\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s xa é a versión máis recente.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, c-format msgid "%s set to manually installed.\n" msgstr "%s cambiouse a instalado manualmente.\n" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "O paquete %s non está instalado, asà que non se eliminou\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "A corrixir as dependencias..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " fallou." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "Non se puido corrixir as dependencias." -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "Non se puido minimizar o xogo de actualizacións" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " Rematado" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "Pode querer executar \"apt-get -f install\" para corrixilos." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "Dependencias incumpridas. Probe a empregar -f." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "AVISO: ¡Non se poden autenticar os seguintes paquetes!" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "Ignórase o aviso de autenticación.\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "¿Instalar estes paquetes sen verificación [s/N]? " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "Non se puido autenticar algúns paquetes" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "Houbo problemas e empregouse -y sen --force-yes" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Erro interno, chamouse a InstallPackages con paquetes rotos." -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "Hai que eliminar paquetes pero a eliminación está desactivada." -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "Erro interno, a ordeación non rematou" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "Non se puido ler a lista de orixes." - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" "Que raro... Os tamaños non coinciden, envÃe email a apt@packages.debian.org" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Hai que recibir %sB/%sB de arquivos.\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Hai que recibir %sB de arquivos.\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "Despois desta operación hanse ocupar %sB de disco adicionais.\n" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Despois desta operación hanse liberar %sB de disco.\n" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "Non se puido determinar o espazo libre en %s" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "Non hai espazo libre de abondo en %s." -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Especificouse \"Só Triviais\" pero esta non é unha operación trivial." -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "¡Si, fai o que digo!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -983,28 +986,28 @@ msgstr "" "Para continuar escriba a frase \"%s\"\n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "Abortar." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "¿Quere continuar [S/n]? " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Non se puido obter %s %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "Non se puido descargar algúns ficheiros" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "Completouse a descarga no modo de só descargas" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1012,21 +1015,21 @@ msgstr "" "Non se puido obter algúns arquivos; probe con apt-get update ou --fix-" "missing." -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "" "O emprego conxunto de --fix-missing e intercambio de discos non está " "soportado" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "Non se puido corrixir os paquetes non dispoñibles." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "A abortar a instalación." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1036,37 +1039,37 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Non se atopou a lista de paquetes fonte %s" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "A orde \"update\" non toma argumentos" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "Non se supón que se deban eliminar cousas; non se pode iniciar o " "autoeliminador" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1078,7 +1081,7 @@ msgstr[0] "" msgstr[1] "" "Os seguintes paquetes instaláronse automaticamente e xa non son necesarios:" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1088,11 +1091,11 @@ msgstr[0] "" msgstr[1] "" "Os seguintes paquetes instaláronse automaticamente e xa non son necesarios:" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "Empregue \"apt-get autoremove\" para eliminalos." -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1110,23 +1113,23 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "A seguinte información pode axudar a resolver a situación:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" msgstr "Erro interno, o autoeliminador rompeu cousas" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "Erro interno, AllUpgrade rompeu cousas" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Pode querer executar \"apt-get -f install\" corrixir isto:" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1134,7 +1137,7 @@ msgstr "" "Dependencias incumpridas. Probe \"apt-get -f install\" sen paquetes (ou " "especifique unha solución)." -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1145,70 +1148,70 @@ msgstr "" "unha situación imposible ou, se emprega a distribución inestable, que\n" "algúns paquetes solicitados aÃnda non se crearon ou moveron de Incoming." -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "Paquetes rotos" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "Hanse instalar os seguintes paquetes extra:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "Paquetes suxiridos:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "Paquetes recomendados:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "Non se puido atopar o paquete %s" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "%s cambiouse a instalado manualmente.\n" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "A calcular a actualización... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "Fallou" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "Rematado" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "Erro interno, o resolvedor interno rompeu cousas" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "Non se puido bloquear o directorio de descargas" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 msgid "Must specify at least one package to fetch source for" msgstr "" "Ten que especificar alomenos un paquete para lle descargar o código fonte" -#: cmdline/apt-get.cc:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "Non se puido atopar un paquete fonte para %s" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1216,76 +1219,80 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "OmÃtese o ficheiro xa descargado \"%s\"\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "Non hai espazo libre de abondo en %s" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Hai que recibir %sB/%sB de arquivos de fonte.\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Hai que recibir %sB de arquivos de fonte.\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "Obter fonte %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "Non se puido recibir algúns arquivos." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "OmÃtese o desempaquetamento do código fonte xa desempaquetado en %s\n" -#: cmdline/apt-get.cc:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Fallou a orde de desempaquetamento \"%s\".\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, 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:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "Fallou a codificación de %s.\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "O proceso fillo fallou" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 msgid "Must specify at least one package to check builddeps for" msgstr "" "Ten que especificar alomenos un paquete para lle comprobar as dependencias " "de compilación" -#: cmdline/apt-get.cc:2506 +#: cmdline/apt-get.cc:2524 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Non se puido obter a información de dependencias de compilación de %s" -#: cmdline/apt-get.cc:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "%s non ten dependencias de compilación.\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1294,7 +1301,7 @@ msgstr "" "A dependencia \"%s\" de %s non se pode satisfacer porque non se pode atopar " "o paquete %s" -#: cmdline/apt-get.cc:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1303,32 +1310,32 @@ msgstr "" "A dependencia \"%s\" de %s non se pode satisfacer porque ningunha versión " "dispoñible do paquete %s satisfai os requirimentos de versión" -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Non se puido satisfacer a dependencia \"%s\" de %s: O paquete instalado %s é " "novo de máis" -#: cmdline/apt-get.cc:2693 +#: cmdline/apt-get.cc:2711 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Non se puido satisfacer a dependencia \"%s\" de %s: %s" -#: cmdline/apt-get.cc:2709 +#: cmdline/apt-get.cc:2727 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Non se puideron satisfacer as dependencias de compilación de %s." -#: cmdline/apt-get.cc:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "Non se puido procesar as dependencias de compilación" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "Módulos soportados:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1418,7 +1425,7 @@ msgstr "" "máis información e opcións.\n" " Este APT ten Poderes de Supervaca.\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1665,10 +1672,10 @@ msgstr "O ficheiro %s/%s sobrescribe o do paquete %s" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1804,23 +1811,23 @@ msgstr "Non se puido atopar un ficheiro de control válido" msgid "Unparsable control file" msgstr "Ficheiro de control non analizable" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "Non se puido abrir unha canle para %s" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "Erro de lectura do proceso %s" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "Non se atopou" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "Non se puido estabrecer a hora de modificación" @@ -1913,7 +1920,7 @@ msgstr "Tempo esgotado para a conexión" msgid "Server closed the connection" msgstr "O servidor pechou a conexión" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "Erro de lectura" @@ -1925,7 +1932,7 @@ msgstr "Unha resposta desbordou o buffer." msgid "Protocol corruption" msgstr "Corrupción do protocolo" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "Erro de escritura" @@ -1980,7 +1987,7 @@ msgstr "A conexión do socket de datos esgotou o tempo" msgid "Unable to accept connection" msgstr "Non se pode aceptar a conexión" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "Problema ao calcular o hash do ficheiro" @@ -2117,67 +2124,67 @@ msgstr "Recibiuse unha soa liña de cabeceira en %u caracteres" msgid "Bad header line" msgstr "Liña de cabeceira incorrecta" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "O servidor HTTP enviou unha cabeceira de resposta non válida" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "O servidor HTTP enviou unha cabeceira Content-Length non válida" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "O servidor HTTP enviou unha cabeceira Content-Range non válida" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "Este servidor HTTP ten un soporte de rangos roto" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "Formato de data descoñecido" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "Fallou a chamada a select" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "A conexión esgotou o tempo" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "Erro ao escribir no ficheiro de saÃda" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "Erro ao escribir nun ficheiro" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "Erro ao escribir no ficheiro" -#: methods/http.cc:894 +#: methods/http.cc:900 msgid "Error reading from server. Remote end closed connection" msgstr "Erro ao ler do servidor. O extremo remoto pechou a conexión" -#: methods/http.cc:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "Erro ao ler do servidor" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 msgid "Failed to truncate file" msgstr "Non se puido truncar o ficheiro" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "Datos da cabeceira incorrectos" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "A conexión fallou" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "Erro interno" @@ -2370,14 +2377,14 @@ msgstr "Operación %s non válida" msgid "Unable to stat the mount point %s" msgstr "Non se pode analizar o punto de montaxe %s" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "Non se pode cambiar a %s" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "Non se puido analizar o CD-ROM" @@ -2401,149 +2408,149 @@ msgstr "Non se empregan bloqueos para o ficheiro de bloqueo montado por NFS %s" msgid "Could not get lock %s" msgstr "Non se puido obter o bloqueo %s" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Agardouse por %s pero non estaba alÃ" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "O subproceso %s recibiu un fallo de segmento." -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "O subproceso %s recibiu un fallo de segmento." -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, 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:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "O subproceso %s saÃu de xeito inesperado" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "Non se puido abrir o ficheiro %s" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "Non se puido abrir unha canle para %s" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "lectura, aÃnda hai %lu para ler pero non queda ningún" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "escritura, aÃnda hai %lu para escribir pero non se puido" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, fuzzy, c-format msgid "Problem closing the gzip file %s" msgstr "Problema ao pechar o ficheiro" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "Problema ao pechar o ficheiro" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "Problema ao sincronizar o ficheiro" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "Problema ao borrar o ficheiro" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "Problema ao sincronizar o ficheiro" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "Caché de paquetes baleira" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "O ficheiro de caché de paquetes está corrompido" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "O ficheiro de caché de paquetes é unha versión incompatible" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "Este APT non soporta o sistema de versionamento \"%s\"" -#: apt-pkg/pkgcache.cc:163 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache was built for a different architecture" msgstr "A caché de paquetes construiuse para unha arquitectura diferente" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "Depende" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "PreDepende" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "Suxire" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "Recomenda" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "Conflicto con" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "Substitúe a" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "Fai obsoleto a" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "Rompe" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "importante" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "requirido" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "estándar" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "opcional" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "extra" @@ -2661,7 +2668,7 @@ msgstr "O tipo \"%s\" non se coñece na liña %u da lista de fontes %s" #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" @@ -2679,7 +2686,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" @@ -2695,7 +2702,7 @@ msgid "" msgstr "" "O paquete %s ten que se reinstalar, pero non se pode atopar o seu arquivo." -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2703,11 +2710,11 @@ msgstr "" "Erro, pkgProblemResolver::Resolve xerou interrupcións, pode estar causado " "por paquetes retidos." -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "Non se poden resolver os problemas, ten retidos paquetes rotos." -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2732,12 +2739,12 @@ msgstr "Non se puido bloquear o directorio de listas" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "A obter o ficheiro %li de %li (fallan %s)" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "A obter o ficheiro %li de %li" @@ -2757,12 +2764,12 @@ msgstr "O método %s non se iniciou correctamente" msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "Introduza o disco etiquetado: \"%s\" na unidade \"%s\" e prema Intro." -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "O sistema de empaquetamento \"%s\" non está soportado" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "Non se puido determinar un tipo de sistema de empaquetamento axeitado" @@ -2784,19 +2791,23 @@ msgstr "" 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/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "Non se puido ler a lista de orixes." + +#: apt-pkg/policy.cc:344 #, fuzzy, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "" "Rexistro non válido no ficheiro de preferencias, non hai unha cabeceira " "Package" -#: apt-pkg/policy.cc:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "Non se entendeu o tipo de inmobilización %s" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "" "Non se indicou unha prioridade (ou indicouse cero) para a inmobilización" @@ -2899,12 +2910,12 @@ msgstr "fallou o cambio de nome, %s (%s -> %s)." msgid "MD5Sum mismatch" msgstr "Os MD5Sum non coinciden" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" msgstr "Os \"hashes\" non coinciden" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 msgid "There is no public key available for the following key IDs:\n" msgstr "" "Non hai unha clave pública dispoñible para os seguintes IDs de clave:\n" @@ -2912,29 +2923,29 @@ msgstr "" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2943,7 +2954,7 @@ msgstr "" "Non se puido atopar un ficheiro para o paquete %s. Isto pode significar que " "ten que arranxar este paquete a man. (Falla a arquitectura)" -#: apt-pkg/acquire-item.cc:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2952,7 +2963,7 @@ msgstr "" "Non se puido atopar un ficheiro para o paquete %s. Isto pode significar que " "ten que arranxar este paquete a man." -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2960,7 +2971,7 @@ msgstr "" "Os ficheiros de Ãndices de paquetes están corrompidos. Non hai un campo " "Filename: para o paquete %s." -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "Os tamaños non coinciden" @@ -3083,39 +3094,39 @@ msgstr "A gravar a nova lista de fontes\n" msgid "Source list entries for this disc are:\n" msgstr "As entradas da lista de fontes deste disco son:\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "Graváronse %i rexistros.\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Graváronse %i rexistros con %i ficheiros que fallan.\n" -#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Graváronse %i rexistros con %i ficheiros que non coinciden\n" -#: apt-pkg/indexcopy.cc:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" "Graváronse %i rexistros con %i ficheiros que fallan e %i ficheiros que non " "coinciden\n" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, fuzzy, c-format msgid "Skipping nonexistent file %s" msgstr "A abrir o ficheiro de configuración %s" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, fuzzy, c-format msgid "Hash mismatch for: %s" msgstr "Os \"hashes\" non coinciden" @@ -3172,12 +3183,12 @@ msgstr "" msgid "Installing %s" msgstr "A instalar %s" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "A configurar %s" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "A eliminar %s" @@ -3197,94 +3208,95 @@ msgstr "" msgid "Running post-installation trigger %s" msgstr "A executar o disparador de post-instalación %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "O directorio \"%s\" falla" -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, fuzzy, c-format msgid "Could not open file '%s'" msgstr "Non se puido abrir o ficheiro %s" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "A preparar %s" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "A desempaquetar %s" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "A se preparar para configurar %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "Instalouse %s" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "A se preparar para a eliminación de %s" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "Eliminouse %s" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "A se preparar para eliminar %s completamente" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "Eliminouse %s completamente" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Non se puido escribir no rexistro, a chamada a openpty() fallou (¿/dev/pts " "non estaba montado?)\n" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -2319,7 +2319,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:324 apt-pkg/packagemanager.cc:586 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" @@ -2334,7 +2334,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:478 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: hu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+0200\n" "PO-Revision-Date: 2008-05-11 14:49+0100\n" "Last-Translator: SZERVÃC Attila <sas@321.hu>\n" "Language-Team: Hungarian <debian-l10n-hungarian>\n" @@ -153,14 +153,14 @@ msgstr " Csomag Tű: " msgid " Version table:" msgstr " Verziótáblázat:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s erre: %s ekkor fordult: %s %s\n" -#: cmdline/apt-cache.cc:1739 +#: cmdline/apt-cache.cc:1745 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -324,31 +324,31 @@ msgstr "Nem lehet Ãrni ebbe: %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Nem lehet megállapÃtani a debconf verziót. A debconf telepÃtve van?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "A csomagkiterjesztések listája túl hosszú" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "Hiba a(z) %s könyvtár feldolgozásakor" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "A forráskiterjesztések listája túl hosszú" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "Hiba a tartalom fájl fejlécének Ãrásakor" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "Hiba %s tartalmának feldolgozásakor" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -430,11 +430,11 @@ msgstr "" " -c=? Ezt a konfigurációs fájlt olvassa be\n" " -o=? BeállÃt egy tetszÅ‘leges konfigurációs opciót" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "Nincs illeszkedÅ‘ kiválasztás" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, 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ájl-csoportból" @@ -547,7 +547,7 @@ msgstr "Az archÃvumnak nem volt csomag mezÅ‘je" msgid " %s has no override entry\n" msgstr " %s nem rendelkezik felülbÃráló bejegyzéssel\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s karbantartója %s, nem %s\n" @@ -657,79 +657,79 @@ msgstr "Hiba %s elláncolásakor" msgid "Failed to rename %s to %s" msgstr "Nem sikerült átnevezni %s-t erre: %s" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "I" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "Regex fordÃtási hiba - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "Az alábbi csomagoknak teljesÃtetlen függÅ‘ségei vannak:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "de %s van telepÃtve" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "de csak %s telepÃthetÅ‘" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "de az nem telepÃthetÅ‘" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "de az egy virtuális csomag" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "de az nincs telepÃtve" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "de az nincs telepÃtésre megjelölve" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " vagy" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "Az alábbi ÚJ csomagok lesznek telepÃtve:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "Az alábbi csomagok el lesznek TÃVOLÃTVA:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "Az alábbi csomagok vissza lesznek tartva:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "Az alábbi csomagok frissÃtve lesznek:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "Az alábbi csomagok ÖREGBÃTÉSRE kerülnek:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "Az alábbi visszafogott csomagokat cserélem:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (%s miatt) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -737,65 +737,65 @@ msgstr "" "FIGYELEM: Az alábbi alapvetÅ‘ csomagok lesznek eltávolÃtva\n" "NE tedd ezt, mÃg nem tudod pontosan, mit csinálsz!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu frissÃtett, %lu újonnan telepÃtett, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu újratelepÃtendÅ‘, " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu kerül öregbÃtésre, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu eltávolÃtandó és %lu nem frissÃtett.\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu nincs teljesen telepÃtve/eltávolÃtva.\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, fuzzy, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "Megjegyzés: %s kiválasztása %s reguláris kifejezéshez\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, fuzzy, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "Megjegyzés: %s kiválasztása %s reguláris kifejezéshez\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, fuzzy, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "%s (%s) a kiválasztott verzió ehhez: %s\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "%s egy virtuális csomag, melyet az alábbi csomagok adnak:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [TelepÃtve]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 #, fuzzy msgid " [Not candidate version]" msgstr "Lehetséges verziók" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "Egyet név szerint ki kell jelölnöd a telepÃtésre." -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -805,164 +805,167 @@ msgstr "" "%s csomag nem elérhetÅ‘, de egy másik hivatkozik rá\n" ".A kért csomag tehát: hiányzik, elavult vagy csak más forrásból érhetÅ‘ el\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "De az alábbi csomagok felváltják:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, fuzzy, c-format msgid "Package '%s' has no installation candidate" msgstr "%s csomagnak nincs e telepÃtéshez kijelölhetÅ‘ változata" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, fuzzy, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "Megjegyzés: %s kiválasztása %s helyett\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "%s kihagyása, ez már telepÃtve van és a frissÃtés nincs beállÃtva.\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, fuzzy, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "%s kihagyása, ez már telepÃtve van és a frissÃtés nincs beállÃtva.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "%s újratelepÃtése nem lehetséges, mert nem lehet letölteni.\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s már a legújabb verzió.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, c-format msgid "%s set to manually installed.\n" msgstr "%s kézi telepÃtésre állÃtott.\n" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "A megadott %s csomag nincs telepÃtve, Ãgy hát nem is töröltem\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "FüggÅ‘ségek javÃtása..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " sikertelen." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "Nem lehet javÃtani a függÅ‘ségeket" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "Nem lehet minimalizálni a frissÃtendÅ‘ csomagok mennyiségét" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " Kész" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "Ezek kijavÃtásához próbáld futtatni az 'apt-get -f install'-t ." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "TeljesÃtetlen függÅ‘ségek. Próbáld a -f használatával." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "FIGYELEM: Az alábbi csomagok nem hitelesÃthetÅ‘k!" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "A hitelesÃtési figyelmeztetést átléptem.\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "Valóban telepÃted e csomagokat ellenÅ‘rzés nélkül (i/N)? " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "Néhány csomag nem hitelesÃthetÅ‘" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "Problémák vannak és a -y -t használtad --force-yes nélkül" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "BelsÅ‘ hiba, az InstallPackages törött csomagokkal lett meghÃvva!" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 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." -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "BelsÅ‘ hiba, a rendezés nem zárult" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "A források listája olvashatatlan." - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "Ez durva... A méretek nem egyeznek, Ãrj ide:apt@packages.debian.org" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "LetöltendÅ‘ az archÃvumokból: %sB/%sB\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Letöltés az archÃvumokból: %sB\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "E művelet után további %sB lemez-területetet használok fel.\n" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "E művelet után %sB lemez-terület szabadul fel.\n" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "Nem határozható meg a szabad hely itt: %s" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "Nincs elég szabad hely itt: %s." -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "A 'Trivial Only' meg van adva, de ez nem egy triviális művelet." -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "Igen, tedd amit mondok!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -973,28 +976,28 @@ msgstr "" "A folytatáshoz Ãrd be ezt: '%s'\n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "MegszakÃtva." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "Folytatni akarod [Y/n]? " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Sikertelen letöltés: %s %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "Néhány fájlt nem sikerült letölteni" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 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:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1002,19 +1005,19 @@ msgstr "" "Nem lehet letölteni néhány archÃvumot.\n" " Próbáld ki az apt-get update -et vagy a --fix-missing -et." -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing és média csere jelenleg nem támogatott" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "Nem lehet javÃtani a hiányzó csomagokat." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "TelepÃtés megszakÃtása." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1023,35 +1026,35 @@ msgid_plural "" "all files have been overwritten by other packages:" msgstr[0] "" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Nem lehet a(z) %s forrás csomaglistáját elérni" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "Az update parancsnak nincsenek argumentumai" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Nincs törölnivaló, az AutoRemover nem indÃtható" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1060,18 +1063,18 @@ msgid_plural "" "required:" msgstr[0] "Az alábbi csomagok automatikusan települtek, de már nem kellenek:" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" "%lu packages were automatically installed and are no longer required.\n" msgstr[0] "Az alábbi csomagok automatikusan települtek, de már nem kellenek:" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "Töröld az 'apt-get autoremove' paranccsal!" -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1089,23 +1092,23 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "Az alábbi információ segÃthet megoldani a helyzetet:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" msgstr "BelsÅ‘ hiba, az AutoRemover sérült" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "BelsÅ‘ hiba, AllUpgrade megsértett valamit" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Próbáld futtatni az 'apt-get -f install'-t az alábbiak javÃtásához:" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1113,7 +1116,7 @@ msgstr "" "TeljesÃtetlen függÅ‘ségek. Próbáld az 'apt-get -f install'-t csomagok nélkül " "(vagy telepÃtsd a függÅ‘ségeket is!)." -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1125,70 +1128,70 @@ msgstr "" "használod, akkor néhány igényelt csomag még nem készült el vagy ki\n" "lett mozdÃtva az Incoming-ból." -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "Törött csomagok" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "Az alábbi extra csomagok kerülnek telepÃtésre:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "Javasolt csomagok:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "Ajánlott csomagok:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "Az alábbi csomag nem található: %s" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "%s kézi telepÃtésre állÃtott.\n" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "FrissÃtés kiszámÃtása... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "Sikertelen" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "Kész" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "BelsÅ‘ hiba, hibafeloldó gond" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "Nem tudom zárolni a letöltési könyvtárat" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 msgid "Must specify at least one package to fetch source for" msgstr "" "Legalább egy csomagot meg kell adnod, aminek a forrását le kell tölteni" -#: cmdline/apt-get.cc:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "Nem található forráscsomag ehhez: %s" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1196,76 +1199,80 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, 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:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "Nincs elég szabad hely itt: %s" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "%sB/%sB forrás-archÃvumot kell letölteni.\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "%sB forrás-archÃvumot kell letölteni.\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "Forrás letöltése: %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "Nem sikerült néhány archÃvumot letölteni." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, 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:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "'%s' kibontási parancs nem sikerült.\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "EllenÅ‘rizd, hogy a 'dpkg-dev' csomag telepÃtve van-e.\n" -#: cmdline/apt-get.cc:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "'%s' elkészÃtési parancs nem sikerült.\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "Hiba a gyermekfolyamatnál" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 msgid "Must specify at least one package to check builddeps for" msgstr "" "Legalább egy csomagot adj meg, aminek a fordÃtási függÅ‘ségeit ellenÅ‘rizni " "kell" -#: cmdline/apt-get.cc:2506 +#: cmdline/apt-get.cc:2524 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Nem lehet %s fordÃtási-függÅ‘ség információját beszerezni" -#: cmdline/apt-get.cc:2526 +#: cmdline/apt-get.cc:2544 #, 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:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1274,7 +1281,7 @@ msgstr "" "%s függÅ‘sége ennek: %s, ez nem elégÃthetÅ‘ ki, mert a(z) %s csomag nem " "található" -#: cmdline/apt-get.cc:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1283,32 +1290,32 @@ msgstr "" "%s függÅ‘sége ennek: %s, ez nem elégÃthetÅ‘ ki, mert a(z) %s csomagnak nincs a " "verzió-követelményt kielégÃtÅ‘ elérhetÅ‘ verziója." -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "%s függÅ‘séget %s csomaghoz nem lehet kielégÃteni: %s telepÃtett csomag túl " "friss." -#: cmdline/apt-get.cc:2693 +#: cmdline/apt-get.cc:2711 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "%s függÅ‘séget %s csomaghoz nem lehet kielégÃteni: %s " -#: cmdline/apt-get.cc:2709 +#: cmdline/apt-get.cc:2727 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "%s épÃtési függÅ‘ségei nem elégÃthetÅ‘ek ki." -#: cmdline/apt-get.cc:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "Nem sikerült az épÃtési függÅ‘ségeket feldolgozni" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "Támogatott modulok:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1395,7 +1402,7 @@ msgstr "" "további információkért és opciókért.\n" " Ez az APT a SzuperTehén Hatalmával rendelkezik.\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1640,10 +1647,10 @@ msgstr "A(z) %s/%s fájl felülÃrja a(z) %s csomagban levÅ‘t" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1778,23 +1785,23 @@ msgstr "Nem található érvényes vezérlÅ‘ fájl" msgid "Unparsable control file" msgstr "Értelmezhetetlen vezérlÅ‘ fájl" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "Nem lehet csövet nyitni ehhez: %s" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "Olvasási hiba %s folyamattól" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "Nem érhetÅ‘ el" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "A módosÃtási idÅ‘t beállÃtása sikertelen" @@ -1887,7 +1894,7 @@ msgstr "IdÅ‘túllépés a kapcsolatban" msgid "Server closed the connection" msgstr "A kiszolgáló lezárta a kapcsolatot" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "Olvasási hiba" @@ -1899,7 +1906,7 @@ msgstr "A válasz túlcsordÃtotta a puffert." msgid "Protocol corruption" msgstr "Protokoll hiba" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "Ãrási hiba" @@ -1953,7 +1960,7 @@ msgstr "Az adat sockethez kapcsolódás túllépte az idÅ‘t" msgid "Unable to accept connection" msgstr "Nem lehet elfogadni a kapcsolatot" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "Probléma a fájl hash értékének meghatározásakor" @@ -2085,68 +2092,68 @@ msgstr "Egyetlen fejléc sort kaptam, ami több mint %u karakteres" msgid "Bad header line" msgstr "Rossz fejléc sor" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "A http kiszolgáló egy érvénytelen válaszfejlécet küldött" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "A http kiszolgáló egy érvénytelen Content-Length fejlécet küldött" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "A http kiszolgáló egy érvénytelen Content-Range fejlécet küldött" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "Ez a http szerver támogatja a sérült tartományokat " -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "Ismeretlen dátum formátum" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "Sikertelen kiválasztás" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "IdÅ‘túllépés a kapcsolatban" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "Hiba a kimeneti fájl Ãrásakor" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "Hiba fájl Ãrásakor" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "Hiba a fájl Ãrásakor" -#: methods/http.cc:894 +#: methods/http.cc:900 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:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "Hiba a kiszolgálóról olvasáskor" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 #, fuzzy msgid "Failed to truncate file" msgstr "%s fájl Ãrása sikertelen" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "Rossz fejlécadat" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "Sikertelen kapcsolódás" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "BelsÅ‘ hiba" @@ -2340,14 +2347,14 @@ msgstr "%s érvénytelen művelet" msgid "Unable to stat the mount point %s" msgstr "%s csatolási pont nem érhetÅ‘ el" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "Nem sikerült ide váltani: %s" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "Nem sikerült elérni a CD-ROM-ot." @@ -2371,149 +2378,149 @@ msgstr "Nem zárolom '%s' NFS-csatlakoztatású zárolási fájlt" msgid "Could not get lock %s" msgstr "Nem sikerült zárolni: %s" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "%s nem volt itt, ahogy vártam" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "%s alfolyamat szegmentálási hibát okozott." -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "%s alfolyamat szegmentálási hibát okozott." -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, 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:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "%s alfolyamat váratlanul kilépett" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "Nem lehet megnyitni %s fájlt" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "Nem lehet csövet nyitni ehhez: %s" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "olvasás, még kellene %lu, de már az összes elfogyott" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "Ãrás, még kiÃrandó %lu de ez nem lehetséges" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, fuzzy, c-format msgid "Problem closing the gzip file %s" msgstr "Hiba a fájl bezárásakor" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "Hiba a fájl bezárásakor" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "Hiba a fájl szinkronizálásakor" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "Hiba a fájl leválasztásával" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "Hiba a fájl szinkronizálásakor" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "Ãœres csomag-gyorstár" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "A csomag-gyorstár fájl megsérült" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "A csomag-gyorstár fájl inkompatibilis verziójú" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, 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:163 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache was built for a different architecture" msgstr "A csomag-gyorstár egy másik architektúrához készült" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "Függ ettÅ‘l" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "Függ ettÅ‘l (elÅ‘függés)" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "Javasolja" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "Ajánlja" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "Ãœtközik" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "Kicseréli" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "Elavulttá teszi" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "Töri" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "fontos" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "szükséges" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "szabványos" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "opcionális" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "extra" @@ -2631,7 +2638,7 @@ msgstr "'%s' tÃpus nem ismert a(z) %u. sorban a(z) %s forráslistában" #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" @@ -2649,7 +2656,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" @@ -2665,7 +2672,7 @@ msgid "" msgstr "" "A(z) %s csomagot újra kell telepÃteni, de nem találok archÃvumot hozzá." -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2673,12 +2680,12 @@ msgstr "" "Hiba, a pkgProblemResolver::Resolve töréseket generált, ezt visszafogott " "csomagok okozhatják." -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "" "A problémák nem javÃthatók, sérült visszafogott csomagok vannak a rendszeren." -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2703,12 +2710,12 @@ msgstr "Nem tudom a listakönyvtárat zárolni" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "%li/%li fájl letöltése (%s marad)" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "%li/%li fájl letöltése" @@ -2728,12 +2735,12 @@ msgstr "A(z) %s metódus nem indult el helyesen" msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "Tedd be a(z) %s cÃmkéjű lemezt a(z) %s meghajtóba és üss entert" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "A(z) '%s' csomagrendszer nem támogatott" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "A megfelelÅ‘ csomagrendszer tÃpus nem határozható meg" @@ -2755,17 +2762,21 @@ msgstr "" msgid "You may want to run apt-get update to correct these problems" msgstr "Próbáld futtatni az apt-get update -et, hogy javÃtsd e hibákat" -#: apt-pkg/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "A források listája olvashatatlan." + +#: apt-pkg/policy.cc:344 #, fuzzy, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "Hibás rekord a tulajdonság fájlban, nincs csomagfejléc" -#: apt-pkg/policy.cc:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "A(z) %s tűtÃpus nem értelmezhetÅ‘" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "Nincs prioritás (vagy nulla) megadva a tűhöz" @@ -2873,41 +2884,41 @@ msgstr "sikertelen átnevezés, %s (%s -> %s)." msgid "MD5Sum mismatch" msgstr "Az MD5Sum nem megfelelÅ‘" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" msgstr "A Hash Sum nem megfelelÅ‘" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 msgid "There is no public key available for the following key IDs:\n" msgstr "Nincs elérhetÅ‘ nyilvános kulcs az alábbi kulcs azonosÃtókhoz:\n" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2916,7 +2927,7 @@ msgstr "" "Nem találtam egy fájlt a(z) %s csomaghoz. Ez azt jelentheti, hogy kézzel " "kell kijavÃtani a csomagot. (hiányzó arch. miatt)" -#: apt-pkg/acquire-item.cc:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2925,14 +2936,14 @@ msgstr "" "Nem találtam egy fájlt a(z) %s csomaghoz. Ez azt jelentheti, hogy kézzel " "kell kijavÃtani a csomagot." -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" "A csomagindex-fájlok megsérültek. Nincs Filename: mezÅ‘ a(z) %s csomaghoz." -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "A méret nem megfelelÅ‘" @@ -3055,37 +3066,37 @@ msgstr "Új forráslista Ãrása\n" msgid "Source list entries for this disc are:\n" msgstr "E lemezhez tartozó forráslista-bejegyzések a következÅ‘k:\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "%i rekord kiÃrva.\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, 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:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i rekord kiÃrva %i hibásan párosÃtott fájllal\n" -#: apt-pkg/indexcopy.cc:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, 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 hibásan párosÃtott fájllal\n" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, fuzzy, c-format msgid "Skipping nonexistent file %s" msgstr "%s konfigurációs fájl megnyitása" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, fuzzy, c-format msgid "Hash mismatch for: %s" msgstr "A Hash Sum nem megfelelÅ‘" @@ -3142,12 +3153,12 @@ msgstr "" msgid "Installing %s" msgstr "TelepÃtett %s" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "%s konfigurálása" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "%s eltávolÃtása" @@ -3167,92 +3178,93 @@ msgstr "" msgid "Running post-installation trigger %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "Hiányzik ez a könyvtár: %s" -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, fuzzy, c-format msgid "Could not open file '%s'" msgstr "Nem lehet megnyitni %s fájlt" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "%s elÅ‘készÃtése" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "%s kicsomagolása" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "%s konfigurálásának elÅ‘készÃtése" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "TelepÃtett %s" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, 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:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "EltávolÃtott %s" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "%s teljes eltávolÃtása elÅ‘készÃtése" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "%s teljesen eltávolÃtva" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "Naplózási hiba, sikertelen openpty() (a /dev/pts nincs csatolva?)\n" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+0200\n" "PO-Revision-Date: 2010-08-27 20:57+0200\n" "Last-Translator: Milo Casagrande <milo@ubuntu.com>\n" "Language-Team: Italian <tp@lists.linux.it>\n" @@ -149,14 +149,14 @@ msgstr " Gancio del pacchetto: " msgid " Version table:" msgstr " Tabella versione:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, 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:1739 +#: cmdline/apt-cache.cc:1745 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -322,31 +322,31 @@ msgstr "Impossibile scrivere in %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Impossibile trovare la versione di debconf. È installato?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "L'elenco dell'estensione del pacchetto è troppo lungo" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "Errore nell'elaborare la directory %s" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "L'elenco dell'estensione del sorgente è troppo lungo" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "Errore nella scrittura dell'intestazione nel file \"contents\"" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "Errore nell'elaborare i contenuti %s" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -427,11 +427,11 @@ msgstr "" " -c=? Legge come configurazione il file specificato\n" " -o=? Imposta un'opzione arbitraria di configurazione" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "Nessuna selezione corrisponde" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Mancano alcuni file nel file group di pacchetti \"%s\"" @@ -546,7 +546,7 @@ msgstr "L'archivio non ha un campo \"package\"" msgid " %s has no override entry\n" msgstr " %s non ha un campo override\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " il responsabile di %s è %s non %s\n" @@ -656,79 +656,79 @@ msgstr "Problema nell'unlink di %s" msgid "Failed to rename %s to %s" msgstr "Rinomina di %s in %s non riuscita" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "S" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "Errore di compilazione dell'espressione regolare - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "I seguenti pacchetti hanno dipendenze non soddisfatte:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "ma la versione %s è installata" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "ma la versione %s sta per essere installata" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "ma non è installabile" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "ma è un pacchetto virtuale" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "ma non è installato" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "ma non sta per essere installato" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " oppure" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "I seguenti pacchetti NUOVI saranno installati:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "I seguenti pacchetti saranno RIMOSSI:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "I seguenti pacchetti sono stati mantenuti alla versione attuale:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "I seguenti pacchetti saranno aggiornati:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "I seguenti pacchetti saranno RETROCESSI:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "I seguenti pacchetti bloccati saranno cambiati:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (a causa di %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -737,64 +737,64 @@ msgstr "" "Questo non dovrebbe essere fatto a meno che non si sappia esattamente cosa " "si sta facendo." -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu aggiornati, %lu installati, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu reinstallati, " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu retrocessi, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu da rimuovere e %lu non aggiornati.\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu non completamente installati o rimossi.\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "Nota, viene selezionato \"%s\" per il task \"%s\"\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "Nota, viene selezionato \"%s\" per l'espressione regolare \"%s\"\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "Versione \"%s\" (%s) selezionata per \"%s\"\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "Il pacchetto %s è un pacchetto virtuale fornito da:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [Installato]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 msgid " [Not candidate version]" msgstr " [Versione non candidata]" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "È necessario sceglierne uno da installare." -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -805,173 +805,176 @@ msgstr "" "pacchetto. Questo può significare che il pacchetto è mancante, è obsoleto\n" "oppure è disponibile solo all'interno di un'altra sorgente\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "Tuttavia questi pacchetti lo sostituiscono:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, c-format msgid "Package '%s' has no installation candidate" msgstr "Il pacchetto \"%s\" non ha candidati da installare" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "Pacchetti virtuali come \"%s\" non possono essere rimossi\n" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "Nota, viene selezionato \"%s\" al posto di \"%s\"\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" "Viene saltato %s poiché è già installato e l'aggiornamento non è impostato.\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" "Viene saltato %s poiché non è installato e sono richiesti solo gli " "aggiornamenti.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "La reinstallazione di %s non è possibile, non può essere scaricato.\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s è già alla versione più recente.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, c-format msgid "%s set to manually installed.\n" msgstr "È stato impostato %s per l'installazione manuale.\n" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "Il pacchetto %s non è installato e quindi non è stato rimosso\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "Correzione delle dipendenze..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " non riuscita." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "Impossibile correggere le dipendenze" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "Impossibile minimizzare l'insieme da aggiornare" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " Fatto" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "È utile eseguire \"apt-get -f install\" per correggere ciò." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "Dipendenze non trovate. Riprovare usando -f." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ATTENZIONE: i seguenti pacchetti non possono essere autenticati." -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "Avviso di autenticazione disabilitato.\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "Installare questi pacchetti senza verificarli [s/N]? " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "Alcuni pacchetti non possono essere autenticati" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "Si sono verificati dei problemi ed è stata usata -y senza --force-yes" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" "Errore interno, InstallPackages è stato chiamato con un pacchetto " "danneggiato." -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "" "I pacchetti devono essere rimossi, ma l'azione di rimozione è disabilitata." -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "Errore interno, l'ordinamento non è stato terminato" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "Impossibile leggere l'elenco dei sorgenti." - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 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" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "È necessario scaricare %sB/%sB di archivi.\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "È necessario scaricare %sB di archivi.\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, 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" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, 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" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "Impossibile determinare lo spazio libero in %s" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "Spazio libero in %s insufficiente." -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "È stata specificata la modalità \"Trivial Only\", ma questa non è " "un'operazione banale." -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "Sì, esegui come da richiesta." -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -982,28 +985,28 @@ msgstr "" "Per continuare scrivere la frase \"%s\"\n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "Interrotto." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "Continuare [S/n]? " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Impossibile recuperare %s %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "Scaricamento di alcuni file non riuscito" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "Scaricamento completato e in modalità solo scaricamento" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1011,19 +1014,19 @@ msgstr "" "Impossibile scaricare alcuni pacchetti. Potrebbe essere utile eseguire \"apt-" "get update\" o provare l'opzione \"--fix-missing\"." -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing su supporti estraibili non è ancora supportato" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "Impossibile correggere i pacchetti mancanti." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "Interruzione dell'installazione." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1037,36 +1040,36 @@ msgstr[1] "" "I seguenti pacchetti sono spariti dal sistema poiché\n" "tutti i file sono stati sovrascritti da altri pacchetti:" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "Nota: questo viene svolto automaticamente da dpkg." -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "Ignorato il rilascio non disponibile \"%s\" del pacchetto \"%s\"" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Scelto \"%s\" come pacchetto sorgente al posto di \"%s\"\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "Ignorata la versione \"%s\" non disponibile del pacchetto \"%s\"" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "Il comando update non accetta argomenti" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "Non si è autorizzati a rimuovere nulla, impossibile avviare AutoRemover" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1079,7 +1082,7 @@ msgstr[1] "" "I seguenti pacchetti sono stati installati automaticamente e non sono più " "richiesti:" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1090,11 +1093,11 @@ msgstr[1] "" "%lu pacchetti sono stati installati automaticamente e non sono più " "richiesti.\n" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "Usare \"apt-get autoremove\" per rimuoverli." -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1112,24 +1115,24 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "Le seguenti informazioni possono aiutare a risolvere la situazione:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" msgstr "Errore interno, AutoRemover ha rovinato qualche cosa" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "Errore interno, AllUpgrade ha rovinato qualche cosa" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" "È utile eseguire \"apt-get -f install\" per correggere questi problemi:" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1137,7 +1140,7 @@ msgstr "" "Dipendenze non soddisfatte. Provare \"apt-get -f install\" senza pacchetti " "(o specificare una soluzione)." -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1149,63 +1152,63 @@ msgstr "" "usando una distribuzione in sviluppo, che alcuni pacchetti richiesti\n" "non sono ancora stati creati o sono stati rimossi da Incoming." -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "Pacchetti danneggiati" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "I seguenti pacchetti saranno inoltre installati:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "Pacchetti suggeriti:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "Pacchetti raccomandati:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "Impossibile trovare il pacchetto %s" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s impostato automaticamente come installato.\n" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "Calcolo dell'aggiornamento... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "Non riuscito" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "Eseguito" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "Errore interno, \"problem resolver\" ha rovinato qualcosa" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "Impossibile bloccare la directory di scaricamento" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 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:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "Impossibile trovare un pacchetto sorgente per %s" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -1215,7 +1218,7 @@ msgstr "" "all'interno del sistema di controllo della versione \"%s\" presso:\n" "%s\n" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1227,76 +1230,80 @@ msgstr "" "per recuperare gli ultimi (e probabilmente non rilasciati) aggiornamenti del " "pacchetto.\n" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Il pacchetto \"%s\" già scaricato viene saltato\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "Lo spazio libero in %s è insufficiente" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "È necessario recuperare %sB/%sB di sorgenti.\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "È necessario scaricare %sB di sorgenti.\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "Recupero sorgente %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "Recupero di alcuni archivi non riuscito." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, 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:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Comando di estrazione \"%s\" non riuscito.\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, 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:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "Comando \"%s\" di generazione non riuscito.\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "Creazione processo figlio non riuscita" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 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:2506 +#: cmdline/apt-get.cc:2524 #, 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:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "%s non ha dipendenze di generazione.\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1305,7 +1312,7 @@ msgstr "" "%s dipendenze per %s non possono essere soddisfatte perché il pacchetto %s " "non può essere trovato" -#: cmdline/apt-get.cc:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1314,32 +1321,32 @@ msgstr "" "%s dipendenze per %s non possono essere soddisfatte perché nessuna versione " "del pacchetto %s può soddisfare le richieste di versione" -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, 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:2693 +#: cmdline/apt-get.cc:2711 #, 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:2709 +#: cmdline/apt-get.cc:2727 #, 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:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "Elaborazione delle dipendenze di generazione non riuscita" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "Moduli supportati:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1429,7 +1436,7 @@ msgstr "" "apt-get(8), sources.list(5) e apt.conf(5).\n" " Questo APT ha i poteri della Super Mucca.\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1685,10 +1692,10 @@ msgstr "Il file %s/%s sovrascrive quello nel pacchetto %s" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1824,23 +1831,23 @@ msgstr "Impossibile localizzare un file \"control\" valido" msgid "Unparsable control file" msgstr "File \"control\" non analizzabile" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "Impossibile aprire una pipe per %s" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "Errore di lettura dal processo %s" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "Esecuzione di stat non riuscita" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "Impostazione della data di modifica non riuscita" @@ -1934,7 +1941,7 @@ msgstr "Connessione scaduta" msgid "Server closed the connection" msgstr "Il server ha chiuso la connessione" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "Errore di lettura" @@ -1946,7 +1953,7 @@ msgstr "Una risposta ha superato le dimensioni del buffer." msgid "Protocol corruption" msgstr "Protocollo danneggiato" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "Errore di scrittura" @@ -2001,7 +2008,7 @@ msgstr "Connessione al socket dati terminata" msgid "Unable to accept connection" msgstr "Impossibile accettare connessioni" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "Si è verificato un problema nel creare l'hash del file" @@ -2138,67 +2145,67 @@ msgstr "Ricevuta una singola riga header su %u caratteri" msgid "Bad header line" msgstr "Riga header non corretta" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "Il server HTTP ha inviato un header di risposta non valido" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "Il server HTTP ha inviato un header Content-Length non valido" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "Il server HTTP ha inviato un header Content-Range non valido" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "Questo server HTTP ha un supporto del range non corretto" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "Formato della data sconosciuto" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "Select non riuscita" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "Connessione terminata" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "Errore nello scrivere sul file di output" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "Errore nello scrivere su file" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "Errore nello scrivere sul file" -#: methods/http.cc:894 +#: methods/http.cc:900 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:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "Errore nel leggere dal server" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 msgid "Failed to truncate file" msgstr "Troncamento del file non riuscito" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "Header dati non corretto" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "Connessione non riuscita" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "Errore interno" @@ -2402,14 +2409,14 @@ msgstr "Operazione %s non valida" msgid "Unable to stat the mount point %s" msgstr "Impossibile eseguire stat sul punto di mount %s" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "Impossibile passare a %s" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "Esecuzione di stat sul CD-ROM non riuscita" @@ -2433,150 +2440,150 @@ msgstr "Blocco disabilitato per il file di blocco %s montato via nfs" msgid "Could not get lock %s" msgstr "Impossibile impostare il blocco %s" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "In attesa di %s ma non era presente" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Il sottoprocesso %s ha ricevuto un segmentation fault." -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, c-format msgid "Sub-process %s received signal %u." msgstr "Il sottoprocesso %s ha ricevuto il segnale %u." -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, 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:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Il sottoprocesso %s è uscito inaspettatamente" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "Impossibile aprire il file %s" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, c-format msgid "Could not open file descriptor %d" msgstr "Impossibile aprire il descrittore del file %d" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "lettura, c'erano ancora %lu da leggere ma non ne è rimasto alcuno" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "scrittura, c'erano ancora %lu da scrivere ma non è stato possibile" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, 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:909 +#: apt-pkg/contrib/fileutl.cc:940 #, c-format msgid "Problem closing the file %s" msgstr "Si è verificato un problema nel chiudere il file %s" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, 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:925 +#: apt-pkg/contrib/fileutl.cc:956 #, 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:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "Si è verificato un problema nel sincronizzare il file" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "Cache dei pacchetti vuota" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "Il file della cache dei pacchetti è danneggiato" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "La versione del file della cache dei pacchetti è incompatibile" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, 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:163 +#: apt-pkg/pkgcache.cc:166 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:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "Dipende" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "Pre-dipende" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "Consiglia" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "Raccomanda" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "Va in conflitto" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "Sostituisce" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "Rende obsoleto" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "Rompe" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "Migliora" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "importante" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "richiesto" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "standard" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "opzionale" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "extra" @@ -2705,12 +2712,12 @@ msgstr "Tipo \"%s\" non riconosciuto alla riga %u nel file %s" #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" -"Impossibile eseguire immediatamente la configurazione su \"%s\".Per maggiori " -"informazioni, consultare \"man 5 apt.conf\" alla sezione \"APT::Immediate-" -"Configure\" (%d)." +"Impossibile eseguire immediatamente la configurazione su \"%s\". Per " +"maggiori informazioni, consultare \"man 5 apt.conf\" alla sezione \"APT::" +"Immediate-Configure\" (%d)." #: apt-pkg/packagemanager.cc:452 #, c-format @@ -2727,12 +2734,12 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" -"Impossibile eseguire immediatamente la configurazione su \"%s\" già estratto." -"Per maggiori informazioni, consultare \"man 5 apt.conf\" alla sezione \"APT::" -"Immediate-Configure\"." +"Impossibile eseguire immediatamente la configurazione su \"%s\" già " +"estratto. Per maggiori informazioni, consultare \"man 5 apt.conf\" alla " +"sezione \"APT::Immediate-Configure\"." #: apt-pkg/pkgrecords.cc:32 #, c-format @@ -2747,7 +2754,7 @@ msgstr "" "Il pacchetto %s deve essere reinstallato, ma non è possibile trovarne un " "archivio." -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2755,12 +2762,12 @@ msgstr "" "Errore, pkgProblemResolver::Resolve ha generato delle interruzioni. Questo " "potrebbe essere causato da pacchetti bloccati." -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Impossibile correggere i problemi, ci sono pacchetti danneggiati bloccati." -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2785,12 +2792,12 @@ msgstr "Impossibile bloccare la directory %s" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Scaricamento file %li di %li (%s rimanente)" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "Scaricamento file %li di %li" @@ -2810,12 +2817,12 @@ msgstr "Il metodo %s non si è avviato correttamente" 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:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Il sistema di pacchetti \"%s\" non è supportato" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "Impossibile determinare un tipo di sistema appropriato di pacchetti" @@ -2839,19 +2846,23 @@ 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/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "Impossibile leggere l'elenco dei sorgenti." + +#: apt-pkg/policy.cc:344 #, 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:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "Impossibile comprendere il tipo di gancio %s" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "Priorità per il gancio non specificata (o zero)" @@ -2958,12 +2969,12 @@ msgstr "rename() non riuscita: %s (%s -> %s)." msgid "MD5Sum mismatch" msgstr "MD5sum non corrispondente" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" msgstr "Somma hash non corrispondente" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 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" @@ -2971,31 +2982,31 @@ msgstr "" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "File Release scaduto, %s viene ignorato (non valido da %s)" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, 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:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "Si è verificato un errore nel verificare la firma. Il repository non è " "aggiornato e verranno usati i file indice precedenti. Errore GPG: %s: %s\n" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "Errore GPG: %s: %s" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -3004,7 +3015,7 @@ 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:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -3014,7 +3025,7 @@ msgstr "" "sistemare manualmente questo pacchetto." # (ndt) sarebbe da controllare se veramente possono esistere più file indice -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -3022,7 +3033,7 @@ msgstr "" "I file indice del pacchetto sono danneggiati. Manca il campo \"Filename:\" " "per il pacchetto %s." -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "Le dimensioni non corrispondono" @@ -3147,38 +3158,38 @@ msgstr "Scrittura nuovo elenco sorgenti\n" msgid "Source list entries for this disc are:\n" msgstr "Le voci dell'elenco sorgenti per questo disco sono:\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "Scritti %i record.\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Scritti %i record con %i file mancanti.\n" -#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, 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:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" "Scritti %i record con %i file mancanti e %i file senza corrispondenze\n" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, c-format msgid "Skipping nonexistent file %s" msgstr "Saltato il file inesistente %s" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "Impossibile trovare il record di autenticazione per %s" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, c-format msgid "Hash mismatch for: %s" msgstr "Hash non corrispondente per %s" @@ -3247,12 +3258,12 @@ msgstr "" msgid "Installing %s" msgstr "Installazione di %s" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "Configurazione di %s" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "Rimozione di %s" @@ -3272,78 +3283,79 @@ msgstr "Notata la sparizione di %s" msgid "Running post-installation trigger %s" msgstr "Esecuzione comando di post installazione %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "Directory \"%s\" mancante" -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Could not open file '%s'" msgstr "Impossibile aprire il file \"%s\"" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "Preparazione di %s" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "Estrazione di %s" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "Preparazione alla configurazione di %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "Pacchetto %s installato" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "Preparazione alla rimozione di %s" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "Pacchetto %s rimosso" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "Preparazione alla rimozione completa di %s" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "Pacchetto %s rimosso completamente" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Impossibile scrivere il registro, openpty() non riuscita (forse /dev/pts non " "è montato)\n" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "Esecuzione di dpkg" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 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:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "Problemi con le dipendenze - Viene lasciato non configurato" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3351,7 +3363,7 @@ msgstr "" "Segnalazione apport non scritta poiché il messaggio di errore indica la " "presenza di un fallimento precedente." -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" @@ -3359,7 +3371,7 @@ msgstr "" "Segnalazione apport non scritta poiché il messaggio di errore indica un " "errore per disco pieno." -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3367,7 +3379,7 @@ msgstr "" "Segnalazione apport non scritta poiché il messaggio di errore indica un " "errore di memoria esaurita" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.8.0~pre1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+0200\n" "PO-Revision-Date: 2010-08-25 09:33+0900\n" "Last-Translator: Kenshi Muto <kmuto@debian.org>\n" "Language-Team: Debian Japanese List <debian-japanese@lists.debian.org>\n" @@ -148,14 +148,14 @@ msgstr " パッケージ Pin: " msgid " Version table:" msgstr " ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãƒ†ãƒ¼ãƒ–ル:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s for %s コンパイル日時: %s %s\n" -#: cmdline/apt-cache.cc:1739 +#: cmdline/apt-cache.cc:1745 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -320,31 +320,31 @@ msgid "Cannot get debconf version. Is debconf installed?" msgstr "" "debconf ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‚’å–å¾—ã§ãã¾ã›ã‚“。debconf ã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ã¾ã™ã‹?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "パッケージ拡張åリストãŒé•·ã™ãŽã¾ã™" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "ディレクトリ %s ã®å‡¦ç†ä¸ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸ" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "ソース拡張åリストãŒé•·ã™ãŽã¾ã™" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "Contents ファイルã¸ã®ãƒ˜ãƒƒãƒ€ã®æ›¸ãè¾¼ã¿ä¸ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸ" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "Contents %s ã®å‡¦ç†ä¸ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸ" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -425,11 +425,11 @@ msgstr "" " -c=? 指定ã®è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã‚’èªã‚€\n" " -o=? ä»»æ„ã®è¨å®šã‚ªãƒ—ションをè¨å®šã™ã‚‹" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "é¸æŠžã«ãƒžãƒƒãƒã™ã‚‹ã‚‚ã®ãŒã‚ã‚Šã¾ã›ã‚“" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "パッケージファイルグループ `%s' ã«è¦‹å½“ãŸã‚‰ãªã„ファイルãŒã‚ã‚Šã¾ã™" @@ -541,7 +541,7 @@ msgstr "アーカイブã«ãƒ‘ッケージフィールドãŒã‚ã‚Šã¾ã›ã‚“ã§ã— msgid " %s has no override entry\n" msgstr " %s ã« override エントリãŒã‚ã‚Šã¾ã›ã‚“\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %1$s メンテナ㯠%3$s ã§ã¯ãªã %2$s ã§ã™\n" @@ -651,79 +651,79 @@ msgstr "%s ã®ãƒªãƒ³ã‚¯è§£é™¤ã§å•é¡ŒãŒç™ºç”Ÿã—ã¾ã—ãŸ" msgid "Failed to rename %s to %s" msgstr "%s ã‚’ %s ã«åå‰å¤‰æ›´ã§ãã¾ã›ã‚“ã§ã—ãŸ" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "æ£è¦è¡¨ç¾ã®å±•é–‹ã‚¨ãƒ©ãƒ¼ - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "以下ã®ãƒ‘ッケージã«ã¯æº€ãŸã›ãªã„ä¾å˜é–¢ä¿‚ãŒã‚ã‚Šã¾ã™:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "ã—ã‹ã—ã€%s ã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ã¾ã™" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "ã—ã‹ã—ã€%s ã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã‚ˆã†ã¨ã—ã¦ã„ã¾ã™" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "ã—ã‹ã—ã€ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã™ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "ã—ã‹ã—ã€ã“ã‚Œã¯ä»®æƒ³ãƒ‘ッケージã§ã™" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "ã—ã‹ã—ã€ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ã¾ã›ã‚“" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "ã—ã‹ã—ã€ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã‚ˆã†ã¨ã—ã¦ã„ã¾ã›ã‚“" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " ã¾ãŸã¯" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "以下ã®ãƒ‘ッケージãŒæ–°ãŸã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¾ã™:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "以下ã®ãƒ‘ッケージã¯ã€Œå‰Šé™¤ã€ã•ã‚Œã¾ã™:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "以下ã®ãƒ‘ッケージã¯ä¿ç•™ã•ã‚Œã¾ã™:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "以下ã®ãƒ‘ッケージã¯ã‚¢ãƒƒãƒ—グレードã•ã‚Œã¾ã™:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "以下ã®ãƒ‘ッケージã¯ã€Œãƒ€ã‚¦ãƒ³ã‚°ãƒ¬ãƒ¼ãƒ‰ã€ã•ã‚Œã¾ã™:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "以下ã®å¤‰æ›´ç¦æ¢ãƒ‘ッケージã¯å¤‰æ›´ã•ã‚Œã¾ã™:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (%s ã®ãŸã‚) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -731,64 +731,64 @@ msgstr "" "è¦å‘Š: 以下ã®ä¸å¯æ¬ パッケージãŒå‰Šé™¤ã•ã‚Œã¾ã™ã€‚\n" "何をã—よã†ã¨ã—ã¦ã„ã‚‹ã‹æœ¬å½“ã«ã‚ã‹ã£ã¦ã„ãªã„å ´åˆã¯ã€å®Ÿè¡Œã—ã¦ã¯ã„ã‘ã¾ã›ã‚“!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "アップグレード: %lu 個ã€æ–°è¦ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«: %lu 個ã€" -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "å†ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«: %lu 個ã€" -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "ダウングレード: %lu 個ã€" -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "削除: %lu 個ã€ä¿ç•™: %lu 個。\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu 個ã®ãƒ‘ッケージãŒå®Œå…¨ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã¾ãŸã¯å‰Šé™¤ã•ã‚Œã¦ã„ã¾ã›ã‚“。\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "注æ„: タスク '%2$s' ã«å¯¾ã—㦠'%1$s' ã‚’é¸æŠžã—ã¦ã„ã¾ã™\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "注æ„: æ£è¦è¡¨ç¾ '%2$s' ã«å¯¾ã—㦠'%1$s' ã‚’é¸æŠžã—ã¦ã„ã¾ã™\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "'%3$s' ã«ã¯ãƒãƒ¼ã‚¸ãƒ§ãƒ³ '%1$s' (%2$s) ã‚’é¸æŠžã—ã¾ã—ãŸ\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "%s ã¯ä»¥ä¸‹ã®ãƒ‘ッケージã§æä¾›ã•ã‚Œã¦ã„る仮想パッケージã§ã™:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [インストール済ã¿]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 msgid " [Not candidate version]" msgstr "[候補ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãªã—]" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "インストールã™ã‚‹ãƒ‘ッケージを明示的ã«é¸æŠžã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚" -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -799,171 +799,174 @@ msgstr "" "ãŠãらãã€ãã®ãƒ‘ッケージãŒè¦‹ã¤ã‹ã‚‰ãªã„ã‹ã€ã‚‚ã†å¤ããªã£ã¦ã„ã‚‹ã‹ã€\n" "ã‚ã‚‹ã„ã¯åˆ¥ã®ã‚½ãƒ¼ã‚¹ã‹ã‚‰ã®ã¿ã—ã‹åˆ©ç”¨ã§ããªã„ã¨ã„ã†çŠ¶æ³ãŒè€ƒãˆã‚‰ã‚Œã¾ã™\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "ã—ã‹ã—ã€ä»¥ä¸‹ã®ãƒ‘ッケージã§ç½®ãæ›ãˆã‚‰ã‚Œã¦ã„ã¾ã™:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, c-format msgid "Package '%s' has no installation candidate" msgstr "パッケージ '%s' ã«ã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«å€™è£œãŒã‚ã‚Šã¾ã›ã‚“" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "'%s' ã®ã‚ˆã†ãªä»®æƒ³ãƒ‘ッケージã¯å‰Šé™¤ã§ãã¾ã›ã‚“\n" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "注æ„ã€'%2$s' ã®ä»£ã‚ã‚Šã« '%1$s' ã‚’é¸æŠžã—ã¦ã„ã¾ã™\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" "ã™ã§ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ãŠã‚Šã‚¢ãƒƒãƒ—グレードもè¨å®šã•ã‚Œã¦ã„ãªã„ãŸã‚ã€%s をスã‚ッ" "プã—ã¾ã™ã€‚\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" "%s ã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ãªã„ã®ã«ã‚¢ãƒƒãƒ—グレードã ã‘ãŒè¦æ±‚ã•ã‚Œã¦ã„ã‚‹ã®ã§ã€ã‚¹" "ã‚ップã—ã¾ã™ã€‚\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "ダウンãƒãƒ¼ãƒ‰ã§ããªã„ãŸã‚ã€%s ã®å†ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã¯ä¸å¯èƒ½ã§ã™ã€‚\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s ã¯ã™ã§ã«æœ€æ–°ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã§ã™ã€‚\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, c-format msgid "%s set to manually installed.\n" msgstr "%s ã¯æ‰‹å‹•ã§ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã—ãŸã¨è¨å®šã•ã‚Œã¾ã—ãŸã€‚\n" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "パッケージ %s ã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ãªã„ãŸã‚ã€å‰Šé™¤ã¯ã§ãã¾ã›ã‚“\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "ä¾å˜é–¢ä¿‚を解決ã—ã¦ã„ã¾ã™ ..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " 失敗ã—ã¾ã—ãŸã€‚" -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "ä¾å˜é–¢ä¿‚を訂æ£ã§ãã¾ã›ã‚“" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "アップグレードセットを最å°åŒ–ã§ãã¾ã›ã‚“" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " 完了" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "" "ã“れらを直ã™ãŸã‚ã«ã¯ 'apt-get -f install' を実行ã™ã‚‹å¿…è¦ãŒã‚ã‚‹ã‹ã‚‚ã—ã‚Œã¾ã›" "ん。" -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "未解決ã®ä¾å˜é–¢ä¿‚ãŒã‚ã‚Šã¾ã™ã€‚-f オプションを試ã—ã¦ãã ã•ã„。" -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "è¦å‘Š: 以下ã®ãƒ‘ッケージã¯èªè¨¼ã•ã‚Œã¦ã„ã¾ã›ã‚“!" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "èªè¨¼ã®è¦å‘Šã¯ä¸Šæ›¸ãã•ã‚Œã¾ã—ãŸã€‚\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "検証ãªã—ã«ã“れらã®ãƒ‘ッケージをインストールã—ã¾ã™ã‹ [y/N]? " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "ã„ãã¤ã‹ã®ãƒ‘ッケージをèªè¨¼ã§ãã¾ã›ã‚“ã§ã—ãŸ" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "å•é¡ŒãŒç™ºç”Ÿã—ã€-y オプション㌠--force-yes ãªã—ã§ä½¿ç”¨ã•ã‚Œã¾ã—ãŸ" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "内部エラーã€InstallPackages ãŒå£Šã‚ŒãŸãƒ‘ッケージã§å‘¼ã³å‡ºã•ã‚Œã¾ã—ãŸ!" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "パッケージを削除ã—ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“ãŒã€å‰Šé™¤ãŒç„¡åŠ¹ã«ãªã£ã¦ã„ã¾ã™ã€‚" -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "内部エラーã€èª¿æ•´ãŒçµ‚ã‚ã£ã¦ã„ã¾ã›ã‚“" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "ソースã®ãƒªã‚¹ãƒˆã‚’èªã‚€ã“ã¨ãŒã§ãã¾ã›ã‚“。" - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" "ãŠã£ã¨ã€ã‚µã‚¤ã‚ºãŒãƒžãƒƒãƒã—ã¾ã›ã‚“。apt@packages.debian.org ã«ãƒ¡ãƒ¼ãƒ«ã—ã¦ãã ã•ã„" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "%2$sB ä¸ %1$sB ã®ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã‚’å–å¾—ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "%sB ã®ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã‚’å–å¾—ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "ã“ã®æ“作後ã«è¿½åŠ 㧠%sB ã®ãƒ‡ã‚£ã‚¹ã‚¯å®¹é‡ãŒæ¶ˆè²»ã•ã‚Œã¾ã™ã€‚\n" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "ã“ã®æ“作後㫠%sB ã®ãƒ‡ã‚£ã‚¹ã‚¯å®¹é‡ãŒè§£æ”¾ã•ã‚Œã¾ã™ã€‚\n" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "%s ã®ç©ºãé ˜åŸŸã‚’æ¸¬å®šã§ãã¾ã›ã‚“" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "%s ã«å……分ãªç©ºãスペースãŒã‚ã‚Šã¾ã›ã‚“。" -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Trivial Only ãŒæŒ‡å®šã•ã‚Œã¾ã—ãŸãŒã€ã“ã‚Œã¯ç°¡å˜ãªæ“作ã§ã¯ã‚ã‚Šã¾ã›ã‚“。" -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "Yes, do as I say!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -974,28 +977,28 @@ msgstr "" "続行ã™ã‚‹ã«ã¯ã€'%s' ã¨ã„ã†ãƒ•ãƒ¬ãƒ¼ã‚ºã‚’タイプã—ã¦ãã ã•ã„。\n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "ä¸æ–ã—ã¾ã—ãŸã€‚" -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "続行ã—ã¾ã™ã‹ [Y/n]? " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s ã®å–å¾—ã«å¤±æ•—ã—ã¾ã—㟠%s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "ã„ãã¤ã‹ã®ãƒ•ã‚¡ã‚¤ãƒ«ã®å–å¾—ã«å¤±æ•—ã—ã¾ã—ãŸ" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "ダウンãƒãƒ¼ãƒ‰ã‚ªãƒ³ãƒªãƒ¼ãƒ¢ãƒ¼ãƒ‰ã§ãƒ‘ッケージã®ãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ãŒå®Œäº†ã—ã¾ã—ãŸ" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1003,19 +1006,19 @@ msgstr "" "ã„ãã¤ã‹ã®ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ãŒå–å¾—ã§ãã¾ã›ã‚“。apt-get update を実行ã™ã‚‹ã‹ --fix-" "missing オプションを付ã‘ã¦è©¦ã—ã¦ã¿ã¦ãã ã•ã„。" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing ã¨ãƒ¡ãƒ‡ã‚£ã‚¢äº¤æ›ã¯ç¾åœ¨åŒæ™‚ã«ã¯ã‚µãƒãƒ¼ãƒˆã•ã‚Œã¦ã„ã¾ã›ã‚“" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "足りãªã„パッケージを直ã™ã“ã¨ãŒã§ãã¾ã›ã‚“。" -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "インストールをä¸æ–ã—ã¾ã™ã€‚" -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1029,36 +1032,36 @@ msgstr[1] "" "以下ã®ãƒ‘ッケージã¯ã€å…¨ãƒ•ã‚¡ã‚¤ãƒ«ãŒåˆ¥ã®ãƒ‘ッケージã§ä¸Šæ›¸ãã•ã‚ŒãŸãŸã‚ã€\n" "システムã‹ã‚‰æ¶ˆãˆã¾ã—ãŸ:" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "注æ„: ã“れ㯠dpkg ã«ã‚ˆã‚Šè‡ªå‹•ã§ã‚ã–ã¨è¡Œã‚れれã¾ã™ã€‚" -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "パッケージ '%2$s' ã®åˆ©ç”¨ã§ããªã„ターゲットリリース '%1$s' を無視" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "'%2$s' ã®ä»£ã‚ã‚Šã« '%1$s' をソースパッケージã¨ã—ã¦é¸å‡ºã—ã¦ã„ã¾ã™\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "パッケージ '%2$s' ã®åˆ©ç”¨ã§ããªã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ '%1$s' を無視" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "update コマンドã¯å¼•æ•°ã‚’ã¨ã‚Šã¾ã›ã‚“" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "一連ã®ã‚‚ã®ã‚’削除ã™ã‚‹ã‚ˆã†ã«ãªã£ã¦ã„ãªã„ã®ã§ã€AutoRemover を開始ã§ãã¾ã›ã‚“" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1069,7 +1072,7 @@ msgstr[0] "" msgstr[1] "" "以下ã®ãƒ‘ッケージãŒè‡ªå‹•ã§ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¾ã—ãŸãŒã€ã‚‚ã†å¿…è¦ã¨ã•ã‚Œã¦ã„ã¾ã›ã‚“:" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1081,11 +1084,11 @@ msgstr[1] "" "%lu ã¤ã®ãƒ‘ッケージãŒè‡ªå‹•ã§ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¾ã—ãŸãŒã€ã‚‚ã†å¿…è¦ã¨ã•ã‚Œã¦ã„ã¾ã›" "ã‚“:\n" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "ã“れらを削除ã™ã‚‹ã«ã¯ 'apt-get autoremove' を利用ã—ã¦ãã ã•ã„。" -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1103,25 +1106,25 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "以下ã®æƒ…å ±ãŒã“ã®å•é¡Œã‚’解決ã™ã‚‹ãŸã‚ã«å½¹ç«‹ã¤ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" msgstr "内部エラーã€AutoRemover ãŒä½•ã‹ã‚’ç ´å£Šã—ã¾ã—ãŸ" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "内部エラーã€AllUpgrade ãŒä½•ã‹ã‚’ç ´å£Šã—ã¾ã—ãŸ" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" "以下ã®å•é¡Œã‚’解決ã™ã‚‹ãŸã‚ã« 'apt-get -f install' を実行ã™ã‚‹å¿…è¦ãŒã‚ã‚‹ã‹ã‚‚ã—ã‚Œ" "ã¾ã›ã‚“:" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1129,7 +1132,7 @@ msgstr "" "未解決ã®ä¾å˜é–¢ä¿‚ã§ã™ã€‚'apt-get -f install' を実行ã—ã¦ã¿ã¦ãã ã•ã„ (ã¾ãŸã¯è§£æ³•" "を明示ã—ã¦ãã ã•ã„)。" -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1141,63 +1144,63 @@ msgstr "" "ã§ã‚ã‚Œã°) å¿…è¦ãªãƒ‘ッケージãŒã¾ã 作æˆã•ã‚Œã¦ã„ãªã‹ã£ãŸã‚Š Incoming ã‹ã‚‰ç§»\n" "å‹•ã•ã‚Œã¦ã„ãªã„ã“ã¨ãŒè€ƒãˆã‚‰ã‚Œã¾ã™ã€‚" -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "壊れãŸãƒ‘ッケージ" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "以下ã®ç‰¹åˆ¥ãƒ‘ッケージãŒã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¾ã™:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "æ案パッケージ:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "推奨パッケージ:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "パッケージ %s ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s ã¯è‡ªå‹•ã§ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã—ãŸã¨è¨å®šã•ã‚Œã¾ã—ãŸã€‚\n" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "アップグレードパッケージを検出ã—ã¦ã„ã¾ã™ ... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "失敗" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "完了" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "内部エラーã€å•é¡Œãƒªã‚¾ãƒ«ãƒãŒä½•ã‹ã‚’ç ´å£Šã—ã¾ã—ãŸ" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "ダウンãƒãƒ¼ãƒ‰ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’ãƒãƒƒã‚¯ã§ãã¾ã›ã‚“" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 msgid "Must specify at least one package to fetch source for" msgstr "" "ソースをå–å¾—ã™ã‚‹ã«ã¯å°‘ãªãã¨ã‚‚ã²ã¨ã¤ã®ãƒ‘ッケージåを指定ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™" -#: cmdline/apt-get.cc:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "%s ã®ã‚½ãƒ¼ã‚¹ãƒ‘ッケージãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -1207,7 +1210,7 @@ msgstr "" "ã¾ã™:\n" "%s\n" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1219,76 +1222,80 @@ msgstr "" "bzr get %s\n" "を使用ã—ã¦ãã ã•ã„。\n" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "ã™ã§ã«ãƒ€ã‚¦ãƒ³ãƒãƒ¼ãƒ‰ã•ã‚ŒãŸãƒ•ã‚¡ã‚¤ãƒ« '%s' をスã‚ップã—ã¾ã™\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "%s ã«å……分ãªç©ºãスペースãŒã‚ã‚Šã¾ã›ã‚“" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "%2$sB ä¸ %1$sB ã®ã‚½ãƒ¼ã‚¹ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã‚’å–å¾—ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "%sB ã®ã‚½ãƒ¼ã‚¹ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã‚’å–å¾—ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "ソース %s ã‚’å–å¾—\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "ã„ãã¤ã‹ã®ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–ã®å–å¾—ã«å¤±æ•—ã—ã¾ã—ãŸã€‚" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "ã™ã§ã« %s ã«å±•é–‹ã•ã‚ŒãŸã‚½ãƒ¼ã‚¹ãŒã‚ã‚‹ãŸã‚ã€å±•é–‹ã‚’スã‚ップã—ã¾ã™\n" -#: cmdline/apt-get.cc:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "展開コマンド '%s' ãŒå¤±æ•—ã—ã¾ã—ãŸã€‚\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" "'dpkg-dev' パッケージãŒã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ã‚‹ã“ã¨ã‚’確èªã—ã¦ãã ã•ã„。\n" -#: cmdline/apt-get.cc:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "ビルドコマンド '%s' ãŒå¤±æ•—ã—ã¾ã—ãŸã€‚\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "åプãƒã‚»ã‚¹ãŒå¤±æ•—ã—ã¾ã—ãŸ" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 msgid "Must specify at least one package to check builddeps for" msgstr "" "ビルドä¾å˜é–¢ä¿‚ã‚’ãƒã‚§ãƒƒã‚¯ã™ã‚‹ãƒ‘ッケージを少ãªãã¨ã‚‚ 1 ã¤æŒ‡å®šã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™" -#: cmdline/apt-get.cc:2506 +#: cmdline/apt-get.cc:2524 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "%s ã®ãƒ“ルドä¾å˜æƒ…å ±ã‚’å–å¾—ã§ãã¾ã›ã‚“" -#: cmdline/apt-get.cc:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "%s ã«ã¯ãƒ“ルドä¾å˜æƒ…å ±ãŒæŒ‡å®šã•ã‚Œã¦ã„ã¾ã›ã‚“。\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1297,7 +1304,7 @@ msgstr "" "パッケージ %3$s ãŒè¦‹ã¤ã‹ã‚‰ãªã„ãŸã‚ã€%2$s ã«å¯¾ã™ã‚‹ %1$s ã®ä¾å˜é–¢ä¿‚を満ãŸã™ã“ã¨" "ãŒã§ãã¾ã›ã‚“" -#: cmdline/apt-get.cc:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1306,32 +1313,32 @@ msgstr "" "入手å¯èƒ½ãª %3$s ã¯ã„ãšã‚Œã‚‚ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã«ã¤ã„ã¦ã®è¦æ±‚を満ãŸã›ãªã„ãŸã‚ã€%2$s ã«å¯¾" "ã™ã‚‹ %1$s ã®ä¾å˜é–¢ä¿‚を満ãŸã™ã“ã¨ãŒã§ãã¾ã›ã‚“" -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, 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:2693 +#: cmdline/apt-get.cc:2711 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "%2$s ã®ä¾å˜é–¢ä¿‚ %1$s を満ãŸã™ã“ã¨ãŒã§ãã¾ã›ã‚“: %3$s" -#: cmdline/apt-get.cc:2709 +#: cmdline/apt-get.cc:2727 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "%s ã®ãƒ“ルドä¾å˜é–¢ä¿‚を満ãŸã™ã“ã¨ãŒã§ãã¾ã›ã‚“ã§ã—ãŸã€‚" -#: cmdline/apt-get.cc:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "ビルドä¾å˜é–¢ä¿‚ã®å‡¦ç†ã«å¤±æ•—ã—ã¾ã—ãŸ" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "サãƒãƒ¼ãƒˆã•ã‚Œã¦ã„るモジュール:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1425,7 +1432,7 @@ msgstr "" "apt-get(8)ã€sources.list(5)ã€apt.conf(5) ã‚’å‚ç…§ã—ã¦ãã ã•ã„。\n" " ã“ã® APT 㯠Super Cow Powers 化ã•ã‚Œã¦ã„ã¾ã™ã€‚\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1673,10 +1680,10 @@ msgstr "ファイル %s/%s ãŒãƒ‘ッケージ %s ã®ã‚‚ã®ã‚’上書ãã—ã¾ã™" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1813,23 +1820,23 @@ msgstr "æ£ã—ã„コントãƒãƒ¼ãƒ«ãƒ•ã‚¡ã‚¤ãƒ«ã‚’特定ã§ãã¾ã›ã‚“ã§ã—㟠msgid "Unparsable control file" msgstr "解æžã§ããªã„コントãƒãƒ¼ãƒ«ãƒ•ã‚¡ã‚¤ãƒ«" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "%s ã«å¯¾ã—ã¦ãƒ‘イプを開ã‘ã¾ã›ã‚“ã§ã—ãŸ" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "%s プãƒã‚»ã‚¹ã‹ã‚‰ã®èªã¿è¾¼ã¿ã‚¨ãƒ©ãƒ¼" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "状態ã®å–å¾—ã«å¤±æ•—ã—ã¾ã—ãŸ" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "変更時刻ã®è¨å®šã«å¤±æ•—ã—ã¾ã—ãŸ" @@ -1922,7 +1929,7 @@ msgstr "接続タイムアウト" msgid "Server closed the connection" msgstr "サーãƒãŒæŽ¥ç¶šã‚’切æ–ã—ã¾ã—ãŸ" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "èªã¿è¾¼ã¿ã‚¨ãƒ©ãƒ¼" @@ -1934,7 +1941,7 @@ msgstr "レスãƒãƒ³ã‚¹ãŒãƒãƒƒãƒ•ã‚¡ã‚’オーãƒãƒ•ãƒãƒ¼ã•ã›ã¾ã—ãŸã€‚" msgid "Protocol corruption" msgstr "プãƒãƒˆã‚³ãƒ«ãŒå£Šã‚Œã¦ã„ã¾ã™" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "書ãè¾¼ã¿ã‚¨ãƒ©ãƒ¼" @@ -1988,7 +1995,7 @@ msgstr "データソケット接続タイムアウト" msgid "Unable to accept connection" msgstr "接続を accept ã§ãã¾ã›ã‚“" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "ファイルã®ãƒãƒƒã‚·ãƒ¥ã§ã®å•é¡Œ" @@ -2120,67 +2127,67 @@ msgstr "%u æ–‡å—を超ãˆã‚‹ 1 è¡Œã®ãƒ˜ãƒƒãƒ€ã‚’å–å¾—ã—ã¾ã—ãŸ" msgid "Bad header line" msgstr "ä¸æ£ãªãƒ˜ãƒƒãƒ€è¡Œã§ã™" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "http サーãƒãŒä¸æ£ãªãƒªãƒ—ライヘッダをé€ä¿¡ã—ã¦ãã¾ã—ãŸ" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "http サーãƒãŒä¸æ£ãª Content-Length ヘッダをé€ä¿¡ã—ã¦ãã¾ã—ãŸ" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "http サーãƒãŒä¸æ£ãª Content-Range ヘッダをé€ä¿¡ã—ã¦ãã¾ã—ãŸ" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "http サーãƒã®ãƒ¬ãƒ³ã‚¸ã‚µãƒãƒ¼ãƒˆãŒå£Šã‚Œã¦ã„ã¾ã™" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "ä¸æ˜Žãªæ—¥ä»˜ãƒ•ã‚©ãƒ¼ãƒžãƒƒãƒˆã§ã™" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "select ã«å¤±æ•—ã—ã¾ã—ãŸ" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "接続タイムアウト" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "出力ファイルã¸ã®æ›¸ãè¾¼ã¿ã§ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸ" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "ファイルã¸ã®æ›¸ãè¾¼ã¿ã§ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸ" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "ファイルã¸ã®æ›¸ãè¾¼ã¿ã§ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸ" -#: methods/http.cc:894 +#: methods/http.cc:900 msgid "Error reading from server. Remote end closed connection" msgstr "リモートå´ã§æŽ¥ç¶šãŒã‚¯ãƒãƒ¼ã‚ºã•ã‚Œã¦ã‚µãƒ¼ãƒã‹ã‚‰ã®èªã¿è¾¼ã¿ã«å¤±æ•—ã—ã¾ã—ãŸ" -#: methods/http.cc:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "サーãƒã‹ã‚‰ã®èªã¿è¾¼ã¿ã«å¤±æ•—ã—ã¾ã—ãŸ" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 msgid "Failed to truncate file" msgstr "ファイルã®åˆ‡ã‚Šè©°ã‚ã«å¤±æ•—ã—ã¾ã—ãŸ" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "ä¸æ£ãªãƒ˜ãƒƒãƒ€ã§ã™" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "接続失敗" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "内部エラー" @@ -2375,14 +2382,14 @@ msgstr "ä¸æ£ãªæ“作 %s" msgid "Unable to stat the mount point %s" msgstr "マウントãƒã‚¤ãƒ³ãƒˆ %s ã®çŠ¶æ…‹ã‚’å–å¾—ã§ãã¾ã›ã‚“" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "%s ã¸å¤‰æ›´ã™ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "cdrom ã®çŠ¶æ…‹ã‚’å–å¾—ã™ã‚‹ã®ã«å¤±æ•—ã—ã¾ã—ãŸ" @@ -2406,149 +2413,149 @@ msgstr "nfs マウントã•ã‚ŒãŸãƒãƒƒã‚¯ãƒ•ã‚¡ã‚¤ãƒ« %s ã«ã¯ãƒãƒƒã‚¯ã‚’使ç msgid "Could not get lock %s" msgstr "ãƒãƒƒã‚¯ %s ãŒå–å¾—ã§ãã¾ã›ã‚“ã§ã—ãŸ" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "%s ã‚’å¾…ã¡ã¾ã—ãŸãŒã€ãã“ã«ã¯ã‚ã‚Šã¾ã›ã‚“ã§ã—ãŸ" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "åプãƒã‚»ã‚¹ %s ãŒã‚»ã‚°ãƒ¡ãƒ³ãƒ†ãƒ¼ã‚·ãƒ§ãƒ³é•åã‚’å—ã‘å–ã‚Šã¾ã—ãŸã€‚" -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, c-format msgid "Sub-process %s received signal %u." msgstr "åプãƒã‚»ã‚¹ %s ãŒã‚·ã‚°ãƒŠãƒ« %u ã‚’å—ã‘å–ã‚Šã¾ã—ãŸã€‚" -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "åプãƒã‚»ã‚¹ %s ãŒã‚¨ãƒ©ãƒ¼ã‚³ãƒ¼ãƒ‰ (%u) ã‚’è¿”ã—ã¾ã—ãŸ" -#: apt-pkg/contrib/fileutl.cc:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "åプãƒã‚»ã‚¹ %s ãŒäºˆæœŸã›ãšçµ‚了ã—ã¾ã—ãŸ" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "ファイル %s をオープンã§ãã¾ã›ã‚“ã§ã—ãŸ" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, c-format msgid "Could not open file descriptor %d" msgstr "ファイルデスクリプタ %d ã‚’é–‹ã‘ã¾ã›ã‚“ã§ã—ãŸ" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "èªã¿è¾¼ã¿ãŒ %lu 残ã£ã¦ã„ã‚‹ã¯ãšã§ã™ãŒã€ä½•ã‚‚残ã£ã¦ã„ã¾ã›ã‚“" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "ã‚㨠%lu 書ã込む必è¦ãŒã‚ã‚Šã¾ã™ãŒã€æ›¸ã込むã“ã¨ãŒã§ãã¾ã›ã‚“ã§ã—ãŸ" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, c-format msgid "Problem closing the gzip file %s" msgstr "gzip ファイル %s ã®ã‚¯ãƒãƒ¼ã‚ºä¸ã«å•é¡ŒãŒç™ºç”Ÿã—ã¾ã—ãŸ" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, c-format msgid "Problem closing the file %s" msgstr "ファイル %s ã®ã‚¯ãƒãƒ¼ã‚ºä¸ã«å•é¡ŒãŒç™ºç”Ÿã—ã¾ã—ãŸ" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, c-format msgid "Problem renaming the file %s to %s" msgstr "%s ã‹ã‚‰ %s ã¸ã®ãƒ•ã‚¡ã‚¤ãƒ«å変更ä¸ã«å•é¡ŒãŒç™ºç”Ÿã—ã¾ã—ãŸ" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, c-format msgid "Problem unlinking the file %s" msgstr "ファイル %s ã®å‰Šé™¤ä¸ã«å•é¡ŒãŒç™ºç”Ÿã—ã¾ã—ãŸ" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "ファイルã®åŒæœŸä¸ã«å•é¡ŒãŒç™ºç”Ÿã—ã¾ã—ãŸ" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "空ã®ãƒ‘ッケージã‚ャッシュ" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "パッケージã‚ャッシュファイルãŒå£Šã‚Œã¦ã„ã¾ã™" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "ã“ã®ãƒ‘ッケージã‚ャッシュファイルã¯äº’æ›æ€§ãŒãªã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã§ã™" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "ã“ã® APT ã¯ãƒãƒ¼ã‚¸ãƒ§ãƒ‹ãƒ³ã‚°ã‚·ã‚¹ãƒ†ãƒ '%s' をサãƒãƒ¼ãƒˆã—ã¦ã„ã¾ã›ã‚“" -#: apt-pkg/pkgcache.cc:163 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache was built for a different architecture" msgstr "パッケージã‚ャッシュãŒç•°ãªã‚‹ã‚¢ãƒ¼ã‚テクãƒãƒ£ç”¨ã«æ§‹ç¯‰ã•ã‚Œã¦ã„ã¾ã™" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "ä¾å˜" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "先行ä¾å˜" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "æ案" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "推奨" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "競åˆ" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "ç½®æ›" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "廃æ¢" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "ç ´å£Š" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "æ‹¡å¼µ" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "é‡è¦" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "è¦æ±‚" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "標準" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "ä»»æ„" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "特別" @@ -2671,7 +2678,7 @@ msgstr "ソースリスト %3$s ã® %2$u è¡Œã«ã‚るタイプ '%1$s' ã¯ä¸æ˜Žã #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" "'%s' ã®å³æ™‚è¨å®šã¯å‹•ä½œã—ã¾ã›ã‚“。詳細ã«ã¤ã„ã¦ã¯ man 5 apt.conf ã® APT::" @@ -2691,7 +2698,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" "展開済ã¿ã® '%s' ã¸ã®å³æ™‚è¨å®šã¯å‹•ä½œã—ã¾ã›ã‚“。詳細ã«ã¤ã„ã¦ã¯ man 5 apt.conf ã® " @@ -2710,7 +2717,7 @@ msgstr "" "パッケージ %s ã‚’å†ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ãŒã€ãã®ãŸã‚ã®ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–を見" "ã¤ã‘ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“ã§ã—ãŸã€‚" -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2718,11 +2725,11 @@ msgstr "" "エラーã€pkgProblemResolver::Resolve ã¯åœæ¢ã—ã¾ã—ãŸã€‚ãŠãらã変更ç¦æ¢ãƒ‘ッケー" "ジãŒåŽŸå› ã§ã™ã€‚" -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "å•é¡Œã‚’解決ã™ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“。壊れãŸå¤‰æ›´ç¦æ¢ãƒ‘ッケージãŒã‚ã‚Šã¾ã™ã€‚" -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2747,12 +2754,12 @@ msgstr "ディレクトリ %s ã‚’ãƒãƒƒã‚¯ã§ãã¾ã›ã‚“" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "ファイルをå–å¾—ã—ã¦ã„ã¾ã™ %li/%li (残り %s)" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "ファイルをå–å¾—ã—ã¦ã„ã¾ã™ %li/%li" @@ -2774,12 +2781,12 @@ msgstr "" "'%s' ã¨ãƒ©ãƒ™ãƒ«ã®ä»˜ã„ãŸãƒ‡ã‚£ã‚¹ã‚¯ã‚’ドライブ '%s' ã«å…¥ã‚Œã¦ enter を押ã—ã¦ãã ã•" "ã„。" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "パッケージングシステム'%s' ã¯ã‚µãƒãƒ¼ãƒˆã•ã‚Œã¦ã„ã¾ã›ã‚“" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "é©åˆ‡ãªãƒ‘ッケージシステムタイプを特定ã§ãã¾ã›ã‚“" @@ -2804,19 +2811,23 @@ msgstr "" "ã“れらã®å•é¡Œã‚’解決ã™ã‚‹ãŸã‚ã«ã¯ apt-get update を実行ã™ã‚‹å¿…è¦ãŒã‚ã‚‹ã‹ã‚‚ã—ã‚Œã¾" "ã›ã‚“" -#: apt-pkg/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "ソースã®ãƒªã‚¹ãƒˆã‚’èªã‚€ã“ã¨ãŒã§ãã¾ã›ã‚“。" + +#: apt-pkg/policy.cc:344 #, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "" "ä¸æ£ãªãƒ¬ã‚³ãƒ¼ãƒ‰ãŒãƒ—リファレンスファイル %s ã«å˜åœ¨ã—ã¾ã™ã€‚パッケージヘッダãŒã‚" "ã‚Šã¾ã›ã‚“" -#: apt-pkg/policy.cc:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "pin タイプ %s ãŒç†è§£ã§ãã¾ã›ã‚“ã§ã—ãŸ" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "pin ã§å„ªå…ˆåº¦ (ã¾ãŸã¯ 0) ãŒæŒ‡å®šã•ã‚Œã¦ã„ã¾ã›ã‚“" @@ -2918,46 +2929,46 @@ msgstr "åå‰ã®å¤‰æ›´ã«å¤±æ•—ã—ã¾ã—ãŸã€‚%s (%s -> %s)" msgid "MD5Sum mismatch" msgstr "MD5Sum ãŒé©åˆã—ã¾ã›ã‚“" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" msgstr "ãƒãƒƒã‚·ãƒ¥ã‚µãƒ ãŒé©åˆã—ã¾ã›ã‚“" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 msgid "There is no public key available for the following key IDs:\n" msgstr "以下ã®éµ ID ã«å¯¾ã—ã¦åˆ©ç”¨å¯èƒ½ãªå…¬é–‹éµãŒã‚ã‚Šã¾ã›ã‚“:\n" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "" "Release ファイルãŒæœŸé™åˆ‡ã‚Œã«ãªã£ã¦ã„ã‚‹ã®ã§ã€%s を無視ã—ã¾ã™ (%s 以æ¥ç„¡åŠ¹)" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" "ディストリビューションãŒç«¶åˆã—ã¦ã„ã¾ã™: %s (%s を期待ã—ã¦ã„ãŸã®ã« %s ã‚’å–å¾—ã—" "ã¾ã—ãŸ)" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "ç½²åç…§åˆä¸ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚リãƒã‚¸ãƒˆãƒªã¯æ›´æ–°ã•ã‚Œãšã€éŽåŽ»ã®ã‚¤ãƒ³ãƒ‡ãƒƒã‚¯ã‚¹" "ファイルãŒä½¿ã‚ã‚Œã¾ã™ã€‚GPG エラー: %s: %s\n" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "GPG エラー: %s: %s" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2966,7 +2977,7 @@ msgstr "" "パッケージ %s ã®ãƒ•ã‚¡ã‚¤ãƒ«ã®ä½ç½®ã‚’特定ã§ãã¾ã›ã‚“。ãŠãらãã“ã®ãƒ‘ッケージを手動" "ã§ä¿®æ£ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ (å˜åœ¨ã—ãªã„アーã‚テクãƒãƒ£ã®ãŸã‚)。" -#: apt-pkg/acquire-item.cc:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2975,7 +2986,7 @@ msgstr "" "パッケージ %s ã®ãƒ•ã‚¡ã‚¤ãƒ«ã®ä½ç½®ã‚’特定ã§ãã¾ã›ã‚“。ãŠãらãã“ã®ãƒ‘ッケージを手動" "ã§ä¿®æ£ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚" -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2983,7 +2994,7 @@ msgstr "" "パッケージインデックスファイルãŒå£Šã‚Œã¦ã„ã¾ã™ã€‚パッケージ %s ã« Filename: " "フィールドãŒã‚ã‚Šã¾ã›ã‚“。" -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "サイズãŒé©åˆã—ã¾ã›ã‚“" @@ -3108,39 +3119,39 @@ msgstr "æ–°ã—ã„ソースリストを書ã込んã§ã„ã¾ã™\n" msgid "Source list entries for this disc are:\n" msgstr "ã“ã®ãƒ‡ã‚£ã‚¹ã‚¯ã®ã‚½ãƒ¼ã‚¹ãƒªã‚¹ãƒˆã®ã‚¨ãƒ³ãƒˆãƒª:\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "%i レコードを書ãè¾¼ã¿ã¾ã—ãŸã€‚\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i レコードを書ãè¾¼ã¿ã¾ã—ãŸã€‚%i 個ã®ãƒ•ã‚¡ã‚¤ãƒ«ãŒå˜åœ¨ã—ã¾ã›ã‚“。\n" -#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i レコードを書ãè¾¼ã¿ã¾ã—ãŸã€‚%i 個ã®é©åˆã—ãªã„ファイルãŒã‚ã‚Šã¾ã™ã€‚\n" -#: apt-pkg/indexcopy.cc:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" "%i レコードを書ãè¾¼ã¿ã¾ã—ãŸã€‚%i 個ã®ãƒ•ã‚¡ã‚¤ãƒ«ãŒè¦‹ã¤ã‹ã‚‰ãšã€%i 個ã®é©åˆã—ãªã„" "ファイルãŒã‚ã‚Šã¾ã™ã€‚\n" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, c-format msgid "Skipping nonexistent file %s" msgstr "å˜åœ¨ã—ãªã„ファイル %s をスã‚ップã—ã¦ã„ã¾ã™" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "èªè¨¼ãƒ¬ã‚³ãƒ¼ãƒ‰ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“: %s" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, c-format msgid "Hash mismatch for: %s" msgstr "ãƒãƒƒã‚·ãƒ¥ã‚µãƒ ãŒé©åˆã—ã¾ã›ã‚“: %s" @@ -3202,12 +3213,12 @@ msgstr "" msgid "Installing %s" msgstr "%s をインストールã—ã¦ã„ã¾ã™" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "%s ã‚’è¨å®šã—ã¦ã„ã¾ã™" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "%s を削除ã—ã¦ã„ã¾ã™" @@ -3227,76 +3238,77 @@ msgstr "%s ã®æ¶ˆå¤±ã‚’記録ã—ã¦ã„ã¾ã™" msgid "Running post-installation trigger %s" msgstr "インストール後トリガ %s を実行ã—ã¦ã„ã¾ã™" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "ディレクトリ '%s' ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Could not open file '%s'" msgstr "ファイル '%s' をオープンã§ãã¾ã›ã‚“ã§ã—ãŸ" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "%s を準備ã—ã¦ã„ã¾ã™" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "%s を展開ã—ã¦ã„ã¾ã™" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "%s ã®è¨å®šã‚’準備ã—ã¦ã„ã¾ã™" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "%s をインストールã—ã¾ã—ãŸ" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "%s ã®å‰Šé™¤ã‚’準備ã—ã¦ã„ã¾ã™" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "%s を削除ã—ã¾ã—ãŸ" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "%s を完全ã«å‰Šé™¤ã™ã‚‹æº–備をã—ã¦ã„ã¾ã™" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "%s を完全ã«å‰Šé™¤ã—ã¾ã—ãŸ" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "ãƒã‚°ã«æ›¸ãè¾¼ã‚ã¾ã›ã‚“。openpty() ã«å¤±æ•—ã—ã¾ã—㟠(/dev/pts ãŒãƒžã‚¦ãƒ³ãƒˆã•ã‚Œã¦ã„ãª" "ã„?)\n" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "dpkg を実行ã—ã¦ã„ã¾ã™" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 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:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "ä¾å˜é–¢ä¿‚ã®å•é¡Œ - 未è¨å®šã®ã¾ã¾ã«ã—ã¦ã„ã¾ã™" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3304,7 +3316,7 @@ msgstr "" "エラーメッセージã¯å‰ã®å¤±æ•—ã‹ã‚‰ç¶šãエラーã§ã‚ã‚‹ã“ã¨ã‚’示ã—ã¦ã„ã‚‹ã®ã§ã€ãƒ¬ãƒãƒ¼ãƒˆ" "ã¯æ›¸ãè¾¼ã¾ã‚Œã¾ã›ã‚“。" -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" @@ -3312,7 +3324,7 @@ msgstr "" "エラーメッセージã¯ãƒ‡ã‚£ã‚¹ã‚¯ãƒ•ãƒ«ã‚¨ãƒ©ãƒ¼ã§ã‚ã‚‹ã“ã¨ã‚’示ã—ã¦ã„ã‚‹ã®ã§ã€ãƒ¬ãƒãƒ¼ãƒˆã¯æ›¸" "ãè¾¼ã¾ã‚Œã¾ã›ã‚“。" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3320,7 +3332,7 @@ msgstr "" "エラーメッセージã¯ãƒ¡ãƒ¢ãƒªè¶…éŽã‚¨ãƒ©ãƒ¼ã§ã‚ã‚‹ã“ã¨ã‚’示ã—ã¦ã„ã‚‹ã®ã§ã€ãƒ¬ãƒãƒ¼ãƒˆã¯æ›¸ã" "è¾¼ã¾ã‚Œã¾ã›ã‚“。" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_km\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+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" @@ -154,14 +154,14 @@ msgstr " ážáŸ’ទាស់​កញ្ចប់ ៖ " msgid " Version table:" msgstr " ážáž¶ážšáž¶áž„​កំណែ ៖" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, 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:1739 +#: cmdline/apt-cache.cc:1745 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -325,31 +325,31 @@ msgstr "មិន​អាច​សរសáŸážšâ€‹áž‘ៅ %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "មិន​អាច​ទទួល​យក​កំណែ​ debconf  ។ ážáž¾â€‹ debconf បានដំឡើង​ឬ ?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "បញ្ជី​ផ្នែក​បន្ážáŸ‚ម​កញ្ចប់​វែង​ពáŸáž€" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "​កំហុស​ដំណើរការ​ážážâ€‹ %s" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "បញ្ជី​ផ្នែក​បន្ážáŸ‚ម​ប្រភព​វែង​ពáŸáž€" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "កំហុស​សរសáŸážšâ€‹áž”ឋម​កážáž¶â€‹áž‘ៅ​ឯកសារ​មាážáž·áž€áž¶" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "កំហុស​ដំណើរការ​មាážáž·áž€áž¶â€‹ %s" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -430,11 +430,11 @@ msgstr "" " -c=? អាន​ឯកសារ​ការកំណážáŸ‹â€‹ážšáž…នាសម្ពáŸáž“្ធ​នáŸáŸ‡â€‹\n" " -o=? កំណážáŸ‹â€‹áž‡áž˜áŸ’រើស​ការ​កំណážáŸ‹â€‹ážšáž…នា​សម្ពáŸáž“្ធ​ážáž¶áž˜â€‹áž…áž·ážáŸ’áž" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "គ្មាន​ការ​ជ្រើស​​ដែល​ផ្គួផ្គង​" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "ឯកសារ​មួយ​ចំនួន​បាážáŸ‹áž”ងពី​ក្រុម​ឯកសារ​កញ្ចប់​ `%s'" @@ -547,7 +547,7 @@ msgstr "áž”áŸážŽáŸ’ណសារ​គ្មាន​វាល​កញ្ចប msgid " %s has no override entry\n" msgstr " %s គ្មាន​ធាážáž»áž’ាážáž»áž”ញ្ចូល​​បដិសáŸáž’ឡើយ\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " អ្នក​ážáŸ‚ទាំ %s គឺ %s មិនមែន​ %s\n" @@ -657,79 +657,79 @@ msgstr "មានបញ្ហា​ក្នុងការ​ផ្ដាច់ msgid "Failed to rename %s to %s" msgstr "បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​ប្ážáž¼ážšâ€‹ážˆáŸ’មោះ %s ទៅ %s" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "Regex កំហុស​ការចងក្រង​ - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "កញ្ចប់​ážáž¶áž„ក្រោម​មាន​ភាពអាស្រáŸáž™â€‹ážŠáŸ‚ល​ážáž»ážŸâ€‹áž‚្នា ៖" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "ប៉ុន្ážáŸ‚​ %s ážáŸ’រូវ​បាន​ដំឡើង​" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "ប៉ុន្ážáŸ‚​ %s នឹង​ážáŸ’រូវ​បាន​ដំឡើ​ង" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "ប៉ុន្ážáŸ‚​​វា​មិន​អាច​ដំឡើង​បាន​ទáŸâ€‹" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "ប៉ុន្ážáŸ‚​​វា​ជា​កញ្ចប់​និម្មិážâ€‹" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "ប៉ុន្ážáŸ‚​វា​មិន​បាន​ដំឡើង​ទáŸâ€‹" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "ប៉ុន្ážáŸ‚ វា​នឹង​មិន​ážáŸ’រូវ​បាន​ដំឡើង​ទáŸ" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " ឬ" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "កញ្ចប់​ážáŸ’មី​ážáž¶áž„ក្រោម​នឹង​ážáŸ’រូវ​បាន​ដំឡើង​ ៖" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "កញ្ចប់​ážáž¶áž„ក្រោម​នឹងážáŸ’រូវ​បាន​យកចáŸáž‰Â ៖" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "​កញ្ចប់​ážáž¶áž„​ក្រោម​ážáŸ’រូវ​បាន​យក​ážáŸ’រឡប់​មក​វិញ ៖" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "កញ្ចប់​ážáž¶áž„ក្រោម​នឹង​​ážáŸ’រូវ​បាន​​ធ្វើ​ឲ្យប្រសើ​ឡើង ៖" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "កញ្ចប់​ážáž¶áž„ក្រោម​នឹង​​ážáŸ’រូវ​បាន​បន្ទាប ៖" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "កញ្ចប់​រង់ចាំ​ážáž¶áž„ក្រោម​នឹង​ážáŸ’រូវ​​បានផ្លាស់​​ប្ážáž¼ážšâ€‹Â ៖" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (ដោយ​សារážáŸ‚​ %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -737,65 +737,65 @@ msgstr "" "ព្រមាន​ ៖ កញ្ចប់ដែល​ចាំបាច់​ážáž¶áž„ក្រោម​នឹង​ážáŸ’រូវ​បាន​យកចáŸáž‰Â ។\n" "ការយកចáŸáž‰â€‹áž“áŸáŸ‡â€‹áž˜áž·áž“​ážáŸ’រូវ​បានធ្វើ​ទáŸâ€‹áž›áž»áŸ‡ážáŸ’រា​ážáŸ‚​អ្នកដឹង​ážáž¶â€‹â€‹áž¢áŸ’នក​កំពុង​ធ្វើ​អ្វីឲ្យប្រាកដ !" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu ážáŸ’រូវ​បាន​ធ្វើ​ឲ្យ​ប្រសើរ %lu ážáŸ’រូវ​បានដំឡើង​ážáŸ’មី " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu ážáŸ’រូវ​បាន​ដំឡើង​ឡើង​វិញ " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu ​ážáŸ’រូវបានបន្ទាប់ " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu ដែលážáŸ’រូវ​យក​ចáŸáž‰â€‹ ហើយ​ %lu មិន​​បាន​ធ្វើ​ឲ្យ​ប្រសើរឡើយ ។\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu មិន​បាន​ដំឡើង​ ឬ យក​ចáŸáž‰áž”ានគ្រប់ជ្រុងជ្រោយ​ឡើយ​ ។\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, fuzzy, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "ចំណាំ កំពុង​ជ្រើស​ %s សម្រាប់ regex '%s'\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, fuzzy, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "ចំណាំ កំពុង​ជ្រើស​ %s សម្រាប់ regex '%s'\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, fuzzy, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "បានជ្រើស​កំណែ​ %s (%s) សម្រាប់ %s\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "កញ្ចប់​ %s ជា​កញ្ចប់​និម្មិážâ€‹ážŠáŸ‚ល​បាន​ផ្ážáž›áŸ‹â€‹ážŠáŸ„យ​ ៖\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [បានដំឡើង​]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 #, fuzzy msgid " [Not candidate version]" msgstr "កំណែ​សាកល្បង​" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "អ្នក​គួរážáŸ‚​ជ្រើស​យក​មួយ​​ឲ្យ​ច្បាស់​ដើម្បី​ដំឡើង​ ។" -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -806,164 +806,167 @@ msgstr "" "វា​មាននáŸáž™â€‹ážáž¶â€‹áž”ាážáŸ‹áž€áž‰áŸ’ចប់ ​គáŸâ€‹áž›áŸ‚ង​ប្រើ ឬ\n" "អាច​រក​បាន​ពី​ប្រភព​ផ្សáŸáž„​ទៀáž\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "ទោះ​យ៉ាងណា​កáŸážŠáŸ„áž™ កញ្ចប់​ážáž¶áž„ក្រោម​ជំនួស​វា ៖" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, fuzzy, c-format msgid "Package '%s' has no installation candidate" msgstr "កញ្ចប់​ %s មិនមាន​ការដំឡើងសាកល្បងឡើយ" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, fuzzy, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "ចំណាំ កំពុង​ជ្រើស​ %s ជំនួស​ %s\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "កំពុង​រំលង​ %s វា​បាន​ដំឡើង​រួចរាល់​ ហើយ​ភាព​ធ្វើឲ្យ​ប្រសើរ​​មិន​ទាន់​កំណážáŸ‹â€‹â€‹Â ។\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, fuzzy, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "កំពុង​រំលង​ %s វា​បាន​ដំឡើង​រួចរាល់​ ហើយ​ភាព​ធ្វើឲ្យ​ប្រសើរ​​មិន​ទាន់​កំណážáŸ‹â€‹â€‹Â ។\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "មិនអាចធ្វើការដំឡើង %s ឡើងវិញបានទ០វា​មិនអាចážáŸ’រូវបាន​ទាញយកបានឡើយ ។\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s ជាកំណែ​ដែលážáŸ’មីបំផុážážšáž½áž…ទៅហើយ ។\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "ប៉ុន្ážáŸ‚​ %s នឹង​ážáŸ’រូវ​បាន​ដំឡើ​ង" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "មិនទាន់បានដំឡើង​កញ្ចប់​ %s áž‘áŸâ€‹ ដូច្នáŸáŸ‡ មិន​បាន​យកចáŸáž‰áž¡áž¾áž™ \n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "កំពុង​កែ​ភាពអាស្រáŸáž™â€‹..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " បាន​បរាជáŸáž™Â ។" -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "មិន​អាច​កែ​ភាព​អាស្រáŸáž™â€‹áž”ានឡើយ​" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "មិនអាច​បង្រួម​ការ​កំណážáŸ‹â€‹áž—ាព​ប្រសើរ​​បាន​ឡើយ​" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " ធ្វើ​រួច" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "អ្នក​ប្រហែល​ជា​ចង់រážáŸ‹ 'apt-get -f install' ដើម្បី​កែ​វា​​ទាំងនáŸáŸ‡â€‹áž ើយ ។" -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "ភាព​អាស្រáŸáž™â€‹ážŠáŸ‚ល​ážáž»ážŸâ€‹áž‚្នា ។ ព្យាយាម​ការ​ប្រើ -f ។" -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ព្រមាន​ ៖ មិនអាច​ធ្វើការផ្ទៀងផ្ទាážáŸ‹áž—ាពážáŸ’រឹមážáŸ’រូវកញ្ចប់ážáž¶áž„ក្រោមបានឡើយ !" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "បានបដិសáŸáž’​ការព្រមាន​ការផ្ទៀងផ្ទាážáŸ‹áž—ាព​ážáŸ’រឹមážáŸ’រូវ ។\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "ដំឡើង​កញ្ចប់​ទាំងនáŸáŸ‡ ​ដោយគ្មានការពិនិážáŸ’យ​បញ្ជាក់ [y/N] ? " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "មិនអាច​ផ្ទៀងផ្ទាážáŸ‹áž—ាពážáŸ’រឹមážáŸ’រូវកញ្ចប់​មួយចំនួន​បានឡើយ​" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "មាន​បញ្ហា​ ហើយ -y ážáŸ’រូវ​បាន​ប្រើ​ដោយគ្មាន​​ --force​-yes" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "កំហុស​ážáž¶áž„ក្នុង កញ្ចប់​ដំឡើង​ážáŸ’រូវ​បាន​ហៅ​​ជាមួយ​កញ្ចប់​ដែល​ážáž¼áž… !" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "កញ្ចប់ ​ážáŸ’រូវការឲ្យ​យក​ចáŸáž‰â€‹â€‹ ប៉ុន្ážáŸ‚មិនអនុញ្ញាážâ€‹áž²áŸ’យយកចáŸáž‰áž¡áž¾áž™Â ។" -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "កំហុស​ážáž¶áž„ក្នុង​ ការ​រៀប​ážáž¶áž˜â€‹áž›áŸ†ážŠáž¶áž”់​មិន​បាន​បញ្ចប់ឡើយ" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "មិន​អាច​អាន​បញ្ជី​ប្រភព​បាន​ឡើយ​ ។" - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "យី អី​កáŸâ€‹áž…ម្លែង​ម្លáŸáŸ‡.. ទំហំ​មិន​ដូច​គ្នា​ឡើយ ។ សូម​ផ្ញើ​អ៊ីមែល​ទៅ apt@packages.debian.org" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "ážáŸ’រូវការ​​យក​ %sB/%sB នៃ​បáŸážŽáŸ’ណសារ ។​\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "ážáŸ’រូវ​ការយក​ %sB នៃ​បáŸážŽáŸ’ណសារ ។\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, fuzzy, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "បន្ទាប់​ពី​ពន្លា​ %sB នៃ​ការ​បន្ážáŸ‚ម​​ទំហំ​ážáž¶ážŸâ€‹ážáŸ’រូវ​បាន​ប្រើ ។\n" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, fuzzy, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "បន្ទាប់​ពី​ពន្លា​ %sB ទំហំ​ážáž¶ážŸáž“ឹង​​ទំនáŸážšÂ ។ \n" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "មិន​អាច​កំណážáŸ‹â€‹áž‘ំហំ​ទំនáŸážšâ€‹áž€áŸ’នុង​ %s បានឡើយ" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "អ្នក​គ្មាន​ទំហំ​​ទំនáŸážšâ€‹áž‚្រប់គ្រាន់​ក្នុង​​ %s ឡើយ ។" -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "បានបញ្ជាក់​ážáŸ‚ប្រážáž·áž”ážáŸ’ážáž·áž€áž¶ážšážŠáŸ‚លមិនសំážáž¶áž“់ប៉ុណ្ណោះ ប៉ុន្ážáŸ‚​នáŸáŸ‡áž˜áž·áž“មែនជាប្រážáž·áž”ážáŸ’ážáž·áž€áž¶ážšáž˜áž·áž“សំážáž¶áž“់នោះទáŸÂ ។" -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "បាទ/ចាស ធ្វើ​ដូច​ដែល​ážáŸ’ញុំ​និយាយ !" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -974,28 +977,28 @@ msgstr "" "ដើម្បី​បន្ហ​​វាយ​ក្នុង​ឃ្លា​ '%s'\n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "បោះបង់ ។" -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "ážáž¾â€‹áž¢áŸ’នក​ចង់​បន្ážáž¬â€‹ [បាទ ចាស/áž‘áŸâ€‹] ? " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​ទៅ​ប្រមូល​យក​ %s %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "ឯកសារ​មួយ​ចំនួន​បាន​បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​ទាញ​យក​" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "បានបញ្ចប់ការទាញ​យក​ ហើយ​ážáŸ‚​ក្នុង​របៀប​​ទាញ​យក​ប៉ុណ្ណោះ" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1003,19 +1006,19 @@ msgstr "" "អនុញ្ញាážâ€‹áž²áŸ’យ​ទៅ​ប្រមូល​យក​បáŸážŽáŸ’ណសារ​មួយ​ចំនួន​ ប្រហែល​ជា​រážáŸ‹â€‹áž—ាព​ទាន់​សមáŸáž™ apt-get ឬ ព្យាយាមប្រើ​ជាមួយ --" "fix- ដែលបាážáŸ‹áž¬áŸ‹Â ?" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix- ដែលបាážáŸ‹â€‹ áž“áž·áž„ ​ស្វប​មáŸážŒáŸ€â€‹ážŠáŸ‚ល​មិនបាន​​គាំទ្រនៅពáŸáž›â€‹áž”ច្ចុប្បន្ន​" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "មិន​អាច​កែ​កញ្ចប់​ដែលបាážáŸ‹áž”ង់​បានឡើយ ។" -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "កំពុង​បោះបង់​ការ​ដំឡើង​ ។" -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1025,35 +1028,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "មិនអាចážáŸ’លែង បញ្ជី​កញ្ចប់​ប្រភពចប់​ បានឡើយ %s" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "ពាក្យ​បញ្ជា​ដែលធ្វើ​ឲ្យ​ទាន់​សមáŸáž™â€‹áž‚្មាន​អាគុយម៉ង់​ទáŸ" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1063,7 +1066,7 @@ msgid_plural "" msgstr[0] "កញ្ចប់​ážáŸ’មី​ážáž¶áž„ក្រោម​នឹង​ážáŸ’រូវ​បាន​ដំឡើង​ ៖" msgstr[1] "កញ្ចប់​ážáŸ’មី​ážáž¶áž„ក្រោម​នឹង​ážáŸ’រូវ​បាន​ដំឡើង​ ៖" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1071,11 +1074,11 @@ msgid_plural "" msgstr[0] "កញ្ចប់​ážáŸ’មី​ážáž¶áž„ក្រោម​នឹង​ážáŸ’រូវ​បាន​ដំឡើង​ ៖" msgstr[1] "កញ្ចប់​ážáŸ’មី​ážáž¶áž„ក្រោម​នឹង​ážáŸ’រូវ​បាន​ដំឡើង​ ៖" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1091,31 +1094,31 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "áž–áŸážáŸŒáž˜áž¶áž“​ដូចážáž‘ៅនáŸáŸ‡ អាចជួយ​ដោះស្រាយ​ស្ážáž¶áž“ភាព​បាន ៖" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "កំហុស​ážáž¶áž„ក្នុង អ្នក​ដោះស្រាយ​បញ្ហា​បានធ្វើឲ្យážáž¼áž…​ឧបករណáŸ" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "កំហុស​ážáž¶áž„ក្នុង ការធ្វើឲ្យប្រសើរ​ទាំងអស់បានធ្វើឲ្យ​ឧបករណáŸâ€‹ážáž¼áž…" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "អ្នក​ប្រហែល​ជា​ចង់​រážáŸ‹ 'apt-get -f install' ដើម្បី​កែ​ពួក​វា​ទាំង​នáŸáŸ‡Â ៖" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." msgstr "" "ភាពអស្រáŸáž™â€‹ážŠáŸ‚ល​ážáž»ážŸâ€‹áž‚្នា ។ ព្យាយាម​ 'apt-get -f install' ដោយ​គ្មាន​កញ្ចប់ (ឬ បញ្ជាក់​ដំណោះស្រាយ) ។" -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1127,69 +1130,69 @@ msgstr "" "ដែលបាន​ទាមទារនឹងមិនទាន់បានបង្កើážâ€‹áž¡áž¾áž™â€‹\n" " ឬ ​បានយក​ចáŸáž‰â€‹áž–ីការមកដល់ ។" -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "កញ្ចប់​ដែល​បាន​ážáž¼áž…​" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "កញ្ចប់​បន្ážáŸ‚ម​ដូចážáž‘ៅនáŸáŸ‡ នឹងážáŸ’រូវបាន​ដំឡើង ៖" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "កញ្ចប់​ដែល​បាន​ផ្ដល់​យោបល់ ៖" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "កញ្ចប់​ដែល​បាន​ផ្ដល់​អនុសាសនáŸÂ ៖" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទáŸ" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "ប៉ុន្ážáŸ‚​ %s នឹង​ážáŸ’រូវ​បាន​ដំឡើ​ង" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "កំពុង​គណនា​ការ​ធ្វើ​ឲ្យ​ប្រសើរ... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "បាន​បរាជáŸáž™" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "ធ្វើរួច​" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "កំហុស​ážáž¶áž„ក្នុង អ្នក​ដោះស្រាយ​បញ្ហា​បានធ្វើឲ្យážáž¼áž…​ឧបករណáŸ" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "មិន​អាច​ចាក់​សោ​ážážâ€‹áž‘ាញ​យក​បាន​ឡើយ" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 msgid "Must specify at least one package to fetch source for" msgstr "យ៉ាងហោចណាស់​ážáŸ’រូវ​​បញ្ជាក់​​កញ្ចប់​មួយ ​ដើម្បី​ទៅ​​ប្រមូល​យក​ប្រភព​សម្រាប់" -#: cmdline/apt-get.cc:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "មិន​អាច​រក​កញ្ចប់ប្រភព​​សម្រាប់ %s បានឡើយ" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1197,81 +1200,85 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "កំពុង​រំលង​ឯកសារ​ដែល​បាន​ទាញយក​រួច​ '%s'\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "អ្នក​ពុំ​មាន​ទំហំ​ទំនáŸážšâ€‹áž‚្រប់គ្រាន់​ទáŸâ€‹áž“ៅក្នុង​ %s ឡើយ" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "ážáŸ’រូវការ​យក​ %sB/%sB នៃ​បáŸážŽáŸ’ណសារ​ប្រភព ។\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "ážáŸ’រូវការ​យក​ %sB នៃ​បáŸážŽáŸ’ណសារ​ប្រភព​ ។\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "ទៅប្រមូល​ប្រភព​ %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "បរាជáŸáž™â€‹áž€áŸ’នុងការទៅប្រមូលយក​បáŸážŽáŸ’ណសារ​មួយចំនួន ។" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "កំពុង​រំលង​ការស្រាយ​នៃប្រភព​ដែលបានស្រាយរួច​នៅក្នុង %s\n" -#: cmdline/apt-get.cc:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "ពាក្យ​បញ្ជា​ស្រាយ '%s' បាន​បរាជáŸáž™â€‹Â ។\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "áž–áž·áž“áž·ážáŸ’យ​ប្រសិន​បើកញ្ចប់ 'dpkg-dev' មិន​ទាន់​បាន​ដំឡើង​ ។\n" -#: cmdline/apt-get.cc:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "សាងសង​ពាក្យ​បញ្ជា​ '%s' បានបរាជáŸáž™â€‹Â ។\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "ដំណើរ​ការ​កូន​បាន​បរាជáŸáž™â€‹" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 msgid "Must specify at least one package to check builddeps for" msgstr "ážáŸ’រូវážáŸ‚​បញ្ជាក់​យ៉ាងហោចណាស់​មួយកញ្ចប់ដើម្បីពិនិážáŸ’áž™ builddeps សម្រាប់" -#: cmdline/apt-get.cc:2506 +#: cmdline/apt-get.cc:2524 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "មិន​អាច​សាងសង់​​ពáŸážáŸŒáž˜áž¶áž“​ភាពអស្រáŸáž™â€‹ážŸáž˜áŸ’រាប់ %s" -#: cmdline/apt-get.cc:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "%s មិនមានភាពអាស្រáŸáž™â€‹ážŸáŸ’ážáž¶áž”នាឡើយ​ ។\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, 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:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1280,30 +1287,30 @@ msgstr "" "ភាពអាស្រáŸáž™ %s សម្រាប់ %s មិនអាច​ážáž˜áŸ’រូវចិážáŸ’ážáž”ានទ០ព្រោះ មិនមាន​កំណែ​នៃកញ្ចប់ %s ដែលអាច​ážáž˜áŸ’រូវចិážáŸ’ážâ€‹" "ážáž˜áŸ’រូវការ​កំណែបានឡើយ" -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "បរាជáŸáž™â€‹áž€áŸ’នុងការ​ážáž˜áŸ’រូវចិážáŸ’ážáž—ាពអាស្រáŸáž™ %s សម្រាប់ %s ៖ កញ្ចប់ %s ដែលបានដំឡើង គឺážáŸ’មីពáŸáž€" -#: cmdline/apt-get.cc:2693 +#: cmdline/apt-get.cc:2711 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "បរាជáŸáž™â€‹áž€áŸ’នុងការ​ážáž˜áŸ’រូវចិážáŸ’ážáž—ាពអាស្រáŸáž™ %s សម្រាប់ %s: %s" -#: cmdline/apt-get.cc:2709 +#: cmdline/apt-get.cc:2727 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "ភាពអាស្រáŸáž™â€‹ážŠáŸ‚ល​បង្កើážâ€‹ %s មិន​អាច​បំពáŸáž‰â€‹ážŸáŸáž…ក្ដី​ážáŸ’រូវការ​បាន​ទáŸÂ ។" -#: cmdline/apt-get.cc:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "បាន​បរាជáŸáž™â€‹áž€áŸ’នុង​ការ​ដំណើរ​​ការ​បង្កើážâ€‹áž—ាព​អាស្រáŸáž™" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "ម៉ូឌុល​ដែល​គាំទ្រ ៖ " -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1388,7 +1395,7 @@ msgstr "" "pages for more information and options.\n" " This APT has Super Cow Powers.\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1633,10 +1640,10 @@ msgstr "ឯកសារ​ %s/%s សរសáŸážšáž‡áž¶áž“់​ពីលើ​ហ#. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1770,23 +1777,23 @@ msgstr "បរាជáŸáž™â€‹áž€áŸ’នុងការដាក់ទិážáž¶áŸ† msgid "Unparsable control file" msgstr "ឯកសារážáŸ’ážšáž½ážáž–áž·áž“áž·ážáŸ’យ​ដែលមិនអាច​ញែកបាន" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "មិន​អាច​បើក​បំពុង​សម្រាប់​ %s បានឡើយ" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "អាចន​កំហុស​ពី​ដំណើរការ %s" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "បរាជáŸáž™â€‹áž€áŸ’នុងការážáŸ’លែង" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "បរាជáŸáž™áž€áŸ’នុងការកំណážáŸ‹â€‹áž–áŸáž›ážœáŸáž›áž¶â€‹áž€áž¶ážšáž€áŸ‚ប្រែ​" @@ -1878,7 +1885,7 @@ msgstr "អស់ពáŸáž›â€‹áž€áŸ’នុងការážáž—្ជាប់​" msgid "Server closed the connection" msgstr "ម៉ាស៊ីន​បម្រើ​បាន​បិទ​ការážáž—្ជាប់​" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "ការអាន​មានកំហុស" @@ -1890,7 +1897,7 @@ msgstr "ឆ្លើយážáž”​សážáž·â€‹áž”ណ្ážáŸ„ះអាសន្ន msgid "Protocol corruption" msgstr "ការបង្ážáž¼áž…​ពិធីការ​" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "ការសរសáŸážšâ€‹áž˜áž¶áž“កំហុស" @@ -1944,7 +1951,7 @@ msgstr "ការážáž—្ជាប់​រន្ធ​​ទិន្នន០msgid "Unable to accept connection" msgstr "មិនអាច​ទទួលយក​ការážáž—្ជាប់​បានឡើយ" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "បញ្ហា​ធ្វើឲ្យážáž¼áž…​ឯកសារ" @@ -2075,68 +2082,68 @@ msgstr "យកបន្ទាážáŸ‹â€‹áž”ឋមកážáž¶â€‹ážáŸ‚មួយ​​ msgid "Bad header line" msgstr "ជួរ​បឋមកážáž¶â€‹ážáž¼áž…​" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "ម៉ាស៊ីន​បម្រើ​ HTTP បានផ្ញើបឋមកážáž¶áž…ម្លើយážáž”មិនážáŸ’រឹមážáŸ’រូវ" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "ម៉ាស៊ីន​បម្រើ​ HTTP បានផ្ញើ​​បឋមកážáž¶áž”្រវែង​​​មាážáž·áž€áž¶â€‹áž˜áž·áž“ážáŸ’រឹមážáŸ’រូវ​" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "ម៉ាស៊ីន​បម្រើ​ HTTP បានផ្ញើ​បឋមកážáž¶â€‹áž‡áž½ážšâ€‹áž˜áž¶ážáž·áž€áž¶â€‹áž˜áž·áž“​ážáŸ’រឹមážáŸ’រូវ​" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "ម៉ាស៊ីន​បម្រើ HTTP áž“áŸáŸ‡áž”ាន​ážáž¼áž…​​​ជួរ​គាំទ្រ​" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "មិនស្គាល់​ទ្រង់ទ្រាយ​កាលបរិច្ឆáŸáž‘" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "ជ្រើស​បាន​បរាជáŸáž™â€‹" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "ការážáž—្ជាប់​បាន​អស់ពáŸáž›â€‹" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "កំហុស​ក្នុងការ​សរសáŸážšáž‘ៅកាន់​ឯកសារលទ្ធផល" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "កំហុស​ក្នុងការ​សរសáŸážšáž‘ៅកាន់​ឯកសារ" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "កំហុសក្នុងការ​សរសáŸážšâ€‹áž‘ៅកាន់​ឯកសារ" -#: methods/http.cc:894 +#: methods/http.cc:900 msgid "Error reading from server. Remote end closed connection" msgstr "កំហុស​ក្នុងការ​អាន​ពី​ម៉ាស៊ីនបម្រើ ។ ការបញ្ចប់​ពីចម្ងាយ​បានបិទការážáž—្ជាប់" -#: methods/http.cc:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "កំហុស​ក្នុងការអាន​ពី​ម៉ាស៊ីន​បម្រើ" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 #, fuzzy msgid "Failed to truncate file" msgstr "បរាជáŸáž™â€‹áž€áŸ’នុងការ​សរសáŸážšâ€‹áž¯áž€ážŸáž¶ážš %s" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "ទិន្ននáŸáž™â€‹áž”ឋមកážáž¶â€‹ážáž¼áž…" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "ការážáž—្ជាប់​បាន​បរាជáŸáž™â€‹" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "កំហុស​ážáž¶áž„​ក្នុង​" @@ -2328,14 +2335,14 @@ msgstr "ប្រážáž·áž”ážáŸ’ážáž·áž€áž¶ážšâ€‹áž˜áž·áž“​ážáŸ’រឹមហmsgid "Unable to stat the mount point %s" msgstr "មិនអាច​ážáŸ’លែង ចំណុចម៉ោន %s បានឡើយ" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "មិនអាច​ប្ដូរទៅ %s បានឡើយ" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "បរាជáŸáž™áž€áŸ’នុងការ​ážáŸ’លែង ស៊ីឌីរ៉ូម" @@ -2359,149 +2366,149 @@ msgstr "មិនប្រើ​ការចាក់សោ សម្រាប០msgid "Could not get lock %s" msgstr "មិន​អាច​ចាក់សោ %s បានឡើយ" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "រង់ចាំប់​ %s ប៉ុន្ážáŸ‚ ​វា​មិន​នៅទីនោះ" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "ដំណើរការ​រង​ %s បាន​ទទួល​កំហុស​ការ​ចែកជាចម្រៀក​ ។" -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "ដំណើរការ​រង​ %s បាន​ទទួល​កំហុស​ការ​ចែកជាចម្រៀក​ ។" -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "ដំណើរការ​រង​ %s បានážáŸ’រឡប់​ទៅកាន់​កូដ​មាន​កំហុស​ (%u)" -#: apt-pkg/contrib/fileutl.cc:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "ដំណើរការ​រង​ %s បានចáŸáž‰ ដោយ​មិន​រំពឹង​ទុក​ " -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "មិន​អាច​បើក​បំពុង​សម្រាប់​ %s បានឡើយ" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "អាន​, នៅážáŸ‚​មាន %lu ដើម្បី​អាន​ ប៉ុន្ážáŸ‚​គ្មាន​អ្វី​នៅសល់" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "សរសáŸážšâ€‹, នៅážáŸ‚មាន​ %lu ដើម្បី​សរសáŸážšâ€‹ ប៉ុន្ážáŸ‚​មិន​អាច​" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, fuzzy, c-format msgid "Problem closing the gzip file %s" msgstr "មាន​បញ្ហា​ក្នុងការ​បិទ​ឯកសារ" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "មាន​បញ្ហា​ក្នុងការ​បិទ​ឯកសារ" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "មានបញ្ហា​ក្នុង​ការធ្វើ​សមកាលកម្មឯកសារ​" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "មានបញ្ហា​ក្នុងការ​ផ្ដាច់ážáŸ†ážŽâ€‹áž¯áž€ážŸáž¶ážš" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "មានបញ្ហា​ក្នុង​ការធ្វើ​សមកាលកម្មឯកសារ​" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "ឃ្លាំង​កញ្ចប់​ទទáŸâ€‹" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "​​ឯកសារ​ឃ្លាំង​កញ្ចប់​មិន​ážáŸ’រឹមážáŸ’រូវ​" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "ឯកសារ​ឃ្លាំងសម្ងាážáŸ‹â€‹â€‹áž€áž‰áŸ’ចប់​ជាកំណែ​មិន​ážáŸ’រូវគ្នា​" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "APT áž“áŸáŸ‡ មិនគាំទ្រ​ប្រពáŸáž“្ធ​ ការធ្វើកំណែនáŸáŸ‡áž‘áŸâ€‹ '%s'" -#: apt-pkg/pkgcache.cc:163 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache was built for a different architecture" msgstr "ឃ្លាំង​សម្ងាážáŸ‹â€‹áž€áž‰áŸ’ចប់ážáŸ’រូវ​បានស្ážáž¶áž”នា់​សម្រាប់ស្ážáž¶áž”ážáŸ’យករ​ážáž»ážŸâ€‹áŸ—គ្នា​​" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "អាស្រáŸáž™â€‹" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "អាស្រáŸáž™áž‡áž¶â€‹áž˜áž»áž“" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "ផ្ដល់យោបល់​" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "ផ្ážáž›áŸ‹â€‹áž¢áž“ុសាសនáŸâ€‹" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "ប៉ះទង្គិច" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "ជំនួស​" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "លែង​ប្រើ" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "សំážáž¶áž“់​" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "បាន​ទាមទារ" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "គំរូ" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "ស្រáŸáž…áž…áž·ážáŸ’áž" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "បន្ážáŸ‚ម" @@ -2620,7 +2627,7 @@ msgstr "ប្រភáŸáž‘​ '%s' មិន​ស្គាល់នៅលើប #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" @@ -2638,7 +2645,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" @@ -2653,7 +2660,7 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "កញ្ចប់ %s ážáŸ’រូវការឲ្យដំឡើង ប៉ុន្ážáŸ‚​ ážáŸ’ញុំ​មិន​អាច​រក​បáŸážŽáŸ’ណសារ​សម្រាប់​វា​បាន​ទáŸâ€‹Â ។" -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2661,11 +2668,11 @@ msgstr "" "កំហុស pkgProblemResolver::ដោះស្រាយ​សញ្ញាបញ្ឈប់​ដែលបានបង្កើហនáŸáŸ‡â€‹áž”្រហែលជា បង្កដោយកញ្ចប់​" "ដែលបាន​ទុក ។" -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "មិន​អាច​កែ​បញ្ហាបានទáŸáŸ អ្កបានទុក​កញ្ចប់​ដែល​ážáž¼áž… ។។" -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2689,12 +2696,12 @@ msgstr "មិន​អាច​ចាក់​សោ​ážážâ€‹áž”ញ្ជី #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "កំពុង​ទៅ​យក​ឯកសារ %li នៃ %li (នៅសល់ %s)" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "កំពុង​ទៅយក​ឯកសារ %li នៃ %li" @@ -2714,12 +2721,12 @@ msgstr "វិធីសាស្ážáŸ’រ​ %s មិន​អាច​ចាហmsgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "សូម​បញ្ចូល​ស្លាក​ឌីស​ ៖ '%s' ក្នុង​ដ្រាយ​ '%s' ហើយ​សង្កážáŸ‹â€‹áž…ូល ។" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "មិន​គាំទ្រ​ប្រពáŸáž“្ធ​កញ្ចប់'%s' ឡើយ" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "មិនអាច​កំណážáŸ‹â€‹áž”្រភáŸáž‘​ប្រពáŸáž“្ធ​កញ្ចប់​ដែល​សមរម្យ​បានឡើយ" @@ -2740,17 +2747,21 @@ msgstr "បញ្ជី​កញ្ចប់​ ឬ ឯកសារ​ស្ážá msgid "You may want to run apt-get update to correct these problems" msgstr "អ្នកប្រហែលជា​ចង់ភាពទាន់សមáŸáž™ apt-get ដើម្បី​កែ​បញ្ហា​ទាំងនáŸáŸ‡" -#: apt-pkg/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "មិន​អាច​អាន​បញ្ជី​ប្រភព​បាន​ឡើយ​ ។" + +#: apt-pkg/policy.cc:344 #, fuzzy, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "កំណážáŸ‹ážáŸ’រា​មិនážáŸ’រឹមážáŸ’រូវ​នៅក្នុង​ឯកសារចំណង់ចំណូលចិážáŸ’ហមិនមាន​បឋមកážáž¶â€‹áž€áž‰áŸ’ចប់ទáŸ" -#: apt-pkg/policy.cc:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "មិន​បាន​យល់​ពី​ប្រភáŸáž‘​ម្ជុល %s ឡើយ" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "គ្មាន​អទិភាព (ឬ សូន្យ​) បានបញ្ជាក់​សម្រាប់​ម្ជុល​ទáŸ" @@ -2853,42 +2864,42 @@ msgstr "ប្ážáž¼ážšâ€‹ážˆáŸ’មោះ​បានបរាជáŸáž™â€‹, %s ( msgid "MD5Sum mismatch" msgstr "MD5Sum មិន​ផ្គួផ្គង​" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 #, fuzzy msgid "Hash Sum mismatch" msgstr "MD5Sum មិន​ផ្គួផ្គង​" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 msgid "There is no public key available for the following key IDs:\n" msgstr "គ្មាន​កូនសោ​សាធារណៈ​អាច​រក​បាន​ក្នុងកូនសោ IDs ážáž¶áž„ក្រោម​នáŸáŸ‡áž‘áŸÂ ៖\n" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2897,7 +2908,7 @@ msgstr "" "ážáŸ’ញុំ​មិន​អាច​រកទីážáž¶áŸ†áž„​ឯកសារ​សម្រាប់​កញ្ចប់ %s បាន​ទáŸÂ ។ ​មាន​នáŸáž™â€‹ážáž¶â€‹áž¢áŸ’នក​ážáŸ’រូវការ​ជួសជុល​កញ្ចប់​នáŸáŸ‡â€‹ážŠáŸ„យ​ដៃ ។ " "(ដោយសារ​​បាážáŸ‹â€‹ážŸáŸ’ážáž¶áž”ážáŸ’យកម្ម)" -#: apt-pkg/acquire-item.cc:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2905,13 +2916,13 @@ msgid "" msgstr "" "ážáŸ’ញុំ​មិន​អាច​រកទីážáž¶áŸ†áž„​ឯកសារ​សម្រាប់​កញ្ចប់ %s បានទáŸÂ ។ ​មាន​នáŸáž™â€‹ážáž¶â€‹áž¢áŸ’នក​ážáŸ’រូវការ​ជួសជុល​កញ្ចប់​នáŸáŸ‡â€‹ážŠáŸ„យ​ដៃ ។" -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "កញ្ចប់​ឯកសារ​លិបិក្រម​ážáŸ’រូវ​បាន​ážáž¼áž… ។ គ្មាន​ឈ្មោះ​ឯកសារ ៖ វាល​សម្រាប់​កញ្ចប់នáŸáŸ‡â€‹áž‘áŸâ€‹ %s ។" -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "ទំហំ​មិនបាន​ផ្គួផ្គង​" @@ -3033,37 +3044,37 @@ msgstr "កំពុងសរសáŸážšâ€‹áž”ញ្ជី​ប្រភព​ហmsgid "Source list entries for this disc are:\n" msgstr "ធាážáž»áž”ញ្ចូល​បញ្ជីប្រភព​សម្រាប់​ឌីស​នáŸáŸ‡áž‚ឺ ៖\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "បានសរសáŸážš %i កំណážáŸ‹ážáŸ’រា ។\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "បានសរសáŸážš %i កំណážáŸ‹ážáŸ’រា​ជាមួយ​ %i ឯកសារ​ដែល​បាážáŸ‹áž”ង់ ។\n" -#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "បានសរសáŸážšâ€‹ %i កំណážáŸ‹ážáŸ’រា​ជាមួយួយ​ %i ឯកសារ​ដែល​មិន​បាន​ផ្គួផ្គង​\n" -#: apt-pkg/indexcopy.cc:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "បានសរសáŸážš %i កំណážáŸ‹ážáŸ’រា​ជាមួយ​ %i ឯកសារ​ដែល​បាážáŸ‹áž”ង់​ និង​ %i ឯកសារ​ដែល​មិន​បាន​ផ្គួផ្គង​ ​\n" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, fuzzy, c-format msgid "Skipping nonexistent file %s" msgstr "កំពុង​បើ​ឯកសារ​កំណážáŸ‹ážšáž…នាសម្ពáŸáž“្ធ​ %s" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, fuzzy, c-format msgid "Hash mismatch for: %s" msgstr "MD5Sum មិន​ផ្គួផ្គង​" @@ -3120,12 +3131,12 @@ msgstr "" msgid "Installing %s" msgstr "បាន​ដំឡើង %s" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "កំពុង​កំណážáŸ‹â€‹ážšáž…នា​សម្ពáŸáž“្ធ %s" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "កំពុង​យក %s áž…áŸáž‰" @@ -3145,92 +3156,93 @@ msgstr "" msgid "Running post-installation trigger %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, fuzzy, c-format msgid "Directory '%s' missing" msgstr "រាយបញ្ជី​ážážâ€‹ %spartial គឺ​បាážáŸ‹áž”ង់​ ។" -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, fuzzy, c-format msgid "Could not open file '%s'" msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "កំពុងរៀបចំ​ %s" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "កំពុង​ស្រាយ %s" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "កំពុងរៀបចំ​កំណážáŸ‹ážšáž…នាសម្ពáŸáž“្ធ %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "បាន​ដំឡើង %s" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "កំពុងរៀបចំដើម្បី​ការយក​ចáŸáž‰â€‹áž“ៃ %s" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "បាន​យក %s áž…áŸáž‰" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "កំពុង​រៀបចំ​យក %s áž…áŸáž‰â€‹áž‘ាំង​ស្រុង" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "បាន​យក %s áž…áŸáž‰â€‹áž‘ាំង​ស្រុង" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+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" @@ -145,14 +145,14 @@ msgstr " 패키지 í•€: " msgid " Version table:" msgstr " ë²„ì „ í…Œì´ë¸”:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s(%s), ì»´íŒŒì¼ ì‹œê° %s %s\n" -#: cmdline/apt-cache.cc:1739 +#: cmdline/apt-cache.cc:1745 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -315,31 +315,31 @@ msgstr "%sì— ì“¸ 수 없습니다" msgid "Cannot get debconf version. Is debconf installed?" msgstr "debconf ë²„ì „ì„ ì•Œ 수 없습니다. debconfê°€ 설치ë˜ì—ˆìŠµë‹ˆê¹Œ?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "패키지 확장 목ë¡ì´ 너무 ê¹ë‹ˆë‹¤" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "%s ë””ë ‰í„°ë¦¬ë¥¼ ì²˜ë¦¬í•˜ëŠ”ë° ì˜¤ë¥˜ê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "소스 확장 목ë¡ì´ 너무 ê¹ë‹ˆë‹¤" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "컨í…ì¸ íŒŒì¼ì— í—¤ë”를 ì“°ëŠ”ë° ì˜¤ë¥˜ê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "%s 컨í…ì¸ ë¥¼ ì²˜ë¦¬í•˜ëŠ”ë° ì˜¤ë¥˜ê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -420,11 +420,11 @@ msgstr "" " -c=? ì´ ì„¤ì • 파ì¼ì„ ì½ìŠµë‹ˆë‹¤\n" " -o=? ìž„ì˜ì˜ ì˜µì…˜ì„ ì„¤ì •í•©ë‹ˆë‹¤" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "맞는 패키지가 없습니다" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "`%s' 패키지 íŒŒì¼ ê·¸ë£¹ì— ëª‡ëª‡ 파ì¼ì´ ë¹ ì¡ŒìŠµë‹ˆë‹¤" @@ -538,7 +538,7 @@ msgstr "ì•„ì¹´ì´ë¸Œì— 패키지 필드가 없습니다" msgid " %s has no override entry\n" msgstr " %sì—는 override í•ëª©ì´ 없습니다\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s 관리ìžê°€ %s입니다 (%s 아님)\n" @@ -648,79 +648,79 @@ msgstr "%sì˜ ë§í¬ë¥¼ í•´ì œí•˜ëŠ”ë° ë¬¸ì œê°€ 있습니다" msgid "Failed to rename %s to %s" msgstr "%s 파ì¼ì˜ ì´ë¦„ì„ %s(으)ë¡œ ë°”ê¾¸ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "ì •ê·œì‹ ì»´íŒŒì¼ ì˜¤ë¥˜ - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "ë‹¤ìŒ íŒ¨í‚¤ì§€ì˜ ì˜ì¡´ì„±ì´ 맞지 않습니다:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "하지만 %s 패키지를 설치했습니다" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "하지만 %s 패키지를 ì„¤ì¹˜í• ê²ƒìž…ë‹ˆë‹¤" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "하지만 ì„¤ì¹˜í• ìˆ˜ 없습니다" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "하지만 ê°€ìƒ íŒ¨í‚¤ì§€ìž…ë‹ˆë‹¤" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "하지만 설치하지 않았습니다" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "하지만 %s 패키지를 설치하지 ì•Šì„ ê²ƒìž…ë‹ˆë‹¤" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " 혹ì€" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "ë‹¤ìŒ ìƒˆ 패키지를 ì„¤ì¹˜í• ê²ƒìž…ë‹ˆë‹¤:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ 지울 것입니다:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ 과거 ë²„ì „ìœ¼ë¡œ ìœ ì§€í•©ë‹ˆë‹¤:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ ì—…ê·¸ë ˆì´ë“œí• 것입니다:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ ë‹¤ìš´ê·¸ë ˆì´ë“œí• 것입니다:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "ê³ ì •ë˜ì—ˆë˜ ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ 바꿀 것입니다:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (%s때문ì—) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -728,64 +728,64 @@ msgstr "" "ê²½ê³ : ê¼ í•„ìš”í•œ ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ 지우게 ë©ë‹ˆë‹¤.\n" "무슨 ì¼ì„ í•˜ê³ ìžˆëŠ” 지 ì •í™•ížˆ 알지 못한다면 지우지 마ì‹ì‹œì˜¤!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%luê°œ ì—…ê·¸ë ˆì´ë“œ, %luê°œ 새로 설치, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%luê°œ 다시 설치, " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%luê°œ ì—…ê·¸ë ˆì´ë“œ, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%luê°œ ì œê±° ë° %luê°œ ì—…ê·¸ë ˆì´ë“œ 안 함.\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu개를 ì™„ì „ížˆ 설치하지 못했거나 지움.\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "주ì˜, ìž‘ì—… '%2$s'ì— ëŒ€í•´ '%1$s'ì„(를) ì„ íƒí•©ë‹ˆë‹¤\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "주ì˜, ì •ê·œì‹ '%2$s'ì— ëŒ€í•´ '%1$s'ì„(를) ì„ íƒí•©ë‹ˆë‹¤\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "'%3$s' íŒ¨í‚¤ì§€ì˜ '%1$s' (%2$s) ë²„ì „ì„ ì„ íƒí•©ë‹ˆë‹¤\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "%s 패키지는 다ìŒì´ ì œê³µí•˜ëŠ” ê°€ìƒ íŒ¨í‚¤ì§€ìž…ë‹ˆë‹¤:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [설치함]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 msgid " [Not candidate version]" msgstr "[후보 ë²„ì „ 아님]" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "ì„¤ì¹˜í• íŒ¨í‚¤ì§€ë¥¼ 하나 분명히 ì§€ì •í•´ì•¼ 합니다." -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -796,171 +796,174 @@ msgstr "" "해당 패키지가 누ë½ë˜ì—ˆê±°ë‚˜ 지워졌다는 뜻입니다. 아니면 ë˜ ë‹¤ë¥¸ ê³³ì—ì„œ\n" "패키지를 받아와야 하는 ê²½ìš°ì¼ ìˆ˜ë„ ìžˆìŠµë‹ˆë‹¤.\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "하지만 ë‹¤ìŒ íŒ¨í‚¤ì§€ê°€ 대체합니다:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, c-format msgid "Package '%s' has no installation candidate" msgstr "'%s' 패키지는 ì„¤ì¹˜í• ìˆ˜ 있는 후보가 없습니다" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "'%s' 패키지와 ê°™ì€ ê°€ìƒ íŒ¨í‚¤ì§€ëŠ” ì œê±°í• ìˆ˜ 없습니다\n" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "주ì˜, '%2$s' ëŒ€ì‹ ì— '%1$s' 패키지를 ì„ íƒí•©ë‹ˆë‹¤\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" "%s 패키지를 건너 ëœë‹ˆë‹¤. ì´ë¯¸ 설치ë˜ì–´ ìžˆê³ ì—…ê·¸ë ˆì´ë“œë¥¼ 하지 않습니다.\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "%s 패키지를 건너 ëœë‹ˆë‹¤. 설치ë˜ì§€ ì•Šì•˜ê³ ì—…ê·¸ë ˆì´ë“œë§Œ ìš”ì²í•©ë‹ˆë‹¤.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "%s 패키지를 다시 설치하는 ê±´ 불가능합니다. ë‹¤ìš´ë¡œë“œí• ìˆ˜ 없습니다.\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s 패키지는 ì´ë¯¸ ìµœì‹ ë²„ì „ìž…ë‹ˆë‹¤.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, c-format msgid "%s set to manually installed.\n" msgstr "%s 패키지 수ë™ì„¤ì¹˜ë¡œ ì§€ì •í•©ë‹ˆë‹¤.\n" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "%s 패키지를 설치하지 않았으므로, 지우지 않습니다\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "ì˜ì¡´ì„±ì„ 바로잡는 중입니다..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " 실패." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "ì˜ì¡´ì„±ì„ ë°”ë¡œìž¡ì„ ìˆ˜ 없습니다" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "ì—…ê·¸ë ˆì´ë“œ ì§‘í•©ì„ ìµœì†Œí™”í• ìˆ˜ 없습니다" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " 완료" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "" "ì´ ìƒí™©ì„ ë°”ë¡œìž¡ìœ¼ë ¤ë©´ 'apt-get -f install'ì„ ì‹¤í–‰í•´ì•¼ í• ìˆ˜ë„ ìžˆìŠµë‹ˆë‹¤." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "ì˜ì¡´ì„±ì´ 맞지 않습니다. -f ì˜µì…˜ì„ ì‚¬ìš©í•´ ë³´ì‹ì‹œì˜¤." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ê²½ê³ : ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ ì¸ì¦í• 수 없습니다!" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "ì¸ì¦ ê²½ê³ ë¥¼ 무시합니다.\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "확ì¸í•˜ì§€ ì•Šê³ íŒ¨í‚¤ì§€ë¥¼ ì„¤ì¹˜í•˜ì‹œê² ìŠµë‹ˆê¹Œ [y/N]? " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "ì¸ì¦í• 수 없는 패키지가 있습니다" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "ë¬¸ì œê°€ ë°œìƒí–ˆê³ -y ì˜µì…˜ì´ --force-yes 옵션 ì—†ì´ ì‚¬ìš©ë˜ì—ˆìŠµë‹ˆë‹¤" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "내부 오류. ë§ê°€ì§„ 패키지ì—ì„œ InstallPackages를 호출했습니다!" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "패키지를 ì œê±°í•´ì•¼ 하지만 ì œê±°ê°€ 금지ë˜ì–´ 있습니다." -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "내부 오류. ìˆœì„œë³€ê²½ìž‘ì—…ì´ ë나지 않았습니다" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "소스 목ë¡ì„ ì½ì„ 수 없습니다." - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" "ì´ìƒí•˜ê²Œë„ í¬ê¸°ê°€ 서로 다릅니다. apt@packages.debian.orgë¡œ ì´ë©”ì¼ì„ 보내주ì‹" "시오." -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "%së°”ì´íŠ¸/%së°”ì´íŠ¸ ì•„ì¹´ì´ë¸Œë¥¼ 받아야 합니다.\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "%së°”ì´íŠ¸ ì•„ì¹´ì´ë¸Œë¥¼ 받아야 합니다.\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "ì´ ìž‘ì—… 후 %së°”ì´íŠ¸ì˜ ë””ìŠ¤í¬ ê³µê°„ì„ ë” ì‚¬ìš©í•˜ê²Œ ë©ë‹ˆë‹¤.\n" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "ì´ ìž‘ì—… 후 %së°”ì´íŠ¸ì˜ ë””ìŠ¤í¬ ê³µê°„ì´ ë¹„ì›Œì§‘ë‹ˆë‹¤.\n" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "%sì˜ ì—¬ìœ ê³µê°„ì˜ í¬ê¸°ë¥¼ íŒŒì•…í• ìˆ˜ 없습니다" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "%s ì•ˆì— ì¶©ë¶„í•œ ì—¬ìœ ê³µê°„ì´ ì—†ìŠµë‹ˆë‹¤." -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "사소한 작업만 가능하ë„ë¡(Trivial Only) ì§€ì •ë˜ì—ˆì§€ë§Œ ì´ ìž‘ì—…ì€ ì‚¬ì†Œí•œ ìž‘ì—…ì´ " "아닙니다." # ìž…ë ¥ì„ ë°›ì•„ì•¼ 한다. 한글 ìž…ë ¥ì„ ëª» í• ìˆ˜ 있으므로 ì›ë¬¸ 그대로 사용. -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "Yes, do as I say!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -971,28 +974,28 @@ msgstr "" "계ì†í•˜ì‹œë ¤ë©´ ë‹¤ìŒ ë¬¸êµ¬ë¥¼ ìž…ë ¥í•˜ì‹ì‹œì˜¤: '%s'\n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "중단." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "ê³„ì† í•˜ì‹œê² ìŠµë‹ˆê¹Œ [Y/n]? " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s 파ì¼ì„ ë°›ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤ %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "ì¼ë¶€ 파ì¼ì„ ë°›ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "다운로드를 ë§ˆì³¤ê³ ë‹¤ìš´ë¡œë“œ ì „ìš© 모드입니다" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1000,19 +1003,19 @@ msgstr "" "ì•„ì¹´ì´ë¸Œë¥¼ ë°›ì„ ìˆ˜ 없습니다. ì•„ë§ˆë„ apt-get update를 실행해야 하거나 --fix-" "missing ì˜µì…˜ì„ ì¤˜ì„œ 실행해야 í• ê²ƒìž…ë‹ˆë‹¤." -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing 옵션과 ë™ì‹œì— 미디어 바꾸기는 현재 지ì›í•˜ì§€ 않습니다" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "ë¹ ì§„ 패키지를 ë°”ë¡œìž¡ì„ ìˆ˜ 없습니다." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "설치를 중단합니다." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1023,35 +1026,35 @@ msgstr[0] "" "ë‹¤ìŒ íŒ¨í‚¤ì§€ëŠ” íŒ¨í‚¤ì§€ì˜ íŒŒì¼ì„ ëª¨ë‘ ë‹¤ë¥¸ 패키지가\n" "ë®ì–´ì¼ê¸° ë•Œë¬¸ì— ì‚¬ë¼ì¡ŒìŠµë‹ˆë‹¤:" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "주ì˜: dpkgì—ì„œ ìžë™ìœ¼ë¡œ ì˜ë„ì 으로 수행했습니다." -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "'%2$s' íŒ¨í‚¤ì§€ì˜ '%1$s' ëŒ€ìƒ ë¦´ë¦¬ìŠ¤ëŠ” 없으므로 무시합니다." -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "소스 패키지로 '%s'ì„(를) '%s' ëŒ€ì‹ ì„ íƒí•©ë‹ˆë‹¤\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "'%2$s' íŒ¨í‚¤ì§€ì˜ '%1$s' ë²„ì „ì€ ì—†ìœ¼ë¯€ë¡œ 무시합니다." -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "update ëª…ë ¹ì€ ì¸ìˆ˜ë¥¼ 받지 않습니다" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "ì‚ì œë¥¼ í• ìˆ˜ 없으므로 AutoRemover를 실행하지 못합니다" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1059,18 +1062,18 @@ msgid_plural "" "required:" msgstr[0] "ë‹¤ìŒ íŒ¨í‚¤ì§€ê°€ ìžë™ìœ¼ë¡œ 설치ë˜ì—ˆì§€ë§Œ ë” ì´ìƒ 필요하지 않습니다:" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" "%lu packages were automatically installed and are no longer required.\n" msgstr[0] "패키지 %lu개가 ìžë™ìœ¼ë¡œ 설치ë˜ì—ˆì§€ë§Œ ë” ì´ìƒ 필요하지 않습니다.\n" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "ì´ë“¤ì„ ì§€ìš°ë ¤ë©´ 'apt-get autoremove'를 사용하ì‹ì‹œì˜¤." -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1088,24 +1091,24 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "ì´ ìƒí™©ì„ í•´ê²°í•˜ëŠ”ë° ë‹¤ìŒ ì •ë³´ê°€ ë„ì›€ì´ ë ìˆ˜ë„ ìžˆìŠµë‹ˆë‹¤:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" msgstr "내부 오류, ë¬¸ì œ í•´ê²° í”„ë¡œê·¸ëž¨ì´ ë¬´ì–¸ê°€ë¥¼ ë§ê°€ëœ¨ë ¸ìŠµë‹ˆë‹¤" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "내부 오류, AllUpgrade í”„ë¡œê·¸ëž¨ì´ ë¬´ì–¸ê°€ë¥¼ ë§ê°€ëœ¨ë ¸ìŠµë‹ˆë‹¤" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "다ìŒì„ ë°”ë¡œìž¡ìœ¼ë ¤ë©´ 'apt-get -f install'ì„ ì‹¤í–‰í•´ ë³´ì‹ì‹œì˜¤:" # FIXME: specify a solution? 무슨 솔루션? -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1113,7 +1116,7 @@ msgstr "" "ì˜ì¡´ì„±ì´ 맞지 않습니다. 패키지 ì—†ì´ 'apt-get -f install'ì„ ì‹œë„í•´ ë³´ì‹ì‹œì˜¤ " "(아니면 í•´ê²° ë°©ë²•ì„ ì§€ì •í•˜ì‹ì‹œì˜¤)." -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1124,62 +1127,62 @@ msgstr "" "ë¶ˆì•ˆì • ë°°í¬íŒì„ 사용해서 ì¼ë¶€ 필요한 패키지를 ì•„ì§ ë§Œë“¤ì§€ 않았거나,\n" "ì•„ì§ Incomingì—ì„œ 나오지 ì•Šì€ ê²½ìš°ì¼ ìˆ˜ë„ ìžˆìŠµë‹ˆë‹¤." -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "ë§ê°€ì§„ 패키지" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "ë‹¤ìŒ íŒ¨í‚¤ì§€ë¥¼ ë” ì„¤ì¹˜í• ê²ƒìž…ë‹ˆë‹¤:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "ì œì•ˆí•˜ëŠ” 패키지:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "추천하는 패키지:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "%s 패키지를 ì°¾ì„ ìˆ˜ 없습니다" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s 패키지는 수ë™ì„¤ì¹˜ë¡œ ì§€ì •í•©ë‹ˆë‹¤.\n" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "ì—…ê·¸ë ˆì´ë“œë¥¼ 계산하는 중입니다... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "실패" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "완료" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "내부 오류, ë¬¸ì œ í•´ê²° í”„ë¡œê·¸ëž¨ì´ ë¬´ì–¸ê°€ë¥¼ ë§ê°€ëœ¨ë ¸ìŠµë‹ˆë‹¤" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "다운로드 ë””ë ‰í„°ë¦¬ë¥¼ ìž ê¸€ 수 없습니다" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 msgid "Must specify at least one package to fetch source for" msgstr "해당ë˜ëŠ” 소스 패키지를 ê°€ì ¸ì˜¬ 패키지를 최소한 하나 ì§€ì •í•´ì•¼ 합니다" -#: cmdline/apt-get.cc:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "%sì˜ ì†ŒìŠ¤ 패키지를 ì°¾ì„ ìˆ˜ 없습니다" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -1188,7 +1191,7 @@ msgstr "" "알림: '%s' íŒ¨í‚¤ì§•ì€ ë‹¤ìŒ '%s' ë²„ì „ 컨트롤 시스템ì—ì„œ 관리합니다:\n" "%s\n" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1199,74 +1202,78 @@ msgstr "" "다ìŒê³¼ ê°™ì´ í•˜ì‹ì‹œì˜¤:\n" "bzr get %s\n" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "ì´ë¯¸ 다운로드 ë°›ì€ íŒŒì¼ '%s'ì€(는) 다시 받지 ì•Šê³ ê±´ë„ˆ ëœë‹ˆë‹¤.\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "%sì— ì¶©ë¶„í•œ ê³µê°„ì´ ì—†ìŠµë‹ˆë‹¤" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "소스 ì•„ì¹´ì´ë¸Œë¥¼ %së°”ì´íŠ¸/%së°”ì´íŠ¸ 받아야 합니다.\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "소스 ì•„ì¹´ì´ë¸Œë¥¼ %së°”ì´íŠ¸ 받아야 합니다.\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "%s 소스를 ê°€ì ¸ì˜µë‹ˆë‹¤\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "ì¼ë¶€ ì•„ì¹´ì´ë¸Œë¥¼ ê°€ì ¸ì˜¤ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "%sì— ì´ë¯¸ í’€ë ¤ 있는 ì†ŒìŠ¤ì˜ ì••ì¶•ì„ í’€ì§€ ì•Šê³ ê±´ë„ˆ ëœë‹ˆë‹¤.\n" -#: cmdline/apt-get.cc:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "압축 풀기 ëª…ë ¹ '%s' 실패.\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "'dpkg-dev' 패키지가 설치ë˜ì—ˆëŠ”지를 확ì¸í•˜ì‹ì‹œì˜¤.\n" -#: cmdline/apt-get.cc:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "빌드 ëª…ë ¹ '%s' 실패.\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "하위 프로세스가 실패했습니다" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 msgid "Must specify at least one package to check builddeps for" msgstr "해당ë˜ëŠ” 빌드 ì˜ì¡´ì„±ì„ ê²€ì‚¬í• íŒ¨í‚¤ì§€ë¥¼ 최소한 하나 ì§€ì •í•´ì•¼ 합니다" -#: cmdline/apt-get.cc:2506 +#: cmdline/apt-get.cc:2524 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "%sì˜ ë¹Œë“œ ì˜ì¡´ì„± ì •ë³´ë¥¼ ê°€ì ¸ì˜¬ 수 없습니다" -#: cmdline/apt-get.cc:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "%s íŒ¨í‚¤ì§€ì— ë¹Œë“œ ì˜ì¡´ì„±ì´ 없습니다.\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1275,7 +1282,7 @@ msgstr "" "%2$sì— ëŒ€í•œ %1$s ì˜ì¡´ì„±ì„ 만족시킬 수 없습니다. %3$s 패키지를 ì°¾ì„ ìˆ˜ 없습니" "다" -#: cmdline/apt-get.cc:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1284,32 +1291,32 @@ msgstr "" "%2$sì— ëŒ€í•œ %1$s ì˜ì¡´ì„±ì„ 만족시킬 수 없습니다. %3$s íŒ¨í‚¤ì§€ì˜ ì‚¬ìš© 가능한 버" "ì „ 중ì—서는 ì´ ë²„ì „ 요구사í•ì„ 만족시킬 수 없습니다" -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, 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:2693 +#: cmdline/apt-get.cc:2711 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "%2$sì— ëŒ€í•œ %1$s ì˜ì¡´ì„±ì„ ë§Œì¡±ì‹œí‚¤ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤: %3$s" -#: cmdline/apt-get.cc:2709 +#: cmdline/apt-get.cc:2727 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "%sì˜ ë¹Œë“œ ì˜ì¡´ì„±ì„ 만족시키지 못했습니다." -#: cmdline/apt-get.cc:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "빌드 ì˜ì¡´ì„±ì„ ì²˜ë¦¬í•˜ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "지ì›í•˜ëŠ” 모듈:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1396,7 +1403,7 @@ msgstr "" "apt.conf(5) 매뉴얼 페ì´ì§€ë¥¼ ë³´ì‹ì‹œì˜¤.\n" " ì´ APT는 Super Cow Powersë¡œ 무장했습니다.\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1645,10 +1652,10 @@ msgstr "%s/%s 파ì¼ì€ %s íŒ¨í‚¤ì§€ì— ìžˆëŠ” 파ì¼ì„ ë®ì–´ ì”니다" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1782,23 +1789,23 @@ msgstr "올바른 control 파ì¼ì„ ì°¾ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" msgid "Unparsable control file" msgstr "control 파ì¼ì„ íŒŒì‹±í• ìˆ˜ 없습니다" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "%sì— ëŒ€í•œ 파ì´í”„를 ì—´ 수 없습니다" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "%s 프로세스ì—ì„œ ì½ëŠ”ë° ì˜¤ë¥˜ê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "íŒŒì¼ ì •ë³´ë¥¼ ì½ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "íŒŒì¼ ë³€ê²½ ì‹œê°ì„ ì„¤ì •í•˜ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" @@ -1891,7 +1898,7 @@ msgstr "ì—°ê²° 시간 초과" msgid "Server closed the connection" msgstr "서버ì—ì„œ ì—°ê²°ì„ ë‹«ì•˜ìŠµë‹ˆë‹¤" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "ì½ê¸° 오류" @@ -1903,7 +1910,7 @@ msgstr "ì‘ë‹µì´ ë²„í¼ í¬ê¸°ë¥¼ 넘어갔습니다." msgid "Protocol corruption" msgstr "í”„ë¡œí† ì½œì´ í‹€ë ¸ìŠµë‹ˆë‹¤" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "쓰기 오류" @@ -1957,7 +1964,7 @@ msgstr "ë°ì´í„° 소켓 ì—°ê²° 시간 초과" msgid "Unable to accept connection" msgstr "ì—°ê²°ì„ ë°›ì„ ìˆ˜ 없습니다" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "íŒŒì¼ í•´ì‹±ì— ë¬¸ì œê°€ 있습니다" @@ -2088,67 +2095,67 @@ msgstr "í—¤ë” í•œ ì¤„ì— %u개가 넘는 문ìžê°€ 들어 있습니다" msgid "Bad header line" msgstr "í—¤ë” ì¤„ì´ ìž˜ëª»ë˜ì—ˆìŠµë‹ˆë‹¤" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "HTTP 서버ì—ì„œ ìž˜ëª»ëœ ì‘답 í—¤ë”를 보냈습니다" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "HTTP 서버ì—ì„œ ìž˜ëª»ëœ Content-Length í—¤ë”를 보냈습니다" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "HTTP 서버ì—ì„œ ìž˜ëª»ëœ Content-Range í—¤ë”를 보냈습니다" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "HTTP ì„œë²„ì— ë²”ìœ„ ì§€ì› ê¸°ëŠ¥ì´ ìž˜ëª»ë˜ì–´ 있습니다" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "ë°ì´í„° 형ì‹ì„ ì•Œ 수 없습니다" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "selectê°€ 실패했습니다" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "ì—°ê²° ì‹œê°„ì´ ì´ˆê³¼í–ˆìŠµë‹ˆë‹¤" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "ì¶œë ¥ 파ì¼ì— ì“°ëŠ”ë° ì˜¤ë¥˜ê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "파ì¼ì— ì“°ëŠ”ë° ì˜¤ë¥˜ê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "해당 파ì¼ì— ì“°ëŠ”ë° ì˜¤ë¥˜ê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤" -#: methods/http.cc:894 +#: methods/http.cc:900 msgid "Error reading from server. Remote end closed connection" msgstr "서버ì—ì„œ ì½ê³ ì—°ê²°ì„ ë‹«ëŠ”ë° ì˜¤ë¥˜ê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤" -#: methods/http.cc:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "서버ì—ì„œ ì½ëŠ”ë° ì˜¤ë¥˜ê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 msgid "Failed to truncate file" msgstr "파ì¼ì„ ìžë¥´ëŠ”ë° ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "í—¤ë” ë°ì´í„°ê°€ 잘못ë˜ì—ˆìŠµë‹ˆë‹¤" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "ì—°ê²°ì´ ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "내부 오류" @@ -2341,14 +2348,14 @@ msgstr "ìž˜ëª»ëœ ìž‘ì—… %s" msgid "Unable to stat the mount point %s" msgstr "마운트 위치 %sì˜ ì •ë³´ë¥¼ ì½ì„ 수 없습니다" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "%s ë””ë ‰í† ë¦¬ë¡œ ì´ë™í• 수 없습니다" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "CD-ROMì˜ ì •ë³´ë¥¼ ì½ì„ 수 없습니다" @@ -2372,149 +2379,149 @@ msgstr "NFSë¡œ ë§ˆìš´íŠ¸ëœ ìž ê¸ˆ íŒŒì¼ %sì— ëŒ€í•´ ìž ê¸ˆì„ ì‚¬ìš©í•˜ì§€ ì• msgid "Could not get lock %s" msgstr "%s ìž ê¸ˆ 파ì¼ì„ ì–»ì„ ìˆ˜ 없습니다" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "%s 프로세스를 ê¸°ë‹¤ë ¸ì§€ë§Œ 해당 프로세스가 없습니다" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "하위 프로세스 %s 프로세스가 세그멘테ì´ì…˜ 오류를 받았습니다." -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, c-format msgid "Sub-process %s received signal %u." msgstr "하위 프로세스 %s 프로세스가 %u번 시그ë„ì„ ë°›ì•˜ìŠµë‹ˆë‹¤." -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "하위 프로세스 %s 프로세스가 오류 코드(%u)를 리턴했습니다" -#: apt-pkg/contrib/fileutl.cc:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "하위 프로세스 %s 프로세스가 예ìƒì¹˜ 못하게 ë났습니다" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "%s 파ì¼ì„ ì—´ 수 없습니다" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, c-format msgid "Could not open file descriptor %d" msgstr "%d íŒŒì¼ ë””ìŠ¤í¬ë¦½í„°ë¥¼ ì—´ 수 없습니다" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "%luë§Œí¼ ë” ì½ì–´ì•¼ 하지만 ë” ì´ìƒ ì½ì„ ë°ì´í„°ê°€ 없습니다" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "%luë§Œí¼ ë” ì¨ì•¼ 하지만 ë” ì´ìƒ 쓸 수 없습니다" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, c-format msgid "Problem closing the gzip file %s" msgstr "%s gzip 파ì¼ì„ ë‹«ëŠ”ë° ë¬¸ì œê°€ 있습니다" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, c-format msgid "Problem closing the file %s" msgstr "%s 파ì¼ì„ ë‹«ëŠ”ë° ë¬¸ì œê°€ 있습니다" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, c-format msgid "Problem renaming the file %s to %s" msgstr "%s 파ì¼ì„ %s(으)ë¡œ ì´ë¦„ì„ ë°”ê¾¸ëŠ”ë° ë¬¸ì œê°€ 있습니다" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, c-format msgid "Problem unlinking the file %s" msgstr "%s 파ì¼ì„ ì‚ì œí•˜ëŠ”ë° ë¬¸ì œê°€ 있습니다" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "파ì¼ì„ ë™ê¸°í™”í•˜ëŠ”ë° ë¬¸ì œê°€ 있습니다" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "패키지 ìºì‹œê°€ 비어 있습니다" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "패키지 ìºì‹œ 파ì¼ì´ ì†ìƒë˜ì—ˆìŠµë‹ˆë‹¤" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "패키지 ìºì‹œ 파ì¼ì´ 호환ë˜ì§€ 않는 ë²„ì „ìž…ë‹ˆë‹¤" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "ì´ APT는 '%s' ë²„ì „ ì‹œìŠ¤í…œì„ ì§€ì›í•˜ì§€ 않습니다" -#: apt-pkg/pkgcache.cc:163 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache was built for a different architecture" msgstr "패키지 ìºì‹œê°€ 다른 아키í…ì³ìš©ìž…니다." -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "ì˜ì¡´" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "미리ì˜ì¡´" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "ì œì•ˆ" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "추천" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "충ëŒ" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "대체" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "없앰" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "ë§ê°€ëœ¨ë¦¼" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "í–¥ìƒ" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "중요" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "필수" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "표준" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "옵션" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "별ë„" @@ -2633,7 +2640,7 @@ msgstr "소스 ëª©ë¡ %3$sì˜ %2$u번 ì¤„ì˜ '%1$s' íƒ€ìž…ì„ ì•Œ 수 없습니ë #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" "'%s'ì— ëŒ€í•´ 즉시 ì„¤ì •ì„ í• ìˆ˜ 없습니다. ìžì„¸í•œ ì„¤ëª…ì€ man 5 apt.conf 페ì´ì§€ì—" @@ -2653,7 +2660,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" "ì´ë¯¸ ì••ì¶•ì´ í’€ë¦° '%s' íŒ¨í‚¤ì§€ì— ëŒ€í•´ 즉시 ì„¤ì •ì„ í• ìˆ˜ 없습니다. ìžì„¸í•œ 설명" @@ -2671,7 +2678,7 @@ msgid "" msgstr "" "%s 패키지를 다시 설치해야 하지만, ì´ íŒ¨í‚¤ì§€ì˜ ì•„ì¹´ì´ë¸Œë¥¼ ì°¾ì„ ìˆ˜ 없습니다." -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2679,11 +2686,11 @@ msgstr "" "오류, pkgProblemResolver::Resolveê°€ ë§ê°€ì¡ŒìŠµë‹ˆë‹¤. ê³ ì • íŒ¨í‚¤ì§€ë•Œë¬¸ì— ë°œìƒí• 수" "ë„ ìžˆìŠµë‹ˆë‹¤." -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "ë¬¸ì œë¥¼ ë°”ë¡œìž¡ì„ ìˆ˜ 없습니다. ë§ê°€ì§„ ê³ ì • 패키지가 있습니다." -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2708,12 +2715,12 @@ msgstr "%s ë””ë ‰í„°ë¦¬ë¥¼ ìž ê¸€ 수 없습니다" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "íŒŒì¼ ë°›ì•„ì˜¤ëŠ” 중: %2$li 중 %1$li (%3$s 남았ìŒ)" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "íŒŒì¼ ë°›ì•„ì˜¤ëŠ” 중: %2$li 중 %1$li" @@ -2734,12 +2741,12 @@ msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "" "'%2$s' ë“œë¼ì´ë¸Œì— '%1$s'(으)ë¡œ í‘œê¸°ëœ ë””ìŠ¤í¬ë¥¼ ë„£ê³ Enter를 누르ì‹ì‹œì˜¤." -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "'%s' 패키지 ì‹œìŠ¤í…œì„ ì§€ì›í•˜ì§€ 않습니다" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "올바른 패키지 시스템 íƒ€ìž…ì„ ì•Œì•„ë‚¼ 수 없습니다" @@ -2760,17 +2767,21 @@ msgstr "패키지 목ë¡ì´ë‚˜ ìƒíƒœ 파ì¼ì„ íŒŒì‹±í• ìˆ˜ 없거나 ì—´ 수 msgid "You may want to run apt-get update to correct these problems" msgstr "apt-get update를 실행하면 ì´ ë¬¸ì œë¥¼ ë°”ë¡œìž¡ì„ ìˆ˜ë„ ìžˆìŠµë‹ˆë‹¤." -#: apt-pkg/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "소스 목ë¡ì„ ì½ì„ 수 없습니다." + +#: apt-pkg/policy.cc:344 #, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "기본 ì„¤ì • íŒŒì¼ %sì— ìž˜ëª»ëœ ë°ì´í„°ê°€ 있습니다. Package í—¤ë”ê°€ 없습니다" -#: apt-pkg/policy.cc:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "í•€ 타입 %sì´(ê°€) 무엇ì¸ì§€ ì´í•´í• 수 없습니다" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "í•€ì— ìš°ì„ ìˆœìœ„(í˜¹ì€ 0)를 ì§€ì •í•˜ì§€ 않았습니다" @@ -2872,43 +2883,43 @@ msgstr "ì´ë¦„ 바꾸기가 실패했습니다. %s (%s -> %s)." msgid "MD5Sum mismatch" msgstr "MD5Sumì´ ë§žì§€ 않습니다" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" msgstr "í•´ì‹œ í•©ì´ ë§žì§€ 않습니다" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 msgid "There is no public key available for the following key IDs:\n" msgstr "ë‹¤ìŒ í‚¤ IDì˜ ê³µê°œí‚¤ê°€ 없습니다:\n" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "Release 파ì¼ì´ 만료ë˜ì—ˆìŠµë‹ˆë‹¤. %s 무시. (%s ì´í›„ë¡œ 무효)" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "ë°°í¬íŒ 충ëŒ: %s (예ìƒê°’ %s, ì‹¤ì œê°’ %s)" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "디지털 서명 확ì¸ì— 오류가 ë°œìƒí–ˆìŠµë‹ˆë‹¤. ì €ìž¥ê³ ë¥¼ ì—…ë°ì´íŠ¸í•˜ì§€ ì•Šê³ \n" "ì˜ˆì „ì˜ ì¸ë±ìŠ¤ 파ì¼ì„ 사용합니다. GPG 오류: %s: %s\n" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "GPG 오류: %s: %s" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2917,7 +2928,7 @@ msgstr "" "%s íŒ¨í‚¤ì§€ì˜ íŒŒì¼ì„ ì°¾ì„ ìˆ˜ 없습니다. 수ë™ìœ¼ë¡œ ì´ íŒ¨í‚¤ì§€ë¥¼ ê³ ì³ì•¼ í• ìˆ˜ë„ ìžˆìŠµ" "니다. (아키í…ì³ê°€ ë¹ ì¡Œê¸° 때문입니다)" -#: apt-pkg/acquire-item.cc:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2926,14 +2937,14 @@ msgstr "" "%s íŒ¨í‚¤ì§€ì˜ íŒŒì¼ì„ ì°¾ì„ ìˆ˜ 없습니다. 수ë™ìœ¼ë¡œ ì´ íŒ¨í‚¤ì§€ë¥¼ ê³ ì³ì•¼ í• ìˆ˜ë„ ìžˆìŠµ" "니다." -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" "패키지 ì¸ë±ìŠ¤ 파ì¼ì´ ì†ìƒë˜ì—ˆìŠµë‹ˆë‹¤. %s íŒ¨í‚¤ì§€ì— Filename: 필드가 없습니다." -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "í¬ê¸°ê°€ 맞지 않습니다" @@ -3056,37 +3067,37 @@ msgstr "새 소스 리스트를 쓰는 중입니다\n" msgid "Source list entries for this disc are:\n" msgstr "ì´ ë””ìŠ¤í¬ì˜ 소스 리스트 í•ëª©ì€ 다ìŒê³¼ 같습니다:\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "ë ˆì½”ë“œ %i개를 ì¼ìŠµë‹ˆë‹¤.\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "ë ˆì½”ë“œ %i개를 íŒŒì¼ %i개가 ë¹ ì§„ ìƒíƒœë¡œ ì¼ìŠµë‹ˆë‹¤.\n" -#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "ë ˆì½”ë“œ %i개를 íŒŒì¼ %i개가 맞지 ì•Šì€ ìƒíƒœë¡œ ì¼ìŠµë‹ˆë‹¤\n" -#: apt-pkg/indexcopy.cc:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "ë ˆì½”ë“œ %i개를 íŒŒì¼ %i개가 ë¹ ì§€ê³ %i개가 맞지 ì•Šì€ ìƒíƒœë¡œ ì¼ìŠµë‹ˆë‹¤\n" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, c-format msgid "Skipping nonexistent file %s" msgstr "%s 파ì¼ì€ 없으므로 무시합니다" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "다ìŒì˜ ì¸ì¦ 기ë¡ì„ ì°¾ì„ ìˆ˜ 없습니다: %s" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, c-format msgid "Hash mismatch for: %s" msgstr "다ìŒì˜ 해시가 다릅니다: %s" @@ -3145,12 +3156,12 @@ msgstr "'%s' 패키지ì—ì„œ 설치한 ë²„ì „ì„ ì„ íƒí• 수 없습니다. 설 msgid "Installing %s" msgstr "%s 설치하는 중입니다" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "%s ì„¤ì • 중입니다" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "%s 패키지를 지우는 중입니다" @@ -3170,75 +3181,76 @@ msgstr "%s 사ë¼ì§ 발견했습니다" msgid "Running post-installation trigger %s" msgstr "설치 후 트리거 %s 실행하는 중입니다" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "ë””ë ‰í„°ë¦¬ '%s' 없습니다." -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Could not open file '%s'" msgstr "'%s' 파ì¼ì„ ì—´ 수 없습니다" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "%s 준비 중입니다" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "%s 푸는 중입니다" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "%s 패키지를 ì„¤ì •í• ì¤€ë¹„í•˜ëŠ” 중입니다" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "%s 설치" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "%s 패키지를 지울 준비하는 중입니다" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "%s 지움" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "%s 패키지를 ì™„ì „ížˆ 지울 준비를 하는 중입니다" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "%s 패키지를 ì™„ì „ížˆ ì§€ì› ìŠµë‹ˆë‹¤" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "ë¡œê·¸ì— ì“°ëŠ”ë° ì‹¤íŒ¨. openpty() 실패(/dev/ptsê°€ 마운트ë˜ì–´ìžˆì§€ 않습니까?)\n" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "dpkg 실행하는 중입니다" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 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:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "ì˜ì¡´ì„± ë¬¸ì œ - ì„¤ì •í•˜ì§€ ì•Šì€ ìƒíƒœë¡œ 남겨둡니다" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3246,20 +3258,20 @@ msgstr "" "ë³´ê³ ì„œë¥¼ 작성하지 않습니다. 오류 ë©”ì‹œì§€ì— ë”°ë¥´ë©´ ì˜ˆì „ì˜ ì‹¤íŒ¨ ë•Œë¬¸ì— ìƒê¸´ 부수" "ì ì¸ ì˜¤ë¥˜ìž…ë‹ˆë‹¤." -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" "ë³´ê³ ì„œë¥¼ 작성하지 않습니다. 오류 ë©”ì‹œì§€ì— ë”°ë¥´ë©´ 디스í¬ê°€ ê°€ë“ ì°¼ìŠµë‹ˆë‹¤." -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "ë³´ê³ ì„œë¥¼ 작성하지 않습니다. 오류 ë©”ì‹œì§€ì— ë”°ë¥´ë©´ 메모리가 부족합니다." -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-ku\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+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" @@ -153,14 +153,14 @@ msgstr " Destika pakêtê:" msgid " Version table:" msgstr " Tabloya guhertoyan:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, 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:1739 +#: cmdline/apt-cache.cc:1745 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -278,31 +278,31 @@ msgstr "Nivîsandin ji bo %s ne pêkane" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Guhertoya debconf nehate stendin. debconf sazkirî ye?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "Lîsteya dirêjahiya pakêtê zêde dirêj e" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "Di ÅŸixulandina pêrista %s de çewtî" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "Lîsteya dirêjahiya çavkaniyê zêde dirêj e" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "Dema li dosyeya naverokê joreagahî dihate nivîsîn çewtî" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "Dema ÅŸixulandina naveroka %s çewtî" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -344,11 +344,11 @@ msgid "" " -o=? Set an arbitrary configuration option" msgstr "" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, 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" @@ -458,7 +458,7 @@ msgstr "Di arşîvê de qada pakêtê tuneye" msgid " %s has no override entry\n" msgstr "" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr "" @@ -568,143 +568,143 @@ msgstr "" msgid "Failed to rename %s to %s" msgstr "" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "E" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "lê %s sazkirî ye" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "lê %s dê were sazkirin" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "lê sazkirina wê ne gengaz e" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "lê paketeke farazî ye" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "lê ne sazkirî ye" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "lê dê neyê sazkirin" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " û" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "Ev pakêtên NÛ dê werine sazkirin:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "Ev pakêt dê werine RAKIRIN:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "Ev paket dê werine bilindkirin:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (ji ber %s)" -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" msgstr "" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu hatine bilindkirin, %lu nû hatine sazkirin." -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu ji nû ve sazkirî," -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu hatine nizmkirin." -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu werin rakirin û %lu neyên bilindkirin. \n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [Sazkirî]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 #, fuzzy msgid " [Not candidate version]" msgstr "Guhartoyên berendam" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "" -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -712,164 +712,167 @@ msgid "" "is only available from another source\n" msgstr "" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, c-format msgid "Package '%s' has no installation candidate" msgstr "" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s jixwe guhertoya nûtirîn e.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "lê %s dê were sazkirin" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "Bindestî tên serrastkirin..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " neserketî." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "Nikare bindestiyan rast kirin" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " Temam" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "" -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "" -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "" -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "" -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "" - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Anîna %sB/%sB ji arşîvan pêwist e.\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Anîna %sB ji arşîvan pêwist e.\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "Nikarî cihê vala li %s tesbît bike" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "Cihê vala li %s têre nake." -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "Erê, wusa bike!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -877,46 +880,46 @@ msgid "" " ?] " msgstr "" -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "Betal." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "Dixwazî bidomînî [E/n]?" -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Anîna %s %s biserneket\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "Daxistina çend pelan biserneket" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" msgstr "" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "" -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "Sazkirin tê betalkirin." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -926,35 +929,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -964,7 +967,7 @@ msgid_plural "" msgstr[0] "Ev pakêtên NÛ dê werine sazkirin:" msgstr[1] "Ev pakêtên NÛ dê werine sazkirin:" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -972,11 +975,11 @@ msgid_plural "" msgstr[0] "Ev pakêtên NÛ dê werine sazkirin:" msgstr[1] "Ev pakêtên NÛ dê werine sazkirin:" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -992,29 +995,29 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" msgstr "" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." msgstr "" -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1022,69 +1025,69 @@ msgid "" "or been moved out of Incoming." msgstr "" -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "Paketên ÅŸikestî" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "Paketên tên pêşniyaz kirin:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "Paketên tên tawsiyê kirin:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "Nikarî pakêta %s bibîne" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "lê %s dê were sazkirin" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "Bilindkirin tê hesibandin..." -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "Serneket" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "Temam" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "Pelrêça daxistinê nayê quflekirin" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 msgid "Must specify at least one package to fetch source for" msgstr "" -#: cmdline/apt-get.cc:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1092,111 +1095,115 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "Cihê vala li %s têre nake" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "Çavkanîna %s bîne\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "Anîna çend arşîvan biserneket." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: cmdline/apt-get.cc:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 msgid "Must specify at least one package to check builddeps for" msgstr "" -#: cmdline/apt-get.cc:2506 +#: cmdline/apt-get.cc:2524 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" -#: cmdline/apt-get.cc:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "" -#: cmdline/apt-get.cc:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " "package %s can satisfy version requirements" msgstr "" -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -#: cmdline/apt-get.cc:2693 +#: cmdline/apt-get.cc:2711 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: cmdline/apt-get.cc:2709 +#: cmdline/apt-get.cc:2727 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: cmdline/apt-get.cc:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1242,7 +1249,7 @@ msgid "" " This APT has Super Cow Powers.\n" msgstr "" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1475,10 +1482,10 @@ msgstr "" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1610,24 +1617,24 @@ msgstr "" msgid "Unparsable control file" msgstr "" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, fuzzy, c-format msgid "Couldn't open pipe for %s" msgstr "Nikarî pelê %s veke" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 #, fuzzy msgid "Failed to stat" msgstr "%s venebû" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "" @@ -1716,7 +1723,7 @@ msgstr "" msgid "Server closed the connection" msgstr "" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "Çewiya xwendinê" @@ -1728,7 +1735,7 @@ msgstr "" msgid "Protocol corruption" msgstr "" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "Çewtiya nivîsînê" @@ -1782,7 +1789,7 @@ msgstr "" msgid "Unable to accept connection" msgstr "" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "" @@ -1914,69 +1921,69 @@ msgstr "" msgid "Bad header line" msgstr "" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "Hilbijartin neserketî" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "" -#: methods/http.cc:821 +#: methods/http.cc:827 #, fuzzy msgid "Error writing to output file" msgstr "Dema li dosyeya naverokê joreagahî dihate nivîsîn çewtî" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "Dema li pelî dihate nivîsîn çewtî" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "Dema li pelî dihate nivîsîn çewtî" -#: methods/http.cc:894 +#: methods/http.cc:900 msgid "Error reading from server. Remote end closed connection" msgstr "" -#: methods/http.cc:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 #, fuzzy msgid "Failed to truncate file" msgstr "Nivîsîna pelê %s biserneket" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "Girêdan pêk nehatiye" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "Çewtiya hundirîn" @@ -2168,14 +2175,14 @@ msgstr "" msgid "Unable to stat the mount point %s" msgstr "Nivîsandin ji bo %s ne pêkane" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "Nikarî derbasa %s bike" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "" @@ -2199,149 +2206,149 @@ msgstr "" msgid "Could not get lock %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "" -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, c-format msgid "Sub-process %s received signal %u." msgstr "" -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "" -#: apt-pkg/contrib/fileutl.cc:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "Nikarî pelê %s veke" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "Nikarî pelê %s veke" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, fuzzy, c-format msgid "Problem closing the gzip file %s" msgstr "Di girtina pelî de pirsgirêkek derket" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "Di girtina pelî de pirsgirêkek derket" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "Di girtina pelî de pirsgirêkek derket" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "Di girtina pelî de pirsgirêkek derket" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "" -#: apt-pkg/pkgcache.cc:163 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache was built for a different architecture" msgstr "" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "Bindest" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "PêşBindest" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "Pêşniyaz dike" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "Tawsiye dike" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "Nakokî" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "Dikeve ÅŸunve" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "Kevin dike" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "DiÅŸkîne" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "girîng" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "pêwist" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "standard" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "opsiyonel" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "ekstra" @@ -2459,7 +2466,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" @@ -2474,7 +2481,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" @@ -2489,17 +2496,17 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." msgstr "" -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "" -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2522,12 +2529,12 @@ msgstr "W: pelrêça %s nayê xwendin\n" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "Pel tê anîn %li ji %li" @@ -2547,12 +2554,12 @@ msgstr "" 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:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "" @@ -2573,17 +2580,21 @@ msgstr "" msgid "You may want to run apt-get update to correct these problems" msgstr "" -#: apt-pkg/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "" + +#: apt-pkg/policy.cc:344 #, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -#: apt-pkg/policy.cc:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "" @@ -2685,61 +2696,61 @@ msgstr "nav guherandin biserneket, %s (%s -> %s)" msgid "MD5Sum mismatch" msgstr "MD5Sum li hev nayên" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" msgstr "Hash Sum li hev nayên" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 msgid "There is no public key available for the following key IDs:\n" msgstr "" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, 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:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " "manually fix this package." msgstr "" -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "Mezinahî li hev nayên" @@ -2858,37 +2869,37 @@ msgstr "" msgid "Source list entries for this disc are:\n" msgstr "" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "%i tomar hatin nivîsîn.\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "" -#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "" -#: apt-pkg/indexcopy.cc:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, c-format msgid "Skipping nonexistent file %s" msgstr "" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, fuzzy, c-format msgid "Hash mismatch for: %s" msgstr "Hash Sum li hev nayên" @@ -2945,12 +2956,12 @@ msgstr "" msgid "Installing %s" msgstr "%s hatine sazkirin" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "%s tê mîhengkirin" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "%s tê rakirin" @@ -2970,92 +2981,93 @@ msgstr "" msgid "Running post-installation trigger %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "Peldanka '%s' kêm e" -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, fuzzy, c-format msgid "Could not open file '%s'" msgstr "Nikarî pelê %s veke" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "%s tê amadekirin" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "%s tê derxistin" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "Mîhengkirina %s tê amadekirin" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "%s hatine sazkirin" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "Rakirina %s tê amadekirin" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "%s hatine rakirin" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "Bi tevahî rakirina %s tê amadekirin" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "%s bi tevahî hatine rakirin" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+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" @@ -151,14 +151,14 @@ msgstr " Paketo susiejimai: " msgid " Version table:" msgstr " Versijų lentelÄ—:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "" -#: cmdline/apt-cache.cc:1739 +#: cmdline/apt-cache.cc:1745 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -286,31 +286,31 @@ msgstr "Nepavyko įraÅ¡yti į %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Nepavyko sužinoti debconf versijos. Ar įdiegtas debconf?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "Paketo plÄ—tinių sÄ…raÅ¡as yra per ilgas" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "Klaida apdorojant aplankÄ… %s" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "Å altinio plÄ—tinys yra per ilgas" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "Klaida įraÅ¡ant antraÅ¡tÄ™ į turinio failÄ…" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "Klaida apdorojant turinį %s" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -396,11 +396,11 @@ msgstr "" " -c=? Perskaityti šį nuostatų failÄ…\n" " -o=? Nustatyti savarankiÅ¡kÄ… konfigÅ«racijos nuostatÄ…" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "NÄ—ra atitikmenų" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Kai kurių failų nÄ—ra paketų grupÄ—je „%s“" @@ -513,7 +513,7 @@ msgstr "Archyvas neturÄ—jo paketo lauko" msgid " %s has no override entry\n" msgstr " %s neturi perraÅ¡ymo įraÅ¡o\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s prižiÅ«rÄ—tojas yra %s, o ne %s\n" @@ -623,79 +623,79 @@ msgstr "" msgid "Failed to rename %s to %s" msgstr "Nepavyko pervadinti %s į %s" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "T" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "Å ie paketai turi neįdiegtų priklausomybių:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "bet %s yra įdiegtas" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "bet %s bus įdiegtas" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "taÄiau jis negali bÅ«ti įdiegtas" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "bet tai yra virtualus paketas" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "bet jis nÄ—ra įdiegtas" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "bet jis nebus įdiegtas" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " arba" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "Bus įdiegti Å¡ie NAUJI paketai:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "Bus PAÅ ALINTI Å¡ie paketai:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "Å ių paketų atnaujinimas sulaikomas:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "Bus atnaujinti Å¡ie paketai:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "Bus PAKEISTI SENESNIAIS Å¡ie paketai:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "Bus pakeisti Å¡ie sulaikyti paketai:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (dÄ—l %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -703,65 +703,65 @@ msgstr "" "Ä®spÄ—jimas: Å ie bÅ«tini paketai bus paÅ¡alinti.\n" "Tai NETURÄ–TŲ bÅ«ti daroma, kol tiksliai nežinote kÄ… darote!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu atnaujinti, %lu naujai įdiegti, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu įdiegti iÅ¡ naujo, " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu pasendinti, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu bus paÅ¡alinta ir %lu neatnaujinta.\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu nepilnai įdiegti ar paÅ¡alinti.\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, fuzzy, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "Pastaba, žymima %s regex atitikimų formoje '%s'\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, fuzzy, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "Pastaba, žymima %s regex atitikimų formoje '%s'\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, fuzzy, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "PažymÄ—ta versija %s (%s) paketui %s\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "Paketas %s yra virtualus, pateiktas:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [Ä®diegtas]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 #, fuzzy msgid " [Not candidate version]" msgstr "Galimos versijos" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "Reikia pažymÄ—ti įdiegimui bent vienÄ…." -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -772,167 +772,170 @@ msgstr "" "Tai gali reikÅ¡ti, kad paketas dingÄ™s, nebenaudojamas \n" "arba prieinamas tik iÅ¡ kitų Å¡altinių.\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "TaÄiau Å¡ie paketai jį pakeiÄia:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, fuzzy, c-format msgid "Package '%s' has no installation candidate" msgstr "Paketas %s neturi diegimo kandidatų" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, fuzzy, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "Pastaba: pažymimas %s vietoje %s\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" "Praleidžiamas %s, nes jis jau yra įdiegtas ir atnaujinimas nÄ—ra nurodytas.\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, fuzzy, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" "Praleidžiamas %s, nes jis jau yra įdiegtas ir atnaujinimas nÄ—ra nurodytas.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "Pakartotinas %s įdiegimas neįmanomas, jo nepavyksta parsiųsti.\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s ir taip jau yra naujausias.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, c-format msgid "%s set to manually installed.\n" msgstr "%s nustatytas kaip įdiegtas rankiniu bÅ«du\n" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "Paketas %s nÄ—ra įdiegtas, todÄ—l nebuvo paÅ¡alintas\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "Taisomos priklausomybÄ—s..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " nepavyko." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "Nepavyko patenkinti priklausomybių" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 #, fuzzy msgid "Unable to minimize the upgrade set" msgstr "Nepavyko minimizuoti atnaujinimo rinkinio" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " Ä®vykdyta" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 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." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "Nepatenkintos priklausomybÄ—s. Bandykit naudoti -f." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "DÄ–MESIO: Å ie paketai negali bÅ«ti autentifikuoti!" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "Ä®diegti Å¡iuos paketus be patvirtinimo [t/N]? " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "Nepavyko autentikuoti kai kurių paketų" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "Atsirado problemų ir -y buvo panaudotas be --force-yes" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "Reikia paÅ¡alinti paketus, taÄiau Å¡alinimas iÅ¡jungtas." -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "Nepavyko perskaityti Å¡altinių sÄ…raÅ¡o." - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 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" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Reikia parsiųsti %sB/%sB archyvų.\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Reikia parsiųsti %sB archyvų.\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, 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" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Po Å¡ios operacijos bus atlaisvinta %sB disko vietos.\n" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "Nepavyko nustatyti %s laisvos vietos" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "%s nÄ—ra pakankamai laisvos vietos." -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "Taip, daryk kaip liepiu!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -943,28 +946,28 @@ msgstr "" "Jei norite tÄ™sti, įveskite frazÄ™ „%s“\n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "Nutraukti." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "Ar norite tÄ™sti [T/n]? " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Nepavyko parsiųsti %s %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "Nepavyko parsiųsti kai kurių failų" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "Pavyko parsiųsti tik parsiuntimo režime" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -972,19 +975,19 @@ msgstr "" "Nepavyko parsiųsti kai kurių archyvų, pabandykite paleisti „apt-get update“ " "arba pabandykite su parametru --fix-missing?" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing bei laikmenų apkeitimas nepalaikomas" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "Nepavyko pataisyti dingusių paketų." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "Diegimas nutraukiamas." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -994,35 +997,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "Atnaujinimo komandai argumentų nereikia" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1032,7 +1035,7 @@ msgid_plural "" msgstr[0] "Å ie paketai buvo automatiÅ¡kai įdiegti ir daugiau nebÄ—ra reikalingi:" msgstr[1] "Å ie paketai buvo automatiÅ¡kai įdiegti ir daugiau nebÄ—ra reikalingi:" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1040,11 +1043,11 @@ msgid_plural "" msgstr[0] "Å ie paketai buvo automatiÅ¡kai įdiegti ir daugiau nebÄ—ra reikalingi:" msgstr[1] "Å ie paketai buvo automatiÅ¡kai įdiegti ir daugiau nebÄ—ra reikalingi:" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "NorÄ—dami juos paÅ¡alinti, paleiskite „apt-get autoremove“" -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1060,23 +1063,23 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "Å i informacija gali padÄ—ti iÅ¡sprÄ™sti Å¡iÄ… situacijÄ…:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" msgstr "" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "JÅ«s galite norÄ—ti paleisti 'apt-get -f install\" klaidų taisymui:" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1084,7 +1087,7 @@ msgstr "" "Nepatenkintos priklausomybÄ—s. Pabandykite įvykdyti 'apt-get -f install' be " "nurodytų paketų (arba nurodykite iÅ¡eitį)." -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1096,69 +1099,69 @@ msgstr "" "leidimÄ…, kuomet kai kurie paketai dar nebuvo sukurti arba buvo\n" "paÅ¡alinti iÅ¡ \"Incoming\" aplanko." -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "Sugadinti paketai" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "Bus įdiegti Å¡ie papildomi paketai:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "SiÅ«lomi paketai:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "Rekomenduojami paketai:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "Nepavyko rasti paketo %s" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "%s nustatytas kaip įdiegtas rankiniu bÅ«du\n" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "SkaiÄiuojami atnaujinimai... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "Nepavyko" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "Ä®vykdyta" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "VidinÄ— klaida, problemos sprendimas kažkÄ… sugadino" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "Nepavyko užrakinti parsiuntimų aplanko" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 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:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "Nepavyko surasti iÅ¡eities teksto paketo, skirto %s" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1166,74 +1169,78 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Praleidžiama jau parsiųsta byla „%s“\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "Neturite pakankamai laisvos vietos %s" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Reikia parsiųsti %sB/%sB iÅ¡eities archyvų.\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Reikia parsiųsti %sB iÅ¡eities archyvų.\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "ParsiunÄiamas archyvas %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "Nepavyko gauti kai kurių arhcyvų." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, 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:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Nepavyko įvykdyti iÅ¡pakavimo komandos „%s“\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Patikrinkite, ar įdiegtas „dpkg-dev“ paketas.\n" -#: cmdline/apt-get.cc:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "Nepavyko įvykdyti paketo kompiliavimo komandos „%s“\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "Klaida procese-palikuonyje" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 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:2506 +#: cmdline/apt-get.cc:2524 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Nepavyko gauti kÅ«rimo-priklausomybių informacijos paketui %s" -#: cmdline/apt-get.cc:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1241,7 +1248,7 @@ msgid "" msgstr "" "%s priklausomybÄ— %s paketui negali bÅ«ti patenkinama, nes paketas %s nerastas" -#: cmdline/apt-get.cc:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1250,32 +1257,32 @@ msgstr "" "%s priklausomybÄ— %s paketui negali bÅ«ti patenkinama, nes nÄ—ra tinkamos " "versijos %s paketo" -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, 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:2693 +#: cmdline/apt-get.cc:2711 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Nepavyko patenkinti %s priklausomybÄ—s %s: %s" -#: cmdline/apt-get.cc:2709 +#: cmdline/apt-get.cc:2727 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: cmdline/apt-get.cc:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "Palaikomi moduliai:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1321,7 +1328,7 @@ msgid "" " This APT has Super Cow Powers.\n" msgstr "" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1571,10 +1578,10 @@ msgstr "" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1706,23 +1713,23 @@ msgstr "" msgid "Unparsable control file" msgstr "" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, fuzzy, c-format msgid "Couldn't open pipe for %s" msgstr "Nepavyko atverti failo %s" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "" @@ -1811,7 +1818,7 @@ msgstr "Jungiamasi per ilgai" msgid "Server closed the connection" msgstr "" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "Skaitymo klaida" @@ -1823,7 +1830,7 @@ msgstr "" msgid "Protocol corruption" msgstr "" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "RaÅ¡ymo klaida" @@ -1877,7 +1884,7 @@ msgstr "" msgid "Unable to accept connection" msgstr "" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "" @@ -2007,68 +2014,68 @@ msgstr "" msgid "Bad header line" msgstr "" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "Prisijungimo laiko limitas baigÄ—si" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "Klaida bandant raÅ¡yti į failÄ…" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "" -#: methods/http.cc:894 +#: methods/http.cc:900 msgid "Error reading from server. Remote end closed connection" msgstr "" -#: methods/http.cc:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 #, fuzzy msgid "Failed to truncate file" msgstr "Nepavyko patikrinti %s" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "Prisijungti nepavyko" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "VidinÄ— klaida" @@ -2260,14 +2267,14 @@ msgstr "Klaidingas veiksmas %s" msgid "Unable to stat the mount point %s" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "Nepavyko pakeisti į %s" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "" @@ -2291,149 +2298,149 @@ msgstr "" msgid "Could not get lock %s" msgstr "Nepavyko rezervuoti rakinimo failo %s" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Procesas %s gavo segmentavimo klaidÄ…" -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "Procesas %s gavo segmentavimo klaidÄ…" -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Procesas %s grąžino klaidos kodÄ… (%u)" -#: apt-pkg/contrib/fileutl.cc:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Procesas %s netikÄ—tai iÅ¡Ä—jo" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "Nepavyko atverti failo %s" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "Nepavyko atverti failo %s" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, fuzzy, c-format msgid "Problem closing the gzip file %s" msgstr "Klaida užveriant failÄ…" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "Klaida užveriant failÄ…" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "Klaida sinchronizuojant failÄ…" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "Klaida užveriant failÄ…" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "Klaida sinchronizuojant failÄ…" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "" -#: apt-pkg/pkgcache.cc:163 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache was built for a different architecture" msgstr "" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "Priklauso" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "PrieÅ¡priklauso" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "SiÅ«lo" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "Rekomenduoja" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "Konfliktuoja" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "PakeiÄia" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "PakeiÄia" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "Sugadina" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "Svarbu" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "privaloma" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "standartinis" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "nebÅ«tinas" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "papildomas" @@ -2551,7 +2558,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" @@ -2566,7 +2573,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" @@ -2581,17 +2588,17 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." msgstr "" -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "" -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2616,12 +2623,12 @@ msgstr "Nepavyko užrakinti sÄ…raÅ¡o aplanko" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "ParsiunÄiamas %li failas iÅ¡ %li (liko %s)" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "ParsiunÄiamas %li failas iÅ¡ %li" @@ -2641,12 +2648,12 @@ msgstr "" 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:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "" @@ -2669,17 +2676,21 @@ msgstr "" "GreiÄiausiai norÄ—site paleisti „apt-get update“, kad Å¡ios problemos bÅ«tų " "iÅ¡taisytos" -#: apt-pkg/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "Nepavyko perskaityti Å¡altinių sÄ…raÅ¡o." + +#: apt-pkg/policy.cc:344 #, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -#: apt-pkg/policy.cc:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "" @@ -2781,61 +2792,61 @@ msgstr "" msgid "MD5Sum mismatch" msgstr "MD5 sumos neatitikimas" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" msgstr "MaiÅ¡os sumos nesutapimas" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 msgid "There is no public key available for the following key IDs:\n" msgstr "" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "GPG klaida: %s: %s" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, 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:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " "manually fix this package." msgstr "" -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "Neatitinka dydžiai" @@ -2954,37 +2965,37 @@ msgstr "RaÅ¡omas naujas Å¡altinių sÄ…raÅ¡as\n" msgid "Source list entries for this disc are:\n" msgstr "" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "" -#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "" -#: apt-pkg/indexcopy.cc:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, fuzzy, c-format msgid "Skipping nonexistent file %s" msgstr "Praleidžiama jau parsiųsta byla „%s“\n" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, fuzzy, c-format msgid "Hash mismatch for: %s" msgstr "MaiÅ¡os sumos nesutapimas" @@ -3041,12 +3052,12 @@ msgstr "" msgid "Installing %s" msgstr "Ä®diegta %s" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "KonfigÅ«ruojamas %s" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "Å alinamas %s" @@ -3066,92 +3077,93 @@ msgstr "" msgid "Running post-installation trigger %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "TrÅ«ksta aplanko „%s“" -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, fuzzy, c-format msgid "Could not open file '%s'" msgstr "Nepavyko atverti failo %s" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "RuoÅ¡iamas %s" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "IÅ¡pakuojamas %s" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "RuoÅ¡iamasi konfigÅ«ruoti %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "Ä®diegta %s" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "RuoÅ¡iamasi %s paÅ¡alinimui" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "PaÅ¡alintas %s" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "RuoÅ¡iamasi visiÅ¡kai paÅ¡alinti %s" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "VisiÅ¡kai paÅ¡alintas %s" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+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 " @@ -148,14 +148,14 @@ msgstr "पॅकेज (पिन):" msgid " Version table:" msgstr "आवृतà¥à¤¤à¥€ कोषà¥à¤Ÿà¤•:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s हे %s करिता %s %s वर संगà¥à¤°à¤¹à¤¿à¤¤\n" -#: cmdline/apt-cache.cc:1739 +#: cmdline/apt-cache.cc:1745 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -319,31 +319,31 @@ msgstr "%s मधà¥à¤¯à¥‡ लिहिणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥ " msgid "Cannot get debconf version. Is debconf installed?" msgstr "debconf आवृतà¥à¤¤à¥€ मिळू शकत नाही,debconf अधिषà¥à¤ ापित à¤à¤¾à¤²à¥€ काय?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "पॅकेजेसची विसà¥à¤¤à¤¾à¤°à¤¿à¤¤ यादी खूप मोठी आहे" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "तà¥à¤°à¥à¤Ÿà¥€ पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ मारà¥à¤—दरà¥à¤¶à¤¿à¤•à¤¾%s " -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "उगमसà¥à¤¥à¤¾à¤¨à¤¾à¤šà¥€ विसà¥à¤¤à¤¾à¤°à¤¿à¤¤ यादी खूप मोठी आहे" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "शीरà¥à¤·à¤• संचिकेमधून मजकूर संचिकेत लिहिणà¥à¤¯à¤¾à¤¤ तà¥à¤°à¥à¤Ÿà¥€" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "तà¥à¤°à¥à¤Ÿà¥€ पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ मजकूर %s" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -424,11 +424,11 @@ msgstr "" " -c=? ही संरचना संचिका वाचा \n" " -o=? à¤à¤–ादा अहेतà¥à¤• संरचना परà¥à¤¯à¤¾à¤¯ निरà¥à¤§à¤¾à¤°à¤¿à¤¤ करा" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "निवडक à¤à¤¾à¤— जà¥à¤³à¤¤ नाही" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "`%s' पॅकेज संचिका समà¥à¤¹à¤¾à¤¤à¥€à¤² काही संचिका गहाळ आहेत" @@ -541,7 +541,7 @@ msgstr "अरà¥à¤•à¤¾à¤ˆà¤µà¥à¤¹ ला पॅकेज जागा नाठmsgid " %s has no override entry\n" msgstr "%s ला ओवà¥à¤¹à¤°à¤°à¤¾à¤ˆà¤¡/दà¥à¤°à¥à¤²à¤•à¥à¤·à¤¿à¤¤ जागा नाही\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr "%s देखà¤à¤¾à¤²à¤•à¤°à¥à¤¤à¤¾ हा %s आणि %s नाही \n" @@ -651,79 +651,79 @@ msgstr "%s दà¥à¤µà¤¾ मोकळा/सà¥à¤Ÿà¤¾ करणà¥à¤¯à¤¾à¤¸ अठmsgid "Failed to rename %s to %s" msgstr "%s ला पà¥à¤¨à¤°à¥à¤¨à¤¾à¤®à¤¾à¤‚कन %s करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥ " -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "होय" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "रिजेकà¥à¤¸ कंपायलेशन तà¥à¤°à¥à¤Ÿà¥€ -%s " -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "खालील पॅकेजेस मधà¥à¤¯à¥‡ नमिळणाऱà¥à¤¯à¤¾ निरà¥à¤à¤°à¤¤à¤¾/ डिपेनà¥à¤¡à¤¨à¥à¤¸à¥€à¤œ आहेत:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "पण %s संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ à¤à¤¾à¤²à¥‡" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "पण %s संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ करायचे आहे" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "पण ते संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ करणà¥à¤¯à¤¾à¤œà¥‹à¤—े नाही" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "पण ते आà¤à¤¾à¤¸à¥€ पॅकेज आहे" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "पण ते संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले नाही" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "पण ते संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ होणार नाही" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr "किंवा" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "खालील नविन पॅकेजेस संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ होतील:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "खालील नविन पॅकेजेस कायमची काढून टाकली जातील:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "खालील पॅकेजेस परत ठेवली गेली:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "खालील पॅकेजेस पà¥à¤¢à¤¿à¤² आवृतà¥à¤¤à¥€à¤•à¥ƒà¤¤ होतील:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "खालील पॅकेजेस पà¥à¤¢à¤šà¥à¤¯à¤¾ आवृतà¥à¤¤à¥€à¤•à¥ƒà¤¤ होणार नाहीत:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "पà¥à¤¢à¤¿à¤² ठेवलेली पॅकेजेस बदलतील:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (चà¥à¤¯à¤¾ मà¥à¤³à¥‡ %s)" -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -731,65 +731,65 @@ msgstr "" "धोकà¥à¤¯à¤¾à¤šà¥€ सूचना:खालील जरूरीची पॅकेजेस कायमची काढून टाकली जातील।\n" "तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ तà¥à¤®à¥à¤¹à¥€ काय करत आहात हे कळेपरà¥à¤¯à¤‚त असं करता येणार नाही!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu पà¥à¤¢à¥‡ आवृतà¥à¤¤à¥€à¤•à¥ƒà¤¤ केले, %lu नवà¥à¤¯à¤¾à¤¨à¥‡ संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले," -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu पà¥à¤¨à¤°à¥à¤¸à¤‚सà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले," -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu मागील आवृतà¥à¤¤à¥€à¤•à¥ƒà¤¤ केले," -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu कायमचे काढून टाकणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी आणि %lu पà¥à¤¢à¤šà¥à¤¯à¤¾ आवृतà¥à¤¤à¥€à¤•à¥ƒà¤¤ à¤à¤¾à¤²à¥‡à¤²à¥€ नाही.\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu संपूरà¥à¤£ संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ किंवा कायमची काढून टाकलेली नाही.\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, fuzzy, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "सूचना, '%s' रिजेकà¥à¤¸ साठी %s ची निवड करत आहे\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, fuzzy, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "सूचना, '%s' रिजेकà¥à¤¸ साठी %s ची निवड करत आहे\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, fuzzy, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "%s साठी %s (%s) निवडलेली आवृतà¥à¤¤à¥€.\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "%s हे आà¤à¤¾à¤¸à¥€ पॅकेज हà¥à¤¯à¤¾à¤‚चà¥à¤¯à¤¾à¤•à¤¡à¥‚न तरतूद केले आहे,:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr "[संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 #, fuzzy msgid " [Not candidate version]" msgstr "कंॅडिडेट आवृतà¥à¤¤à¥à¤¯à¤¾" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "तà¥à¤®à¥à¤¹à¥€ संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ करणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी à¤à¤• निशà¥à¤šà¤¿à¤¤ सà¥à¤ªà¤·à¥à¤Ÿà¤ªà¤£à¥‡ निवडले पाहिजे." -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -800,164 +800,167 @@ msgstr "" "याचा अरà¥à¤¥ असाही आहे की पॅकेज सापडत नाही,ते कालबाहà¥à¤¯ किंवा \n" " मà¥à¤¹à¤£à¤œà¥‡ ते दà¥à¤¸à¤±à¥à¤¯à¤¾ उगमातून उपलबà¥à¤§\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "तथापि खालील पॅकेजेस मधà¥à¤¯à¥‡ बदल à¤à¤¾à¤²à¤¾:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, fuzzy, c-format msgid "Package '%s' has no installation candidate" msgstr "%s पॅकेजला संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ कॅनà¥à¤¡à¤¿à¤¡à¥‡à¤Ÿ नाही" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, fuzzy, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "लकà¥à¤·à¤¾à¤¤ घà¥à¤¯à¤¾,%s à¤à¤µà¤œà¥€ %s ची निवड करत आहे \n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "%s सोडून देत आहे, ते आधिच संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले आहे आणि पà¥à¤¢à¤¿à¤² आवृतà¥à¤¤à¥€ निशà¥à¤šà¤¿à¤¤ केलेली नाही.\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, fuzzy, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "%s सोडून देत आहे, ते आधिच संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले आहे आणि पà¥à¤¢à¤¿à¤² आवृतà¥à¤¤à¥€ निशà¥à¤šà¤¿à¤¤ केलेली नाही.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "%s चे पà¥à¤¨à¤°à¥à¤¸à¤‚सà¥à¤¥à¤¾à¤ªà¤¨ शकà¥à¤¯ नाही, हे डाऊनलोड करता येत नाही.\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s ही आधीच नविन आवृतà¥à¤¤à¥€ आहे.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, c-format msgid "%s set to manually installed.\n" msgstr "%s सà¥à¤µà¤¹à¤¸à¥à¤¤à¥‡ संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ करायचे आहे.\n" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "%s पॅकेज संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केलेले नाही,मà¥à¤¹à¤£à¥‚न काढले नाही\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "डिपेनà¥à¤¡à¤¨à¥à¤¸à¥€à¤œ बरोबर/दà¥à¤°à¥‚सà¥à¤¤ करत आहे..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr "अयशसà¥à¤µà¥€/चूकीचे à¤à¤¾à¤²à¥‡." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "डिपेनà¥à¤¡à¤¨à¥à¤¸à¥€à¤œ बरोबर करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥ आहे " -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "आवृतà¥à¤¤à¥€à¤•à¥ƒà¤¤ संच कमीतकमी करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr "à¤à¤¾à¤²à¥‡" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "हे बरोबर करणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ `apt-get -f संसà¥à¤¥à¤¾à¤ªà¤¨à¤¾' पà¥à¤°à¥‹à¤—à¥à¤°à¤¾à¤® चालू करावा लागेल." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "अनमेट डिपेंडनà¥à¤¸à¥€à¤œ.-f.वापरून पà¥à¤°à¤¯à¤¤à¥à¤¨ करा " -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "धोकà¥à¤¯à¤¾à¤šà¥€ सूचना:खालील पॅकेजेसॠपà¥à¤°à¤®à¤¾à¤£à¤¿à¤¤ करॠशकत नाही! " -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "पà¥à¤°à¤®à¤¾à¤£à¥€à¤•à¤°à¤£à¤¾à¤šà¥€ धोकà¥à¤¯à¤¾à¤šà¥€ सूचना दà¥à¤°à¥à¤²à¤•à¥à¤·à¤¿à¤¤ करा.\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "पडताळून पाहिलà¥à¤¯à¤¾à¤¶à¤¿à¤µà¤¾à¤¯ ही पॅकेजेस संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ करायची का [हो/नाही]?" -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "काही पॅकेजेसचे पà¥à¤°à¤®à¤¾à¤£à¤¿à¤•à¤°à¤£ होऊ शकत नाही" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "काही अडचणी आहेत आणि --force-yes शिवाय -y वापरला गेला" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "अंतरà¥à¤—त तà¥à¤°à¥à¤Ÿà¥€, तà¥à¤Ÿà¤²à¥‡à¤²à¥à¤¯à¤¾ पॅकेजेस बरोबर संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ पॅकेजला आवाहन केले गेले/बोलावले गेले!" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "पॅकेजेस कायमची काढायची आहेत पण रिमूवà¥à¤¹ अकारà¥à¤¯à¤•à¥à¤·à¤® केले आहे" -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "अंतरà¥à¤—त तà¥à¤°à¥à¤Ÿà¥€,कà¥à¤°à¤® अजून संपला नाही" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "उगमांचà¥à¤¯à¤¾ यादà¥à¤¯à¤¾ वाचता येणार नाहीत." - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "किती विचितà¥à¤°...आकार जà¥à¤³à¤¤ नाहीत, ईमेल apt@packages.debian.org" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "अरà¥à¤•à¤¾à¤ˆà¤µà¥à¤¹à¤œà¤šà¥à¤¯à¤¾ %sB/%sB घेणà¥à¤¯à¤¾à¤šà¥€ गरज आहे\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "अरà¥à¤•à¤¾à¤ˆà¤µà¥à¤¹à¤œ%sB घेणà¥à¤¯à¤¾à¤šà¥€ गरज आहे.\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "या कà¥à¤°à¤¿à¤¯à¥‡à¤¨à¤‚तर, %sB à¤à¤µà¤¢à¥€ अधिक डिसà¥à¤• जागा वापरली जाईल.\n" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "या कà¥à¤°à¤¿à¤¯à¥‡à¤¨à¤‚तर, %sB डिसà¥à¤• जागा मोकळी होईल.\n" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "%s मधà¥à¤¯à¥‡ रिकामी जागा सांगू शकत नाही" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "%s मधà¥à¤¯à¥‡ तà¥à¤®à¤šà¥à¤¯à¤¾à¤•à¤¡à¥‡ पà¥à¤°à¥‡à¤¶à¥€ जागा नाही." -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "कà¥à¤·à¥à¤²à¥à¤²à¤• फकà¥à¤¤ निरà¥à¤¦à¥‡à¤¶à¤¿à¤¤ केले आहे पण हे कà¥à¤·à¥à¤²à¥à¤²à¤• कृति/ऑपरेशन नाही." -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "हो, मी मà¥à¤¹à¥à¤Ÿà¤²à¥à¤¯à¤¾à¤ªà¥à¤°à¤®à¤¾à¤£à¥‡ करा!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -968,28 +971,28 @@ msgstr "" "पà¥à¤¢à¥‡ '%s' उकà¥à¤¤à¥€ मधà¥à¤¯à¥‡ लिहिणार \n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "वà¥à¤¯à¤¤à¥à¤¯à¤¯/बंद करा." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ पà¥à¤¢à¥‡ जायचे आहे [Y/n]? " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s %s आणणे असफल\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "काही संचिका डाऊनलोड करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "डाऊनलोड संपूरà¥à¤£ आणि डाऊनलोड मधà¥à¤¯à¥‡ फकà¥à¤¤ पदà¥à¤§à¤¤à¥€" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -997,20 +1000,20 @@ msgstr "" "काही आरà¥à¤•à¤¾à¤‡à¤µà¥à¤¹à¤œ आणणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥, कदाचित apt-get रन करà¥à¤¨ अदà¥à¤¯à¤¯à¤¾à¤µà¤¤ करा किंवा --fix- " "बरोबर पà¥à¤°à¤¯à¤¤à¥à¤¨ कराहरवलेले/गहाळ?" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "" "--fix- सापडत नाही आणि माधà¥à¤¯à¤®/मिडिया अदलाबदल हे सधà¥à¤¯à¤¾ तांतà¥à¤°à¤¿à¤• मदत देऊ शकत नाही" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "न सापडणारी पॅकेजेस नीट करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "संसà¥à¤¥à¤¾à¤ªà¤¨ खंडित करत आहे." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1020,35 +1023,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "%s उगम पॅकेज यादी सà¥à¤°à¥‚ करता येत नाही" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "सà¥à¤§à¤¾à¤°à¤¿à¤¤ आवृतà¥à¤¤à¥€à¤šà¤¾ विधान आरà¥à¤—à¥à¤¯à¥à¤®à¥‡à¤‚टस घेऊ शकत नाही." -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "आपण या गोषà¥à¤Ÿà¥€ काढून टाकता नये, ऑटोरिमूवà¥à¤¹à¤° सà¥à¤°à¥‚ करता येत नाही" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1058,7 +1061,7 @@ msgid_plural "" msgstr[0] "खालील नवीन पॅकेजेस सà¥à¤µà¤¯à¤‚चलितपणे संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ à¤à¤¾à¤²à¥€ होती व आता आवशà¥à¤¯à¤• नाहीत:" msgstr[1] "खालील नवीन पॅकेजेस सà¥à¤µà¤¯à¤‚चलितपणे संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ à¤à¤¾à¤²à¥€ होती व आता आवशà¥à¤¯à¤• नाहीत:" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1066,11 +1069,11 @@ msgid_plural "" msgstr[0] "खालील नवीन पॅकेजेस सà¥à¤µà¤¯à¤‚चलितपणे संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ à¤à¤¾à¤²à¥€ होती व आता आवशà¥à¤¯à¤• नाहीत:" msgstr[1] "खालील नवीन पॅकेजेस सà¥à¤µà¤¯à¤‚चलितपणे संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ à¤à¤¾à¤²à¥€ होती व आता आवशà¥à¤¯à¤• नाहीत:" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "ती काढून टाकणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी 'apt-get autoremove' वापरा." -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1088,25 +1091,25 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "खालील माहिती परिसà¥à¤¥à¤¿à¤¤à¥€ निवळणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी मदत ठरू शकेल:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" msgstr "अंतरà¥à¤—त तà¥à¤°à¥à¤Ÿà¥€, AutoRemoverने सà¥à¤Ÿà¤«à¤²à¤¾ तोडले" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "अंतरà¥à¤—त तà¥à¤°à¥à¤Ÿà¥€,ऑलअपगà¥à¤°à¥‡à¤¡à¤¨à¥‡ सà¥à¤Ÿà¤«à¤²à¤¾ तोडले" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" "तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ कदाचित 'apt-get -f install'(à¤à¤ªà¥€à¤Ÿà¥€-गेट -à¤à¤« संसà¥à¤¥à¤¾à¤ªà¤¨') पà¥à¤°à¥‹à¤—à¥à¤°à¤¾à¤® चालू करावा " "लागेल'यात बदल करणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी:" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1114,7 +1117,7 @@ msgstr "" "अनमेट डिपेंडनà¥à¤¸à¥€à¤œ.à¤à¤ªà¥€à¤Ÿà¥€-गेट -à¤à¤« संसà¥à¤¥à¤¾à¤ªà¤¨ ('apt-get -f install') पॅकेजशिवाय पà¥à¤°à¤¯à¤¤à¥à¤¨ करा " "(किंवा परà¥à¤¯à¤¾à¤¯ सांगा)." -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1126,69 +1129,69 @@ msgstr "" "विà¤à¤¾à¤—णी असणारी पण हवी असणारी, तयार केली नसलेली पॅकेजेस वापरत असाल \n" "किंवा ती येणाऱà¥à¤¯à¤¾à¤‚पैकी बाहेर हलविली असतील." -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "तà¥à¤Ÿà¤²à¥‡à¤²à¥€ पॅकेजेस" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "खालील अतिरिकà¥à¤¤ पॅकेजेस संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ होतील:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "सà¥à¤šà¤µà¤²à¥‡à¤²à¥€ पॅकेजेस:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "शिफारस केलेली पॅकेजेस:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "%s पॅकेज सापडू शकले नाही" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "%s सà¥à¤µà¤¹à¤¸à¥à¤¤à¥‡ संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ करायचे आहे.\n" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "पà¥à¤¢à¤¿à¤² आवृतà¥à¤¤à¥€à¤šà¥€ गणती करीत आहे..." -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "असमरà¥à¤¥" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "à¤à¤¾à¤²à¥‡" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "अंतरà¥à¤—त तà¥à¤°à¥à¤Ÿà¥€, अडचण निवारकाने सà¥à¤Ÿà¤«à¤²à¤¾ तोडले" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "डाऊनलोड डिरेकà¥à¤Ÿà¤°à¥€ कà¥à¤²à¥‚पबंद करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 msgid "Must specify at least one package to fetch source for" msgstr "उगम शोधणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी किमान à¤à¤• पॅकेज देणे/सांगणे गरजेचे आहे" -#: cmdline/apt-get.cc:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "%s उगम पॅकेज शोधणे शकà¥à¤¯ नाही/शोधणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥ आहे" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1196,81 +1199,85 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "आधीच डाऊनलोड केलेली '%s' फाईल सोडून दà¥à¤¯à¤¾\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "%s मधà¥à¤¯à¥‡ पà¥à¤°à¥‡à¤¶à¥€ जागा नाही" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "उगम अरà¥à¤•à¤¾à¤ˆà¤µà¥à¤¹à¤œ चा %sB/%sB घेणà¥à¤¯à¤¾à¤šà¥€ गरज आहे.\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "उगम अरà¥à¤•à¤¾à¤ˆà¤µà¥à¤¹à¤œà¤šà¤¾ %sB घेणà¥à¤¯à¤¾à¤šà¥€ गरज आहे.\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "%s उगम घà¥à¤¯à¤¾\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "काही अरà¥à¤•à¤¾à¤ˆà¤µà¥à¤¹à¤œ आणणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "%s मधà¥à¤¯à¥‡ आधीच उघडलेलà¥à¤¯à¤¾ उगमातील उघडलेलà¥à¤¯à¤¾à¤²à¤¾ सोडून दà¥à¤¯à¤¾ किंवा वगळा\n" -#: cmdline/apt-get.cc:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "'%s' आजà¥à¤žà¤¾ सà¥à¤Ÿà¥à¤¯à¤¾ करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥.\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "'dpkg-dev' पॅकेज संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले आहे का ते पडताळून पहा.\n" -#: cmdline/apt-get.cc:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "बांधणी करणाऱà¥à¤¯à¤¾ आजà¥à¤žà¤¾ '%s' अयशसà¥à¤µà¥€.\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "चाईलà¥à¤¡ पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ अयशसà¥à¤µà¥€" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 msgid "Must specify at least one package to check builddeps for" msgstr "बिलà¥à¤¡à¥‡à¤ªà¤¸à¥ कशासाठी ते पडताळणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी किमान à¤à¤• पॅकेज सांगणे गरजेचे आहे" -#: cmdline/apt-get.cc:2506 +#: cmdline/apt-get.cc:2524 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "%s साठी बांधणी डिपेंडनà¥à¤¸à¥€ माहिती मिळवणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: cmdline/apt-get.cc:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "%s ला बांधणी डिपेंडनà¥à¤¸ नाहीत.\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, 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:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1279,30 +1286,30 @@ msgstr "" "आवृतीची मागणी पूरà¥à¤£ करणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी %s पॅकेजची आवृतà¥à¤¤à¥€ उपलबà¥à¤§ नाही,तà¥à¤¯à¤¾à¤®à¥à¤³à¥‡ %s साठी %s " "डिपेंडनà¥à¤¸à¥€ पूरà¥à¤£ होऊ शकत नाही" -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "%s अवलंबितà¥à¤µ %s साठी पूरà¥à¤£ होणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥: संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ पॅकेज %s खूपच नवीन आहे" -#: cmdline/apt-get.cc:2693 +#: cmdline/apt-get.cc:2711 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "%s साठी %s डिपेंडनà¥à¤¸à¥€ पूरà¥à¤£ होणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥: %s" -#: cmdline/apt-get.cc:2709 +#: cmdline/apt-get.cc:2727 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "%s साठी बांधणी-डिपेंडनà¥à¤¸à¥€à¤œ पूरà¥à¤£ होऊ शकत नाही." -#: cmdline/apt-get.cc:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "बांधणी-डिपेंडनà¥à¤¸à¥€à¤œ कà¥à¤°à¤¿à¤¯à¤¾ पूरà¥à¤£ करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥ " -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "पà¥à¤°à¥‹à¤—à¥à¤°à¤¾à¤® गटाला तांतà¥à¤°à¤¿à¤• मदत दिली:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1389,7 +1396,7 @@ msgstr "" " apt.conf(5) पà¥à¤¸à¥à¤¤à¤¿à¤•à¤¾ पाने पहा.\n" " हà¥à¤¯à¤¾ APT ला सà¥à¤ªà¤° काऊ पॉवरà¥à¤¸ आहेत\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1636,10 +1643,10 @@ msgstr "File %s/%s, %s पॅकेज मधलà¥à¤¯à¤¾ à¤à¤•à¤¾ वर पॠ#. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1773,23 +1780,23 @@ msgstr "वैध नियंतà¥à¤°à¤£ फाईल शोधणà¥à¤¯à¤¾à¤¸ msgid "Unparsable control file" msgstr "अनपारà¥à¤¸à¥‡à¤¬à¤² नियंतà¥à¤°à¤£ फाईल" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "%s साठी पाईप उघडता येत नाही" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "%s कà¥à¤°à¤¿à¤¯à¥‡à¤ªà¤¾à¤¸à¥‚न चूक वाचा" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "सà¥à¤Ÿà¥…ट करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "बदलणà¥à¤¯à¤¾à¤šà¤¾ वेळ निशà¥à¤šà¤¿à¤¤ करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" @@ -1882,7 +1889,7 @@ msgstr "वेळेअà¤à¤¾à¤µà¥€ संबंध जोडता येत ठmsgid "Server closed the connection" msgstr "सरà¥à¤µà¥à¤¹à¤°à¤¨à¥‡ संबंध जोडणी बंद केली" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "तà¥à¤°à¥à¤Ÿà¥€ वाचा" @@ -1894,7 +1901,7 @@ msgstr "पà¥à¤°à¤¤à¤¿à¤¸à¤¾à¤§à¤¾à¤¨à¥‡ बफर à¤à¤°à¥à¤¨ गेले." msgid "Protocol corruption" msgstr "पà¥à¤°à¥‹à¤Ÿà¥‹à¤•à¥‰à¤² खराब à¤à¤¾à¤²à¥‡" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "लिहिणà¥à¤¯à¤¾à¤¤ तà¥à¤°à¥à¤Ÿà¥€" @@ -1948,7 +1955,7 @@ msgstr "डेटा सॉकेट जोडणी वेळेअà¤à¤¾à¤µà¥€ msgid "Unable to accept connection" msgstr "जोडणी सà¥à¤µà¤¿à¤•à¤¾à¤°à¤£à¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "फाईल हॅश करणà¥à¤¯à¤¾à¤¤ तà¥à¤°à¥à¤Ÿà¥€" @@ -2080,67 +2087,67 @@ msgstr "%u अकà¥à¤·à¤°à¤¾à¤‚वर à¤à¤• शीरà¥à¤·à¤• ओळ मिठmsgid "Bad header line" msgstr "वाईट शीरà¥à¤·à¤• ओळ" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "HTTP सरà¥à¤µà¥à¤¹à¤°à¤¨à¥‡ अवैध पà¥à¤°à¤¤à¥à¤¤à¥à¤¯à¥à¤¤à¥à¤¤à¤° शीरà¥à¤·à¤• पाठविले" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "HTTP सरà¥à¤µà¥à¤¹à¤°à¤¨à¥‡ अवैध मजकूर-लांबी शीरà¥à¤·à¤• पाठविले " -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "HTTP सरà¥à¤µà¥à¤¹à¤°à¤¨à¥‡ अवैध मजकूर-विसà¥à¤¤à¤¾à¤° शीरà¥à¤·à¤• पाठविले" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "HTTP सरà¥à¤µà¥à¤¹à¤°à¤¨à¥‡ विसà¥à¤¤à¤¾à¤° तांतà¥à¤°à¤¿à¤• मदत जोडली" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "अपरिचित दिनांक पà¥à¤°à¤•à¤¾à¤°/सà¥à¤µà¤°à¥‚प " -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "चà¥à¤•à¤²à¥‡/असमरà¥à¤¥ निवड करा" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "जोडणी वेळेअà¤à¤¾à¤µà¥€ तà¥à¤Ÿà¤²à¥€" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "निरà¥à¤—त फाईल मधà¥à¤¯à¥‡ लिहिताना तà¥à¤°à¥à¤Ÿà¥€/चूक" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "फाईल मधà¥à¤¯à¥‡ लिहिणà¥à¤¯à¤¾à¤¤ चूक/तà¥à¤°à¥à¤Ÿà¥€" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "फाईल मधà¥à¤¯à¥‡ लिहिणà¥à¤¯à¤¾à¤¤ चूक/तà¥à¤°à¥à¤Ÿà¥€" -#: methods/http.cc:894 +#: methods/http.cc:900 msgid "Error reading from server. Remote end closed connection" msgstr "सरà¥à¤µà¥à¤¹à¤° मधून वाचणà¥à¤¯à¤¾à¤¤ चूक. लांब शेवट आणि बंद à¤à¤¾à¤²à¥‡à¤²à¥€ जोडणी" -#: methods/http.cc:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "सरà¥à¤µà¥à¤¹à¤° मधून वाचणà¥à¤¯à¤¾à¤¤ चूक" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 msgid "Failed to truncate file" msgstr "फाईल छोटी करणे असफल" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "चà¥à¤•à¥€à¤šà¤¾ शीरà¥à¤·à¤• डाटा" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "जोडणी अयशसà¥à¤µà¥€" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "अंतरà¥à¤—त तà¥à¤°à¥à¤Ÿà¥€" @@ -2332,14 +2339,14 @@ msgstr "%s अवैध कà¥à¤°à¤¿à¤¯à¤¾" msgid "Unable to stat the mount point %s" msgstr "%s माऊंट पॉईंट सà¥à¤Ÿà¥…ट करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "%s मधà¥à¤¯à¥‡ बदलणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "सीडी-रॉम सà¥à¤Ÿà¥…ट करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥" @@ -2363,149 +2370,149 @@ msgstr "%s nfs(नेटवरà¥à¤• फाईल सिसà¥à¤Ÿà¥€à¤®) माà msgid "Could not get lock %s" msgstr "%s कà¥à¤²à¥à¤ª मिळवता येत नाही" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "%s साठी थांबलो पण ते तेथे नवà¥à¤¹à¤¤à¥‡" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "%s उपकà¥à¤°à¤¿à¤¯à¥‡à¤²à¤¾ सेगमेंटेशन दोष पà¥à¤°à¤¾à¤ªà¥à¤¤ à¤à¤¾à¤²à¤¾." -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "%s उपकà¥à¤°à¤¿à¤¯à¥‡à¤²à¤¾ सेगमेंटेशन दोष पà¥à¤°à¤¾à¤ªà¥à¤¤ à¤à¤¾à¤²à¤¾." -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "%s उपकà¥à¤°à¤¿à¤¯à¥‡à¤¨à¥‡ (%u) तà¥à¤°à¥à¤Ÿà¥€ कोड दिलेला आहे" -#: apt-pkg/contrib/fileutl.cc:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "%s उपकà¥à¤°à¤¿à¤¯à¤¾ अचानकपणे बाहेर पडली" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "%s फाईल उघडता येत नाही" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "%s साठी पाईप उघडता येत नाही" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "वाचा, %lu अजूनही वाचणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी आहे पण आता काही उरली नाही" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "लिहा, %lu अजूनही लिहिणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी आहे पण लिहिता येत नाही" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, fuzzy, c-format msgid "Problem closing the gzip file %s" msgstr "फाईल बंद करणà¥à¤¯à¤¾à¤¤ अडचण" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "फाईल बंद करणà¥à¤¯à¤¾à¤¤ अडचण" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "संचिकेची syncing समसà¥à¤¯à¤¾" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "फाईल अनलिंकिंग करणà¥à¤¯à¤¾à¤¤ अडचण" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "संचिकेची syncing समसà¥à¤¯à¤¾" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "पॅकेज असà¥à¤¥à¤¾à¤ˆ सà¥à¤®à¥ƒà¤¤à¤¿à¤•à¥‹à¤·" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "पॅकेज असà¥à¤¥à¤¾à¤ˆ सà¥à¤®à¥ƒà¤¤à¤¿à¤•à¥‹à¤· फाईल खराब à¤à¤¾à¤²à¥€ आहे" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "पॅकेज असà¥à¤¥à¤¾à¤ˆ सà¥à¤®à¥ƒà¤¤à¤¿à¤•à¥‹à¤· फाईल ही विजोड आवृतà¥à¤¤à¥€ आहे" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "'%s' आवृतà¥à¤¤à¥€à¤•à¤°à¤£ पà¥à¤°à¤£à¤¾à¤²à¥€à¤²à¤¾ हे APT तांतà¥à¤°à¤¿à¤• मदत देऊ शकत नाही" -#: apt-pkg/pkgcache.cc:163 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache was built for a different architecture" msgstr "पॅकेज असà¥à¤¥à¤¾à¤ˆ सà¥à¤®à¥ƒà¤¤à¥€à¤•à¥‹à¤· वेगळà¥à¤¯à¤¾ वासà¥à¤¤à¥à¤µà¤¿à¤¦à¥à¤¯à¥‡ साठी बनवला गेला" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "अवलंबित" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "पूरà¥à¤µ अवलंबित" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "सà¥à¤šà¤µà¤£à¥‡" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "शिफारस" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "परसà¥à¤ªà¤°à¤µà¤¿à¤°à¥‹à¤§" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "परत तà¥à¤¯à¤¾à¤ िकाणी आणा" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "अपà¥à¤°à¤šà¤²à¤¿à¤¤" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "तोडले" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "अतà¥à¤¯à¤¾à¤µà¤¶à¥à¤¯à¤•" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "आवशà¥à¤¯à¤•" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "मानक" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "à¤à¤šà¥à¤›à¤¿à¤•" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "अधिक" @@ -2623,7 +2630,7 @@ msgstr "%s सà¥à¤¤à¥à¤°à¥‹à¤¤ सà¥à¤šà¥€à¤®à¤§à¥à¤¯à¥‡ %u रेषेवà #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" @@ -2641,7 +2648,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" @@ -2657,7 +2664,7 @@ msgid "" msgstr "" "%s पॅकेज पà¥à¤¨à¤ƒ:अधिषà¥à¤ ापित करणà¥à¤¯à¤¾à¤šà¥€ गरज आहे, परंतॠमला तà¥à¤¯à¤¾à¤¸à¤¾à¤ ी ऑरà¥à¤•à¤¾à¤‡à¤µà¥à¤¹ सापडू शकले नाही." -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2665,11 +2672,11 @@ msgstr "" "दोष,पॅकेज समसà¥à¤¯à¤¾ निवारक::निवारण करतांना अडथळा निरà¥à¤®à¤¾à¤£ à¤à¤¾à¤²à¤¾, हà¥à¤¯à¤¾à¤šà¥‡ कारण सà¥à¤¥à¤—ित " "पॅकेजेस असू शकते." -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "अडचणी दूर करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥, तà¥à¤®à¥à¤¹à¥€ तà¥à¤Ÿà¤²à¥‡à¤²à¥‡ पॅकेज घेतलेले आहे." -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2694,12 +2701,12 @@ msgstr "संचयिका यादीला कà¥à¤²à¥à¤ª लावणॠ#. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "%li ची %li(%s राहिलेले) संचिका पà¥à¤¨:पà¥à¤°à¤¾à¤ªà¥à¤¤ करीत आहे" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "%li ची %li संचिका पà¥à¤¨:पà¥à¤°à¤¾à¤ªà¥à¤¤ करीत आहे" @@ -2719,12 +2726,12 @@ msgstr "%s कारà¥à¤¯à¤ªà¤§à¥à¤¦à¤¤à¥€ योगà¥à¤¯ रीतीने msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "कृपया '%s' लेबल असलेली डिसà¥à¤• '%s' या डà¥à¤°à¤¾à¤‡à¤µà¥à¤¹à¤®à¤§à¥à¤¯à¥‡ ठेवा आणि à¤à¤¨à¥à¤Ÿà¤° कळ दाबा." -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "'%s' पॅकेजींग पà¥à¤°à¤£à¤¾à¤²à¥€ सहायà¥à¤¯à¤•à¤¾à¤°à¥€ नाही" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "योगà¥à¤¯ असा पॅकेजिंग पà¥à¤°à¤£à¤¾à¤²à¥€ पà¥à¤°à¤•à¤¾à¤° निशà¥à¤šà¤¿à¤¤ करणà¥à¤¯à¤¾à¤¸ असमरà¥à¤¥ " @@ -2745,17 +2752,21 @@ msgstr "पॅकेजचà¥à¤¯à¤¾ यादà¥à¤¯à¤¾ किंवा संच msgid "You may want to run apt-get update to correct these problems" msgstr "तà¥à¤®à¥à¤¹à¥€ हà¥à¤¯à¤¾ समसà¥à¤¯à¤¾à¤‚चे निवारण करणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी apt-get update पà¥à¤°à¥‹à¤—à¥à¤°à¤¾à¤® चालू करॠशकता" -#: apt-pkg/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "उगमांचà¥à¤¯à¤¾ यादà¥à¤¯à¤¾ वाचता येणार नाहीत." + +#: apt-pkg/policy.cc:344 #, fuzzy, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "पसंतीचà¥à¤¯à¤¾ संचिकेत अवैध माहितीसंच, पॅकेजला शीरà¥à¤·à¤• नाही " -#: apt-pkg/policy.cc:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "%s पिनचा पà¥à¤°à¤•à¤¾à¤° समजलेला नाही" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "पिन करिता पà¥à¤°à¤¾à¤§à¤¾à¤¨à¥à¤¯/अगà¥à¤°à¤•à¥à¤°à¤® (किंवा शूनà¥à¤¯)निरà¥à¤¦à¥‡à¤¶à¥€à¤¤ केलेला नाही" @@ -2862,41 +2873,41 @@ msgstr "पà¥à¤¨à¤°à¥à¤¨à¤¾à¤®à¤¾à¤‚कन अयशसà¥à¤µà¥€, %s (%s -> %s msgid "MD5Sum mismatch" msgstr "à¤à¤®à¤¡à¥€à¥« बेरीज/MD5Sum जà¥à¤³à¤¤ नाही" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" msgstr "हॅश बेरीज जà¥à¤³à¤¤ नाही" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 msgid "There is no public key available for the following key IDs:\n" msgstr "पà¥à¤¢à¥€à¤² कळ ओळखचिनà¥à¤¹à¤¾à¤‚साठी सारà¥à¤µà¤œà¤¨à¤¿à¤• कळ उपलबà¥à¤§ नाही:\n" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2905,7 +2916,7 @@ msgstr "" "मी %s पॅकेजकरीता संचिका शोधणà¥à¤¯à¤¾à¤¸ समरà¥à¤¥ नवà¥à¤¹à¤¤à¥‹. याचा अरà¥à¤¥ असाकी तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ हे पॅकेज सà¥à¤µà¤¹à¤¸à¥à¤¤à¥‡ " "सà¥à¤¥à¤¿à¤°/निशà¥à¤šà¤¿à¤¤ करणà¥à¤¯à¤¾à¤šà¥€ गरज आहे(हरवलेलà¥à¤¯à¤¾ आरà¥à¤šà¤®à¥à¤³à¥‡) " -#: apt-pkg/acquire-item.cc:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2914,7 +2925,7 @@ msgstr "" "मी %s पॅकेजकरीता संचिका शोधणà¥à¤¯à¤¾à¤¸ समरà¥à¤¥ नवà¥à¤¹à¤¤à¥‹. याचा अरà¥à¤¥ असाकी तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾à¤¹à¥‡ पॅकेज सà¥à¤µà¤¹à¤¸à¥à¤¤à¥‡ " "सà¥à¤¥à¤¿à¤°/निशà¥à¤šà¤¿à¤¤ करणà¥à¤¯à¤¾à¤šà¥€ गरज आहे." -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2922,7 +2933,7 @@ msgstr "" "पॅकेज यादीची/सà¥à¤šà¥€à¤šà¥€ संचिका दूषित/खराब à¤à¤¾à¤²à¥‡à¤²à¥€ आहे. संचिका नाव नाही: पॅकेजकरीता कà¥à¤·à¥‡à¤¤à¥à¤°/" "ठिकाण %s." -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "आकार जà¥à¤³à¤¤à¤¨à¤¾à¤¹à¥€" @@ -3045,37 +3056,37 @@ msgstr "नविन सà¥à¤¤à¥à¤°à¥‹à¤¤ सूची लिहित आहॠmsgid "Source list entries for this disc are:\n" msgstr "हà¥à¤¯à¤¾ डिसà¥à¤•/चकती करिता सà¥à¤¤à¥à¤°à¥‹à¤¤ सूचीचà¥à¤¯à¤¾ पà¥à¤°à¤µà¥‡à¤¶à¤¿à¤•à¤¾ आहेत: \n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "%i माहितीसंच लिहिले.\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i गहाळ संचिकाबरोबर %i माहिती संच लिहिले.\n" -#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i विजोड संचिकांबरोबर %i माहिती संच लिहिले\n" -#: apt-pkg/indexcopy.cc:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "%i गहाळ संचिकाबरोबर आणि %i विजोड संचिकाबरोबर %i माहिती संच लिहिले\n" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, fuzzy, c-format msgid "Skipping nonexistent file %s" msgstr "%s संरचना फाईल उघडत आहे" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, fuzzy, c-format msgid "Hash mismatch for: %s" msgstr "हॅश बेरीज जà¥à¤³à¤¤ नाही" @@ -3132,12 +3143,12 @@ msgstr "" msgid "Installing %s" msgstr "%s संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ होत आहे" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "%s संरचित होत आहे" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "%s काढून टाकत आहे" @@ -3157,92 +3168,93 @@ msgstr "" msgid "Running post-installation trigger %s" msgstr "संसà¥à¤¥à¤¾à¤ªà¤¨à¤¾-पशà¥à¤šà¤¾à¤¤ टà¥à¤°à¤¿à¤—र %s चालवत आहे" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "'%s' संचयिका गहाळ आहे" -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, fuzzy, c-format msgid "Could not open file '%s'" msgstr "%s फाईल उघडता येत नाही" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "%s तयार करित आहे" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "%s सà¥à¤Ÿà¥‡/मोकळे करीत आहे " -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "%s संरचने साठी तयार करत आहे" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "%s संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ à¤à¤¾à¤²à¥‡" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "%s ला काढून टाकणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी तयारी करत आहे" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "%s काढून टाकले" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "%s संपूरà¥à¤£ काढून टाकणà¥à¤¯à¤¾à¤šà¥€ तयारी करत आहे" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "%s संपूरà¥à¤£ काढून टाकले" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "सतà¥à¤°à¤¨à¥‹à¤‚द लिहिता येत नाही, openpty() असफल (/dev/pts आरोहित नाही?)\n" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -1,27 +1,26 @@ -# Norsk Bokmal translation of messages in APT. -# -# The file is available under Gnu Public License version 2. -# Get the license from http://www.gnu.org/licenses/gpl.txt -# Copyright: -# Lars Bahner <bahner@debian.org>, 2002-2003. -# Axel Bojer <axelb@skolelinux.no>, 2003-2004. -# Klaus Ade Johnstad <klaus@skolelinux.no>, 2004. -# Bjorn Steensrud <bjornst@powertech.no>, 2004. -# Hans Fredrik Nordhaug <hans@nordhaug.priv.no>, 2003, 2005-2009. -# +# Norsk Bokmal translation of messages in APT.
+# The file is available under Gnu Public License version 2.
+# Get the license from http://www.gnu.org/licenses/gpl.txt
+# Copyright:
+# Lars Bahner <bahner@debian.org>, 2002-2003.
+# Axel Bojer <axelb@skolelinux.no>, 2003-2004.
+# Klaus Ade Johnstad <klaus@skolelinux.no>, 2004.
+# Bjorn Steensrud <bjornst@powertech.no>, 2004.
+# Hans Fredrik Nordhaug <hans@nordhaug.priv.no>, 2003, 2005-2010.
msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" -"PO-Revision-Date: 2009-02-01 18:26+0100\n" +"POT-Creation-Date: 2010-09-28 17:23+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 Bokmal <i18n-nb@lister.ping.ui.no>\n" +"Language-Team: Norwegian BokmÃ¥l <i18n-nb@lister.ping.uio.no>\n" "Language: nb\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.9.1\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Virtaal 0.6.1\n" #: cmdline/apt-cache.cc:156 #, c-format @@ -30,12 +29,11 @@ msgstr "Pakken %s versjon %s har et uinnfridd avhengighetsforhold:\n" #: cmdline/apt-cache.cc:284 msgid "Total package names: " -msgstr "Plassmengde pakkenavn: " +msgstr "Antall pakkenavn: " #: cmdline/apt-cache.cc:286 -#, fuzzy msgid "Total package structures: " -msgstr "Plassmengde pakkenavn: " +msgstr "Antall pakkestrukturer: " #: cmdline/apt-cache.cc:326 msgid " Normal packages: " @@ -103,9 +101,8 @@ msgid "Package file %s is out of sync." msgstr "Pakkefila %s er ikke oppdatert." #: cmdline/apt-cache.cc:1273 -#, fuzzy msgid "You must give at least one search pattern" -msgstr "Du må oppgi nøyaktig ett mønster" +msgstr "Du mÃ¥ oppgi minst ett søkemønster" #: cmdline/apt-cache.cc:1429 cmdline/apt-cache.cc:1431 #: cmdline/apt-cache.cc:1508 @@ -115,7 +112,7 @@ msgstr "Fant ingen pakker" #: cmdline/apt-cache.cc:1503 apt-pkg/cacheset.cc:440 #, c-format msgid "Unable to locate package %s" -msgstr "Klarer ikke å finne pakken %s" +msgstr "Klarer ikke Ã¥ finne pakken %s" #: cmdline/apt-cache.cc:1533 msgid "Package files:" @@ -129,7 +126,7 @@ msgstr "" #. Show any packages have explicit pins #: cmdline/apt-cache.cc:1554 msgid "Pinned packages:" -msgstr "Låste pakker:" +msgstr "LÃ¥ste pakker:" #: cmdline/apt-cache.cc:1566 cmdline/apt-cache.cc:1618 msgid "(not found)" @@ -149,22 +146,21 @@ msgstr "(ingen)" #: cmdline/apt-cache.cc:1615 msgid " Package pin: " -msgstr " Pakke låst til: " +msgstr " Pakke lÃ¥st til: " #. Show the priority tables #: cmdline/apt-cache.cc:1624 msgid " Version table:" msgstr " Versjonstabell:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s for %s kompilert på %s %s\n" +msgstr "%s %s for %s kompilert pÃ¥ %s %s\n" -#: cmdline/apt-cache.cc:1739 -#, fuzzy +#: cmdline/apt-cache.cc:1745 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -203,56 +199,56 @@ msgid "" " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" msgstr "" -"Bruk: apt-cache [innstillinger] kommando\n" -" apt-cache [innstillinger] add fil1 [fil2 ...]\n" -" apt-cache [innstillinger] showpkg pakke1 [pakke2 ...]\n" -" apt-cache [innstillinger] showsrc pakke1 [pakke2 ...]\n" +"Bruk: apt-cache [valg] kommando\n" +" apt-cache [valg] add fil1 [fil2 ...]\n" +" apt-cache [valg] showpkg pakke1 [pakke2 ...]\n" +" apt-cache [valg] showsrc pakke1 [pakke2 ...]\n" "\n" -"apt-cache er et lavnivå-verktøy, som brukes til å håndtere APT sine binære\n" -"lagerfiler, og spørre dem om informasjon.\n" +"apt-cache er et lavnivÃ¥-verktøy, som brukes til Ã¥ hÃ¥ndtere APT sine binære\n" +"lagerfiler, og spørre dem om informasjon.\n" "\n" "Kommandoer:\n" " add - Legg en fil til kildelageret\n" -" gencaches - Bygg lagrene for både pakke og kildekode\n" +" gencaches - Bygg lagrene for bÃ¥de pakke og kildekode\n" " showpkg - Vis overordnet informasjon om en enkelt pakke\n" " showsrc - Vis data om kildekoden\n" " stats - Vis en enkel statistikk\n" " dump - Vis fila med liste over tilgjengelige pakker i kompakt form\n" " dumpavail - Send hele lista over tilgjengelige pakker til standard ut\n" " unmet - Vis uinnfridde avhengighetsforhold\n" -" search - Søk i pakkelista etter et regulært uttrykkr\n" +" search - Søk i pakkelista etter et regulært uttrykkr\n" " show - Vis et lesbart oppslag for pakken\n" -" depends - Vis rå informasjon om avhengighetsforholdene for pakken\n" +" showauto - Vis en liste med automatisk installerte pakker\n" +" depends - Vis rÃ¥ informasjon om avhengighetsforholdene for pakken\n" " rdepends - Vis informasjon om de reverserte avhengighetsforholdene for " "pakken\n" -" pkgnames - List alle pakkenavn på systemet\n" +" pkgnames - List alle pakkenavn pÃ¥ systemet\n" " dotty - Lag pakke-grafer for GraphViz\n" " xvcg - Lag pakke-grafer for xvcg\n" " policy - Vis regelinnstillingerr\n" "\n" -"Innstillinger:\n" +"Valg:\n" " -h Denne hjelpeteksten\n" " -p=? Pakkelageret.\n" " -s=? Kildekodelageret.\n" " -q Ikke vis framdrift.\n" -" -i Vis bare viktige avhengighetsforhold for kommandoen «unmet».\n" +" -i Vis bare viktige avhengighetsforhold for kommandoen «unmet».\n" " -c=? Les denne innstillingsfila.\n" -" -o=? Sett en vilkårlig innstilling, f.eks. -o dir::cache=/tmp\n" +" -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:77 -#, fuzzy msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Oppgi et navn for disken, eksempelvis «Debian 2.1r1 disk 1»" +msgstr "Oppgi et navn for disken, for eksempel «Debian 5.0.3 Disk 1»" #: cmdline/apt-cdrom.cc:92 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:127 -#, fuzzy, c-format +#, c-format msgid "Failed to mount '%s' to '%s'" -msgstr "Klarte ikke å endre navnet på %s til %s" +msgstr "Klarte ikke montere «%s» pÃ¥ «%s»" #: cmdline/apt-cdrom.cc:162 msgid "Repeat this process for the rest of the CDs in your set." @@ -279,7 +275,7 @@ msgid "" msgstr "" "Bruk: apt-config [innstillinger] kommando\n" "\n" -"apt-config er et enkelt verktøy til å lese APTs innstillingsfil\n" +"apt-config er et enkelt verktøy til Ã¥ lese APTs innstillingsfil\n" "\n" "Kommandoer:\n" " shell - Skallmodus\n" @@ -288,7 +284,7 @@ msgstr "" "Innstillinger:\n" " -h Denne hjelpeteksten\n" " -c=? Les denne innstillingsfila.\n" -" -o=? Sett en vilkårlig innstilling, f.eks. -o dir::cache=/tmp\n" +" -o=? Sett en vilkÃ¥rlig innstilling, f.eks. -o dir::cache=/tmp\n" #: cmdline/apt-extracttemplates.cc:98 #, c-format @@ -310,7 +306,7 @@ msgid "" msgstr "" "Bruk: apt-extracttemplates fil1 [fil2 ...]\n" "\n" -"apt-extracttemplates er et verktøy til å hente ut informasjon om " +"apt-extracttemplates er et verktøy til Ã¥ hente ut informasjon om " "innstillinger\n" "og maler fra debianpakker.\n" "\n" @@ -318,7 +314,7 @@ msgstr "" " -h Denne hjelpeteksten\n" " -t Lag en midlertidig mappe\n" " -c=? Les denne innstillingsfila.\n" -" -o=? Sett en vilkårlig innstilling, f.eks. -o dir::cache=/tmp\n" +" -o=? Sett en vilkÃ¥rlig innstilling, f.eks. -o dir::cache=/tmp\n" #: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:1171 #, c-format @@ -327,33 +323,33 @@ msgstr "Kan ikke skrive til %s" #: cmdline/apt-extracttemplates.cc:309 msgid "Cannot get debconf version. Is debconf installed?" -msgstr "Kan ikke fastslå debconf-versjonen. Er debconf installert?" +msgstr "Kan ikke fastslÃ¥ debconf-versjonen. Er debconf installert?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "Lista over pakkeutvidelser er for lang" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "Feil ved lesing av katalogen %s" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "Lista over kildeutvidelser er for lang" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "Feil ved skriving av topptekst til innholdsfila" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "Det oppsto en feil ved lesing av %s" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -395,7 +391,7 @@ msgid "" " -o=? Set an arbitrary configuration option" msgstr "" "Bruk: apt-ftparchive [innstillinger] kommando\n" -"Kommandoer: packages binærsti [overstyringsfil [sti-prefiks]]\n" +"Kommandoer: packages binærsti [overstyringsfil [sti-prefiks]]\n" " sources kildesti [overstyringsfil [sti-prefiks]]\n" " contents sti\n" " release sti\n" @@ -403,24 +399,24 @@ msgstr "" " clean config\n" "\n" "apt-ftparchive oppretter indeksfiler for debianarkiver. Mange ulike\n" -"metoder er støttet - fra helautomatiske til funksjonelle\n" +"metoder er støttet - fra helautomatiske til funksjonelle\n" "erstatninger for dpkg-scanpackages og dpkg-scansources.\n" "\n" -"apt-ftparchive oppretter «Packages»-filer fra et tre med debianpakker.\n" -"«Packages»-fila inneholder alle kontrollfeltene fra hver pakke i tillegg " +"apt-ftparchive oppretter «Packages»-filer fra et tre med debianpakker.\n" +"«Packages»-fila inneholder alle kontrollfeltene fra hver pakke i tillegg " "til\n" -"MD5-nøkkel og filstørrelse. Du kan bruke en overstyringsfil for å tvinge\n" +"MD5-nøkkel og filstørrelse. Du kan bruke en overstyringsfil for Ã¥ tvinge\n" "gjennom verdier for prioritet og kategori.\n" "\n" -"apt-ftparchive kan på samme måte opprette kildefiler fra et tre\n" +"apt-ftparchive kan pÃ¥ samme mÃ¥te opprette kildefiler fra et tre\n" "med .dsc-filer. Du kan bruke en overstyringsfil med --source-override.\n" "\n" -"Kommandoene «packages» og «sources» skal kjøres i rota av katalogtreet.\n" -"«Binærsti» skal peke til toppkatalogen for det rekursive søket, og\n" +"Kommandoene «packages» og «sources» skal kjøres i rota av katalogtreet.\n" +"«Binærsti» skal peke til toppkatalogen for det rekursive søket, og\n" "overstyringsfila skal inneholde innstillinger for overstyring.\n" "Sti-prefikset blir lagt til feltene for filnavn, dersom det er oppgitt. Her " "er\n" -"et eksempel på bruk i debianarkivet:\n" +"et eksempel pÃ¥ bruk i debianarkivet:\n" " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n" " dists/potato/main/binary-i386/Packages\n" "\n" @@ -430,49 +426,48 @@ msgstr "" " -s=? Overstyringsfil for kildekode.\n" " -q Stille.\n" " -d=? Velger om du vil bruke en mellomlagerdatabase.\n" -" --no-delink Bruk avlusingsmodus med «delinking».\n" +" --no-delink Bruk avlusingsmodus med «delinking».\n" " --contents Styrer opprettelse av innholdsfila.\n" " -c=? Les denne oppsettsfila.\n" -" -o=? Setter en vilkårlig innstilling" +" -o=? Setter en vilkÃ¥rlig innstilling" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "Ingen utvalg passet" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" -msgstr "Enkelte filer mangler i pakkegruppa «%s»" +msgstr "Enkelte filer mangler i pakkegruppa «%s»" #: ftparchive/cachedb.cc:43 #, c-format msgid "DB was corrupted, file renamed to %s.old" -msgstr "Databasen er ødelagt. Filnavnet er endret til %s.old" +msgstr "Databasen er ødelagt. Filnavnet er endret til %s.old" #: ftparchive/cachedb.cc:61 #, c-format msgid "DB is old, attempting to upgrade %s" -msgstr "Databasen er gammel, forsøker å oppgradere %s" +msgstr "Databasen er gammel, forsøker Ã¥ oppgradere %s" #: ftparchive/cachedb.cc:72 -#, fuzzy msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." msgstr "" "DB-formatet er ugyldig. Hvis du oppgraderte fra en eldre versjon av apt, " -"fjern og så gjenopprett databasen." +"fjern og sÃ¥ gjenopprett databasen." #: ftparchive/cachedb.cc:77 #, c-format msgid "Unable to open DB file %s: %s" -msgstr "Klarte ikke å åpne Databasefila %s: %s" +msgstr "Klarte ikke Ã¥ Ã¥pne Databasefila %s: %s" #: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190 #: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117 #, c-format msgid "Failed to stat %s" -msgstr "Klarte ikke å få statusen på %s" +msgstr "Klarte ikke Ã¥ fÃ¥ statusen pÃ¥ %s" #: ftparchive/cachedb.cc:242 msgid "Archive has no control record" @@ -480,17 +475,17 @@ msgstr "Arkivet har ingen kontrollpost" #: ftparchive/cachedb.cc:448 msgid "Unable to get a cursor" -msgstr "Klarte ikke å finne en peker" +msgstr "Klarte ikke Ã¥ finne en peker" #: ftparchive/writer.cc:73 #, c-format msgid "W: Unable to read directory %s\n" -msgstr "A: Klarte ikke å lese katalogen %s\n" +msgstr "A: Klarte ikke Ã¥ lese katalogen %s\n" #: ftparchive/writer.cc:78 #, c-format msgid "W: Unable to stat %s\n" -msgstr "A: Klarte ikke å få statusen på %s\n" +msgstr "A: Klarte ikke Ã¥ fÃ¥ statusen pÃ¥ %s\n" #: ftparchive/writer.cc:134 msgid "E: " @@ -507,16 +502,16 @@ msgstr "F: Det er feil ved fila" #: ftparchive/writer.cc:161 ftparchive/writer.cc:193 #, c-format msgid "Failed to resolve %s" -msgstr "Klarte ikke å slå opp %s" +msgstr "Klarte ikke Ã¥ slÃ¥ opp %s" #: ftparchive/writer.cc:174 msgid "Tree walking failed" -msgstr "Klarte ikke å finne fram i treet" +msgstr "Klarte ikke Ã¥ finne fram i treet" #: ftparchive/writer.cc:201 #, c-format msgid "Failed to open %s" -msgstr "Klarte ikke å åpne %s" +msgstr "Klarte ikke Ã¥ Ã¥pne %s" #: ftparchive/writer.cc:260 #, c-format @@ -526,22 +521,22 @@ msgstr " DeLink %s [%s]\n" #: ftparchive/writer.cc:268 #, c-format msgid "Failed to readlink %s" -msgstr "Klarte ikke å lese lenken %s" +msgstr "Klarte ikke Ã¥ lese lenken %s" #: ftparchive/writer.cc:272 #, c-format msgid "Failed to unlink %s" -msgstr "Klarte ikke å oppheve lenken %s" +msgstr "Klarte ikke Ã¥ oppheve lenken %s" #: ftparchive/writer.cc:279 #, c-format msgid "*** Failed to link %s to %s" -msgstr "*** Klarte ikke å lenke %s til %s" +msgstr "*** Klarte ikke Ã¥ lenke %s til %s" #: ftparchive/writer.cc:289 #, c-format msgid " DeLink limit of %sB hit.\n" -msgstr " DeLink-grensa på %s B er nådd.\n" +msgstr " DeLink-grensa pÃ¥ %s B er nÃ¥dd.\n" #: ftparchive/writer.cc:393 msgid "Archive had no package field" @@ -550,9 +545,9 @@ msgstr "Arkivet har ikke noe pakkefelt" #: ftparchive/writer.cc:401 ftparchive/writer.cc:688 #, c-format msgid " %s has no override entry\n" -msgstr " %s har ingen overstyringsoppføring\n" +msgstr " %s har ingen overstyringsoppføring\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s-vedlikeholderen er %s, ikke %s\n" @@ -560,12 +555,12 @@ msgstr " %s-vedlikeholderen er %s, ikke %s\n" #: ftparchive/writer.cc:698 #, c-format msgid " %s has no source override entry\n" -msgstr " %s har ingen kildeoverstyringsoppføring\n" +msgstr " %s har ingen kildeoverstyringsoppføring\n" #: ftparchive/writer.cc:702 #, c-format msgid " %s has no binary override entry either\n" -msgstr " %s har ingen binæroverstyringsoppføring heller\n" +msgstr " %s har ingen binæroverstyringsoppføring heller\n" #: ftparchive/contents.cc:321 #, c-format @@ -574,12 +569,12 @@ msgstr "Intern feil, fant ikke medlemmet %s" #: ftparchive/contents.cc:358 ftparchive/contents.cc:389 msgid "realloc - Failed to allocate memory" -msgstr "realloc - Klarte ikke å tildele minne" +msgstr "realloc - Klarte ikke Ã¥ tildele minne" #: ftparchive/override.cc:34 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" -msgstr "Klarte ikke å åpne %s" +msgstr "Klarte ikke Ã¥ Ã¥pne %s" #: ftparchive/override.cc:60 ftparchive/override.cc:166 #, c-format @@ -599,12 +594,12 @@ msgstr "Ugyldig overstyring %s linje %lu #3" #: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" -msgstr "Klarte ikke å lese overstyringsfila %s" +msgstr "Klarte ikke Ã¥ lese overstyringsfila %s" #: ftparchive/multicompress.cc:72 #, c-format msgid "Unknown compression algorithm '%s'" -msgstr "Ukjent komprimeringsalgoritme «%s»" +msgstr "Ukjent komprimeringsalgoritme «%s»" #: ftparchive/multicompress.cc:102 #, c-format @@ -613,15 +608,15 @@ msgstr "Komprimert utdata %s trenger et komprimeringssett" #: ftparchive/multicompress.cc:169 methods/rsh.cc:91 msgid "Failed to create IPC pipe to subprocess" -msgstr "Klarte ikke å opprette IPC-rør til underprosessen" +msgstr "Klarte ikke Ã¥ opprette IPC-rør til underprosessen" #: ftparchive/multicompress.cc:195 msgid "Failed to create FILE*" -msgstr "Klarte ikke å opprette FILE*" +msgstr "Klarte ikke Ã¥ opprette FILE*" #: ftparchive/multicompress.cc:198 msgid "Failed to fork" -msgstr "Klarte ikke å forgreine prosess" +msgstr "Klarte ikke Ã¥ forgreine prosess" #: ftparchive/multicompress.cc:212 msgid "Compress child" @@ -630,15 +625,15 @@ msgstr "Komprimer barneprosess" #: ftparchive/multicompress.cc:235 #, c-format msgid "Internal error, failed to create %s" -msgstr "Intern feil, klarte ikke å opprette %s" +msgstr "Intern feil, klarte ikke Ã¥ opprette %s" #: ftparchive/multicompress.cc:286 msgid "Failed to create subprocess IPC" -msgstr "Klarte ikke å opprette underprosessen IPC" +msgstr "Klarte ikke Ã¥ opprette underprosessen IPC" #: ftparchive/multicompress.cc:321 msgid "Failed to exec compressor " -msgstr "Klarte ikke å kjøre komprimeringen" +msgstr "Klarte ikke Ã¥ kjøre komprimeringen" #: ftparchive/multicompress.cc:360 msgid "decompressor" @@ -646,11 +641,11 @@ msgstr "dekomprimering" #: ftparchive/multicompress.cc:403 msgid "IO to subprocess/file failed" -msgstr "Klarte ikke å kommunisere med underprosess/fil" +msgstr "Klarte ikke Ã¥ kommunisere med underprosess/fil" #: ftparchive/multicompress.cc:455 msgid "Failed to read while computing MD5" -msgstr "Klarte ikke å lese under utregning av MD5" +msgstr "Klarte ikke Ã¥ lese under utregning av MD5" #: ftparchive/multicompress.cc:472 #, c-format @@ -660,147 +655,146 @@ msgstr "Problem ved oppheving av lenken til %s" #: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185 #, c-format msgid "Failed to rename %s to %s" -msgstr "Klarte ikke å endre navnet på %s til %s" +msgstr "Klarte ikke Ã¥ endre navnet pÃ¥ %s til %s" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "J" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" -msgstr "Kompileringsfeil i regulært uttrykk - %s" +msgstr "Kompileringsfeil i regulært uttrykk - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" -msgstr "Følgende pakker har uinnfridde avhengighetsforhold:" +msgstr "Følgende pakker har uinnfridde avhengighetsforhold:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "men %s er installert" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "men %s skal installeres" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "men lar seg ikke installere" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "men er en virtuell pakke" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "men er ikke installert" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "men skal ikke installeres" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " eller" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" -msgstr "Følgende NYE pakker vil bli installert:" +msgstr "Følgende NYE pakker vil bli installert:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" -msgstr "Følgende pakker vil bli FJERNET:" +msgstr "Følgende pakker vil bli FJERNET:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" -msgstr "Følgende pakker er holdt tilbake:" +msgstr "Følgende pakker er holdt tilbake:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" -msgstr "Følgende pakker vil bli oppgradert:" +msgstr "Følgende pakker vil bli oppgradert:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" -msgstr "Følgende pakker vil bli NEDGRADERT:" +msgstr "Følgende pakker vil bli NEDGRADERT:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" -msgstr "Følgende pakker vil bli endret:" +msgstr "Følgende pakker vil bli endret:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (pga. %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" msgstr "" -"ADVARSEL: Følgende essensielle pakker vil bli fjernet.\n" -"Dette bør IKKE gjøres, med mindre du vet nøyaktig hva du gjør!" +"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!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu oppgraderte, %lu nylig installerte, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " -msgstr "%lu installert på nytt, " +msgstr "%lu installert pÃ¥ nytt, " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu nedgraderte, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu å fjerne og %lu ikke oppgradert.\n" +msgstr "%lu Ã¥ fjerne og %lu ikke oppgradert.\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu pakker ikke fullt installert eller fjernet.\n" -#: cmdline/apt-get.cc:634 -#, fuzzy, c-format +#: cmdline/apt-get.cc:635 +#, c-format msgid "Note, selecting '%s' for task '%s'\n" -msgstr "Merk, velger %s istedenfor det regulære uttrykket «%s»\n" +msgstr "Merk, velger «%s» for oppgaven «%s»\n" -#: cmdline/apt-get.cc:640 -#, fuzzy, c-format +#: cmdline/apt-get.cc:641 +#, c-format msgid "Note, selecting '%s' for regex '%s'\n" -msgstr "Merk, velger %s istedenfor det regulære uttrykket «%s»\n" +msgstr "Merk, velger «%s» for det regulære uttrykket «%s»\n" -#: cmdline/apt-get.cc:647 -#, fuzzy, c-format +#: cmdline/apt-get.cc:648 +#, c-format msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Utvalgt versjon %s (%s) for %s\n" +msgstr "Utvalgt versjon «%s» (%s) for «%s»\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "Pakken %s er en virtuell pakke, som oppfylt av:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [Installert]" -#: cmdline/apt-get.cc:677 -#, fuzzy +#: cmdline/apt-get.cc:678 msgid " [Not candidate version]" -msgstr "Versjons-kandidater" +msgstr " [Ikke versjonskandidat]" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." -msgstr "Du må velge en pakke som skal installeres." +msgstr "Du mÃ¥ velge en pakke som skal installeres." -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -808,224 +802,228 @@ msgid "" "is only available from another source\n" msgstr "" "Pakken %s er ikke tilgjengelig, men en annen pakke henviser til den.\n" -"Dette kan bety at pakken mangler, er utgått, eller bare finnes \n" +"Dette kan bety at pakken mangler, er utgÃ¥tt, eller bare finnes \n" "tilgjengelig fra en annen kilde.\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" -msgstr "Følgende pakker erstatter den imidlertid:" +msgstr "Følgende pakker erstatter den imidlertid:" -#: cmdline/apt-get.cc:712 -#, fuzzy, c-format +#: cmdline/apt-get.cc:713 +#, c-format msgid "Package '%s' has no installation candidate" -msgstr "Pakken %s har ingen installasjonskandidat" +msgstr "Pakken «%s» har ingen installasjonskandidat" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" -msgstr "" +msgstr "Virtuelle pakker som «%s» kan ikke fjernes\n" -#: cmdline/apt-get.cc:754 -#, fuzzy, c-format +#: cmdline/apt-get.cc:755 +#, c-format msgid "Note, selecting '%s' instead of '%s'\n" -msgstr "Merk, velger %s istedenfor %s\n" +msgstr "Merk, velger «%s» istedenfor «%s»\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" -"Omgår %s - den er allerede installert eller ikke satt til oppgradering.\n" +"OmgÃ¥r %s - den er allerede installert eller ikke satt til oppgradering.\n" -#: cmdline/apt-get.cc:788 -#, fuzzy, c-format +#: cmdline/apt-get.cc:789 +#, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" -"Omgår %s - den er allerede installert eller ikke satt til oppgradering.\n" +"Hopper over %s siden den ikke er installert eller kun oppgraderinger er " +"ønsket.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Det er ikke mulig å installere %s på nytt - den kan ikke nedlastes.\n" +msgstr "Det er ikke mulig Ã¥ installere %s pÃ¥ nytt - den kan ikke nedlastes.\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s er allerede nyeste versjon.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, c-format msgid "%s set to manually installed.\n" msgstr "%s satt til manuell installasjon.\n" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "Pakken %s er ikke installert, og derfor heller ikke fjernet\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." -msgstr "Retter på avhengighetsforhold ..." +msgstr "Retter pÃ¥ avhengighetsforhold ..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " mislyktes." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" -msgstr "Klarer ikke å rette på avhengighetsforholdene" +msgstr "Klarer ikke Ã¥ rette pÃ¥ avhengighetsforholdene" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" -msgstr "Klarer ikke å minimere oppgraderingsettet" +msgstr "Klarer ikke Ã¥ minimere oppgraderingsettet" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" -msgstr " Utført" +msgstr " Utført" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 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." +msgstr "Du vil kanskje kjøre «apt-get -f install» for Ã¥ rette pÃ¥ dette." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." -msgstr "Uinnfridde avhengighetsforhold - Prøv «-f»." +msgstr "Uinnfridde avhengighetsforhold - Prøv «-f»." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" -msgstr "ADVARSEL: Følgende pakker ble ikke autentisert!" +msgstr "ADVARSEL: Følgende pakker ble ikke autentisert!" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "Autentiseringsadvarsel overstyrt.\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "Installer disse pakkene uten verifikasjon [j/N]? " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "Noen pakker ble ikke autentisert" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" -msgstr "Det oppsto problemer og «-y» ble brukt uten «--force-yes»" +msgstr "Det oppsto problemer og «-y» ble brukt uten «--force-yes»" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Intern feil, InstallPackages ble kalt med ødelagte pakker!" +msgstr "Intern feil, InstallPackages ble kalt med ødelagte pakker!" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." -msgstr "Pakker trenges å fjernes, men funksjonen er slått av." +msgstr "Pakker trenges Ã¥ fjernes, men funksjonen er slÃ¥tt av." -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" -msgstr "Intern feil, sortering fullførte ikke" - -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "Kan ikke lese kildlista." +msgstr "Intern feil, sortering fullførte ikke" -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 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 " +"SÃ¥ rart ... Størrelsene stemmer ikke overens, send en e-post til " "apt@packages.debian.org" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" -msgstr "Må hente %sB/%sB med arkiver.\n" +msgstr "MÃ¥ hente %sB/%sB med arkiver.\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" -msgstr "Må hente %sB med arkiver.\n" +msgstr "MÃ¥ hente %sB med arkiver.\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, 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" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Etter denne operasjonen vil %sB diskplass bli ledig.\n" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "Klarte ikke bestemme ledig plass i %s" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "Dessverre, ikke nok ledig plass i %s" -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" -"«Bare trivielle endringer» ble angitt, men dette er ikke en triviell endring." +"«Bare trivielle endringer» ble angitt, men dette er ikke en triviell endring." -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" -msgstr "Ja, gjør som jeg sier!" +msgstr "Ja, gjør som jeg sier!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" "To continue type in the phrase '%s'\n" " ?] " msgstr "" -"Du er iferd med å utføre en mulig skadelig handling.\n" -"For å fortsette skriv inn teksten «%s»\n" +"Du er iferd med Ã¥ utføre en mulig skadelig handling.\n" +"For Ã¥ fortsette skriv inn teksten «%s»\n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "Avbryter." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "Vil du fortsette [Y/n]? " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" -msgstr "Klarte ikke å skaffe %s %s\n" +msgstr "Klarte ikke Ã¥ skaffe %s %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" -msgstr "Noen av filene kunne ikke lastes ned" +msgstr "Klarte ikke laste ned alle filene" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" -msgstr "Nedlasting fullført med innstillinga «bare nedlasting»" +msgstr "Nedlasting fullført med innstillinga «bare nedlasting»" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" msgstr "" -"Klarte ikke å hente alle arkivene. Du kan prøve med «apt-get update» eller " -"«--fix-missing»." +"Klarte ikke Ã¥ hente alle arkivene. Du kan prøve med «apt-get update» eller " +"«--fix-missing»." -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" -msgstr "«--fix-missing» og bytte av media støttes nå ikke" +msgstr "«--fix-missing» og bytte av media støttes nÃ¥ ikke" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." -msgstr "Klarer ikke å rette på manglende pakker." +msgstr "Klarer ikke Ã¥ rette pÃ¥ manglende pakker." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." -msgstr "Avbryter istallasjonen." +msgstr "Avbryter installasjonen." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1033,68 +1031,69 @@ msgid_plural "" "The following packages disappeared from your system as\n" "all files have been overwritten by other packages:" msgstr[0] "" +"Den følgende pakken forsvant fra systemet ditt siden\n" +"alle filene er overskrevet av andre pakker:" msgstr[1] "" +"De følgende pakkene forsvant fra systemet ditt siden\n" +"alle filene er overskrevet av andre pakker:" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." -msgstr "" +msgstr "Merk: Dette er gjort automatisk og med hensikt av dpkg." -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" -msgstr "" +msgstr "Ignorer utilgjengelig mÃ¥lutgave «%s» av pakke «%s»" -#: cmdline/apt-get.cc:1486 -#, fuzzy, c-format +#: cmdline/apt-get.cc:1498 +#, c-format msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Kunne ikke finne informasjon om %s - lista over kildekodepakker" +msgstr "Velger «%s» som kildepakke istedenfor «%s»\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" -msgstr "" +msgstr "Ignorer utilgjengelig versjon «%s» av pakke «%s»" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "Oppdaterings-kommandoen tar ingen argumenter" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Vi skal ikke slette ting, kan ikke starte auto-fjerner (AutoRemover)" -#: cmdline/apt-get.cc:1653 -#, fuzzy +#: cmdline/apt-get.cc:1666 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" "The following packages were automatically installed and are no longer " "required:" msgstr[0] "" -"Følgende pakker ble automatisk installert og er ikke lenger påkrevet:" +"Følgende pakke ble automatisk installert og er ikke lenger pÃ¥krevet:" msgstr[1] "" -"Følgende pakker ble automatisk installert og er ikke lenger påkrevet:" +"Følgende pakker ble automatisk installert og er ikke lenger pÃ¥krevet:" -#: cmdline/apt-get.cc:1657 -#, fuzzy, c-format +#: cmdline/apt-get.cc:1670 +#, 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] "" -"Følgende pakker ble automatisk installert og er ikke lenger påkrevet:" -msgstr[1] "" -"Følgende pakker ble automatisk installert og er ikke lenger påkrevet:" +msgstr[0] "%lu pakke ble automatisk installert og er ikke lenger pÃ¥krevet.\n" +msgstr[1] "%lu pakker ble automatisk installert og er ikke lenger pÃ¥krevet.\n" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." -msgstr "Bruk «apt-get autoremove» for å fjerne dem." +msgstr "Bruk «apt-get autoremove» for Ã¥ fjerne dem." -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." msgstr "" -"Hmm, det ser ut som auto-fjerneren (AutoRemover) ødela noe, og det skal\n" +"Hmm, det ser ut som auto-fjerneren (AutoRemover) ødela noe, og det skal\n" "virkelig ikke skje. Send inn en feilmelding til apt-utviklerne." #. @@ -1107,187 +1106,196 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" -msgstr "Følgende informasjon kan være til hjelp med å løse problemet:" +msgstr "Følgende informasjon kan være til hjelp med Ã¥ løse problemet:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" -msgstr "Intern feil, autofjerneren (AutoRemover) ødela noe" +msgstr "Intern feil, autofjerneren (AutoRemover) ødela noe" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" -msgstr "Intern feil - «AllUpgrade» ødela noe" +msgstr "Intern feil - «AllUpgrade» ødela noe" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 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:" +msgstr "Du vil kanskje utføre «apt-get -f install» for Ã¥ rette pÃ¥ disse:" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." msgstr "" -"Uinnfridde avhengighetsforhold. Prøv «apt-get -f install» uten pakker (eller " -"angi en løsning)." +"Uinnfridde avhengighetsforhold. Prøv «apt-get -f install» uten pakker (eller " +"angi en løsning)." -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" "distribution that some required packages have not yet been created\n" "or been moved out of Incoming." msgstr "" -"Noen pakker kunne ikke installeres. Dette kan bety at du har bedt om\n" +"Noen pakker ble ikke installeres. Dette kan bety at du har bedt om\n" "en umulig tilstand eller, hvis du bruker den ustabile utgaven av Debian,\n" -"at visse kjernepakker ennå ikke er laget eller flyttet ut av «Incoming» for\n" +"at visse kjernepakker ennÃ¥ ikke er laget eller flyttet ut av «Incoming» for\n" "distribusjonen." -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" -msgstr "Ødelagte pakker" +msgstr "Ødelagte pakker" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" -msgstr "Følgende ekstra pakker vil bli installert." +msgstr "Følgende ekstra pakker vil bli installert." -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" -msgstr "Foreslåtte pakker:" +msgstr "ForeslÃ¥tte pakker:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "Anbefalte pakker" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" -msgstr "Klarte ikke å finne pakken %s" +msgstr "Klarte ikke Ã¥ finne pakken %s" -#: cmdline/apt-get.cc:1981 -#, fuzzy, c-format +#: cmdline/apt-get.cc:1994 +#, c-format msgid "%s set to automatically installed.\n" -msgstr "%s satt til manuell installasjon.\n" +msgstr "%s satt til automatisk installasjon.\n" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "Beregner oppgradering... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "Mislyktes" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" -msgstr "Utført" +msgstr "Utført" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" -msgstr "Intern feil, problemløser ødela noe" +msgstr "Intern feil, problemløser ødela noe" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" -msgstr "Klarer ikke å låse nedlastingsmappa" +msgstr "Klarer ikke Ã¥ lÃ¥se nedlastingsmappa" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 msgid "Must specify at least one package to fetch source for" -msgstr "Du må angi minst en pakke du vil ha kildekoden til" +msgstr "Du mÃ¥ angi minst en pakke du vil ha kildekoden til" -#: cmdline/apt-get.cc:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" -msgstr "Klarer ikke å finne en kildekodepakke for %s" +msgstr "Klarer ikke Ã¥ finne en kildekodepakke for %s" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" +"MERK: «%s»-pakker blir vedlikeholdt i versjonskontrollsystemet «%s» pÃ¥:\n" +"%s\n" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" "bzr get %s\n" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" +"Bruk:\n" +"bzr get %s\n" +"for Ã¥ hente siste (muligens ikke utgitte) oppdateringer for pakken.\n" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" -msgstr "Hopper over allerede nedlastet fil «%s»\n" +msgstr "Hopper over allerede nedlastet fil «%s»\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "Du har ikke nok ledig plass i %s" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Trenger å skaffe %sB av %sB fra kildekodearkivet.\n" +msgstr "Trenger Ã¥ skaffe %sB av %sB fra kildekodearkivet.\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" -msgstr "Trenger å skaffe %sB fra kildekodearkivet.\n" +msgstr "Trenger Ã¥ skaffe %sB fra kildekodearkivet.\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "Skaffer kildekode %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." -msgstr "Klarte ikke å skaffe alle arkivene." +msgstr "Klarte ikke Ã¥ skaffe alle arkivene." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Omgår utpakking av allerede utpakket kilde i %s\n" +msgstr "OmgÃ¥r utpakking av allerede utpakket kilde i %s\n" -#: cmdline/apt-get.cc:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" -msgstr "Utpakkingskommandoen «%s» mislyktes.\n" +msgstr "Utpakkingskommandoen «%s» mislyktes.\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Sjekk om pakken «dpkg-dev» er installert.\n" +msgstr "Sjekk om pakken «dpkg-dev» er installert.\n" -#: cmdline/apt-get.cc:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" -msgstr "Byggekommandoen «%s» mislyktes.\n" +msgstr "Byggekommandoen «%s» mislyktes.\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "Barneprosessen mislyktes" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 msgid "Must specify at least one package to check builddeps for" -msgstr "Du må angi minst en pakke du vil sjekke «builddeps» for" +msgstr "Du mÃ¥ angi minst en pakke du vil sjekke «builddeps» for" -#: cmdline/apt-get.cc:2506 +#: cmdline/apt-get.cc:2524 #, c-format msgid "Unable to get build-dependency information for %s" -msgstr "Klarer ikke å skaffe informasjon om bygge-avhengighetene for %s" +msgstr "Klarer ikke Ã¥ skaffe informasjon om bygge-avhengighetene for %s" -#: cmdline/apt-get.cc:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "%s har ingen avhengigheter.\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, 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:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1296,33 +1304,32 @@ 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:2666 +#: cmdline/apt-get.cc:2684 #, 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 " +"Klarte ikke Ã¥ tilfredsstille %s avhengighet for %s: den installerte pakken " "%s er for ny" -#: cmdline/apt-get.cc:2693 +#: cmdline/apt-get.cc:2711 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Klarte ikke å tilfredsstille %s avhengighet for %s: %s" +msgstr "Klarte ikke Ã¥ tilfredsstille %s avhengighet for %s: %s" -#: cmdline/apt-get.cc:2709 +#: cmdline/apt-get.cc:2727 #, c-format msgid "Build-dependencies for %s could not be satisfied." -msgstr "Klarte ikke å tilfredstille bygg-avhengighetene for %s." +msgstr "Klarte ikke Ã¥ tilfredstille bygg-avhengighetene for %s." -#: cmdline/apt-get.cc:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" -msgstr "Klarte ikke å behandle forutsetningene for bygging" +msgstr "Klarte ikke Ã¥ behandle forutsetningene for bygging" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" -msgstr "Støttede moduler:" +msgstr "Støttede moduler:" -#: cmdline/apt-get.cc:2786 -#, fuzzy +#: cmdline/apt-get.cc:2804 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1367,54 +1374,60 @@ msgid "" "pages for more information and options.\n" " This APT has Super Cow Powers.\n" msgstr "" -"Bruk: apt-get [innstillinger] kommando\n" -" apt-get [innstillinger] install|remove pakke1 [pakke2 ...]\n" -" apt-get [innstillinger] source pakke1 [pakke2 ...]\n" +"Bruk: apt-get [valg] kommando\n" +" apt-get [valg] install|remove pakke1 [pakke2 ...]\n" +" apt-get [valg] source pakke1 [pakke2 ...]\n" "\n" "apt-get er et enkelt grensesnitt som kan brukes fra kommandolinja\n" -"for å laste ned og installere pakker. De mest brukte kommandoene \n" -"er «update» og «install».\n" +"for Ã¥ laste ned og installere pakker. De mest brukte kommandoene \n" +"er «update» og «install».\n" "\n" "Kommandoer:\n" " update - Hent nye pakkelister\n" -" upgrade - Utfør en oppgradering\n" -" install - Installér nye pakker (Pakke er «foo», ikke «foo.deb»)\n" +" upgrade - Utfør en oppgradering\n" +" install - Installér nye pakker (Pakke er «foo», ikke «foo.deb»)\n" " remove - Fjern pakker\n" " autoremove - Fjern alle automatisk ubrukte pakker\n" " purge - Fjern og rydd opp etter pakker\n" " source - Last ned kildekode fra arkivene\n" " build-dep - Sett opp bygge-forutsetninger for kildekodepakker\n" -" dist-upgrade - Oppgradér utgave, les apt-get(8)\n" -" dselect-upgrade - Følg «dselect» sine anbefalinger\n" +" dist-upgrade - Oppgradér utgave, les apt-get(8)\n" +" dselect-upgrade - Følg «dselect» sine anbefalinger\n" " clean - Slett nedlastede arkivfiler\n" " autoclean - Slett gamle nedlastede arkivfiler\n" " check - Se etter om det finnes brutte avhengigheter\n" +" markauto - Merk de oppgitte pakkene som automatisk installert\n" +" unmarkauto - Merk de oppgitte pakkene som manuelt installert\n" "\n" -"Innstillinger:\n" +"Valg:\n" " -h Denne hjelpteksten.\n" " -q Loggbar tilbakemelding - ikke vis framdrift\n" " -qq Ingen tilbakemelding - bortsett fra feilmeldinger\n" -" -d Bare nedlasting - IKKE installér eller pakk ut arkivfilene\n" +" -d Bare nedlasting - IKKE installér eller pakk ut arkivfilene\n" " -s Simulering - bare simuler kommandoen\n" -" -y Anta Ja til alle forespørsler uten å spørre\n" -" -f Prøv å fortsette hvis integritetstesten mislykkes\n" -" -m Prøv å fortsette når pakker mangler\n" +" -y Anta Ja til alle forespørsler uten Ã¥ spørre\n" +" -f Prøv Ã¥ fortsette hvis integritetstesten mislykkes\n" +" -m Prøv Ã¥ fortsette nÃ¥r pakker mangler\n" " -u Vis liste med oppgraderte pakker\n" " -b Bygg pakken etter at kildekoden er lastet ned\n" " -V Vis fullstendige versjonsnummere\n" " -c=? Les denne innstillingsfila\n" -" -o=? Sett en vilkårlig innstilling, f.eks. -o dir::cache=/tmp\n" +" -o=? Sett en vilkÃ¥rlig innstilling, f.eks. -o dir::cache=/tmp\n" "Les manualsiden apt-get(8), sources.list(5) og apt.conf(5)\n" -"for mer informasjon og flere innstillinger\n" +"for mer informasjon og flere valg.\n" " Denne APT har kraften til en Superku.\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" " Keep also in mind that locking is deactivated,\n" " so don't depend on the relevance to the real current situation!" msgstr "" +"MERK: Dette er kun en simulering.\n" +" apt-get mÃ¥ ha root-rettigheter for reell utførelse.\n" +" Husk ogsÃ¥ at lÃ¥sing er deaktivert, sÃ¥ ikke regn med \n" +" relevans i forhold til den reelle gjeldende situasjonen." #: cmdline/acqprogress.cc:55 msgid "Hit " @@ -1435,7 +1448,7 @@ msgstr "Feil " #: cmdline/acqprogress.cc:135 #, c-format msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Hentet %sB på %s (%sB/s)\n" +msgstr "Hentet %sB pÃ¥ %s (%sB/s)\n" #: cmdline/acqprogress.cc:225 #, c-format @@ -1450,12 +1463,12 @@ msgid "" "in the drive '%s' and press enter\n" msgstr "" "Bytte av media: sett inn CD-en som er merket\n" -" «%s»\n" -"i «%s» og trykk «Enter»\n" +" «%s»\n" +"i «%s» og trykk «Enter»\n" #: cmdline/apt-sortpkgs.cc:86 msgid "Unknown package record!" -msgstr "Ukjent pakkeoppføring" +msgstr "Ukjent pakkeoppføring" #: cmdline/apt-sortpkgs.cc:150 msgid "" @@ -1472,14 +1485,14 @@ msgid "" msgstr "" "Bruk: apt-sortpkgs [innstillinger] fil1 [fil2 ...]\n" "\n" -"apt-sortpkgs er et enkelt redskap til å sortere pakkefiler. Innstillingen\n" -"-s brukes til å angi hvilken filtype det er.\n" +"apt-sortpkgs er et enkelt redskap til Ã¥ sortere pakkefiler. Innstillingen\n" +"-s brukes til Ã¥ angi hvilken filtype det er.\n" "\n" "Innstillinger:\n" " -h Denne hjelpeteksten\n" " -s Bruk filsortering\n" " -c=? Les denne innstillingsfila.\n" -" -o=? Sett en vilkårlig innstilling, f.eks. -o dir::cache=/tmp\n" +" -o=? Sett en vilkÃ¥rlig innstilling, f.eks. -o dir::cache=/tmp\n" #: dselect/install:32 msgid "Bad default setting!" @@ -1488,24 +1501,22 @@ msgstr "Feil standardinnstilling!" #: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94 #: dselect/install:105 dselect/update:45 msgid "Press enter to continue." -msgstr "Trykk «Enter» og fortsett" +msgstr "Trykk «Enter» og fortsett" #: dselect/install:91 msgid "Do you want to erase any previously downloaded .deb files?" msgstr "Vil du slettet alle tidligere nedlastede .deb-filer?" -# Note to translators: The following four messages belong together. It doesn't -# matter where sentences start, but it has to fit in just these four lines, and -# at only 80 characters per line, if possible. +# Note to translators: The following four messages belong together. It doesn't
+# matter where sentences start, but it has to fit in just these four lines, and
+# at only 80 characters per line, if possible.
#: dselect/install:101 -#, fuzzy msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Feil oppsto ved utpakkinga. Setter nå opp de installerte pakkene." +msgstr "Feil oppstod ved utpakkinga. Setter nÃ¥ opp de installerte pakkene." #: dselect/install:102 -#, fuzzy msgid "will be configured. This may result in duplicate errors" -msgstr "Det kan lede til fordobling av feil eller feil forårsaket av " +msgstr "Det kan lede til fordobling av feil eller feil forÃ¥rsaket av " #: dselect/install:103 msgid "or errors caused by missing dependencies. This is OK, only the errors" @@ -1514,7 +1525,7 @@ msgstr "manglende forutsetninger. Det er greit, bare de nevnte feilene er" #: dselect/install:104 msgid "" "above this message are important. Please fix them and run [I]nstall again" -msgstr "av betydning. Sett dem i stand dem og kjør [I]nstall igjen." +msgstr "av betydning. Sett dem i stand dem og kjør [I]nstall igjen." #: dselect/update:30 msgid "Merging available information" @@ -1522,19 +1533,19 @@ msgstr "Fletter tilgjengelig informasjon" #: apt-inst/contrib/extracttar.cc:114 msgid "Failed to create pipes" -msgstr "Klarte ikke å opprette rør" +msgstr "Klarte ikke Ã¥ opprette rør" #: apt-inst/contrib/extracttar.cc:141 msgid "Failed to exec gzip " -msgstr "Klarte ikke å kjøre gzip " +msgstr "Klarte ikke Ã¥ kjøre gzip " #: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204 msgid "Corrupted archive" -msgstr "Ødelagt arkiv" +msgstr "Ødelagt arkiv" #: apt-inst/contrib/extracttar.cc:193 msgid "Tar checksum failed, archive corrupted" -msgstr "Tar-sjekksummen mislykkes, arkivet er ødelagt" +msgstr "Tar-sjekksummen mislykkes, arkivet er ødelagt" #: apt-inst/contrib/extracttar.cc:296 #, c-format @@ -1550,9 +1561,9 @@ msgid "Error reading archive member header" msgstr "Feil ved lesing av arkivmedlemshode" #: apt-inst/contrib/arfile.cc:90 -#, fuzzy, c-format +#, c-format msgid "Invalid archive member header %s" -msgstr "Ugyldig arkivmedlemshode" +msgstr "Ugyldig arkivmedlemshode %s" #: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" @@ -1564,19 +1575,19 @@ msgstr "Arkivet er for kort" #: apt-inst/contrib/arfile.cc:132 msgid "Failed to read the archive headers" -msgstr "Klarte ikke å lese arkivhodene" +msgstr "Klarte ikke Ã¥ lese arkivhodene" #: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" -msgstr "DropNode ble startet på et knutepunkt som ennå er lenket" +msgstr "DropNode ble startet pÃ¥ et knutepunkt som ennÃ¥ er lenket" #: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" -msgstr "Fant ikke nøkkelelementet." +msgstr "Fant ikke nøkkelelementet." #: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" -msgstr "Klarte ikke å tildele avledning" +msgstr "Klarte ikke Ã¥ tildele avledning" #: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" @@ -1585,7 +1596,7 @@ msgstr "Intern feil i AddDiversion" #: apt-inst/filelist.cc:477 #, c-format msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Prøver å skrive over en avledning, %s -> %s og %s/%s" +msgstr "Prøver Ã¥ skrive over en avledning, %s -> %s og %s/%s" #: apt-inst/filelist.cc:506 #, c-format @@ -1600,12 +1611,12 @@ msgstr "Dobbel oppsettsfil %s/%s" #: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49 #, c-format msgid "Failed to write file %s" -msgstr "Klarte ikke å skrive fila %s" +msgstr "Klarte ikke Ã¥ skrive fila %s" #: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100 #, c-format msgid "Failed to close file %s" -msgstr "Klarte ikke å lukke fila %s" +msgstr "Klarte ikke Ã¥ lukke fila %s" #: apt-inst/extract.cc:93 apt-inst/extract.cc:164 #, c-format @@ -1625,7 +1636,7 @@ msgstr "Katalogen %s er avledet" #: apt-inst/extract.cc:144 #, 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" +msgstr "Pakken prøver Ã¥ skrive til avledningsmÃ¥let %s/%s" #: apt-inst/extract.cc:154 apt-inst/extract.cc:297 msgid "The diversion path is too long" @@ -1656,39 +1667,39 @@ msgstr "Fila %s/%s skriver over den tilsvarende fila i pakken %s" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" -msgstr "Klarer ikke å lese %s" +msgstr "Klarer ikke Ã¥ lese %s" #: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" -msgstr "Klarte ikke å få statusen på %s" +msgstr "Klarte ikke Ã¥ fÃ¥ statusen pÃ¥ %s" #: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57 #, c-format msgid "Failed to remove %s" -msgstr "Klarte ikke å fjerne %s" +msgstr "Klarte ikke Ã¥ fjerne %s" #: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108 #, c-format msgid "Unable to create %s" -msgstr "Klarte ikke å opprette %s" +msgstr "Klarte ikke Ã¥ opprette %s" #: apt-inst/deb/dpkgdb.cc:114 #, c-format msgid "Failed to stat %sinfo" -msgstr "Klarte ikke å få statusen på %sinfo" +msgstr "Klarte ikke Ã¥ fÃ¥ statusen pÃ¥ %sinfo" #: apt-inst/deb/dpkgdb.cc:119 msgid "The info and temp directories need to be on the same filesystem" msgstr "" -"Infokatalogen og den midlertidige katalogen må være på det samme filsystemet" +"Infokatalogen og den midlertidige katalogen mÃ¥ være pÃ¥ det samme filsystemet" #: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:1070 #: apt-pkg/pkgcachegen.cc:1174 apt-pkg/pkgcachegen.cc:1180 @@ -1699,7 +1710,7 @@ msgstr "Leser pakkelister" #: apt-inst/deb/dpkgdb.cc:176 #, c-format msgid "Failed to change to the admin dir %sinfo" -msgstr "Klarte ikke å bytte til adminkatalogen %sinfo" +msgstr "Klarte ikke Ã¥ bytte til adminkatalogen %sinfo" #: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351 #: apt-inst/deb/dpkgdb.cc:444 @@ -1717,14 +1728,14 @@ msgid "" "then make it empty and immediately re-install the same version of the " "package!" msgstr "" -"Klarte ikke å åpne listefila «%sinfo/%s». Dersom du ikke kan gjenopprette " -"denne fila, bør du opprette den som en tom fil og installere den samme " -"versjonen av pakken på nytt." +"Klarte ikke Ã¥ Ã¥pne listefila «%sinfo/%s». Dersom du ikke kan gjenopprette " +"denne fila, bør du opprette den som en tom fil og installere den samme " +"versjonen av pakken pÃ¥ nytt." #: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238 #, c-format msgid "Failed reading the list file %sinfo/%s" -msgstr "Klarte ikke å lese listefila %sinfo/%s" +msgstr "Klarte ikke Ã¥ lese listefila %sinfo/%s" #: apt-inst/deb/dpkgdb.cc:262 msgid "Internal error getting a node" @@ -1733,11 +1744,11 @@ msgstr "Intern feil ved henting av node" #: apt-inst/deb/dpkgdb.cc:305 #, c-format msgid "Failed to open the diversions file %sdiversions" -msgstr "Klarte ikke å åpne avledningsfila %sdiversions" +msgstr "Klarte ikke Ã¥ Ã¥pne avledningsfila %sdiversions" #: apt-inst/deb/dpkgdb.cc:320 msgid "The diversion file is corrupted" -msgstr "Avledningsfila er ødelagt" +msgstr "Avledningsfila er ødelagt" #: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332 #: apt-inst/deb/dpkgdb.cc:337 @@ -1747,21 +1758,21 @@ msgstr "Ugyldig linje i avledningsfila: %s" #: apt-inst/deb/dpkgdb.cc:358 msgid "Internal error adding a diversion" -msgstr "Det oppsto en intern feil når avledningen ble lagt til" +msgstr "Det oppsto en intern feil nÃ¥r avledningen ble lagt til" #: apt-inst/deb/dpkgdb.cc:379 msgid "The pkg cache must be initialized first" -msgstr "Pakkelageret må klargjøres først" +msgstr "Pakkelageret mÃ¥ klargjøres først" #: apt-inst/deb/dpkgdb.cc:439 #, c-format msgid "Failed to find a Package: header, offset %lu" -msgstr "Fant ikke «Package:»-linje, offset %lu" +msgstr "Fant ikke «Package:»-linje, offset %lu" #: apt-inst/deb/dpkgdb.cc:461 #, c-format msgid "Bad ConfFile section in the status file. Offset %lu" -msgstr "Ødelagt «ConfFile»-del i statusfila. Offset %lu" +msgstr "Ødelagt «ConfFile»-del i statusfila. Offset %lu" #: apt-inst/deb/dpkgdb.cc:466 #, c-format @@ -1771,19 +1782,19 @@ msgstr "Feil ved tolking av MD5. Offset %lu" #: apt-inst/deb/debfile.cc:38 apt-inst/deb/debfile.cc:43 #, c-format msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Dette er ikke et gyldig DEB-arkiv, mangler «%s»-medlemmet" +msgstr "Dette er ikke et gyldig DEB-arkiv, mangler «%s»-medlemmet" #: apt-inst/deb/debfile.cc:50 #, c-format msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member" msgstr "" -"Dette er ikke et gyldig DEB-arkiv, det har ikke noe «%s»-, «%s»- eller «%s»-" +"Dette er ikke et gyldig DEB-arkiv, det har ikke noe «%s»-, «%s»- eller «%s»-" "medlem" #: apt-inst/deb/debfile.cc:110 #, c-format msgid "Couldn't change to %s" -msgstr "Klarte ikke å bytte til %s" +msgstr "Klarte ikke Ã¥ bytte til %s" #: apt-inst/deb/debfile.cc:140 msgid "Internal error, could not locate member" @@ -1797,39 +1808,39 @@ msgstr "Fant ingen gyldig kontrollfil" msgid "Unparsable control file" msgstr "Kontrollfila kan ikke tolkes" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" -msgstr "Klarte ikke å åpne rør for %s" +msgstr "Klarte ikke Ã¥ Ã¥pne rør for %s" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "Lesefeil fra %s-prosessen" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" -msgstr "Klarte ikke å få status" +msgstr "Klarte ikke Ã¥ fÃ¥ status" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" -msgstr "Klarte ikke å sette endringstidspunkt" +msgstr "Klarte ikke Ã¥ sette endringstidspunkt" #: methods/cdrom.cc:199 #, c-format msgid "Unable to read the cdrom database %s" -msgstr "Klarer ikke å lese CD-databasen %s" +msgstr "Klarer ikke Ã¥ lese CD-databasen %s" #: methods/cdrom.cc:208 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" msgstr "" -"Bruk «apt-cdrom» for å gjøre denne CD-plata tilgjengelig for APT. Du kan " -"ikke bruke «apt-get update» til å legge til nye CD-plater." +"Bruk «apt-cdrom» for Ã¥ gjøre denne CD-plata tilgjengelig for APT. Du kan " +"ikke bruke «apt-get update» til Ã¥ legge til nye CD-plater." #: methods/cdrom.cc:218 msgid "Wrong CD-ROM" @@ -1839,7 +1850,7 @@ msgstr "Feil CD-plate" #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "" -"Klarer ikke å avmontere CD-plata i %s. Det kan hende plata fremdeles er i " +"Klarer ikke Ã¥ avmontere CD-plata i %s. Det kan hende plata fremdeles er i " "bruk." #: methods/cdrom.cc:250 @@ -1861,16 +1872,16 @@ msgstr "Logger inn" #: methods/ftp.cc:174 msgid "Unable to determine the peer name" -msgstr "Klarte ikke å fastslå navnet på motparten" +msgstr "Klarte ikke Ã¥ fastslÃ¥ navnet pÃ¥ motparten" #: methods/ftp.cc:179 msgid "Unable to determine the local name" -msgstr "Klarte ikke å fastslå det lokale navnet" +msgstr "Klarte ikke Ã¥ fastslÃ¥ det lokale navnet" #: methods/ftp.cc:210 methods/ftp.cc:238 #, c-format msgid "The server refused the connection and said: %s" -msgstr "Tjeneren nektet oss å kople til og sa: %s" +msgstr "Tjeneren nektet oss Ã¥ kople til og sa: %s" #: methods/ftp.cc:216 #, c-format @@ -1887,13 +1898,13 @@ msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." msgstr "" -"En mellomtjener er oppgitt, men ikke noe innloggingsskript. Feltet «Acquire::" -"ftp::ProxyLogin» er tomt." +"En mellomtjener er oppgitt, men ikke noe innloggingsskript. Feltet «Acquire::" +"ftp::ProxyLogin» er tomt." #: methods/ftp.cc:271 #, c-format msgid "Login script command '%s' failed, server said: %s" -msgstr "Kommandoen «%s» i innlogginsskriptet mislykkes, tjeneren sa: %s" +msgstr "Kommandoen «%s» i innlogginsskriptet mislykkes, tjeneren sa: %s" #: methods/ftp.cc:297 #, c-format @@ -1902,59 +1913,59 @@ msgstr "TYPE mislykkes, tjeneren sa: %s" #: methods/ftp.cc:335 methods/ftp.cc:446 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" -msgstr "Tidsavbrudd på forbindelsen" +msgstr "Tidsavbrudd pÃ¥ forbindelsen" #: methods/ftp.cc:341 msgid "Server closed the connection" msgstr "Tjeneren lukket forbindelsen" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "Lesefeil" #: methods/ftp.cc:351 methods/rsh.cc:197 msgid "A response overflowed the buffer." -msgstr "Et svar oversvømte bufferen." +msgstr "Et svar oversvømte bufferen." #: methods/ftp.cc:368 methods/ftp.cc:380 msgid "Protocol corruption" -msgstr "Protokollødeleggelse" +msgstr "Protokollødeleggelse" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "Skrivefeil" #: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" -msgstr "Klarte ikke å opprette en sokkel" +msgstr "Klarte ikke Ã¥ opprette en sokkel" #: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" -msgstr "Klarte ikke å kople til datasokkelen, tidsavbrudd på forbindelsen" +msgstr "Klarte ikke Ã¥ kople til datasokkelen, tidsavbrudd pÃ¥ forbindelsen" #: methods/ftp.cc:709 msgid "Could not connect passive socket." -msgstr "Klarte ikke å koble til en passiv sokkel." +msgstr "Klarte ikke Ã¥ koble til en passiv sokkel." #: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo klarte ikke å opprette en lyttesokkel" +msgstr "getaddrinfo klarte ikke Ã¥ opprette en lyttesokkel" #: methods/ftp.cc:741 msgid "Could not bind a socket" -msgstr "Klarte ikke å binde til sokkel" +msgstr "Klarte ikke Ã¥ binde til sokkel" #: methods/ftp.cc:745 msgid "Could not listen on the socket" -msgstr "Klarte ikke å lytte til sokkel" +msgstr "Klarte ikke Ã¥ lytte til sokkel" #: methods/ftp.cc:752 msgid "Could not determine the socket's name" -msgstr "Klarte ikke å avgjøre sokkelnavnet" +msgstr "Klarte ikke Ã¥ avgjøre sokkelnavnet" #: methods/ftp.cc:784 msgid "Unable to send PORT command" -msgstr "Klarte ikke å sende PORT-kommandoen" +msgstr "Klarte ikke Ã¥ sende PORT-kommandoen" #: methods/ftp.cc:794 #, c-format @@ -1968,38 +1979,38 @@ msgstr "EPRT mislykkes, tjeneren sa: %s" #: methods/ftp.cc:823 msgid "Data socket connect timed out" -msgstr "Tidsavbrudd på tilkoblingen til datasokkelen" +msgstr "Tidsavbrudd pÃ¥ tilkoblingen til datasokkelen" #: methods/ftp.cc:830 msgid "Unable to accept connection" -msgstr "Klarte ikke å godta tilkoblingen" +msgstr "Klarte ikke Ã¥ godta tilkoblingen" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" -msgstr "Problem ved oppretting av nøkkel for fil" +msgstr "Problem ved oppretting av nøkkel for fil" #: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" -msgstr "Klarte ikke å hente fila, tjeneren sa «%s»" +msgstr "Klarte ikke Ã¥ hente fila, tjeneren sa «%s»" #: methods/ftp.cc:897 methods/rsh.cc:321 msgid "Data socket timed out" -msgstr "Tidsavbrudd på datasokkelen" +msgstr "Tidsavbrudd pÃ¥ datasokkelen" #: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" -msgstr "Dataoverføringen mislykkes, tjeneren sa «%s»" +msgstr "Dataoverføringen mislykkes, tjeneren sa «%s»" #. Get the files information #: methods/ftp.cc:1004 msgid "Query" -msgstr "Spørring" +msgstr "Spørring" #: methods/ftp.cc:1116 msgid "Unable to invoke " -msgstr "Klarte ikke å starte" +msgstr "Klarte ikke Ã¥ starte" #: methods/connect.cc:71 #, c-format @@ -2014,22 +2025,22 @@ msgstr "[IP: %s %s]" #: methods/connect.cc:89 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Klarte ikke å opprette en sokkel for %s (f=%u t=%u p=%u)" +msgstr "Klarte ikke Ã¥ opprette en sokkel for %s (f=%u t=%u p=%u)" #: methods/connect.cc:95 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Klarte ikke å starte forbindelsen til %s:%s (%s)." +msgstr "Klarte ikke Ã¥ starte forbindelsen til %s:%s (%s)." #: methods/connect.cc:103 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Klarte ikke å koble til %s:%s (%s), tidsavbrudd på forbindelsen" +msgstr "Klarte ikke Ã¥ koble til %s:%s (%s), tidsavbrudd pÃ¥ forbindelsen" #: methods/connect.cc:121 #, c-format msgid "Could not connect to %s:%s (%s)." -msgstr "Klarte ikke å koble til %s:%s (%s)." +msgstr "Klarte ikke Ã¥ koble til %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going @@ -2041,63 +2052,62 @@ msgstr "Kobler til %s" #: methods/connect.cc:168 methods/connect.cc:187 #, c-format msgid "Could not resolve '%s'" -msgstr "Klarte ikke å slå opp «%s»" +msgstr "Klarte ikke Ã¥ slÃ¥ opp «%s»" #: methods/connect.cc:193 #, c-format msgid "Temporary failure resolving '%s'" -msgstr "Midlertidig feil ved oppslag av «%s»" +msgstr "Midlertidig feil ved oppslag av «%s»" #: methods/connect.cc:196 -#, fuzzy, c-format +#, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Noe galt skjedde ved oppslag av «%s:%s» (%i)" +msgstr "Noe galt skjedde ved oppslag av «%s:%s» (%i - %s)" #: methods/connect.cc:243 -#, fuzzy, c-format +#, c-format msgid "Unable to connect to %s:%s:" -msgstr "Klarte ikke å koble til %s %s:" +msgstr "Klarte ikke koble til %s:%s:" #. TRANSLATOR: %s is the trusted keyring parts directory #: methods/gpgv.cc:71 -#, fuzzy, c-format +#, c-format msgid "No keyring installed in %s." -msgstr "Avbryter istallasjonen." +msgstr "Ingen nøkkelring installert i %s." #: methods/gpgv.cc:163 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "Intern feil: God signatur, men kunne bestemme nøkkelfingeravtrykk?!" +msgstr "Intern feil: God signatur, men kunne bestemme nøkkelfingeravtrykk?!" #: methods/gpgv.cc:168 msgid "At least one invalid signature was encountered." msgstr "Minst en ugyldig signatur ble funnet." #: methods/gpgv.cc:172 -#, fuzzy msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"Klarte ikke kjøre «%s» for å verifisere signaturen (er gpgv installert?)" +"Klarte ikke kjøre «gpgv» for Ã¥ verifisere signaturen (er gpgv installert?)" #: methods/gpgv.cc:177 msgid "Unknown error executing gpgv" -msgstr "Ukjent feil ved kjøring av gpgv" +msgstr "Ukjent feil ved kjøring av gpgv" #: methods/gpgv.cc:211 methods/gpgv.cc:218 msgid "The following signatures were invalid:\n" -msgstr "De følgende signaturene var ugyldige:\n" +msgstr "De følgende signaturene var ugyldige:\n" #: methods/gpgv.cc:225 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" msgstr "" -"De følgende signaturene kunne ikke verifiseres fordi den offentlige nøkkelen " +"De følgende signaturene kunne ikke verifiseres fordi den offentlige nøkkelen " "ikke er tilgjengelig:\n" #: methods/http.cc:385 msgid "Waiting for headers" -msgstr "Venter på hoder" +msgstr "Venter pÃ¥ hoder" #: methods/http.cc:531 #, c-format @@ -2106,95 +2116,93 @@ msgstr "Fikk en enkel hodelinje over %u tegn" #: methods/http.cc:539 msgid "Bad header line" -msgstr "Ødelagt hodelinje" +msgstr "Ødelagt hodelinje" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "HTTP-tjeneren sendte et ugyldig svarhode" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" -msgstr "HTTP-tjeneren sendte et ugyldig «Content-Length»-hode" +msgstr "HTTP-tjeneren sendte et ugyldig «Content-Length»-hode" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" -msgstr "HTTP-tjeneren sendte et ugyldig «Content-Range»-hode" +msgstr "HTTP-tjeneren sendte et ugyldig «Content-Range»-hode" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" -msgstr "Denne HTTP-tjeneren har ødelagt støtte for område" +msgstr "Denne HTTP-tjeneren har ødelagt støtte for omrÃ¥de" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "Ukjent datoformat" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "Utvalget mislykkes" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" -msgstr "Tidsavbrudd på forbindelsen" +msgstr "Tidsavbrudd pÃ¥ forbindelsen" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "Feil ved skriving til utfil" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "Feil ved skriving til fil" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "Feil ved skriving til fila" -#: methods/http.cc:894 +#: methods/http.cc:900 msgid "Error reading from server. Remote end closed connection" msgstr "Feil ved lesing fra tjeneren. Forbindelsen ble lukket i andre enden" -#: methods/http.cc:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "Feil ved lesing fra tjeneren" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 msgid "Failed to truncate file" msgstr "Klarte ikke forkorte fila %s" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" -msgstr "Ødelagte hodedata" +msgstr "Ødelagte hodedata" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "Forbindelsen mislykkes" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "Intern feil" #: apt-pkg/contrib/mmap.cc:77 msgid "Can't mmap an empty file" -msgstr "Kan ikke utføre mmap på en tom fil" +msgstr "Kan ikke utføre mmap pÃ¥ en tom fil" #: apt-pkg/contrib/mmap.cc:89 -#, fuzzy, c-format +#, c-format msgid "Couldn't duplicate file descriptor %i" -msgstr "Klarte ikke å åpne rør for %s" +msgstr "Klarte ikke duplisere fildeskriptor %i" #: apt-pkg/contrib/mmap.cc:97 apt-pkg/contrib/mmap.cc:250 #, c-format msgid "Couldn't make mmap of %lu bytes" -msgstr "Kunne ikke lage mmap av %lu bytes" +msgstr "Klarte ikke lage mmap av %lu bytes" #: apt-pkg/contrib/mmap.cc:124 -#, fuzzy msgid "Unable to close mmap" -msgstr "Klarte ikke å åpne %s" +msgstr "Klarte ikke lukke mmap" #: apt-pkg/contrib/mmap.cc:152 apt-pkg/contrib/mmap.cc:180 -#, fuzzy msgid "Unable to synchronize mmap" -msgstr "Klarte ikke å starte" +msgstr "Klarte ikke synkronisere mmap" #: apt-pkg/contrib/mmap.cc:300 #, c-format @@ -2202,8 +2210,8 @@ msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " "Current value: %lu. (man 5 apt.conf)" msgstr "" -"Dynamisk MMap gikk tom for minne. Øk størrelsen på APT::Cache-Limit. " -"Nåværende verdi: %lu. (man 5 apt.conf)" +"Dynamisk MMap gikk tom for minne. Øk størrelsen pÃ¥ APT::Cache-Limit. " +"NÃ¥værende verdi: %lu. (man 5 apt.conf)" #: apt-pkg/contrib/mmap.cc:399 #, c-format @@ -2211,35 +2219,39 @@ msgid "" "Unable to increase the size of the MMap as the limit of %lu bytes is already " "reached." msgstr "" +"Klarte ikke øke størrelsen pÃ¥ MMap-en siden grensen pÃ¥ %lu byte allerede er " +"nÃ¥dd." #: apt-pkg/contrib/mmap.cc:402 msgid "" "Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" +"Klarte ikke øke størrelsen pÃ¥ MMap-en siden automatisk voksing er deaktivert " +"av brukeren." #. d means days, h means hours, min means minutes, s means seconds #: apt-pkg/contrib/strutl.cc:371 #, c-format msgid "%lid %lih %limin %lis" -msgstr "" +msgstr "%lid %lit %lim %lis" #. h means hours, min means minutes, s means seconds #: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lih %limin %lis" -msgstr "" +msgstr "%lit %lim %lis" #. min means minutes, s means seconds #: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%limin %lis" -msgstr "" +msgstr "%lim %lis" #. s means seconds #: apt-pkg/contrib/strutl.cc:390 #, c-format msgid "%lis" -msgstr "" +msgstr "%lis" #: apt-pkg/contrib/strutl.cc:1119 #, c-format @@ -2249,12 +2261,12 @@ msgstr "Fant ikke utvalget %s" #: apt-pkg/contrib/configuration.cc:452 #, c-format msgid "Unrecognized type abbreviation: '%c'" -msgstr "Ukjent typeforkortelse: «%c»" +msgstr "Ukjent typeforkortelse: «%c»" #: apt-pkg/contrib/configuration.cc:510 #, c-format msgid "Opening configuration file %s" -msgstr "Åpner oppsettsfila %s" +msgstr "Ã…pner oppsettsfila %s" #: apt-pkg/contrib/configuration.cc:678 #, c-format @@ -2264,7 +2276,7 @@ msgstr "Syntaksfeil %s:%u: Blokka starter uten navn." #: apt-pkg/contrib/configuration.cc:697 #, c-format msgid "Syntax error %s:%u: Malformed tag" -msgstr "Syntaksfeil %s:%u: Feil på taggen" +msgstr "Syntaksfeil %s:%u: Feil pÃ¥ taggen" #: apt-pkg/contrib/configuration.cc:714 #, c-format @@ -2274,12 +2286,12 @@ msgstr "Syntaksfeil %s:%u: Ugyldige angivelser etter verdien" #: apt-pkg/contrib/configuration.cc:754 #, 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" +msgstr "Syntaksfeil %s:%u: Direktivene kan bare ligge i det øverste nivÃ¥et" #: apt-pkg/contrib/configuration.cc:761 #, c-format msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Syntaksfeil %s:%u: For mange nøstede inkluderte filer" +msgstr "Syntaksfeil %s:%u: For mange nøstede inkluderte filer" #: apt-pkg/contrib/configuration.cc:765 apt-pkg/contrib/configuration.cc:770 #, c-format @@ -2289,17 +2301,17 @@ msgstr "Syntaksfeil %s:%u: Inkludert herfra" #: apt-pkg/contrib/configuration.cc:774 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Syntaksfeil %s:%u: Direktivet «%s» er ikke støttet" +msgstr "Syntaksfeil %s:%u: Direktivet «%s» er ikke støttet" #: apt-pkg/contrib/configuration.cc:777 -#, fuzzy, c-format +#, c-format msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "Syntaksfeil %s:%u: Direktivene kan bare ligge i det øverste nivået" +msgstr "Syntaksfeil %s:%u: clear-direktivet krever et valgtre som argument" #: apt-pkg/contrib/configuration.cc:827 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Syntaksfeil %s:%u: Ugyldige angivelser på slutten av fila" +msgstr "Syntaksfeil %s:%u: Ugyldige angivelser pÃ¥ slutten av fila" #: apt-pkg/contrib/progress.cc:153 #, c-format @@ -2314,13 +2326,13 @@ msgstr "%c%s ... Ferdig" #: apt-pkg/contrib/cmndline.cc:77 #, c-format msgid "Command line option '%c' [from %s] is not known." -msgstr "Kjenner ikke kommandolinjevalget «%c» (fra %s)." +msgstr "Kjenner ikke kommandolinjevalget «%c» (fra %s)." #: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111 #: apt-pkg/contrib/cmndline.cc:119 #, c-format msgid "Command line option %s is not understood" -msgstr "Skjønner ikke kommandolinjevalget %s" +msgstr "Skjønner ikke kommandolinjevalget %s" #: apt-pkg/contrib/cmndline.cc:124 #, c-format @@ -2335,22 +2347,22 @@ msgstr "Valget %s krever et argument." #: apt-pkg/contrib/cmndline.cc:200 apt-pkg/contrib/cmndline.cc:206 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Valg %s: Angivelsen av oppsettselementet må ha en =<verdi>." +msgstr "Valg %s: Angivelsen av oppsettselementet mÃ¥ ha en =<verdi>." #: apt-pkg/contrib/cmndline.cc:236 #, c-format msgid "Option %s requires an integer argument, not '%s'" -msgstr "Valget %s må ha et heltallsargument, ikke «%s»" +msgstr "Valget %s mÃ¥ ha et heltallsargument, ikke «%s»" #: apt-pkg/contrib/cmndline.cc:267 #, c-format msgid "Option '%s' is too long" -msgstr "Valget «%s» er for langt" +msgstr "Valget «%s» er for langt" #: apt-pkg/contrib/cmndline.cc:300 #, c-format msgid "Sense %s is not understood, try true or false." -msgstr "Skjønner ikke %s. Prøv «true» eller «false»." +msgstr "Skjønner ikke %s. Prøv «true» eller «false»." #: apt-pkg/contrib/cmndline.cc:350 #, c-format @@ -2360,182 +2372,182 @@ msgstr "Ugyldig operasjon %s" #: apt-pkg/contrib/cdromutl.cc:52 #, c-format msgid "Unable to stat the mount point %s" -msgstr "Klarer ikke å fastsette monteringspunktet %s" +msgstr "Klarer ikke Ã¥ fastsette monteringspunktet %s" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" -msgstr "Klarer ikke å endre %s" +msgstr "Klarer ikke Ã¥ endre %s" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" -msgstr "Klarer ikke å få statusen på CD-spilleren" +msgstr "Klarer ikke Ã¥ fÃ¥ statusen pÃ¥ CD-spilleren" #: apt-pkg/contrib/fileutl.cc:154 #, c-format msgid "Not using locking for read only lock file %s" -msgstr "Bruker ikke låsing for den skrivebeskyttede låsefila %s" +msgstr "Bruker ikke lÃ¥sing for den skrivebeskyttede lÃ¥sefila %s" #: apt-pkg/contrib/fileutl.cc:159 #, c-format msgid "Could not open lock file %s" -msgstr "Kunne ikke åpne låsefila %s" +msgstr "Klarte ikke Ã¥pne lÃ¥sefila %s" #: apt-pkg/contrib/fileutl.cc:177 #, c-format msgid "Not using locking for nfs mounted lock file %s" -msgstr "Bruker ikke låsing på den nfs-monterte låsefila %s" +msgstr "Bruker ikke lÃ¥sing pÃ¥ den nfs-monterte lÃ¥sefila %s" #: apt-pkg/contrib/fileutl.cc:181 #, c-format msgid "Could not get lock %s" -msgstr "Får ikke låst %s" +msgstr "FÃ¥r ikke lÃ¥st %s" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" -msgstr "Ventet på %s, men den ble ikke funnet" +msgstr "Ventet pÃ¥ %s, men den ble ikke funnet" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Underprosessen %s mottok et minnefeilsignal." -#: apt-pkg/contrib/fileutl.cc:635 -#, fuzzy, c-format +#: apt-pkg/contrib/fileutl.cc:657 +#, c-format msgid "Sub-process %s received signal %u." -msgstr "Underprosessen %s mottok et minnefeilsignal." +msgstr "Underprosessen %s mottok signalet %u." -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Underprosessen %s ga en feilkode (%u)" -#: apt-pkg/contrib/fileutl.cc:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Underprosessen %s avsluttet uventet" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" -msgstr "Kunne ikke åpne fila %s" +msgstr "Klarte ikke Ã¥pne fila %s" -#: apt-pkg/contrib/fileutl.cc:714 -#, fuzzy, c-format +#: apt-pkg/contrib/fileutl.cc:745 +#, c-format msgid "Could not open file descriptor %d" -msgstr "Klarte ikke å åpne rør for %s" +msgstr "Klarte ikke Ã¥pne fildeskriptor %d" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" -msgstr "lese, har fremdeles %lu igjen å lese, men ingen igjen" +msgstr "lese, har fremdeles %lu igjen Ã¥ lese, men ingen igjen" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" -msgstr "skrive, har fremdeles %lu igjen å skrive, men klarte ikke å" +msgstr "skrive, har fremdeles %lu igjen Ã¥ skrive, men klarte ikke Ã¥" -#: apt-pkg/contrib/fileutl.cc:906 -#, fuzzy, c-format +#: apt-pkg/contrib/fileutl.cc:937 +#, c-format msgid "Problem closing the gzip file %s" -msgstr "Problem ved låsing av fila" +msgstr "Problem ved lÃ¥sing av gzip-fila %s" -#: apt-pkg/contrib/fileutl.cc:909 -#, fuzzy, c-format +#: apt-pkg/contrib/fileutl.cc:940 +#, c-format msgid "Problem closing the file %s" -msgstr "Problem ved låsing av fila" +msgstr "Problem ved lÃ¥sing av fila %s" -#: apt-pkg/contrib/fileutl.cc:914 -#, fuzzy, c-format +#: apt-pkg/contrib/fileutl.cc:945 +#, c-format msgid "Problem renaming the file %s to %s" -msgstr "Problem ved oppdatering av fila" +msgstr "Problem ved endring av navn pÃ¥ fila %s til %s" -#: apt-pkg/contrib/fileutl.cc:925 -#, fuzzy, c-format +#: apt-pkg/contrib/fileutl.cc:956 +#, c-format msgid "Problem unlinking the file %s" -msgstr "Problem ved oppheving av lenke til fila" +msgstr "Problem ved oppheving av lenke til fila %s" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "Problem ved oppdatering av fila" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "Tomt pakkelager" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" -msgstr "Pakkens lagerfil er ødelagt" +msgstr "Pakkens lagerfil er ødelagt" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "Pakkens lagerfil er av feil versjon (samvirker ikke)" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, c-format msgid "This APT does not support the versioning system '%s'" -msgstr "Denne APT støtter ikke versjonssystemet «%s»" +msgstr "Denne APT støtter ikke versjonssystemet «%s»" -#: apt-pkg/pkgcache.cc:163 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache was built for a different architecture" msgstr "Pakkelageret ble bygd for en annen arkitektur" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "Avhenger av" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "Forutsetter" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" -msgstr "Foreslår" +msgstr "ForeslÃ¥r" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "Anbefaler" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "Er i konflikt med" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "Erstatter" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "Nuller" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" -msgstr "Ødelegger" +msgstr "Ødelegger" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" -msgstr "" +msgstr "Forbedrer" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "viktig" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" -msgstr "påkrevet" +msgstr "pÃ¥krevet" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "vanlig" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "valgfri" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "tillegg" @@ -2558,82 +2570,82 @@ msgstr "Leser tilstandsinformasjon" #: apt-pkg/depcache.cc:236 #, c-format msgid "Failed to open StateFile %s" -msgstr "Klarte ikke å åpne StateFile %s" +msgstr "Klarte ikke Ã¥ Ã¥pne StateFile %s" #: apt-pkg/depcache.cc:242 #, c-format msgid "Failed to write temporary StateFile %s" -msgstr "Klarte ikke å skrive midlertidig StateFile %s" +msgstr "Klarte ikke Ã¥ skrive midlertidig StateFile %s" #: apt-pkg/depcache.cc:921 #, c-format msgid "Internal error, group '%s' has no installable pseudo package" -msgstr "" +msgstr "Intern feil, gruppe «%s» har ingen installerbar pseudo-pakke" #: apt-pkg/tagfile.cc:102 #, c-format msgid "Unable to parse package file %s (1)" -msgstr "Klarer ikke å fortolke pakkefila %s (1)" +msgstr "Klarer ikke Ã¥ fortolke pakkefila %s (1)" #: apt-pkg/tagfile.cc:189 #, c-format msgid "Unable to parse package file %s (2)" -msgstr "Klarer ikke å fortolke pakkefila %s (2)" +msgstr "Klarer ikke Ã¥ fortolke pakkefila %s (2)" #: apt-pkg/sourcelist.cc:92 -#, fuzzy, c-format +#, c-format msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Feil på %lu i kildelista %s (dist fortolking)" +msgstr "Feil pÃ¥ linje %lu i kildelista %s ([valg] ikke tolkbar)" #: apt-pkg/sourcelist.cc:95 -#, fuzzy, c-format +#, c-format msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Feil på linje %lu i kildelista %s (dist)" +msgstr "Feil pÃ¥ linje %lu i kildelista %s ([valg] for kort)" #: apt-pkg/sourcelist.cc:106 -#, fuzzy, c-format +#, c-format msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Feil på %lu i kildelista %s (dist fortolking)" +msgstr "Feil pÃ¥ linje %lu i kildelista %s ([%s] er ingen tilordning)" #: apt-pkg/sourcelist.cc:112 -#, fuzzy, c-format +#, c-format msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Feil på %lu i kildelista %s (dist fortolking)" +msgstr "Feil pÃ¥ linje %lu i kildelista %s ([%s] har ingen nøkkel)" #: apt-pkg/sourcelist.cc:115 -#, fuzzy, c-format +#, c-format msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "Feil på %lu i kildelista %s (dist fortolking)" +msgstr "Feil pÃ¥ linje %lu i kildelista %s ([%s] nøkkel %s har ingen verdi)" #: apt-pkg/sourcelist.cc:128 #, c-format msgid "Malformed line %lu in source list %s (URI)" -msgstr "Feil på linje %lu i kildelista %s (nettadresse)" +msgstr "Feil pÃ¥ linje %lu i kildelista %s (nettadresse)" #: apt-pkg/sourcelist.cc:130 #, c-format msgid "Malformed line %lu in source list %s (dist)" -msgstr "Feil på linje %lu i kildelista %s (dist)" +msgstr "Feil pÃ¥ linje %lu i kildelista %s (dist)" #: apt-pkg/sourcelist.cc:133 #, c-format msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Feil på %lu i kildelista %s (fortolkning av nettadressen)" +msgstr "Feil pÃ¥ %lu i kildelista %s (fortolkning av nettadressen)" #: apt-pkg/sourcelist.cc:139 #, c-format msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Feil på %lu i kildelista %s (Absolutt dist)" +msgstr "Feil pÃ¥ %lu i kildelista %s (Absolutt dist)" #: apt-pkg/sourcelist.cc:146 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Feil på %lu i kildelista %s (dist fortolking)" +msgstr "Feil pÃ¥ %lu i kildelista %s (dist fortolking)" #: apt-pkg/sourcelist.cc:244 #, c-format msgid "Opening %s" -msgstr "Åpner %s" +msgstr "Ã…pner %s" #: apt-pkg/sourcelist.cc:261 apt-pkg/cdrom.cc:438 #, c-format @@ -2643,19 +2655,21 @@ msgstr "Linje %u i kildelista %s er for lang" #: apt-pkg/sourcelist.cc:281 #, c-format msgid "Malformed line %u in source list %s (type)" -msgstr "Feil på %u i kildelista %s (type)" +msgstr "Feil pÃ¥ %u i kildelista %s (type)" #: apt-pkg/sourcelist.cc:285 #, 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" +msgstr "Typen «%s» er ukjent i linje %u i kildelista %s" #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" +"Klarte ikke gjennomføre umiddelbar konfigurasjon av «%s». Se man 5 apt.conf " +"under APT::Immediate-Configure for detaljer. (%d)" #: apt-pkg/packagemanager.cc:452 #, c-format @@ -2664,30 +2678,32 @@ msgid "" "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " "you really want to do it, activate the APT::Force-LoopBreak option." msgstr "" -"Den forestående installasjon må midlertidig fjerne den meget viktige pakken " -"%s pga. en konflikt/forutsettelses-løkke. Dette er ofte stygt, men hvis du " -"virkelig vil det, så bruk innstillingen APT::Force-LoopBreak." +"Den forestÃ¥ende installasjon mÃ¥ midlertidig fjerne den meget viktige pakken " +"%s pga. en konflikt/forutsettelses-løkke. Dette er ofte stygt, men hvis du " +"virkelig vil det, sÃ¥ bruk innstillingen APT::Force-LoopBreak." #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" +"Klarte ikke gjennomføre umiddelbar konfigurasjon av allerede utpakket «%s». " +"Se man 5 apt.conf under APT::Immediate-Configure for detaljer." #: apt-pkg/pkgrecords.cc:32 #, c-format msgid "Index file type '%s' is not supported" -msgstr "Oversiktsfil av typen «%s» støttes ikke" +msgstr "Oversiktsfil av typen «%s» støttes ikke" #: apt-pkg/algorithms.cc:292 #, 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." +"Pakka %s trenger Ã¥ installeres pÃ¥ nytt, men jeg finner ikke lageret for den." -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2695,41 +2711,41 @@ msgstr "" "Feil, pkgProblemResolver::Resolve skapte et brudd, det kan skyldes pakker " "som holdes tilbake." -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." -msgstr "Klarer ikke å rette problemene, noen ødelagte pakker er holdt tilbake." +msgstr "Klarer ikke Ã¥ rette problemene, noen ødelagte pakker er holdt tilbake." -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." msgstr "" -"Klarte ikke å laste ned alle oversiktfilene. De ble ignorerte, eller gamle " +"Klarte ikke Ã¥ laste ned alle oversiktfilene. De ble ignorerte, eller gamle " "ble brukt isteden. " #: apt-pkg/acquire.cc:79 -#, fuzzy, c-format +#, c-format msgid "List directory %spartial is missing." msgstr "Listemappa %spartial mangler." #: apt-pkg/acquire.cc:83 -#, fuzzy, c-format +#, c-format msgid "Archives directory %spartial is missing." msgstr "Arkivmappa %spartial mangler." #: apt-pkg/acquire.cc:91 -#, fuzzy, c-format +#, c-format msgid "Unable to lock directory %s" -msgstr "Kan ikke låse listemappa" +msgstr "Klarte ikke lÃ¥se mappa %s" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Henter fil %li av %li (%s gjenværende)" +msgstr "Henter fil %li av %li (%s gjenværende)" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "Henter fil %li av %li" @@ -2747,14 +2763,14 @@ msgstr "Metoden %s startet ikke korrekt" #: apt-pkg/acquire-worker.cc:413 #, 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." +msgstr "Sett inn disken merket «%s» i lagringsenheten «%s» og trykk Enter." -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" -msgstr "Pakkesystemet «%s» støttes ikke" +msgstr "Pakkesystemet «%s» støttes ikke" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "Klarer ikke bestemme en passende pakkesystemtype" @@ -2766,28 +2782,32 @@ msgstr "Klarer ikke finne informasjonom %s." #: apt-pkg/srcrecords.cc:44 msgid "You must put some 'source' URIs in your sources.list" msgstr "" -"Beklager, du må legge inn noen kilder (nettadresser) i din «sources.list»." +"Beklager, du mÃ¥ legge inn noen kilder (nettadresser) i din «sources.list»." #: apt-pkg/cachefile.cc:84 msgid "The package lists or status file could not be parsed or opened." -msgstr "Pakkelista eller tilstandsfila kunne ikke fortolkes eller åpnes." +msgstr "Pakkelista eller tilstandsfila kunne ikke fortolkes eller Ã¥pnes." #: apt-pkg/cachefile.cc:88 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" +"Det kan hende du vil kjøre «apt-get update» for Ã¥ rette pÃ¥ disse problemene" -#: apt-pkg/policy.cc:343 -#, fuzzy, c-format +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "Kan ikke lese kildlista." + +#: apt-pkg/policy.cc:344 +#, c-format msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Ugyldig oppslag i foretrekksfila, manglende pakkehode" +msgstr "Ugyldig oppslag i foretrekksfila %s, manglende pakkehode" -#: apt-pkg/policy.cc:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "Forsto ikke spikring av typen %s" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "Ingen prioritet (eller null) spesifisert for pin" @@ -2822,9 +2842,9 @@ msgstr "Feil oppsto under behandling av %s (NewFileVer1)" #: apt-pkg/pkgcachegen.cc:306 apt-pkg/pkgcachegen.cc:316 #: apt-pkg/pkgcachegen.cc:324 -#, fuzzy, c-format +#, c-format msgid "Error occurred while processing %s (NewVersion%d)" -msgstr "Feil oppsto under behandling av %s (NewVersion1)" +msgstr "Feil oppsto under behandling av %s (NewVersion%d)" #: apt-pkg/pkgcachegen.cc:320 #, c-format @@ -2838,19 +2858,19 @@ msgstr "Feil oppsto under behandling av %s (NewFileDesc2)" #: apt-pkg/pkgcachegen.cc:360 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." +msgstr "Jøss, du har overgÃ¥tt antallet pakkenavn denne APT klarer." #: apt-pkg/pkgcachegen.cc:363 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." +msgstr "Jøss, du har overgÃ¥tt antallet versjoner denne APT klarer." #: apt-pkg/pkgcachegen.cc:366 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." +msgstr "Jøss, du har overgÃ¥tt antallet beskrivelser denne APT klarer." #: apt-pkg/pkgcachegen.cc:369 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." +msgstr "Jøss, du har overgÃ¥tt antallet avhengighetsforhold denne APT klarer." #: apt-pkg/pkgcachegen.cc:398 #, c-format @@ -2870,7 +2890,7 @@ msgstr "Fant ikke pakken %s %s ved behandling av filkrav" #: apt-pkg/pkgcachegen.cc:982 #, c-format msgid "Couldn't stat source package list %s" -msgstr "Kunne ikke finne informasjon om %s - lista over kildekodepakker" +msgstr "Klarte ikke finne informasjon om %s - lista over kildekodepakker" #: apt-pkg/pkgcachegen.cc:1087 msgid "Collecting File Provides" @@ -2883,99 +2903,101 @@ msgstr "IO-feil ved lagring av kildekode-lager" #: apt-pkg/acquire-item.cc:136 #, c-format msgid "rename failed, %s (%s -> %s)." -msgstr "klarte ikke å endre navnet, %s (%s -> %s)." +msgstr "klarte ikke Ã¥ endre navnet, %s (%s -> %s)." #: apt-pkg/acquire-item.cc:484 msgid "MD5Sum mismatch" msgstr "Feil MD5sum" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" msgstr "Hashsummen stemmer ikke" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 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" +"Det er ingen offentlig nøkkel tilgjengelig for de følgende nøkkel-ID-ene:\n" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" -msgstr "" +msgstr "Utgavefil har utgÃ¥tt, ignorerer %s (ugyldg siden %s)" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "" +msgstr "Konflikt mellom distribusjoner: %s (forventet %s men fant %s)" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" +"En feil oppstod under signaturverifisering. Depotet er ikke oppdatert og den " +"forrige indeksfilen vil bli brukt. GPG-feil: %s: %s\n" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" -msgstr "" +msgstr "GPG-feil: %s: %s" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " "to manually fix this package. (due to missing arch)" msgstr "" -"Klarte ikke å finne en fil for pakken %s. Det kan bety at du må ordne pakken " +"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:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " "manually fix this package." msgstr "" -"Klarte ikke å finne en fil for pakken %s. Det kan bety at du må ordne denne " +"Klarte ikke Ã¥ finne en fil for pakken %s. Det kan bety at du mÃ¥ ordne denne " "pakken selv." -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, 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." +msgstr "Oversiktsfilene er ødelagte. Feltet «Filename:» mangler for pakken %s." -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" -msgstr "Feil størrelse" +msgstr "Feil størrelse" #: apt-pkg/indexrecords.cc:53 -#, fuzzy, c-format +#, c-format msgid "Unable to parse Release file %s" -msgstr "Klarer ikke å fortolke pakkefila %s (1)" +msgstr "Klarer ikke Ã¥ fortolke Release-fila %s" #: apt-pkg/indexrecords.cc:60 -#, fuzzy, c-format +#, c-format msgid "No sections in Release file %s" -msgstr "Merk, velger %s istedenfor %s\n" +msgstr "Ingen avsnitt i Release-fila %s" #: apt-pkg/indexrecords.cc:94 #, c-format msgid "No Hash entry in Release file %s" -msgstr "" +msgstr "Ingen sjekksumoppføring i Release-fila %s" #: apt-pkg/indexrecords.cc:107 -#, fuzzy, c-format +#, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Ugyldig linje i avledningsfila: %s" +msgstr "Ugyldig «Valid-Until»-oppføring i Release-fila %s" #: apt-pkg/indexrecords.cc:122 -#, fuzzy, c-format +#, c-format msgid "Invalid 'Date' entry in Release file %s" -msgstr "Klarer ikke å fortolke pakkefila %s (1)" +msgstr "Ugyldig «Date»-oppføring i Release-fila %s" #: apt-pkg/vendorlist.cc:66 #, c-format @@ -3015,7 +3037,7 @@ msgstr "Avmonterer CD-ROM\n" #: apt-pkg/cdrom.cc:600 msgid "Waiting for disc...\n" -msgstr "Venter på CD-en...\n" +msgstr "Venter pÃ¥ CD-en...\n" #. Mount the new CDROM #: apt-pkg/cdrom.cc:608 @@ -3040,15 +3062,17 @@ msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" +"Klarte ikke finne noen Package-filer. Kanskje dette ikke er en Debian Disc " +"eller du har valgt feil arkitektur?" #: apt-pkg/cdrom.cc:703 #, c-format msgid "Found label '%s'\n" -msgstr "Fant merkelapp «%s»\n" +msgstr "Fant merkelapp «%s»\n" #: apt-pkg/cdrom.cc:732 msgid "That is not a valid name, try again.\n" -msgstr "Det er ikke et gyldig navn, prøv igjen.\n" +msgstr "Det er ikke et gyldig navn, prøv igjen.\n" #: apt-pkg/cdrom.cc:748 #, c-format @@ -3057,7 +3081,7 @@ msgid "" "'%s'\n" msgstr "" "CD-en er kalt: \n" -"«%s»\n" +"«%s»\n" #: apt-pkg/cdrom.cc:752 msgid "Copying package lists..." @@ -3069,67 +3093,67 @@ msgstr "Skriver ny kildeliste\n" #: apt-pkg/cdrom.cc:787 msgid "Source list entries for this disc are:\n" -msgstr "Kildelisteoppføringer for denne CD-en er:\n" +msgstr "Kildelisteoppføringer for denne CD-en er:\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "Skrev %i poster.\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Skrev %i poster med %i manglende filer.\n" -#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Skrev %i poster med %i feile filer.\n" -#: apt-pkg/indexcopy.cc:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, 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" -#: apt-pkg/indexcopy.cc:532 -#, fuzzy, c-format +#: apt-pkg/indexcopy.cc:537 +#, c-format msgid "Skipping nonexistent file %s" -msgstr "Åpner oppsettsfila %s" +msgstr "Hopper over den ikke-eksisterende fila %s" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" -msgstr "" +msgstr "Klarte ikke finne autentiseringsoppføring for: %s" -#: apt-pkg/indexcopy.cc:544 -#, fuzzy, c-format +#: apt-pkg/indexcopy.cc:549 +#, c-format msgid "Hash mismatch for: %s" -msgstr "Hashsummen stemmer ikke" +msgstr "Hashsummen stemmer ikke for: %s" #: apt-pkg/cacheset.cc:337 #, c-format msgid "Release '%s' for '%s' was not found" -msgstr "Utgave «%s» av «%s» ble ikke funnet" +msgstr "Utgave «%s» av «%s» ble ikke funnet" #: apt-pkg/cacheset.cc:340 #, c-format msgid "Version '%s' for '%s' was not found" -msgstr "Versjon «%s» av «%s» ble ikke funnet" +msgstr "Versjon «%s» av «%s» ble ikke funnet" #: apt-pkg/cacheset.cc:447 -#, fuzzy, c-format +#, c-format msgid "Couldn't find task '%s'" -msgstr "Klarte ikke å finne oppgave %s" +msgstr "Klarte ikke Ã¥ finne oppgave «%s»" #: apt-pkg/cacheset.cc:454 -#, fuzzy, c-format +#, c-format msgid "Couldn't find any package by regex '%s'" -msgstr "Klarte ikke å finne pakken %s" +msgstr "Klarte ikke finne noen pakken med regex «%s»" #: apt-pkg/cacheset.cc:467 #, c-format msgid "Can't select versions from package '%s' as it purely virtual" -msgstr "" +msgstr "Klarte ikke velge versjoner fra pakken «%s» siden den er kun virtuell" #: apt-pkg/cacheset.cc:475 apt-pkg/cacheset.cc:483 #, c-format @@ -3137,141 +3161,156 @@ msgid "" "Can't select installed nor candidate version from package '%s' as it has " "neither of them" msgstr "" +"Klarte ikke velge installert eller kandidatversjon fra pakken «%s» siden den " +"har ingen av dem" #: apt-pkg/cacheset.cc:491 #, 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:499 #, 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:507 #, 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/deb/dpkgpm.cc:52 #, c-format msgid "Installing %s" msgstr "Installerer %s" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "Setter opp %s" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "Fjerner %s" #: apt-pkg/deb/dpkgpm.cc:55 -#, fuzzy, c-format +#, c-format msgid "Completely removing %s" -msgstr "Fjernet %s fullstendig" +msgstr "Fjerner %s fullstendig" #: apt-pkg/deb/dpkgpm.cc:56 #, c-format msgid "Noting disappearance of %s" -msgstr "" +msgstr "Legger merke til at %s forsvinner" #: apt-pkg/deb/dpkgpm.cc:57 #, c-format msgid "Running post-installation trigger %s" -msgstr "Kjører etter-installasjonsutløser %s" +msgstr "Kjører etter-installasjonsutløser %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" -msgstr "Mappa «%s» mangler" +msgstr "Mappa «%s» mangler" -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 -#, fuzzy, c-format +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 +#, c-format msgid "Could not open file '%s'" -msgstr "Kunne ikke åpne fila %s" +msgstr "Klarte ikke Ã¥pne fila «%s»" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "Forbereder %s" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "Pakker ut %s" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "Forbereder oppsett av %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "Installerte %s" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "Forbereder fjerning av %s" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "Fjernet %s" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" -msgstr "Forbereder å fullstendig slette %s" +msgstr "Forbereder Ã¥ fullstendig slette %s" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "Fjernet %s fullstendig" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "Klarte ikke skrive logg, openpty() feilet (/dev/pts ikke montert?)\n" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" -msgstr "" +msgstr "Kjører dpkg" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 msgid "No apport report written because MaxReports is reached already" -msgstr "" +msgstr "Ingen apport-rapport skrevet for MaxReports allerede er nÃ¥dd" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" -msgstr "" +msgstr "avhengighetsproblemer - lar den være uoppsatt" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" +"Ingen apport-rapport skrevet fordi feilmeldingen indikerer at den er en " +"følgefeil fra en tidligere feil." -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" +"Ingen apport-rapport skrevet fordi feilmeldingen indikerer en «full disk»-" +"feil" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" +"Ingen apport-rapport skrevet fordi feilmeldingen indikerer en «tom for " +"minne»-feil" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 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:69 #, c-format @@ -3279,11 +3318,12 @@ msgid "" "Unable to lock the administration directory (%s), is another process using " "it?" msgstr "" +"Klarte ikke lÃ¥se den administrative mappen (%s). Bruker en annen prosess den?" #: apt-pkg/deb/debsystem.cc:72 -#, fuzzy, c-format +#, c-format msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Kan ikke låse listemappa" +msgstr "Klarte ikke lÃ¥se den administrative mappen (%s). Er du root?" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a @@ -3291,23 +3331,23 @@ msgstr "Kan ikke låse listemappa" #, c-format msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" +msgstr "dpkg ble avbrutt. Du mÃ¥ kjøre «%s» manuelt for Ã¥ rette problemet," #: apt-pkg/deb/debsystem.cc:106 msgid "Not locked" -msgstr "" +msgstr "Ikke lÃ¥st" #. FIXME: fallback to a default mirror here instead #. and provide a config option to define that default #: methods/mirror.cc:200 #, c-format msgid "No mirror file '%s' found " -msgstr "" +msgstr "Ingen speilfil «%s» funnet" #: methods/mirror.cc:343 #, c-format msgid "[Mirror: %s]" -msgstr "" +msgstr "[Speil: %s]" #: methods/rred.cc:465 #, c-format @@ -3315,6 +3355,8 @@ msgid "" "Could not patch %s with mmap and with file operation usage - the patch seems " "to be corrupt." msgstr "" +"Klarte ikke rette %s med mmap og med filoperasjonbruk - programrettelsen ser " +"ut til Ã¥ være korrupt." #: methods/rred.cc:470 #, c-format @@ -3322,6 +3364,8 @@ msgid "" "Could not patch %s with mmap (but no mmap specific fail) - the patch seems " "to be corrupt." msgstr "" +"Klarte ikke rette %s med mmap (men ingen mmap-spesifikk feil) - " +"programrettelsen ser ut til Ã¥ være korrupt." #: methods/rsh.cc:329 msgid "Connection closed prematurely" @@ -3334,13 +3378,13 @@ msgstr "Forbindelsen ble uventet stengt" #~ msgstr "Feil oppsto under behandling av %s (NewVersion2)" #~ msgid "Malformed line %u in source list %s (vendor id)" -#~ msgstr "Feil på %u i kildelista %s (selgers id)" +#~ msgstr "Feil pÃ¥ %u i kildelista %s (selgers id)" #~ msgid "Couldn't access keyring: '%s'" -#~ msgstr "Klarte ikke å slå opp i nøkkelring; «%s»" +#~ msgstr "Klarte ikke Ã¥ slÃ¥ opp i nøkkelring; «%s»" #~ msgid "Could not patch file" -#~ msgstr "Kunne ikke åpne fila %s" +#~ msgstr "Kunne ikke Ã¥pne fila %s" #~ msgid " %4i %s\n" #~ msgstr " %4i %s\n" @@ -3349,7 +3393,7 @@ msgstr "Forbindelsen ble uventet stengt" #~ msgstr "%4i %s\n" #~ msgid "Processing triggers for %s" -#~ msgstr "Behandler utløsere for %s" +#~ msgstr "Behandler utløsere for %s" #~ msgid "Dynamic MMap ran out of room" #~ msgstr "Dynamisk MMap gikk tom for minne" @@ -3361,7 +3405,7 @@ msgstr "Forbindelsen ble uventet stengt" #~ msgstr "" #~ "Ettersom du bare bestilte et enkelt inngrep er det overveiende " #~ "sannsynlig\n" -#~ "at pakken helt enkelt ikke kan installeres, og du bør fylle ut en " +#~ "at pakken helt enkelt ikke kan installeres, og du bør fylle ut en " #~ "feilmelding." #~ msgid "Line %d too long (max %lu)" @@ -3400,7 +3444,7 @@ msgstr "Forbindelsen ble uventet stengt" #~ msgstr "Leser filliste" #~ msgid "Could not execute " -#~ msgstr "Får ikke låst %s" +#~ msgstr "FÃ¥r ikke lÃ¥st %s" #~ msgid "Unknown vendor ID '%s' in line %u of source list %s" -#~ msgstr "Ukjent selger ID «%s» i linje %u i kildelista %s" +#~ msgstr "Ukjent selger ID «%s» i linje %u i kildelista %s" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+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" @@ -151,14 +151,14 @@ msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ पिन:" msgid " Version table:" msgstr " संसà¥à¤•à¤°à¤£ तालिका:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, 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:1739 +#: cmdline/apt-cache.cc:1745 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -323,31 +323,31 @@ msgstr " %s मा लेखà¥à¤¨ असकà¥à¤·à¤®" msgid "Cannot get debconf version. Is debconf installed?" msgstr " debconf संसà¥à¤•à¤°à¤£ पà¥à¤°à¤¾à¤ªà¥à¤¤ गरà¥à¤¨ सकिà¤à¤¨ । के debconf सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ à¤à¤¯à¥‹ ? " -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ विसà¥à¤¤à¤¾à¤° सूचि अति लामो छ" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "डाइरेकà¥à¤Ÿà¥à¤°à¥€ %s पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ गरà¥à¤¦à¤¾ तà¥à¤°à¥à¤Ÿà¤¿" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "सà¥à¤°à¥‹à¤¤ विसà¥à¤¤à¤¾à¤° सूचि अति लामो छ" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "सामागà¥à¤°à¥€ फाइलहरà¥à¤®à¤¾ हेडर लेखà¥à¤¦à¤¾ तà¥à¤°à¥à¤Ÿà¤¿" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "सामगà¥à¤°à¥€ %sपà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ गरà¥à¤¦à¤¾ तà¥à¤°à¥à¤Ÿà¤¿" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -430,11 +430,11 @@ msgstr "" " -c=? यो कनफिगरेसन फाइल पढà¥à¤¨à¥à¤¹à¥‹à¤¸à¥\n" " -o=? à¤à¤‰à¤Ÿà¤¾ सà¥à¤µà¥‡à¤šà¥à¤›à¤¾à¤šà¤¾à¤°à¥€ कनफिगरेसन विकलà¥à¤ª सेट गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "कà¥à¤¨à¥ˆ चयनहरू मेल खाà¤à¤¨" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "केही फाइलहरू पà¥à¤¯à¤¾à¤•à¥‡à¤œ फाइल समूह `%s' मा हराइरहेको छ" @@ -544,7 +544,7 @@ msgstr "संगà¥à¤°à¤¹ संग कà¥à¤¨à¥ˆ पà¥à¤¯à¤¾à¤•à¥‡à¤œ फाठmsgid " %s has no override entry\n" msgstr " %s संग कà¥à¤¨à¥ˆ अधिलेखन पà¥à¤°à¤µà¤¿à¤·à¥à¤Ÿà¤¿ छैन\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s संà¤à¤¾à¤°à¤•à¤°à¥à¤¤à¤¾ %s हो %s होइन\n" @@ -654,79 +654,79 @@ msgstr "समसà¥à¤¯à¤¾ अनलिङà¥à¤• à¤à¤‡à¤°à¤¹à¥‡à¤› %s" msgid "Failed to rename %s to %s" msgstr " %s मा %s पà¥à¤¨:नामकरण असफल à¤à¤¯à¥‹" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "संकलन तà¥à¤°à¥à¤Ÿà¤¿ रिजेकà¥à¤¸ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "निमà¥à¤¨ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥à¤²à¥‡ निरà¥à¤à¤°à¤¤à¤¾à¤¹à¤°à¥‚ à¤à¥‡à¤Ÿà¥‡à¤¨à¤¨à¥:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "तर %s सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ à¤à¤¯à¥‹" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "तर %s सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥à¤ªà¤°à¥à¤¯à¥‹" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "तर यो सà¥à¤¥à¤¾à¤ªà¤¨à¤¾à¤¯à¥‹à¤—à¥à¤¯ छैन" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "तर यो अवासà¥à¤¤à¤µà¤¿à¤• पà¥à¤¯à¤¾à¤•à¥‡à¤œ होइन" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "तर यो सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ à¤à¤à¤¨" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "तर यो सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨ गइरहेको छैन" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr "वा" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "निमà¥à¤¨ नयाठपà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥‡à¤›à¤¨à¥:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "निमà¥à¤¨ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ हटाइनेछनà¥:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "निमà¥à¤¨ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ पछाडि राखिनेछनà¥:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "निमà¥à¤¨ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ सà¥à¤¤à¤° वृदà¥à¤§à¤¿ हà¥à¤¨à¥‡à¤›à¤¨à¥:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "निमà¥à¤¨ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ सà¥à¤¤à¤°à¤•à¤® गरिनेछनà¥:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "निमà¥à¤¨ à¤à¤‡à¤°à¤¹à¥‡à¤•à¥‹ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ परिवरà¥à¤¤à¤¨ हà¥à¤¨à¥‡à¤›à¥ˆà¤¨:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (%s कारणले) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -734,65 +734,65 @@ msgstr "" "चेतावनी: निमà¥à¤¨ आवशà¥à¤¯à¤• पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ हटाइनेछनॠ।\n" "तपाईठके गरिरहेको यकिन नà¤à¤à¤¸à¤®à¥à¤® यो काम गरिने छैन!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu सà¥à¤¤à¤° वृदà¥à¤§à¤¿ गरियो, %lu नयाठसà¥à¤¥à¤¾à¤ªà¤¨à¤¾ à¤à¤¯à¥‹, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu पà¥à¤¨: सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ गरियो, " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu सà¥à¤¤à¤° कम गरियो, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu हटाउन र %lu सà¥à¤¤à¤° वृदà¥à¤§à¤¿ गरिà¤à¤¨ ।\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu पूरà¥à¤£à¤°à¥à¤ªà¤²à¥‡ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ à¤à¤à¤¨ र हटाइà¤à¤¨ ।\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, fuzzy, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "दà¥à¤°à¤·à¥à¤Ÿà¤¬à¥à¤¯, रिजेकà¥à¤¸ '%s' को लागि %s चयन गरिदैछ\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, fuzzy, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "दà¥à¤°à¤·à¥à¤Ÿà¤¬à¥à¤¯, रिजेकà¥à¤¸ '%s' को लागि %s चयन गरिदैछ\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, fuzzy, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "%s को लागि चयन à¤à¤à¤•à¥‹ संसà¥à¤•à¤°à¤£ %s (%s)\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ %s ...दà¥à¤µà¤¾à¤°à¤¾ उपलबà¥à¤§ गराइà¤à¤•à¥‹ अवासà¥à¤¤à¤µà¤¿à¤• पà¥à¤¯à¤¾à¤•à¥‡à¤œ हो:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ à¤à¤¯à¥‹]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 #, fuzzy msgid " [Not candidate version]" msgstr "उमेदà¥à¤µà¤¾à¤° संसà¥à¤•à¤°à¤£à¤¹à¤°à¥‚" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "तपाईà¤à¤²à¥‡ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ गरà¥à¤¨ सà¥à¤ªà¤·à¥à¤Ÿ रà¥à¤ªà¤®à¤¾ à¤à¤‰à¤Ÿà¤¾ चयन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।" -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -803,164 +803,167 @@ msgstr "" "यसको मतलब पà¥à¤¯à¤¾à¤•à¥‡à¤œ हराइरहेको पà¥à¤¯à¤¾à¤•à¥‡à¤œ, बेकायम à¤à¤¯à¥‹\n" " अरà¥à¤•à¥‹ सà¥à¤°à¥‹à¤¤à¤¬à¤¾à¤Ÿ मातà¥à¤° उपलबà¥à¤§ हà¥à¤¨à¥à¤›\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "जे à¤à¤ पनि निमà¥à¤¨ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ले यसलाई बदलà¥à¤›:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, fuzzy, c-format msgid "Package '%s' has no installation candidate" msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ %s संग कà¥à¤¨à¥ˆ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ उमेदà¥à¤µà¤¾à¤° छैन" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, fuzzy, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "दà¥à¤°à¤·à¥à¤Ÿà¤¬à¥à¤¯, %s को सटà¥à¤Ÿà¤¾ %s चयन à¤à¤‡à¤°à¤¹à¥‡à¤›\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "%s फडà¥à¤•à¤¿à¤¦à¥ˆà¤›, यो पहिलà¥à¤¯à¥ˆ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ à¤à¤¯à¥‹ र सà¥à¤¤à¤°à¤µà¥ƒà¤¦à¥à¤§à¤¿ सेट à¤à¤à¤•à¥‹ छैन ।\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, fuzzy, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "%s फडà¥à¤•à¤¿à¤¦à¥ˆà¤›, यो पहिलà¥à¤¯à¥ˆ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ à¤à¤¯à¥‹ र सà¥à¤¤à¤°à¤µà¥ƒà¤¦à¥à¤§à¤¿ सेट à¤à¤à¤•à¥‹ छैन ।\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr " %s को पà¥à¤¨: सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ समà¥à¤à¤µ छैन, यो डाउनलोड हà¥à¤¨ सकà¥à¤¦à¥ˆà¤¨ ।\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s पहिलà¥à¤¯à¥ˆ नयाठसंसà¥à¤•à¤°à¤£ हो ।\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "तर %s सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥à¤ªà¤°à¥à¤¯à¥‹" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ %s सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ à¤à¤à¤¨, तà¥à¤¯à¤¸à¥ˆà¤²à¥‡ हटेन\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "निरà¥à¤à¤°à¤¤à¤¾à¤¹à¤°à¥‚ सà¥à¤§à¤¾à¤° गरिदैछ..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr "असफल à¤à¤¯à¥‹ ।" -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "निरà¥à¤à¤°à¤¤à¤¾à¤¹à¤°à¥‚ सà¥à¤§à¤¾à¤° गरà¥à¤¨ असकà¥à¤·à¤® à¤à¤¯à¥‹" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "सà¥à¤¤à¤° वृदà¥à¤§à¤¿ सेटलाई नà¥à¤¯à¥‚नतम गरà¥à¤¨ असकà¥à¤·à¤® à¤à¤¯à¥‹" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr "काम à¤à¤¯à¥‹" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "यी सà¥à¤§à¤¾à¤° गरà¥à¤¨ तपाईà¤à¤²à¥‡ 'apt-get -f install' चलाउन परà¥à¤› ।" -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "नà¤à¥‡à¤Ÿà¤¿à¤à¤•à¤¾ निरà¥à¤à¤°à¤¤à¤¾à¤¹à¤°à¥‚ । -f पà¥à¤°à¤¯à¥‹à¤— गरेर पà¥à¤°à¤¯à¤¾à¤¸ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।" -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "चेतावनी: निमà¥à¤¨ पà¥à¤¯à¤¾à¤•à¤²à¥‡à¤œà¤¹à¤°à¥‚ पà¥à¤°à¤£à¤¾à¤£à¥€à¤•à¤°à¤£ हà¥à¤¨ सकà¥à¤¦à¥ˆà¤¨! " -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "पà¥à¤°à¤®à¤¾à¤£à¤¿à¤•à¤°à¤£ चेतावनी अधिलेखन à¤à¤¯à¥‹ ।\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "यी पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ रूजू बिना सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ गरà¥à¤¨à¥à¤¹à¥à¤¨à¥à¤› [y/N]? " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "केही पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ पà¥à¤°à¤®à¤¾à¤£à¥€à¤•à¤°à¤£ हà¥à¤¨ सकà¥à¤¦à¥ˆà¤¨" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "तà¥à¤¯à¤¹à¤¾à¤ समसà¥à¤¯à¤¾à¤¹à¤°à¥‚ छनॠर हà¥à¤¨à¥à¤›à¤²à¤¾à¤ˆ जोड नगरिकन -y को पà¥à¤°à¤¯à¥‹à¤— à¤à¤¯à¥‹" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "आनà¥à¤¤à¤°à¤¿à¤• तà¥à¤°à¥à¤Ÿà¤¿, सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥à¤²à¤¾à¤ˆ à¤à¤¾à¤à¤šà¤¿à¤à¤•à¥‹ पà¥à¤¯à¤¾à¤•à¥‡à¤œ à¤à¤¨à¤¿à¤¨à¥à¤¥à¥à¤¯à¥‹!" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ हटà¥à¤¨ चाहदैछनॠतर हटाई अकà¥à¤·à¤® à¤à¤‡à¤°à¤¹à¥‡à¤› ।" -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "आनà¥à¤¤à¤°à¤¿à¤• तà¥à¤°à¥à¤Ÿà¤¿, आदेश समापà¥à¤¤ à¤à¤à¤•à¥‹ छैन" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "सà¥à¤°à¥‹à¤¤à¤¹à¤°à¥à¤•à¥‹ सूचि पढà¥à¤¨ सकिà¤à¤¨ ।" - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "कसà¥à¤¤à¥‹ नमिलेको.. साइजहरू मेल खाà¤à¤¨, apt@packages.debian.org इमेल गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "संगà¥à¤°à¤¹à¤¹à¤°à¥à¤•à¥‹ %sB/%sB पà¥à¤°à¤¾à¤ªà¥à¤¤ गरà¥à¤¨ आवशà¥à¤¯à¤• ।\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "संगà¥à¤°à¤¹à¤¹à¤°à¥à¤•à¥‹ %sB पà¥à¤°à¤¾à¤ªà¥à¤¤ गरà¥à¤¨ आवशà¥à¤¯à¤• ।\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, fuzzy, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "अनपà¥à¤¯à¤¾à¤• गरिसके पछि थप डिसà¥à¤• खाली ठाउà¤à¤•à¥‹ %sB पà¥à¤°à¤¯à¥‹à¤— हà¥à¤¨à¥‡à¤› ।\n" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, fuzzy, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "%sB अनपà¥à¤¯à¤¾à¤• गरिसके पछि डिसà¥à¤• खाली ठाउठखाली हà¥à¤¨à¥‡à¤› ।\n" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr " %s मा खाली ठाऊठनिरà¥à¤§à¤¾à¤°à¤£ गरà¥à¤¨ सकिà¤à¤¨" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "तपाईठसंग %s मा परà¥à¤¯à¤¾à¤ªà¥à¤¤ खाली ठाऊठछैन ।" -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "तà¥à¤°à¤¿à¤à¤¿à¤¯à¤² मातà¥à¤° निरà¥à¤¦à¤¿à¤·à¥à¤Ÿ गरिà¤à¤•à¥‹ छ तर यो तà¥à¤°à¤¿à¤à¤¿à¤¯à¤² सञà¥à¤šà¤¾à¤²à¤¨ होइन ।" -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "हो,मैले à¤à¤¨à¥‡ जसà¥à¤¤à¥ˆ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -971,28 +974,28 @@ msgstr "" "निरनà¥à¤¤à¤°à¤¤à¤¾ दिन '%s' वाकà¥à¤¯à¤¾à¤‚शमा टाइप गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ \n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "परितà¥à¤¯à¤¾à¤— गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।" -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "के तपाईठनिरनà¥à¤¤à¤°à¤¤à¤¾ दिन चाहनà¥à¤¹à¥à¤¨à¥à¤› [Y/n]? " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s %s तानà¥à¤¨ असफल à¤à¤¯à¥‹\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "केही फाइलहरू डाउनलोड गरà¥à¤¨ असफल à¤à¤¯à¥‹" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "डाउनलोड समापà¥à¤¤ à¤à¤¯à¥‹ र डाउनलोडमा मोड मातà¥à¤°à¥ˆ छ" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1000,19 +1003,19 @@ msgstr "" "केही संगà¥à¤°à¤¹à¤¹à¤°à¥‚ तानà¥à¤¨ असकà¥à¤·à¤® à¤à¤¯à¥‹,apt-get अदà¥à¤¯à¤¾à¤µà¤§à¤¿à¤• चलिरहेछ वा हराइरहेको --fix-संगै पà¥à¤°à¤¯à¤¾à¤¸ " "गरà¥à¤¨à¥à¤¹à¥à¤¨à¥à¤› ?" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "हराइरहेको --fix-र सà¥à¤µà¤¾à¤ª à¤à¤‡à¤°à¤¹à¥‡à¤•à¥‹ मेडिया हाल समरà¥à¤¥à¤¿à¤¤ à¤à¤‡à¤°à¤¹à¥‡à¤•à¥‹ छैन" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "हराइरहेको पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ सà¥à¤§à¤¾à¤°à¥à¤¨ असकà¥à¤·à¤® à¤à¤¯à¥‹ ।" -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ परितà¥à¤¯à¤¾à¤— गरिदैछ ।" -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1022,35 +1025,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "सà¥à¤°à¥‹à¤¤ पà¥à¤¯à¤¾à¤•à¥‡à¤œ सूची %s सà¥à¤¥à¤¿à¤° गरà¥à¤¨ सकिà¤à¤¨ " #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "अदà¥à¤¯à¤¾à¤µà¤§à¤¿à¤• आदेशले कà¥à¤¨à¥ˆ तरà¥à¤•à¤¹à¤°à¥‚ लिदैन" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1060,7 +1063,7 @@ msgid_plural "" msgstr[0] "निमà¥à¤¨ नयाठपà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥‡à¤›à¤¨à¥:" msgstr[1] "निमà¥à¤¨ नयाठपà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥‡à¤›à¤¨à¥:" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1068,11 +1071,11 @@ msgid_plural "" msgstr[0] "निमà¥à¤¨ नयाठपà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥‡à¤›à¤¨à¥:" msgstr[1] "निमà¥à¤¨ नयाठपà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥‡à¤›à¤¨à¥:" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1088,24 +1091,24 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "निमà¥à¤¨ सूचनाले अवसà¥à¤¥à¤¾à¤²à¤¾à¤ˆ हल गरà¥à¤¨ मदà¥à¤¦à¤¤ गरà¥à¤¨à¥‡à¤›: " -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "आनà¥à¤¤à¤°à¤¿à¤• तà¥à¤°à¥à¤Ÿà¤¿,समसà¥à¤¯à¤¾ हलकरà¥à¤¤à¤¾à¤²à¥‡ उतà¥à¤¤à¤® गà¥à¤£ à¤à¤¾à¤à¤šà¥à¤¯à¥‹ " -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "आनà¥à¤¤à¤°à¤¿à¤• तà¥à¤°à¥à¤Ÿà¤¿,सबै सà¥à¤¤à¤°à¤µà¥ƒà¤¦à¥à¤§à¤¿à¤²à¥‡ उतà¥à¤¤à¤® गà¥à¤£ नषà¥à¤Ÿ गरà¥à¤¦à¤›" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "तपाईठयसलाई सà¥à¤§à¤¾à¤° गरà¥à¤¨ 'apt-get -f install' चलाउन चाहनà¥à¤¹à¥à¤¨à¥à¤›:" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1113,7 +1116,7 @@ msgstr "" "नà¤à¥‡à¤Ÿà¤¿à¤à¤•à¤¾ निरà¥à¤à¤°à¤¤à¤¾à¤¹à¤°à¥‚ । पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ बिना 'apt-get -f install' पà¥à¤°à¤¯à¤¾à¤¸ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ( वा " "समाधान निरà¥à¤¦à¤¿à¤·à¥à¤Ÿ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥) ।" -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1126,69 +1129,69 @@ msgstr "" " वितरण अहिले समà¥à¤® सिरà¥à¤œà¤¨à¤¾\n" " à¤à¤à¤•à¥‹ छैन वा आवगमन विनानै सरà¥à¤¯à¥‹ ।" -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "à¤à¤¾à¤à¤šà¤¿à¤à¤•à¤¾ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "निमà¥à¤¨ अतिरिकà¥à¤¤ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥‡à¤›à¤¨à¥:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "सà¥à¤à¤¾à¤µ दिà¤à¤•à¤¾ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "सिफारिस गरिà¤à¤•à¤¾ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥‚:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ फेला पारà¥à¤¨ सकिà¤à¤¨ %s" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "तर %s सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨à¥à¤ªà¤°à¥à¤¯à¥‹" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "सà¥à¤¤à¤° वृदà¥à¤§à¤¿ गणना गरिदैछ..." -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "असफल à¤à¤¯à¥‹" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "काम à¤à¤¯à¥‹" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "आनà¥à¤¤à¤°à¤¿à¤• तà¥à¤°à¥à¤Ÿà¤¿,समसà¥à¤¯à¤¾ हलकरà¥à¤¤à¤¾à¤²à¥‡ उतà¥à¤¤à¤® गà¥à¤£ à¤à¤¾à¤à¤šà¥à¤¯à¥‹ " -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "डाउनलोड डाइरेकà¥à¤Ÿà¥à¤°à¥€ तालà¥à¤šà¤¾ मारà¥à¤¨ असकà¥à¤·à¤®" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 msgid "Must specify at least one package to fetch source for" msgstr "को लागि सà¥à¤°à¥‹à¤¤ तानà¥à¤¨ कमà¥à¤¤à¤¿à¤®à¤¾ à¤à¤‰à¤Ÿà¤¾ पà¥à¤¯à¤¾à¤•à¥‡à¤œ निरà¥à¤¦à¤¿à¤·à¥à¤Ÿ गरà¥à¤¨à¥à¤ªà¤°à¥à¤›" -#: cmdline/apt-get.cc:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "%s को लागि सà¥à¤°à¥‹à¤¤ पà¥à¤¯à¤¾à¤•à¥‡à¤œ फेला पारà¥à¤¨ असफल à¤à¤¯à¥‹" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1196,81 +1199,85 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "पहिलà¥à¤¯à¥ˆ डाउनलोड à¤à¤à¤•à¤¾ फाइलहरॠफडà¥à¤•à¤¾à¤‡à¤¦à¥ˆà¤› '%s'\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "तपाईठसंग %s मा परà¥à¤¯à¤¾à¤ªà¥à¤¤ खाली ठाऊठछैन" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "सà¥à¤°à¥‹à¤¤ संगà¥à¤°à¤¹à¤¹à¤°à¥à¤•à¥‹ %sB/%sB पà¥à¤°à¤¾à¤ªà¥à¤¤ गरà¥à¤¨ आवशà¥à¤¯à¤• छ ।\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "सà¥à¤°à¥‹à¤¤ संगà¥à¤°à¤¹à¤¹à¤°à¥à¤•à¥‹ %sB पà¥à¤°à¤¾à¤ªà¥à¤¤ गरà¥à¤¨ आवशà¥à¤¯à¤• छ ।\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "सà¥à¤°à¥‹à¤¤ फडà¥à¤•à¤¾à¤‰à¤¨à¥à¤¹à¥‹à¤¸à¥ %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "केही संगà¥à¤°à¤¹ फडà¥à¤•à¤¾à¤‰à¤¨ असफल à¤à¤¯à¥‹ ।" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr " %s मा पहिलà¥à¤¯à¥ˆ अनपà¥à¤¯à¤¾à¤• गरिà¤à¤•à¤¾ सà¥à¤°à¥‹à¤¤à¤•à¥‹ अनपà¥à¤¯à¤¾à¤• फडà¥à¤•à¤¾à¤‡à¤¦à¥ˆà¤›\n" -#: cmdline/apt-get.cc:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "अनपà¥à¤¯à¤¾à¤• आदेश '%s' असफल à¤à¤¯à¥‹ ।\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "जाà¤à¤šà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ यदि 'dpkg-dev' पà¥à¤¯à¤¾à¤•à¥‡à¤œ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ à¤à¤¯à¥‹ ।\n" -#: cmdline/apt-get.cc:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "निरà¥à¤®à¤¾à¤£ आदेश '%s' असफल à¤à¤¯à¥‹ ।\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "शाखा पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ असफल à¤à¤¯à¥‹" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 msgid "Must specify at least one package to check builddeps for" msgstr "को लागि builddeps जाà¤à¤šà¥à¤¨ कमà¥à¤¤à¤¿à¤®à¤¾ à¤à¤‰à¤Ÿà¤¾ पà¥à¤¯à¤¾à¤•à¥‡à¤œ निरà¥à¤¦à¤·à¥à¤Ÿ गरà¥à¤¨à¥à¤ªà¤°à¥à¤›" -#: cmdline/apt-get.cc:2506 +#: cmdline/apt-get.cc:2524 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "%s को लागि निरà¥à¤®à¤¾à¤£-निरà¥à¤à¤°à¤¤à¤¾ सूचना पà¥à¤°à¤¾à¤ªà¥à¤¤ गरà¥à¤¨ असकà¥à¤·à¤® à¤à¤¯à¥‹" -#: cmdline/apt-get.cc:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "%s कà¥à¤¨à¥ˆ निरà¥à¤®à¤¾à¤£à¤®à¤¾ आधारित हà¥à¤¦à¥ˆà¤¨ ।\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, 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:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1279,30 +1286,30 @@ msgstr "" "%sको लागि %s निरà¥à¤à¤°à¤¤à¤¾ सनà¥à¤¤à¥à¤·à¥à¤Ÿ हà¥à¤¨ सकेन किन à¤à¤¨à¥‡ पà¥à¤¯à¤¾à¤•à¥‡à¤œ %s को कà¥à¤¨à¥ˆ उपलबà¥à¤§ संसà¥à¤•à¤°à¤£à¤²à¥‡ संसà¥à¤•à¤°à¤£ " "आवशà¥à¤¯à¤•à¤¤à¤¾à¤¹à¤°à¥à¤²à¤¾à¤ˆ सनà¥à¤¤à¥à¤·à¥à¤Ÿ पारà¥à¤¨ सकेन " -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "%s को लागि %s निरà¥à¤à¤°à¤¤à¤¾ सनà¥à¤¤à¥à¤·à¥à¤Ÿ पारà¥à¤¨ असफल à¤à¤¯à¥‹: सà¥à¤¥à¤¾à¤ªà¤¿à¤¤ पà¥à¤¯à¤¾à¤•à¥‡à¤œ %s अति नयाठछ" -#: cmdline/apt-get.cc:2693 +#: cmdline/apt-get.cc:2711 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "%s को लागि %s निरà¥à¤à¤°à¤¤à¤¾ सनà¥à¤¤à¥à¤·à¥à¤Ÿ गरà¥à¤¨ असफल: %s" -#: cmdline/apt-get.cc:2709 +#: cmdline/apt-get.cc:2727 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "%s को लागि निरà¥à¤®à¤¾à¤£ निरà¥à¤à¤°à¤¤à¤¾à¤¹à¤°à¥‚ सनà¥à¤¤à¥à¤·à¥à¤Ÿ गरà¥à¤¨ सकिà¤à¤¨ । " -#: cmdline/apt-get.cc:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "निरà¥à¤®à¤¾à¤£ निरà¥à¤à¤°à¤¤à¤¾à¤¹à¤°à¥‚ पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ गरà¥à¤¨ असफल" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "समरà¥à¤¥à¤¿à¤¤ मोडà¥à¤¯à¥à¤²à¤¹à¤°à¥‚:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1387,7 +1394,7 @@ msgstr "" "pages हेरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।\n" " APT संग सà¥à¤ªà¤° काउ शकà¥à¤¤à¤¿à¤¹à¤°à¥‚ छ ।\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1634,10 +1641,10 @@ msgstr "फाइल %s/%s ले पà¥à¤¯à¤¾à¤•à¥‡à¤œ %s मा à¤à¤‰à¤Ÿà¤¾ à #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1771,23 +1778,23 @@ msgstr "वैध नियनà¥à¤¤à¥à¤°à¤£ फाइल सà¥à¤¥à¤¿à¤¤ गठmsgid "Unparsable control file" msgstr "पद वरà¥à¤£à¤¨ गरà¥à¤¨ नसकिने नियनà¥à¤¤à¥à¤°à¤£ फाइल" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "%s को लागि पाइप खोलà¥à¤¨ सकिà¤à¤¨" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "%s पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾à¤¬à¤¾à¤Ÿ तà¥à¤°à¥à¤Ÿà¤¿ पढà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ " -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "सà¥à¤¥à¤¿à¤° गरà¥à¤¨ असफल à¤à¤¯à¥‹" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "परिमारà¥à¤œà¤¨ समय सेट असफल à¤à¤¯à¥‹" @@ -1880,7 +1887,7 @@ msgstr "जडान समय सकियो" msgid "Server closed the connection" msgstr "सरà¥à¤à¤°à¤²à¥‡ जडान बनà¥à¤¦ गरà¥à¤¯à¥‹" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "तà¥à¤°à¥à¤Ÿà¤¿ पढà¥à¤¨à¥à¤¹à¥‹à¤¸à¥" @@ -1892,7 +1899,7 @@ msgstr "à¤à¤‰à¤Ÿà¤¾ पà¥à¤°à¤¤à¤¿à¤•à¥à¤°à¤¿à¤¯à¤¾à¤²à¥‡ बफर अधि msgid "Protocol corruption" msgstr "पà¥à¤°à¥‹à¤Ÿà¥‹à¤•à¤² दूषित" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "तà¥à¤°à¥à¤Ÿà¤¿ लेखà¥à¤¨à¥à¤¹à¥‹à¤¸à¥" @@ -1946,7 +1953,7 @@ msgstr "डेटा सकेटको जडान समय सकियो" msgid "Unable to accept connection" msgstr "जडान सà¥à¤µà¥€à¤•à¤¾à¤° गरà¥à¤¨ असकà¥à¤·à¤® à¤à¤¯à¥‹" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "समसà¥à¤¯à¤¾ दà¥à¤°à¥à¤¤à¤¾à¤¨à¥à¤µà¥‡à¤·à¤£ फाइल" @@ -2077,68 +2084,68 @@ msgstr " %u chars माथि à¤à¤•à¤² हेडर लाइन पà¥à¤°à¤¾à msgid "Bad header line" msgstr "खराब हेडर लाइन" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "HTTP सरà¥à¤à¤°à¤²à¥‡ अवैध जवाफ हेडर पठायो" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "HTTP सरà¥à¤à¤°à¤²à¥‡ अवैध सामगà¥à¤°à¥€-लमà¥à¤¬à¤¾à¤ˆ हेडर पठायो" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "HTTP सरà¥à¤à¤°à¤²à¥‡ अवैध सामगà¥à¤°à¥€-दायरा हेडर पठायो" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "HTTP सरà¥à¤à¤° संग à¤à¤¾à¤à¤šà¤¿à¤à¤•à¥‹ दायरा समरà¥à¤¥à¤¨ छ" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "अजà¥à¤žà¤¾à¤¤ मिति ढाà¤à¤šà¤¾" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "असफल चयन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "जडान समय सकियो" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "निरà¥à¤—ात फाइलमा तà¥à¤°à¥à¤Ÿà¤¿ लेखिदैछ" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "फाइलमा तà¥à¤°à¥à¤Ÿà¤¿ लेखिदैछ" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "फाइलमा तà¥à¤°à¥à¤Ÿà¤¿ लेखिदैछ" -#: methods/http.cc:894 +#: methods/http.cc:900 msgid "Error reading from server. Remote end closed connection" msgstr "सरà¥à¤à¤°à¤¬à¤¾à¤Ÿ तà¥à¤°à¥à¤Ÿà¤¿ पढिदैछ । दूर गनà¥à¤¤à¤¬à¥à¤¯ बनà¥à¤¦ जडान" -#: methods/http.cc:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "सरà¥à¤à¤°à¤¬à¤¾à¤Ÿ तà¥à¤°à¥à¤Ÿà¤¿ पढिदैछ" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 #, fuzzy msgid "Failed to truncate file" msgstr "फाइल %s लेखà¥à¤¨ असफल à¤à¤¯à¥‹" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "खराब हेडर डेटा" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "जडान असफल à¤à¤¯à¥‹" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "आनà¥à¤¤à¤°à¤¿à¤• तà¥à¤°à¥à¤Ÿà¤¿" @@ -2330,14 +2337,14 @@ msgstr "अवैध सञà¥à¤šà¤¾à¤²à¤¨ %s" msgid "Unable to stat the mount point %s" msgstr "माउनà¥à¤Ÿ बिनà¥à¤¦à¥ %s सà¥à¤¥à¤¿à¤° गरà¥à¤¨ असकà¥à¤·à¤®" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "%s मा परिवरà¥à¤¤à¤¨ गरà¥à¤¨ असकà¥à¤·à¤®" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "सिडी रोम सà¥à¤¥à¤¿à¤° गरà¥à¤¨ असफल à¤à¤¯à¥‹" @@ -2361,149 +2368,149 @@ msgstr "nfs माउनà¥à¤Ÿ गरिà¤à¤•à¥‹ लक फाइलको लà msgid "Could not get lock %s" msgstr "तालà¥à¤šà¤¾ पà¥à¤°à¤¾à¤ªà¥à¤¤ गरà¥à¤¨ सकिà¤à¤¨ %s" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr " %s को लागि परà¥à¤–िरहेको तर यो तà¥à¤¯à¤¹à¤¾à¤ छैन" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "सहायक पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ %s ले खणà¥à¤¡à¤¿à¤•à¤°à¤£ गलà¥à¤¤à¤¿ पà¥à¤°à¤¾à¤ªà¥à¤¤ à¤à¤¯à¥‹ ।" -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "सहायक पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ %s ले खणà¥à¤¡à¤¿à¤•à¤°à¤£ गलà¥à¤¤à¤¿ पà¥à¤°à¤¾à¤ªà¥à¤¤ à¤à¤¯à¥‹ ।" -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "सहायक पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ %s ले à¤à¤‰à¤Ÿà¤¾ तà¥à¤°à¥à¤Ÿà¤¿ कोड फरà¥à¤•à¤¾à¤¯à¥‹ (%u)" -#: apt-pkg/contrib/fileutl.cc:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "सहायक पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ %s अनपेकà¥à¤·à¤¿à¤¤ बनà¥à¤¦ à¤à¤¯à¥‹" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "फाइल %s खोलà¥à¤¨ सकिà¤à¤¨" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "%s को लागि पाइप खोलà¥à¤¨ सकिà¤à¤¨" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "पडà¥à¤¨à¥à¤¹à¥‹à¤¸à¥, अहिले समà¥à¤® %lu पढà¥à¤¨ छ तर कà¥à¤¨à¥ˆ बाà¤à¤•à¥€ छैन" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "लेखà¥à¤¨à¥à¤¹à¥‹à¤¸à¥, अहिले समà¥à¤® %lu लेखà¥à¤¨ छ तर सकिदैन " -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, fuzzy, c-format msgid "Problem closing the gzip file %s" msgstr "फाइल बनà¥à¤¦ गरà¥à¤¦à¤¾ समसà¥à¤¯à¤¾" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "फाइल बनà¥à¤¦ गरà¥à¤¦à¤¾ समसà¥à¤¯à¤¾" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "फाइल गà¥à¤ªà¥à¤¤à¤¿à¤•à¤°à¤£ गरà¥à¤¦à¤¾ समसà¥à¤¯à¤¾" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "फाइल अनलिङà¥à¤• गरà¥à¤¦à¤¾ समसà¥à¤¯à¤¾" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "फाइल गà¥à¤ªà¥à¤¤à¤¿à¤•à¤°à¤£ गरà¥à¤¦à¤¾ समसà¥à¤¯à¤¾" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "खाली पà¥à¤¯à¤¾à¤•à¥‡à¤œ कà¥à¤¯à¤¾à¤¸" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ कà¥à¤¯à¤¾à¤¸ फाइल दूषित à¤à¤¯à¥‹ " -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ कà¥à¤¯à¤¾à¤¸ फाइल à¤à¤‰à¤Ÿà¤¾ अमिलà¥à¤¦à¥‹ संसà¥à¤•à¤°à¤£ हो" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "यो APT ले संसà¥à¤•à¤°à¤£ पà¥à¤°à¤£à¤¾à¤²à¥€à¤²à¤¾à¤ˆ समरà¥à¤¥à¤¨ गरà¥à¤¦à¥ˆà¤¨ '%s'" -#: apt-pkg/pkgcache.cc:163 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache was built for a different architecture" msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ कà¥à¤¯à¤¾à¤¸ विà¤à¤¿à¤¨à¥à¤¨ वासà¥à¤¤à¥à¤•à¤²à¤¾à¤•à¥‹ लागि निरà¥à¤®à¤¾à¤£ à¤à¤à¤•à¥‹ हो" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "आधारित" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "पà¥à¤¨:आधारित" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "सà¥à¤à¤¾à¤µ दिनà¥à¤›" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "सिफारिस गरà¥à¤¦à¤›" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "दà¥à¤µà¤¨à¥à¤¦à¤¹à¤°à¥‚" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "बदलà¥à¤›" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "वेकायमहरू" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "महतà¥à¤µà¤ªà¥‚रà¥à¤£" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "आवशà¥à¤¯à¤•" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "मानक" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "वैकलà¥à¤ªà¤¿à¤•" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "अतिरिकà¥à¤¤" @@ -2622,7 +2629,7 @@ msgstr "सà¥à¤°à¥‹à¤¤ सूची %s à¤à¤¿à¤¤à¥à¤° %u लाइनमा ठ#: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" @@ -2640,7 +2647,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" @@ -2655,7 +2662,7 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ %s पà¥à¤¨:सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ हà¥à¤¨ चाहनà¥à¤›, तर यसको लागि मैले à¤à¤‰à¤Ÿà¤¾ संगà¥à¤°à¤¹ फेला पारà¥à¤¨ सकिन ।" -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2663,11 +2670,11 @@ msgstr "" "तà¥à¤°à¥à¤Ÿà¤¿, pkgProblemResolver:: समाधानले विचà¥à¤›à¥‡à¤¦à¤¨ सिरà¥à¤œà¤¨à¤¾ गरà¥à¤¦à¤›, यो à¤à¤‡à¤°à¤¹à¥‡à¤•à¥‹ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥à¤•à¥‹ " "कारणले गरà¥à¤¦à¤¾ हो ।" -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "समसà¥à¤¯à¤¾à¤¹à¤°à¥‚ सà¥à¤§à¤¾à¤°à¥à¤¨ असकà¥à¤·à¤® à¤à¤¯à¥‹, तपाईà¤à¤²à¥‡ पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤¹à¤°à¥ à¤à¤¾à¤à¤šà¥à¤¨à¥à¤à¤¯à¥‹ ।" -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2692,12 +2699,12 @@ msgstr "सूचि डाइरेकà¥à¤Ÿà¥à¤°à¥€ तालà¥à¤šà¤¾ मा #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "%li को %li फाइल पà¥à¤¨:पà¥à¤°à¤¾à¤ªà¥à¤¤ गरिदैछ (%s बाà¤à¤•à¥€ छ)" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "%li को %li फाइल पà¥à¤¨:पà¥à¤°à¤¾à¤ªà¥à¤¤ गरिदैछ" @@ -2717,12 +2724,12 @@ msgstr "विधि %s सही रà¥à¤ªà¤²à¥‡ सà¥à¤°à¥‚ हà¥à¤¨ सकà msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "कृपया डिसà¥à¤• लेबà¥à¤²: '%s' डà¥à¤°à¤¾à¤‡à¤ '%s'मा घà¥à¤¸à¤‰à¤¨à¥à¤¹à¥‹à¤¸à¥ र इनà¥à¤Ÿà¤° थिचà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ । " -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "पà¥à¤¯à¤¾à¤•à¤¿à¤™à¥à¤— पà¥à¤°à¤£à¤¾à¤²à¥€ '%s' समरà¥à¤¥à¤¿à¤¤ छैन" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "उपयà¥à¤•à¥à¤¤ पà¥à¤¯à¤¾à¤•à¤¿à¤™à¥à¤— पà¥à¤°à¤£à¤¾à¤²à¥€ पà¥à¤°à¤•à¤¾à¤° निरà¥à¤§à¤¾à¤°à¤¨ गरà¥à¤¨ असकà¥à¤·à¤® à¤à¤¯à¥‹" @@ -2743,17 +2750,21 @@ msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ सूचीहरू वा वसà¥à¤¤à¥à¤¸à¥ msgid "You may want to run apt-get update to correct these problems" msgstr "यो समसà¥à¤¯à¤¾à¤¹à¤°à¥‚ सà¥à¤§à¤¾à¤°à¥à¤¨ तपाईठapt-get अदà¥à¤¯à¤¾à¤µà¤§à¤¿à¤• चलाउन चाहनà¥à¤¹à¥à¤¨à¥à¤›" -#: apt-pkg/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "सà¥à¤°à¥‹à¤¤à¤¹à¤°à¥à¤•à¥‹ सूचि पढà¥à¤¨ सकिà¤à¤¨ ।" + +#: apt-pkg/policy.cc:344 #, fuzzy, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "पà¥à¤°à¤¾à¤¥à¤®à¤¿à¤•à¤¤à¤¾ फाइलमा अवैध रेकरà¥à¤¡, कà¥à¤¨à¥ˆ पà¥à¤¯à¤¾à¤•à¥‡à¤œ हेडर छैन" -#: apt-pkg/policy.cc:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "पिन टाइप %s बà¥à¤à¥à¤¨ सकिà¤à¤¨ " -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "पिनको लागि कà¥à¤¨à¥ˆ पà¥à¤°à¤¾à¤¥à¤®à¤¿à¤•à¤¤à¤¾ (वा शूनà¥à¤¯) निरà¥à¤¦à¤¿à¤·à¥à¤Ÿ छैन" @@ -2856,42 +2867,42 @@ msgstr "पà¥à¤¨:नामकरण असफल गरियो, %s (%s -> %s) msgid "MD5Sum mismatch" msgstr "MD5Sum मेल à¤à¤à¤¨" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 #, fuzzy msgid "Hash Sum mismatch" msgstr "MD5Sum मेल à¤à¤à¤¨" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 msgid "There is no public key available for the following key IDs:\n" msgstr "निमà¥à¤¨ कà¥à¤žà¥à¤œà¥€ IDs को लागि कà¥à¤¨à¥ˆ सारà¥à¤µà¤œà¤¨à¤¿à¤• कà¥à¤žà¥à¤œà¥€ उपलबà¥à¤§ छैन:\n" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2900,7 +2911,7 @@ msgstr "" "%s पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤•à¥‹ लागि मैले फाइल सà¥à¤¥à¤¿à¤¤ गरà¥à¤¨ सकिन । यसको मतलब तपाईà¤à¤²à¥‡ मà¥à¤¯à¤¾à¤¨à¥à¤²à¥à¤²à¥€ यो पà¥à¤¯à¤¾à¤•à¥‡à¤œ " "निशà¥à¤šà¤¿à¤¤ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ । (arch हराà¤à¤°à¤¹à¥‡à¤•à¥‹ कारणले) " -#: apt-pkg/acquire-item.cc:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2909,13 +2920,13 @@ msgstr "" "%s पà¥à¤¯à¤¾à¤•à¥‡à¤œà¤•à¥‹ लागि मैले फाइल सà¥à¤¥à¤¿à¤¤ गरà¥à¤¨ सकिन । यसको मतलब तपाईà¤à¤²à¥‡ मà¥à¤¯à¤¾à¤¨à¥à¤²à¥à¤²à¥€ यो पà¥à¤¯à¤¾à¤•à¥‡à¤œ " "निशà¥à¤šà¤¿à¤¤ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।" -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "पà¥à¤¯à¤¾à¤•à¥‡à¤œ अनà¥à¤•à¥à¤°à¤®à¤£à¤¿à¤•à¤¾ फाइलहरू दूषित à¤à¤ । पà¥à¤¯à¤¾à¤•à¥‡à¤œ %s को लागि कà¥à¤¨à¥ˆ फाइलनाम: फाà¤à¤Ÿ छैन ।" -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "साइज मेल खाà¤à¤¨" @@ -3037,37 +3048,37 @@ msgstr "नयाठसà¥à¤°à¥‹à¤¤ सूचि लेखिदैछ\n" msgid "Source list entries for this disc are:\n" msgstr "यो डिसà¥à¤•à¤•à¥‹ लागि सà¥à¤°à¥‹à¤¤ सूचि पà¥à¤°à¤µà¤¿à¤·à¥à¤Ÿà¤¿à¤¹à¤°à¥‚:\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "%i रेकरà¥à¤¡à¤¹à¤°à¥‚ लेखियो ।\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "हराइरहेको फाइल %i हरू संगै %i रेकरà¥à¤¡à¤¹à¤°à¥‚ लेखà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।\n" -#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "मेल नखाà¤à¤•à¤¾ फाइल %i हरू संगै %i रेकरà¥à¤¡à¤¹à¤°à¥‚ लेखà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।\n" -#: apt-pkg/indexcopy.cc:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "हराइरहेको फाइल %i हरू र मेल नखाà¤à¤•à¤¾ फाइल %i हरू संगै %i रेकरà¥à¤¡à¤¹à¤°à¥‚ लेखà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।\n" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, fuzzy, c-format msgid "Skipping nonexistent file %s" msgstr "कनफिगरेसन फाइल खोलिदैछ %s" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, fuzzy, c-format msgid "Hash mismatch for: %s" msgstr "MD5Sum मेल à¤à¤à¤¨" @@ -3124,12 +3135,12 @@ msgstr "" msgid "Installing %s" msgstr " %s सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ à¤à¤¯à¥‹" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr " %s कनफिगर गरिदैछ" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr " %s हटाइदैछ" @@ -3149,92 +3160,93 @@ msgstr "" msgid "Running post-installation trigger %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, fuzzy, c-format msgid "Directory '%s' missing" msgstr "आंशिक सूचिहरà¥à¤•à¥‹ डाइरेकà¥à¤Ÿà¥à¤°à¥€ %s हराइरहेछ ।" -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, fuzzy, c-format msgid "Could not open file '%s'" msgstr "फाइल %s खोलà¥à¤¨ सकिà¤à¤¨" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr " %s तयार गरिदैछ" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr " %s अनपà¥à¤¯à¤¾à¤• गरिदैछ" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr " %s कनफिगर गरà¥à¤¨ तयार गरिदैछ" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr " %s सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ à¤à¤¯à¥‹" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr " %s हटाउन तयार गरिदैछ" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr " %s हटà¥à¤¯à¥‹" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr " %s पूरà¥à¤£ रà¥à¤ªà¤²à¥‡ हटाउन तयार गरिदैछ" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr " %s पूरà¥à¤£ रà¥à¤ªà¤²à¥‡ हटà¥à¤¯à¥‹" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: nl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+0200\n" "PO-Revision-Date: 2010-03-16 06:52+0100\n" "Last-Translator: Frans Pop <elendil@planet.nl>\n" "Language-Team: Dutch <debian-l10n-dutch@lists.debian.org>\n" @@ -152,14 +152,14 @@ msgstr " Pakketpin: " msgid " Version table:" msgstr " Versietabel:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, 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:1739 +#: cmdline/apt-cache.cc:1745 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -326,31 +326,31 @@ msgstr "Kan niet naar %s schrijven" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Kan versie van debconf niet bepalen. Is debconf geïnstalleerd?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "Pakket-extensielijst is te lang" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "Fout bij het verwerken van map %s" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "Bron-extensielijst is te lang" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "Fout bij wegschrijven van de koptekst naar het 'contents'-bestand" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "Fout bij het verwerken van de inhoud van %s" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -434,11 +434,11 @@ msgstr "" " -c=? Lees dit configuratiebestand in\n" " -o=? Stel een willekeurige configuratie optie in" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "Geen van de selecties kwam overeen" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Sommige bestanden zijn niet aanwezig in de pakketbestandsgroep '%s'" @@ -550,7 +550,7 @@ msgstr "Archief heeft geen 'package'-veld" msgid " %s has no override entry\n" msgstr " %s heeft geen voorrangsingang\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s beheerder is %s, niet %s\n" @@ -660,79 +660,79 @@ msgstr "Probleem bij het ontlinken van %s" msgid "Failed to rename %s to %s" msgstr "Hernoemen van %s naar %s is mislukt" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "J" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "Regex-compilatiefout - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "De volgende pakketten hebben niet-voldane vereisten:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "maar %s is geïnstalleerd" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "maar %s zal geïnstalleerd worden" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "maar het is niet installeerbaar" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "maar het is een virtueel pakket" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "maar het is niet geïnstalleerd" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "maar het zal niet geïnstalleerd worden" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " of" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "De volgende NIEUWE pakketten zullen geïnstalleerd worden:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "De volgende pakketten zullen VERWIJDERD worden:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "De volgende pakketten zijn achtergehouden:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "De volgende pakketten zullen opgewaardeerd worden:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "De volgende pakketten zullen GEDEGRADEERD worden:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "De volgende vastgehouden pakketten zullen gewijzigd worden:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (vanwege %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -740,65 +740,65 @@ msgstr "" "WAARSCHUWING: De volgende essentiële pakketten zullen verwijderd worden.\n" "Dit dient NIET gedaan te worden tenzij u precies weet wat u doet!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu pakketten opgewaardeerd, %lu pakketten nieuw geïnstalleerd, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu opnieuw geïnstalleerd, " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu gedegradeerd, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu te verwijderen en %lu niet opgewaardeerd.\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu pakketten niet volledig geïnstalleerd of verwijderd.\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, fuzzy, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "Let op, %s wordt geselecteerd omwille van de regex '%s'\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, fuzzy, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "Let op, %s wordt geselecteerd omwille van de regex '%s'\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, fuzzy, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "Versie %s (%s) geselecteerd voor %s\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "Pakket %s is een virtueel pakket voorzien door:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [Geïnstalleerd]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 #, fuzzy msgid " [Not candidate version]" msgstr "Kandidaat-versies" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "U dient er één expliciet te selecteren voor installatie." -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -809,172 +809,175 @@ msgstr "" "een ander pakket. Mogelijk betekent dit dat het pakket ontbreekt,\n" "verouderd is, of enkel beschikbaar is van een andere bron\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "Echter, de volgende pakketten vervangen dit:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, fuzzy, c-format msgid "Package '%s' has no installation candidate" msgstr "Pakket %s heeft geen installeerbare kandidaat" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, fuzzy, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "Let op, %s wordt geselecteerd in plaats van %s\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" "%s wordt overgeslagen, het is al geïnstalleerd en opwaardering is niet " "gevraagd.\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, fuzzy, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" "%s wordt overgeslagen, het is al geïnstalleerd en opwaardering is niet " "gevraagd.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" "Herinstallatie van %s is niet mogelijk daar het niet opgehaald kan worden.\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s is reeds de nieuwste versie.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, c-format msgid "%s set to manually installed.\n" msgstr "%s is ingesteld voor handmatige installatie.\n" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "Pakket %s is niet geïnstalleerd, en wordt dus niet verwijderd\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "Vereisten worden gecorrigeerd..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " mislukt." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "Kan vereisten niet corrigeren" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "Kon de verzameling op te waarderen pakketten niet minimaliseren" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " Klaar" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 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." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "Er zijn vereisten waaraan niet voldaan is. Probeer -f te gebruiken." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "" "WAARSCHUWING: De volgende pakketten kunnen niet geauthentificeerd worden:" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "Authentificatiewaarschuwing is genegeerd.\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "Wilt u deze pakketten installeren zonder verificatie [j/N]? " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "Sommige pakketten konden niet geauthentificeerd worden" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "Er zijn problemen en -y was gebruikt zonder --force-yes" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Interne fout, InstallPackages is aangeroepen met defecte pakketten!" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "Pakketten moeten verwijderd worden maar verwijderen is uitgeschakeld." -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "Interne fout, rangschikken is niet voltooid" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "De lijst van bronnen kon niet gelezen worden." - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 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" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Er moeten %sB/%sB aan archieven opgehaald worden.\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Er moeten %sB aan archieven opgehaald worden.\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, 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" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Door deze operatie zal er %sB schijfruimte vrijkomen.\n" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "Kon de hoeveelheid vrije schijfruimte op %s niet bepalen" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "U heeft onvoldoende vrije schijfruimte op %s." -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "'Trivial Only' is opgegeven, dit is echter geen triviale bewerking." -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "Ja, doe wat ik zeg!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -985,28 +988,28 @@ msgstr "" "Als u wilt doorgaan, dient u de zin '%s' in te typen.\n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "Afbreken." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "Wilt u doorgaan [J/n]? " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Ophalen van %s is mislukt %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "Ophalen van sommige bestanden is mislukt" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "Ophalen klaar en alleen-ophalen-modus staat aan" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1014,19 +1017,19 @@ msgstr "" "Kon sommige archieven niet ophalen, misschien kunt u 'apt-get update' of --" "fix-missing proberen?" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing en medium wisselen wordt op dit moment niet ondersteund" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "Geen oplossing voor de missende pakketten gevonden." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "Installatie wordt afgebroken." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1036,35 +1039,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "Negeer niet beschikbare doelrelease '%s' van pakket '%s'" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "'%s' wordt genomen als bronpakket in plaats van '%s'\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "Negeer niet beschikbare versie '%s' van pakket '%s'" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "De opdracht 'update' aanvaard geen argumenten" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "We mogen geen dingen verwijderen, kan AutoRemover niet starten" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1078,7 +1081,7 @@ msgstr[1] "" "De volgende pakketten zijn automatisch geïnstalleerd en zijn niet langer " "nodig:" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1088,11 +1091,11 @@ msgstr[0] "" msgstr[1] "" "%lu pakketten zijn automatisch geïnstalleerd en zijn niet langer nodig.\n" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "U kunt deze verwijderen via 'apt-get autoremove'." -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1110,25 +1113,25 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "De volgende informatie helpt u mogelijk verder:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" msgstr "Interne fout, AutoRemover heeft dingen stukgemaakt" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "Interne fout, AllUpgrade heeft dingen stukgemaakt" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" "U wilt waarschijnlijk 'apt-get -f install' uitvoeren om volgende op te " "lossen:" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1136,7 +1139,7 @@ msgstr "" "Er zijn niet-voldane vereisten. U kunt best 'apt-get -f install' uitvoeren " "zonder pakketten op te geven, (of u kunt zelf een oplossing specificeren)." -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1147,71 +1150,71 @@ msgstr "" "een onmogelijke situatie gevraagd hebt of dat u de 'unstable'-distributie \n" "gebruikt en sommige benodigde pakketten nog vastzitten in 'incoming'." -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "Niet-werkende pakketten:" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "De volgende extra pakketten zullen geïnstalleerd worden:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "Voorgestelde pakketten:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "Aanbevolen pakketten:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "Kon pakket %s niet vinden" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "%s is ingesteld voor handmatige installatie.\n" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "Opwaardering wordt doorgerekend... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "Mislukt" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "Klaar" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "Interne fout, probleemoplosser heeft dingen stukgemaakt" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "Kon de ophaalmap niet vergrendelen" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 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:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "Kan geen bronpakket vinden voor %s" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1219,76 +1222,80 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Reeds opgehaald bestand '%s' wordt overgeslagen\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "U heeft niet voldoende vrije schijfruimte op %s" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Moet %sB/%sB aan bronarchieven ophalen.\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Moet %sB aan bronarchieven ophalen.\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "Ophalen bron %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "Ophalen van sommige archieven is mislukt." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, 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:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Uitpakopdracht '%s' is mislukt.\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, 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:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "Bouwopdracht '%s' is mislukt.\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "Dochterproces is mislukt" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 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:2506 +#: cmdline/apt-get.cc:2524 #, 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:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "%s heeft geen bouwvereisten.\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1297,7 +1304,7 @@ msgstr "" "De vereiste %s van pakket %s kan niet voldaan worden omdat pakket %s " "onvindbaar is" -#: cmdline/apt-get.cc:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1306,32 +1313,32 @@ 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:2666 +#: cmdline/apt-get.cc:2684 #, 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:2693 +#: cmdline/apt-get.cc:2711 #, 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:2709 +#: cmdline/apt-get.cc:2727 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Bouwvereisten voor %s konden niet voldaan worden." -#: cmdline/apt-get.cc:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "Verwerken van de bouwvereisten is mislukt" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "Ondersteunde modules:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1420,7 +1427,7 @@ msgstr "" "voor meer informatie en opties.\n" " Deze APT heeft Super Koe kracht.\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1674,10 +1681,10 @@ msgstr "Het bestand %s/%s overschrijft het bestand van pakket %s" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1814,23 +1821,23 @@ msgstr "Lokaliseren van een geldig 'control'-bestand is mislukt" msgid "Unparsable control file" msgstr "Niet-ontleedbaar 'control'-bestand" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "Kon geen pijp openen voor %s" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "Leesfout door proces %s" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "stat is mislukt" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "Instellen van de aanpassingstijd is mislukt" @@ -1924,7 +1931,7 @@ msgstr "Verbinding is verlopen" msgid "Server closed the connection" msgstr "Verbinding is verbroken door de server" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "Leesfout" @@ -1936,7 +1943,7 @@ msgstr "Een reactie deed de buffer overlopen" msgid "Protocol corruption" msgstr "Protocolcorruptie" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "Schrijffout" @@ -1990,7 +1997,7 @@ msgstr "Datasocket verbinding is verlopen" msgid "Unable to accept connection" msgstr "Kan de verbinding niet aanvaarden" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "Probleem bij het hashen van het bestand" @@ -2127,70 +2134,70 @@ msgstr "Enkele koptekstregel ontvangen met meer dan %u karakters" msgid "Bad header line" msgstr "Foute koptekstregel" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "Er is door de HTTP server een ongeldige 'reply'-koptekst verstuurd" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "" "Er is door de HTTP server een ongeldige 'Content-Length'-koptekst verstuurd" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "" "Er is door de HTTP server een ongeldige 'Content-Range'-koptekst verstuurd" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "De bereik-ondersteuning van deze HTTP-server werkt niet" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "Onbekend datumformaat" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "Selectie is mislukt" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "Verbinding verliep" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "Fout bij het schrijven naar het uitvoerbestand" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "Fout bij het schrijven naar bestand" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "Fout bij het schrijven naar het bestand" -#: methods/http.cc:894 +#: methods/http.cc:900 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:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "Fout bij het lezen van de server" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 msgid "Failed to truncate file" msgstr "Afkorten van bestand is mislukt" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "Foute koptekstdata" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "Verbinding mislukt" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "Interne fout" @@ -2390,14 +2397,14 @@ msgstr "Ongeldige operatie %s" msgid "Unable to stat the mount point %s" msgstr "Kan de status van het aanhechtpunt %s niet opvragen" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "Kan %s niet veranderen" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "stat op de CD-ROM is mislukt" @@ -2424,149 +2431,149 @@ msgstr "" msgid "Could not get lock %s" msgstr "Kon vergrendeling %s niet verkrijgen" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Er is gewacht op %s, maar die kwam niet" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Subproces %s ontving een segmentatiefout." -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, c-format msgid "Sub-process %s received signal %u." msgstr "Subproces %s ontving signaal %u." -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Subproces %s gaf de foutcode %u terug" -#: apt-pkg/contrib/fileutl.cc:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Subproces %s sloot onverwacht af" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "Kon het bestand %s niet openen" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "Kon geen pijp openen voor %s" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "lees, de laatste te lezen %lu zijn niet beschikbaar" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "schrijf, de laatste %lu konden niet weggeschreven worden" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, fuzzy, c-format msgid "Problem closing the gzip file %s" msgstr "Probleem bij het afsluiten van het bestand" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "Probleem bij het afsluiten van het bestand" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "Probleem bij het synchroniseren van het bestand" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "Probleem bij het ontlinken van het bestand" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "Probleem bij het synchroniseren van het bestand" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "Lege pakketcache" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "Het pakketcachebestand is beschadigd" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "Het pakketcachebestand heeft een niet-compatibele versie" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "Deze APT ondersteunt het versienummeringssysteem '%s' niet" -#: apt-pkg/pkgcache.cc:163 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache was built for a different architecture" msgstr "De pakketcache was aangemaakt voor een andere architectuur" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "Vereisten" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "Voor-Vereisten" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "Suggesties" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "Aanbevelingen" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "Conflicteert met" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "Vervangt" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "Verouderd" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "Breekt" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "Vult aan" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "belangrijk" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "noodzakelijk" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "standaard" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "optioneel" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "extra" @@ -2682,9 +2689,9 @@ msgid "Type '%s' is not known on line %u in source list %s" msgstr "Type '%s' op regel %u in bronlijst %s is onbekend" #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 -#, c-format +#, fuzzy, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" "Kon onmiddellijke configuratie van '%s' niet uitvoeren. Voor details zie " @@ -2703,9 +2710,9 @@ msgstr "" "te activeren." #: apt-pkg/packagemanager.cc:495 -#, c-format +#, fuzzy, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" "Kon onmiddelijke configuratie van reeds uitgepakte '%s' niet uitvoeren. Voor " @@ -2724,7 +2731,7 @@ msgstr "" "Pakket %s moet opnieuw geïnstalleerd worden, maar er kan geen archief voor " "gevonden worden." -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2732,11 +2739,11 @@ msgstr "" "Fout, pkgProblemResolver::Resolve maakte scheidingen aan, dit kan " "veroorzaakt worden door vastgehouden pakketten." -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "Kan problemen niet verhelpen, u houdt defecte pakketten vast." -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2761,12 +2768,12 @@ msgstr "Kon de lijst-map niet vergrendelen" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, 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:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "Bestand %li van %li wordt opgehaald" @@ -2788,12 +2795,12 @@ msgstr "" "Gelieve de schijf met label '%s' in het station '%s' te plaatsen en op " "'enter' te drukken." -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Pakketbeheersysteem '%s' wordt niet ondersteund" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "Kan geen geschikt pakketsysteemtype bepalen" @@ -2819,18 +2826,22 @@ 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/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "De lijst van bronnen kon niet gelezen worden." + +#: apt-pkg/policy.cc:344 #, 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:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "Pintype %s wordt niet begrepen" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "Er is geen prioriteit (of nul) opgegeven voor deze pin" @@ -2936,12 +2947,12 @@ msgstr "herbenoeming is mislukt, %s (%s -> %s)." msgid "MD5Sum mismatch" msgstr "MD5-som komt niet overeen" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" msgstr "Hash-som komt niet overeen" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 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" @@ -2949,29 +2960,29 @@ msgstr "" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2980,7 +2991,7 @@ 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:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2989,7 +3000,7 @@ msgstr "" "Er kon geen bestand gevonden worden voor pakket %s. Dit kan betekenen dat u " "dit pakket handmatig moet repareren." -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2997,7 +3008,7 @@ msgstr "" "De pakketindex-bestanden zijn beschadigd. Er is geen 'Filename:'-veld voor " "pakket %s." -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "Grootte komt niet overeen" @@ -3122,39 +3133,39 @@ msgstr "Nieuwe bronlijst wordt weggeschreven\n" msgid "Source list entries for this disc are:\n" msgstr "Bronlijst-ingangen voor de schijf zijn:\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "%i records weggeschreven.\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i records weggeschreven met %i missende bestanden.\n" -#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, 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:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" "%i records weggeschreven met %i missende bestanden en %i niet overeenkomende " "bestanden\n" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, c-format msgid "Skipping nonexistent file %s" msgstr "Niet-bestaand bestand %s wordt overgeslagen" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "Kan geen authenticatierecord vinden voor: %s" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, c-format msgid "Hash mismatch for: %s" msgstr "Hash-som komt niet overeen voor: %s" @@ -3211,12 +3222,12 @@ msgstr "" msgid "Installing %s" msgstr "%s wordt geïnstalleerd" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "%s wordt geconfigureerd" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "%s wordt verwijderd" @@ -3236,94 +3247,95 @@ msgstr "" msgid "Running post-installation trigger %s" msgstr "Post-installatie-trigger %s wordt uitgevoerd" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "Map '%s' ontbreekt" -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, fuzzy, c-format msgid "Could not open file '%s'" msgstr "Kon het bestand %s niet openen" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "%s wordt voorbereid" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "%s wordt uitgepakt" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "Configuratie van %s wordt voorbereid" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "%s is geïnstalleerd" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "Verwijdering van %s wordt voorbereid" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "%s is verwijderd" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "Volledige verwijdering van %s wordt voorbereid" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "%s is volledig verwijderd" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Kon logbestand niet wegschrijven, openpty() is mislukt (/dev/pts niet " "aangekoppeld?)\n" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "dpkg wordt uitgevoerd" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_nn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+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" @@ -153,14 +153,14 @@ msgstr " Pakke spikra til: " msgid " Version table:" msgstr " Versjonstabell:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, 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:1739 +#: cmdline/apt-cache.cc:1745 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -327,31 +327,31 @@ msgstr "Klarte ikkje skriva til %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Finn ikkje debconf-versjonen. Er debconf installert?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "Lista over pakkeutvidingar er for lang" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "Feil ved lesing av katalogen %s" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "Lista over kjeldeutvidingar er for lang" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "Feil ved skriving av topptekst til innhaldsfila" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "Feil ved lesing av %s" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 #, fuzzy msgid "" "Usage: apt-ftparchive [options] command\n" @@ -431,11 +431,11 @@ msgstr "" " -c=? Les denne oppsettsfila.\n" " -o=? Set ei vilkårleg innstilling." -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "Ingen utval passa" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Enkelte filer manglar i pakkefilgruppa %s" @@ -545,7 +545,7 @@ msgstr "Arkivet har ikkje noko pakkefelt" msgid " %s has no override entry\n" msgstr " %s har inga overstyringsoppføring\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s-vedlikehaldaren er %s, ikkje %s\n" @@ -655,79 +655,79 @@ msgstr "Problem ved oppheving av lenkje til %s" msgid "Failed to rename %s to %s" msgstr "Klarte ikkje endra namnet på %s til %s" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "J" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "Regex-kompileringsfeil - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "Følgjande pakkar har krav som ikkje er oppfylte:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "men %s er installert" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "men %s skal installerast" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "men lèt seg ikkje installera" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "men er ein virtuell pakke" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "men er ikkje installert" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "men skal ikkje installerast" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " eller" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "Dei følgjande NYE pakkane vil verta installerte:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "Dei følgjande pakkane vil verta FJERNA:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "Dei følgjande pakkane er haldne tilbake:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "Dei følgjande pakkane vil verta oppgraderte:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "Dei følgjande pakkane vil verta NEDGRADERTE:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "Dei følgjande pakkane som er haldne tilbake vil verta endra:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (fordi %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 #, fuzzy msgid "" "WARNING: The following essential packages will be removed.\n" @@ -736,65 +736,65 @@ 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!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu oppgraderte, %lu nyleg installerte, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu installerte på nytt, " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu nedgraderte, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu skal fjernast og %lu skal ikkje oppgraderast.\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu ikkje fullstendig installerte eller fjerna.\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, fuzzy, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "Merk, vel %s i staden for regex «%s»\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, fuzzy, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "Merk, vel %s i staden for regex «%s»\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, fuzzy, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "Vald versjon %s (%s) for %s\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "Pakken %s er ein virtuell pakke, tilbydd av:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [Installert]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 #, fuzzy msgid " [Not candidate version]" msgstr "Kandidatversjonar" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "Du må velja ein som skal installerast." -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -805,171 +805,174 @@ msgstr "" "av ein annan pakke. Dette tyder at pakket manglar, er gjort overflødig\n" "eller er berre tilgjengeleg frå ei anna kjelde\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "Dei følgjande pakkane kan brukast i staden:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, fuzzy, c-format msgid "Package '%s' has no installation candidate" msgstr "Det finst ingen installasjonskandidat for pakken %s" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, fuzzy, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "Merk, vel %s i staden for %s\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" "Hoppar over %s, for den er installert frå før og ikkje sett til " "oppgradering.\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, fuzzy, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" "Hoppar over %s, for den er installert frå før og ikkje sett til " "oppgradering.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "%s kan ikkje installerast på nytt, for pakken kan ikkje lastast ned.\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "Den nyaste versjonen av %s er installert frå før.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "men %s skal installerast" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "Pakken %s er ikkje installert, og vert difor ikkje fjerna\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "Rettar på krav ..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " mislukkast." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "Klarte ikkje retta på krav" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "Klarte ikkje minimera oppgraderingsmengda" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " Ferdig" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "" "Du vil kanskje prøva å retta på desse ved å køyra «apt-get -f install»." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "Nokre krav er ikkje oppfylte. Prøv med «-f»." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ÅTVARING: Klarer ikkje autentisere desse pakkane." -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "Installer desse pakkane utan verifikasjon [j/N]? " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "Nokre pakkar kunne ikkje bli autentisert" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "Det oppstod problem, og «-y» vart brukt utan «--force-yes»" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "Nokre pakkar må fjernast, men fjerning er slått av." -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 #, fuzzy msgid "Internal error, Ordering didn't finish" msgstr "Intern feil ved tilleggjing av avleiing" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "Kjeldelista kan ikkje lesast." - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Må henta %sB/%sB med arkiv.\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Må henta %sB med arkiv.\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, fuzzy, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "Etter utpakking vil %sB meir diskplass verta brukt.\n" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, fuzzy, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Etter utpakking vil %sB meir diskplass verta frigjort.\n" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, fuzzy, c-format msgid "Couldn't determine free space in %s" msgstr "Du har ikkje nok ledig plass i %s" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "Du har ikkje nok ledig plass i %s." -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "«Trivial Only» var spesifisert, men dette er ikkje noka triviell handling." -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "Ja, gjer som eg seier!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, fuzzy, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -980,28 +983,28 @@ msgstr "" "For å halda fram, må du skriva nøyaktig «%s».\n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "Avbryt." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "Vil du halda fram [J/n]? " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Klarte ikkje henta %s %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "Klarte ikkje henta nokre av filene" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "Nedlastinga er ferdig i nedlastingsmodus" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1009,19 +1012,19 @@ msgstr "" "Klarte ikkje henta nokre av arkiva. Du kan prøva med «apt-get update» eller " "«--fix-missing»." -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "«--fix-missing» og byte av medium er ikkje støtta for tida" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "Klarte ikkje retta opp manglande pakkar." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "Avbryt installasjon." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1031,35 +1034,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Klarte ikkje få status på kjeldepakkelista %s" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "Oppdateringskommandoen tek ingen argument" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1069,7 +1072,7 @@ msgid_plural "" msgstr[0] "Dei følgjande NYE pakkane vil verta installerte:" msgstr[1] "Dei følgjande NYE pakkane vil verta installerte:" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1077,11 +1080,11 @@ msgid_plural "" msgstr[0] "Dei følgjande NYE pakkane vil verta installerte:" msgstr[1] "Dei følgjande NYE pakkane vil verta installerte:" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1097,25 +1100,25 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "Følgjande informasjon kan hjelpa med å løysa situasjonen:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "Intern feil. AllUpgrade øydelagde noko" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "Intern feil. AllUpgrade øydelagde noko" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" "Du vil kanskje prøva å retta på desse ved å køyra «apt-get -f install»." -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1123,7 +1126,7 @@ msgstr "" "Nokre krav er ikkje oppfylte. Du kan prøva «apt-get -f install» (eller velja " "ei løysing)." -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1135,70 +1138,70 @@ msgstr "" "distribusjonen, kan det òg henda at nokre av pakkane som trengst ikkje\n" "er laga enno eller at dei framleis ligg i «Incoming»." -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "Øydelagde pakkar" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "Dei følgjande tilleggspakkane vil verta installerte:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "Føreslåtte pakkar:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "Tilrådde pakkar" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "Fann ikkje pakken %s" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "men %s skal installerast" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "Reknar ut oppgradering ... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "Mislukkast" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "Ferdig" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 #, fuzzy msgid "Internal error, problem resolver broke stuff" msgstr "Intern feil. AllUpgrade øydelagde noko" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "Klarte ikkje låsa nedlastingskatalogen" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 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:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "Finn ingen kjeldepakke for %s" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1206,81 +1209,85 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, 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:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "Du har ikkje nok ledig plass i %s" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Må henta %sB/%sB med kjeldekodearkiv.\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Må henta %sB med kjeldekodearkiv.\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "Hent kjeldekode %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "Klarte ikkje henta nokre av arkiva." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, 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:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Utpakkingskommandoen «%s» mislukkast.\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "Byggjekommandoen «%s» mislukkast.\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "Barneprosessen mislukkast" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 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:2506 +#: cmdline/apt-get.cc:2524 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Klarte ikkje henta byggjekrav for %s" -#: cmdline/apt-get.cc:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "%s har ingen byggjekrav.\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, 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:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1289,31 +1296,31 @@ 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:2666 +#: cmdline/apt-get.cc:2684 #, 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:2693 +#: cmdline/apt-get.cc:2711 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Klarte ikkje oppfylla kravet %s for %s: %s" -#: cmdline/apt-get.cc:2709 +#: cmdline/apt-get.cc:2727 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Byggjekrav for %s kunne ikkje tilfredstillast." -#: cmdline/apt-get.cc:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "Klarte ikkje behandla byggjekrava" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "Støtta modular:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1399,7 +1406,7 @@ msgstr "" "til apt-get(8), sources.list(5) og apt.conf(5).\n" " APT har superku-krefter.\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1644,10 +1651,10 @@ msgstr "Fila %s/%s skriv over den tilsvarande fila i pakken %s" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1784,23 +1791,23 @@ msgstr "Fann ikkje noka gyldig kontrollfil" msgid "Unparsable control file" msgstr "Kontrollfila kan ikkje tolkast" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "Klarte ikkje opna røyr for %s" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "Lesefeil frå %s-prosessen" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "Klarte ikkje få status" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "Klarte ikkje setja endringstidspunkt" @@ -1895,7 +1902,7 @@ msgstr "Tidsavbrot på samband" msgid "Server closed the connection" msgstr "Tenaren lukka sambandet" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "Lesefeil" @@ -1907,7 +1914,7 @@ msgstr "Eit svar flaumde over bufferen." msgid "Protocol corruption" msgstr "Protokolløydeleggjing" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "Skrivefeil" @@ -1961,7 +1968,7 @@ msgstr "Tidsavbrot på tilkopling til datasokkel" msgid "Unable to accept connection" msgstr "Klarte ikkje godta tilkoplinga" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "Problem ved oppretting av nøkkel for fil" @@ -2092,68 +2099,68 @@ msgstr "Fekk ei enkel hovudlinje over %u teikn" msgid "Bad header line" msgstr "Øydelagd hovudlinje" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "HTTP-tenaren sende eit ugyldig svarhovud" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "HTTP-tenaren sende eit ugyldig «Content-Length»-hovud" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "HTTP-tenaren sende eit ugyldig «Content-Range»-hovud" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "Denne HTTP-tenaren har øydelagd støtte for område" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "Ukjend datoformat" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "Utvalet mislukkast" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "Tidsavbrot på sambandet" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "Feil ved skriving til utfil" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "Feil ved skriving til fil" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "Feil ved skriving til fila" -#: methods/http.cc:894 +#: methods/http.cc:900 msgid "Error reading from server. Remote end closed connection" msgstr "Feil ved lesing frå tenaren. Sambandet vart lukka i andre enden" -#: methods/http.cc:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "Feil ved lesing frå tenaren" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 #, fuzzy msgid "Failed to truncate file" msgstr "Klarte ikkje skriva fila %s" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "Øydelagde hovuddata" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "Sambandet mislukkast" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "Intern feil" @@ -2345,14 +2352,14 @@ msgstr "Ugyldig operasjon %s" msgid "Unable to stat the mount point %s" msgstr "Klarte ikkje få status til monteringspunktet %s" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "Klarte ikkje byta til %s" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "Klarte ikkje få status til CD-ROM" @@ -2376,149 +2383,149 @@ msgstr "Brukar ikkje låsing for den nfs-monterte låsefila %s" msgid "Could not get lock %s" msgstr "Klarte ikkje låsa %s" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Venta på %s, men den fanst ikkje" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Underprosessen %s mottok ein segmenteringsfeil." -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "Underprosessen %s mottok ein segmenteringsfeil." -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Underprosessen %s returnerte ein feilkode (%u)" -#: apt-pkg/contrib/fileutl.cc:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Underprosessen %s avslutta uventa" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "Klarte ikkje opna fila %s" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "Klarte ikkje opna røyr for %s" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "lese, har framleis %lu att å lesa, men ingen att" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "skrive, har framleis %lu att å skrive, men klarte ikkje" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, fuzzy, c-format msgid "Problem closing the gzip file %s" msgstr "Problem ved låsing av fila" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "Problem ved låsing av fila" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "Problem ved synkronisering av fila" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "Problem ved oppheving av lenkje til fila" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "Problem ved synkronisering av fila" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "Tomt pakkelager" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "Pakkelagerfila er øydelagd" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "Versjonen til pakkelagerfila er ikkje kompatibel" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "APT støttar ikkje versjonssystemet «%s»" -#: apt-pkg/pkgcache.cc:163 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache was built for a different architecture" msgstr "Pakkelageret er bygd for ein annan arkitektur" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "Krav" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "Forkrav" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "Forslag" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "Tilrådingar" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "Konflikt" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "Byter ut" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "Foreldar" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "viktig" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "påkravd" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "vanleg" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "valfri" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "tillegg" @@ -2637,7 +2644,7 @@ msgstr "Typen «%s» er ukjend i linja %u i kjeldelista %s" #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" @@ -2656,7 +2663,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" @@ -2671,7 +2678,7 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "Pakken %s må installerast på nytt, men arkivet finst ikkje." -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2679,12 +2686,12 @@ msgstr "" "Feil, «pkgProblemResolver::Resolve» har laga brot. Dette kan skuldast pakkar " "som er haldne tilbake." -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Klarte ikkje retta opp problema. Nokre øydelagde pakkar er haldne tilbake." -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2709,12 +2716,12 @@ msgstr "Klarte ikkje låsa listekatalogen" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, fuzzy, c-format msgid "Retrieving file %li of %li" msgstr "Les filliste" @@ -2737,12 +2744,12 @@ msgstr "" " «%s»\n" "i stasjonen «%s» og trykk Enter.\n" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Pakkesystemet «%s» er ikkje støtta" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "Klarte ikkje avgjera ein eigna pakkesystemtype" @@ -2764,17 +2771,21 @@ 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/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "Kjeldelista kan ikkje lesast." + +#: apt-pkg/policy.cc:344 #, 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:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "Skjønar ikkje spikringstypen %s" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "Ingen prioritet (eller null) oppgitt for spiker" @@ -2877,42 +2888,42 @@ msgstr "endring av namn mislukkast, %s (%s -> %s)." msgid "MD5Sum mismatch" msgstr "Feil MD5-sum" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 #, fuzzy msgid "Hash Sum mismatch" msgstr "Feil MD5-sum" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 msgid "There is no public key available for the following key IDs:\n" msgstr "" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2921,7 +2932,7 @@ 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:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2929,14 +2940,14 @@ msgid "" msgstr "" "Fann ikkje fila for pakken %s. Det kan henda du må fiksa denne pakken sjølv." -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, 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/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "Feil storleik" @@ -3058,37 +3069,37 @@ msgstr "Skriv ny kjeldeliste\n" msgid "Source list entries for this disc are:\n" msgstr "Kjeldelisteoppføringar for denne disken er:\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "Skreiv %i postar.\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Skreiv %i postar med %i manglande filer.\n" -#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, 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:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, 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" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, fuzzy, c-format msgid "Skipping nonexistent file %s" msgstr "Opnar oppsettsfila %s" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, fuzzy, c-format msgid "Hash mismatch for: %s" msgstr "Feil MD5-sum" @@ -3145,12 +3156,12 @@ msgstr "" msgid "Installing %s" msgstr " Installert: " -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, fuzzy, c-format msgid "Configuring %s" msgstr "Koplar til %s" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, fuzzy, c-format msgid "Removing %s" msgstr "Opnar %s" @@ -3170,92 +3181,93 @@ msgstr "" msgid "Running post-installation trigger %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, fuzzy, c-format msgid "Directory '%s' missing" msgstr "Listekatalogen %spartial manglar." -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, fuzzy, c-format msgid "Could not open file '%s'" msgstr "Klarte ikkje opna fila %s" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, fuzzy, c-format msgid "Preparing %s" msgstr "Opnar %s" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, fuzzy, c-format msgid "Unpacking %s" msgstr "Opnar %s" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, fuzzy, c-format msgid "Preparing to configure %s" msgstr "Opnar oppsettsfila %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, fuzzy, c-format msgid "Installed %s" msgstr " Installert: " -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, fuzzy, c-format msgid "Removed %s" msgstr "Tilrådingar" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, fuzzy, c-format msgid "Preparing to completely remove %s" msgstr "Opnar oppsettsfila %s" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, fuzzy, c-format msgid "Completely removed %s" msgstr "Klarte ikkje fjerna %s" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.23.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+0200\n" "PO-Revision-Date: 2009-09-27 03:42+0100\n" "Last-Translator: Wiktor Wandachowicz <siryes@gmail.com>\n" "Language-Team: Polish <debian-l10n-polish@lists.debian.org>\n" @@ -153,14 +153,14 @@ msgstr " Sposób przypiÄ™cia: " msgid " Version table:" msgstr " Tabela wersji:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, 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:1739 +#: cmdline/apt-cache.cc:1745 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -326,31 +326,31 @@ msgstr "Nie udaÅ‚o siÄ™ pisać do %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Nie udaÅ‚o siÄ™ pobrać wersji debconf. Czy debconf jest zainstalowany?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "Lista rozszerzeÅ„ pakietów jest zbyt dÅ‚uga" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "BÅ‚Ä…d przetwarzania katalogu %s" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "Lista rozszerzeÅ„ źródeÅ‚ jest zbyt dÅ‚uga" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "BÅ‚Ä…d przy zapisywaniu nagłówka do pliku zawartoÅ›ci" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "BÅ‚Ä…d podczas przetwarzania zawartoÅ›ci %s" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -433,11 +433,11 @@ msgstr "" " -c=? Czyta wskazany plik konfiguracyjny\n" " -o=? Ustawia dowolnÄ… opcjÄ™ konfiguracji" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "Nie dopasowano żadnej nazwy" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, 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\"" @@ -550,7 +550,7 @@ msgstr "Archiwum nie posiadaÅ‚o pola pakietu" msgid " %s has no override entry\n" msgstr " %s nie posiada wpisu w pliku override\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " opiekunem %s jest %s, a nie %s\n" @@ -660,79 +660,79 @@ msgstr "Problem przy usuwaniu %s" msgid "Failed to rename %s to %s" msgstr "Nie udaÅ‚o siÄ™ zmienić nazwy %s na %s" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "T" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "BÅ‚Ä…d kompilacji wyrażenia regularnego - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "NastÄ™pujÄ…ce pakiety majÄ… niespeÅ‚nione zależnoÅ›ci:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "ale %s jest zainstalowany" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "ale %s ma zostać zainstalowany" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "ale nie da siÄ™ go zainstalować" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "ale jest pakietem wirtualnym" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "ale nie jest zainstalowany" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "ale nie zostanie zainstalowany" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " lub" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "ZostanÄ… zainstalowane nastÄ™pujÄ…ce NOWE pakiety:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "NastÄ™pujÄ…ce pakiety zostanÄ… USUNIĘTE:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "NastÄ™pujÄ…ce pakiety zostaÅ‚y zatrzymane:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "NastÄ™pujÄ…ce pakiety zostanÄ… zaktualizowane:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "ZostanÄ… zainstalowane STARE wersje nastÄ™pujÄ…cych pakietów:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "ZostanÄ… zmienione nastÄ™pujÄ…ce zatrzymane pakiety:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (z powodu %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -740,65 +740,65 @@ msgstr "" "UWAGA: ZostanÄ… usuniÄ™te nastÄ™pujÄ…ce istotne pakiety.\n" "Nie powinno siÄ™ tego robić, chyba że dokÅ‚adnie wiesz co robisz!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu aktualizowanych, %lu nowo instalowanych, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu przeinstalowywanych, " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu cofniÄ™tych wersji, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu usuwanych i %lu nieaktualizowanych.\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu nie w peÅ‚ni zainstalowanych lub usuniÄ™tych.\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, fuzzy, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "Uwaga, wybieranie %s za wyrażenie \"%s\"\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, fuzzy, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "Uwaga, wybieranie %s za wyrażenie \"%s\"\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, fuzzy, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "Wybrano wersjÄ™ %s (%s) dla %s\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "Pakiet %s jest pakietem wirtualnym zapewnianym przez:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [Zainstalowany]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 #, fuzzy msgid " [Not candidate version]" msgstr "KandydujÄ…ce wersje" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "Należy jednoznacznie wybrać jeden z nich do instalacji." -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -809,169 +809,172 @@ msgstr "" "Zazwyczaj oznacza to, że pakietu brakuje, zostaÅ‚ zastÄ…piony przez inny\n" "pakiet lub nie jest dostÄ™pny przy pomocy obecnie ustawionych źródeÅ‚.\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "Jednak nastÄ™pujÄ…ce pakiety go zastÄ™pujÄ…:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, fuzzy, c-format msgid "Package '%s' has no installation candidate" msgstr "Pakiet %s nie ma kandydata do instalacji" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, fuzzy, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "Uwaga, wybieranie %s zamiast %s\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" "Pomijanie %s, jest już zainstalowane, a nie zostaÅ‚a wybrana aktualizacja.\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, fuzzy, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" "Pomijanie %s, jest już zainstalowane, a nie zostaÅ‚a wybrana aktualizacja.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" "Ponowna instalacja pakietu %s nie jest możliwa, nie może on zostać pobrany.\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s jest już w najnowszej wersji.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, c-format msgid "%s set to manually installed.\n" msgstr "%s zaznaczony jako zainstalowany rÄ™cznie.\n" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "Pakiet %s nie jest zainstalowany, wiÄ™c nie zostanie usuniÄ™ty.\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "Naprawianie zależnoÅ›ci..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " nie udaÅ‚o siÄ™." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "Nie udaÅ‚o siÄ™ naprawić zależnoÅ›ci" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "Nie udaÅ‚o siÄ™ zminimalizować zbioru aktualizacji" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " Gotowe" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "Należy uruchomić \"apt-get -f install\", aby je naprawić." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "NiespeÅ‚nione zależnoÅ›ci. ProszÄ™ spróbować użyć -f." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "UWAGA: NastÄ™pujÄ…ce pakiety nie mogÄ… zostać zweryfikowane!" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "Ostrzeżenie uwierzytelniania zignorowano.\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "Zainstalować te pakiety bez weryfikacji [t/N]? " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "Niektóre pakiety nie mogÅ‚y zostać zweryfikowane" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "ByÅ‚y problemy, a użyto -y bez --force-yes" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "BÅ‚Ä…d wewnÄ™trzny, InstallPackages użyto z uszkodzonymi pakietami!" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "Pakiety powinny zostać usuniÄ™te, ale Remove jest wyÅ‚Ä…czone." -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "BÅ‚Ä…d wewnÄ™trzny, sortowanie niezakoÅ„czone" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "Nie udaÅ‚o siÄ™ odczytać list źródeÅ‚." - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" "Dziwne. Rozmiary siÄ™ nie zgadzajÄ…, proszÄ™ to zgÅ‚osić pod apt@packages.debian." "org" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Konieczne pobranie %sB/%sB archiwów.\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Konieczne pobranie %sB archiwów.\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "Po tej operacji zostanie dodatkowo użyte %sB miejsca na dysku.\n" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Po tej operacji zostanie zwolnione %sB miejsca na dysku.\n" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, 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:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "Niestety w %s nie ma wystarczajÄ…cej iloÅ›ci wolnego miejsca." -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Nakazano wykonywać tylko trywialne operacje, a to nie jest trywialne." -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "Tak, rób jak mówiÄ™!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -982,28 +985,28 @@ msgstr "" "Aby kontynuować wpisz zdanie \"%s\"\n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "Przerwane." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "Kontynuować [T/n]? " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Nie udaÅ‚o siÄ™ pobrać %s %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "Nie udaÅ‚o siÄ™ pobrać niektórych plików" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "UkoÅ„czono pobieranie w trybie samego pobierania" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1011,19 +1014,19 @@ msgstr "" "Nie udaÅ‚o siÄ™ pobrać niektórych archiwów, proszÄ™ spróbować uruchomić apt-get " "update lub użyć opcji --fix-missing" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing i zamiana noÅ›ników nie sÄ… obecnie obsÅ‚ugiwane" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "Nie udaÅ‚o siÄ™ poprawić brakujÄ…cych pakietów." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "Przerywanie instalacji" -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1033,35 +1036,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Nie udaÅ‚o siÄ™ wykonać operacji stat na liÅ›cie pakietów źródÅ‚owych %s" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "Polecenie update nie wymaga żadnych argumentów" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Nic nie powinno być usuwane, AutoRemover nie zostanie uruchomiony" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1075,7 +1078,7 @@ msgstr[1] "" "NastÄ™pujÄ…ce pakiety zostaÅ‚y zainstalowane automatycznie i nie sÄ… już wiÄ™cej " "wymagane:" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1087,11 +1090,11 @@ msgstr[1] "" "%lu pakiety(ów) zostaÅ‚y zainstalowane automatycznie i nie sÄ… już wiÄ™cej " "wymagane.\n" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "Aby je usunąć należy użyć \"apt-get autoremove\"." -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1109,23 +1112,23 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "NastÄ™pujÄ…ce informacje mogÄ… pomóc rozwiÄ…zać sytuacjÄ™:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" msgstr "BÅ‚Ä…d wewnÄ™trzny, AutoRemover wszystko popsuÅ‚" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "BÅ‚Ä…d wewnÄ™trzny, AllUpgrade wszystko popsuÅ‚o" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Należy uruchomić \"apt-get -f install\", aby je naprawić:" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1133,7 +1136,7 @@ msgstr "" "NiespeÅ‚nione zależnoÅ›ci. ProszÄ™ spróbować \"apt-get -f install\" bez " "pakietów (lub podać rozwiÄ…zanie)." -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1145,71 +1148,71 @@ msgstr "" "w której niektóre pakiety nie zostaÅ‚y jeszcze utworzone lub przeniesione\n" "z katalogu Incoming (\"PrzychodzÄ…ce\")." -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "Pakiety sÄ… uszkodzone" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "ZostanÄ… zainstalowane nastÄ™pujÄ…ce dodatkowe pakiety:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "Sugerowane pakiety:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "Polecane pakiety:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "Nie udaÅ‚o siÄ™ odnaleźć pakietu %s" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "%s zaznaczony jako zainstalowany rÄ™cznie.\n" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "Obliczanie aktualizacji..." -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "Nie udaÅ‚o siÄ™" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "Gotowe" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "BÅ‚Ä…d wewnÄ™trzny, rozwiÄ…zywanie problemów wszystko popsuÅ‚o" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "Nie udaÅ‚o siÄ™ zablokować katalogu pobierania" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 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:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "Nie udaÅ‚o siÄ™ odnaleźć źródÅ‚a dla pakietu %s" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1217,76 +1220,80 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Pomijanie już pobranego pliku \"%s\"\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "W %s nie ma wystarczajÄ…cej iloÅ›ci wolnego miejsca" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Konieczne pobranie %sB/%sB archiwów źródeÅ‚.\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Konieczne pobranie %sB archiwów źródeÅ‚.\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "Pobierz źródÅ‚o %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "Nie udaÅ‚o siÄ™ pobrać niektórych archiwów." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, 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:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Polecenie rozpakowania \"%s\" zawiodÅ‚o.\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, 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:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "Polecenie budowania \"%s\" zawiodÅ‚o.\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "Proces potomny zawiódÅ‚" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 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:2506 +#: cmdline/apt-get.cc:2524 #, 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:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "%s nie ma zależnoÅ›ci dla budowania.\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1295,7 +1302,7 @@ msgstr "" "Zależność %s od %s nie może zostać speÅ‚niona, ponieważ nie znaleziono " "pakietu %s" -#: cmdline/apt-get.cc:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1304,32 +1311,32 @@ msgstr "" "Zależność %s od %s nie może zostać speÅ‚niona, ponieważ żadna z dostÄ™pnych " "wersji pakietu %s nie ma odpowiedniej wersji" -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, 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:2693 +#: cmdline/apt-get.cc:2711 #, 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:2709 +#: cmdline/apt-get.cc:2727 #, 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:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "Nie udaÅ‚o siÄ™ przetworzyć zależnoÅ›ci dla budowania" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "ObsÅ‚ugiwane moduÅ‚y:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1416,7 +1423,7 @@ msgstr "" "apt-get(8), sources.list(5) i apt.conf(5).\n" " Ten APT ma moce Super Krowy.\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1669,10 +1676,10 @@ msgstr "Plik %s/%s nadpisuje plik w pakiecie %s" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1809,23 +1816,23 @@ msgstr "Nie udaÅ‚o siÄ™ odnaleźć poprawnego pliku control" msgid "Unparsable control file" msgstr "Plik kontrolny nie może zostać poprawnie zinterpretowany" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "Nie udaÅ‚o siÄ™ otworzyć potoku dla %s" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "BÅ‚Ä…d odczytu z procesu %s" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "Nie udaÅ‚o siÄ™ wykonać operacji stat" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "Nie udaÅ‚o siÄ™ ustawić czasu modyfikacji" @@ -1920,7 +1927,7 @@ msgstr "Przekroczenie czasu poÅ‚Ä…czenia" msgid "Server closed the connection" msgstr "Serwer zamknÄ…Å‚ poÅ‚Ä…czenie" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "BÅ‚Ä…d odczytu" @@ -1932,7 +1939,7 @@ msgstr "Odpowiedź przepeÅ‚niÅ‚a bufor." msgid "Protocol corruption" msgstr "Naruszenie zasad protokoÅ‚u" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "BÅ‚Ä…d zapisu" @@ -1986,7 +1993,7 @@ msgstr "Przekroczony czas poÅ‚Ä…czenia gniazda danych" msgid "Unable to accept connection" msgstr "Nie udaÅ‚o siÄ™ przyjąć poÅ‚Ä…czenia" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "Nie udaÅ‚o siÄ™ obliczyć skrótu pliku" @@ -2123,67 +2130,67 @@ msgstr "Otrzymano pojedynczÄ… liniÄ™ nagłówka o dÅ‚ugoÅ›ci ponad %u znaków" msgid "Bad header line" msgstr "NieprawidÅ‚owa linia nagłówka" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "Serwer HTTP przysÅ‚aÅ‚ nieprawidÅ‚owy nagłówek odpowiedzi" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "Serwer HTTP przysÅ‚aÅ‚ nieprawidÅ‚owy nagłówek Content-Length" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "Serwer HTTP przysÅ‚aÅ‚ nieprawidÅ‚owy nagłówek Content-Range" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "Ten serwer HTTP nieprawidÅ‚owo obsÅ‚uguje zakresy (ranges)" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "Nieznany format daty" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "Operacja select nie powiodÅ‚a siÄ™" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "Przekroczenie czasu poÅ‚Ä…czenia" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "BÅ‚Ä…d przy pisaniu do pliku wyjÅ›ciowego" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "BÅ‚Ä…d przy pisaniu do pliku" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "BÅ‚Ä…d przy pisaniu do pliku" -#: methods/http.cc:894 +#: methods/http.cc:900 msgid "Error reading from server. Remote end closed connection" msgstr "BÅ‚Ä…d czytania z serwera: Zdalna strona zamknęła poÅ‚Ä…czenie" -#: methods/http.cc:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "BÅ‚Ä…d czytania z serwera" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 msgid "Failed to truncate file" msgstr "Nie udaÅ‚o siÄ™ uciąć zawartoÅ›ci pliku %s" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "BÅ‚Ä™dne dane nagłówka" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "PoÅ‚Ä…czenie nie udaÅ‚o siÄ™" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "BÅ‚Ä…d wewnÄ™trzny" @@ -2379,14 +2386,14 @@ msgstr "NieprawidÅ‚owa operacja %s" 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:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "Nie udaÅ‚o siÄ™ przejść do %s" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "Nie udaÅ‚o siÄ™ wykonać operacji stat na CDROM-ie" @@ -2410,149 +2417,149 @@ msgstr "Dla pliku blokady %s montowanego przez NFS nie zostanie użyta blokada" msgid "Could not get lock %s" msgstr "Nie udaÅ‚o siÄ™ uzyskać blokady %s" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Oczekiwano na proces %s, ale nie byÅ‚o go" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Podproces %s spowodowaÅ‚ naruszenie segmentacji." -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, c-format msgid "Sub-process %s received signal %u." msgstr "Podproces %s dostaÅ‚ sygnaÅ‚ %u." -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, 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:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Podproces %s zakoÅ„czyÅ‚ siÄ™ niespodziewanie" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "Nie udaÅ‚o siÄ™ otworzyć pliku %s" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "Nie udaÅ‚o siÄ™ otworzyć potoku dla %s" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "należaÅ‚o przeczytać jeszcze %lu, ale nic nie zostaÅ‚o" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "należaÅ‚o zapisać jeszcze %lu, ale nie udaÅ‚o siÄ™ to" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, fuzzy, c-format msgid "Problem closing the gzip file %s" msgstr "Problem przy zamykaniu pliku" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "Problem przy zamykaniu pliku" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "Problem przy zapisywaniu pliku na dysk" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "Problem przy usuwaniu pliku" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "Problem przy zapisywaniu pliku na dysk" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "Pusty magazyn podrÄ™czny pakietów" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "Magazyn podrÄ™czny pakietów jest uszkodzony" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "Magazyn podrÄ™czny pakietów jest w niezgodnej wersji" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, 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:163 +#: apt-pkg/pkgcache.cc:166 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:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "Wymaga" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "PreWymaga" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "Sugeruje" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "Poleca" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "Jest w konflikcie z" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "ZastÄ™puje" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "Czyni zbÄ™dnym" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "Psuje" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "Rozszerza" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "ważny" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "wymagany" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "standardowy" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "opcjonalny" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "dodatkowy" @@ -2670,7 +2677,7 @@ msgstr "Typ \"%s\" jest nieznany w linii %u listy źródeÅ‚ %s" #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" @@ -2689,7 +2696,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" @@ -2705,7 +2712,7 @@ msgid "" msgstr "" "Pakiet %s ma zostać przeinstalowany, ale nie można znaleźć jego archiwum." -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2713,11 +2720,11 @@ msgstr "" "BÅ‚Ä…d, pkgProblemResolver::Resolve zwróciÅ‚ bÅ‚Ä…d, może to być spowodowane " "zatrzymanymi pakietami." -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "Nie udaÅ‚o siÄ™ naprawić problemów, zatrzymano uszkodzone pakiety." -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2742,12 +2749,12 @@ msgstr "Nie udaÅ‚o siÄ™ zablokować katalogu list" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Pobieranie pliku %li z %li (%s pozostaÅ‚o)" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "Pobieranie pliku %li z %li" @@ -2767,12 +2774,12 @@ msgstr "Metoda %s nie uruchomiÅ‚a siÄ™ poprawnie" 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:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "System pakietów \"%s\" nie jest obsÅ‚ugiwany" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "Nie udaÅ‚o siÄ™ okreÅ›lić odpowiedniego typu systemu pakietów" @@ -2793,17 +2800,21 @@ msgstr "Nie udaÅ‚o siÄ™ otworzyć lub zanalizować zawartoÅ›ci list pakietów." 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/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "Nie udaÅ‚o siÄ™ odczytać list źródeÅ‚." + +#: apt-pkg/policy.cc:344 #, 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:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "Nierozpoznany typ przypinania %s" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "Brak (lub zerowy) priorytet przypiÄ™cia" @@ -2908,41 +2919,41 @@ msgstr "nie udaÅ‚o siÄ™ zmienić nazwy, %s (%s -> %s)" msgid "MD5Sum mismatch" msgstr "BÅ‚Ä™dna suma MD5" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" msgstr "BÅ‚Ä™dna suma kontrolna" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 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" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2951,7 +2962,7 @@ 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:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2960,14 +2971,14 @@ msgstr "" "Nie udaÅ‚o siÄ™ odnaleźć pliku dla pakietu %s. Może to oznaczać, że trzeba " "bÄ™dzie rÄ™cznie naprawić ten pakiet." -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, 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/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "BÅ‚Ä™dny rozmiar" @@ -3092,37 +3103,37 @@ msgstr "Zapisywanie nowej listy źródeÅ‚\n" msgid "Source list entries for this disc are:\n" msgstr "ŹródÅ‚a dla tej pÅ‚yty to:\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "Zapisano %i rekordów.\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, 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:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, 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:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, 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" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, fuzzy, c-format msgid "Skipping nonexistent file %s" msgstr "Otwieranie pliku konfiguracyjnego %s" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, fuzzy, c-format msgid "Hash mismatch for: %s" msgstr "BÅ‚Ä™dna suma kontrolna" @@ -3179,12 +3190,12 @@ msgstr "" msgid "Installing %s" msgstr "Instalowanie %s" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "Konfigurowanie %s" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "Usuwanie %s" @@ -3204,94 +3215,95 @@ msgstr "" msgid "Running post-installation trigger %s" msgstr "Uruchamianie wyzwalacza post-installation %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "Brakuje katalogu \"%s\"" -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, fuzzy, c-format msgid "Could not open file '%s'" msgstr "Nie udaÅ‚o siÄ™ otworzyć pliku %s" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "Przygotowanie %s" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "Rozpakowywanie %s" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "Przygotowanie do konfiguracji %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "Zainstalowany %s" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "Przygotowanie do usuniÄ™cia %s" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "UsuniÄ™to %s" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "Przygotowanie do caÅ‚kowitego usuniÄ™cia %s" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "CaÅ‚kowicie usuniÄ™to %s" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Nie można zapisać dziennika, openpty() nie powiodÅ‚o siÄ™ (/dev/pts nie " "zamontowane?)\n" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "Uruchamianie dpkg" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+0200\n" "PO-Revision-Date: 2010-08-28 09:03+0100\n" "Last-Translator: Miguel Figueiredo <elmig@debianpt.org>\n" "Language-Team: Portuguese <traduz@debianpt.org>\n" @@ -148,14 +148,14 @@ msgstr " Marcação do Pacote: " msgid " Version table:" msgstr " Tabela de Versão:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, 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:1739 +#: cmdline/apt-cache.cc:1745 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -323,31 +323,31 @@ msgstr "Não conseguiu escrever para %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Não pode obter a versão do debconf. O debconf está instalado?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "A lista de extensão de pacotes é demasiado longa" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "Erro ao processar o directório %s" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "Lista de extensão de códigos-fonte é demasiado longa" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "Erro ao escrever o cabeçalho no ficheiro de conteúdo" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "Erro ao processar o conteúdo %s" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -428,11 +428,11 @@ msgstr "" " -c=? Ler este ficheiro de configuração\n" " -o=? Definir uma opção de configuração arbitrária" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "Nenhuma selecção coincidiu" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Faltam alguns ficheiros no grupo `%s' do ficheiro do pacote" @@ -544,7 +544,7 @@ msgstr "Arquivo não possuÃa campo package" msgid " %s has no override entry\n" msgstr " %s não possui entrada override\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " o maintainer de %s é %s, não %s\n" @@ -654,79 +654,79 @@ msgstr "Problema ao executar unlinking %s" msgid "Failed to rename %s to %s" msgstr "Falhou renomear %s para %s" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "S" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "Erro de compilação de regex - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "Os pacotes a seguir têm dependências não satisfeitas:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "mas %s está instalado" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "mas %s está para ser instalado" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "mas não é instalável" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "mas é um pacote virtual" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "mas não está instalado" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "mas não vai ser instalado" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " ou" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "Serão instalados os seguintes NOVOS pacotes:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "Serão REMOVIDOS os seguintes pacotes:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "Serão mantidos em suas versões actuais os seguintes pacotes:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "Serão actualizados os seguintes pacotes:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "Será feito o DOWNGRADE aos seguintes pacotes:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "Os seguintes pacotes mantidos serão mudados:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (devido a %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -734,64 +734,64 @@ 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!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu pacotes actualizados, %lu pacotes novos instalados, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu reinstalados, " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu a que foi feito o downgrade, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu a remover e %lu não actualizados.\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu pacotes não totalmente instalados ou removidos.\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "Note, a seleccionar '%s' para a tarefa '%s'\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "Note, a seleccionar '%s' para a expressão regular '%s'\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "Versão seleccionada '%s' (%s) para '%s'\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "O pacote %s é um pacote virtual disponibilizado por:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [Instalado]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 msgid " [Not candidate version]" msgstr "[Não é versão candidata]" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "Você deve seleccionar explicitamente um para instalar." -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -802,168 +802,171 @@ msgstr "" "Isso pode significar que o pacote falta, ou ficou obsoleto, ou\n" "está disponÃvel somente a partir de outra fonte\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "No entanto, os seguintes pacotes substituem-no:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, c-format msgid "Package '%s' has no installation candidate" msgstr "O pacote '%s' não tem candidato para instalação" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "Pacotes virtuais como '%s' não podem ser removidos\n" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "Note, a seleccionar '%s' em vez de '%s'\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "Saltando %s, já está instalado e a actualização não está definida.\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "Saltando %s, não está instalado e só são pedidas actualizações.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" "A reinstalação de %s não é possÃvel, o download do mesmo não pode ser " "feito.\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s já está na versão mais recente.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, c-format msgid "%s set to manually installed.\n" msgstr "%s está definido para ser instalado manualmente.\n" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "O pacote %s não está instalado, por isso não será removido\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "A corrigir dependências..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " falhou." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "Não foi possÃvel corrigir dependências" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "Não foi possÃvel minimizar o conjunto de actualizações" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " Feito" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 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." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "Dependências não satisfeitas. Tente utilizar -f." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "AVISO: Os seguintes pacotes não podem ser autenticados!" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "Aviso de autenticação ultrapassado.\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "Instalar estes pacotes sem verificação [y/N]? " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "Alguns pacotes não puderam ser autenticados" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "Há problemas e foi utilizado -y sem --force-yes" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Erro Interno, InstallPackages foi chamado com pacotes estragados!" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "Pacotes precisam de ser removidos mas Remove está desabilitado." -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "Erro Interno, Ordering não terminou" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "A lista de fontes não pôde ser lida." - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 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" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "É necessário obter %sB/%sB de arquivos.\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "É necessário obter %sB de arquivos.\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" "Após esta operação, serão utilizados %sB adicionais de espaço em disco.\n" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, 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" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, 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:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "Você não possui espaço livre suficiente em %s." -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Trivial Only especificado mas isto não é uma operação trivial." -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "Sim, faça como eu digo!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -974,28 +977,28 @@ msgstr "" "Para continuar escreva a frase '%s'\n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "Abortado." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "Deseja continuar [Y/n]? " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Falhou obter %s %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "Falhou o download de alguns ficheiros" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "Download completo e em modo de fazer apenas o download" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1003,19 +1006,19 @@ msgstr "" "Não foi possÃvel obter alguns arquivos, tente talvez correr apt-get update " "ou tente com --fix-missing?" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing e troca de mÃdia não são suportados actualmente" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "Não foi possÃvel corrigir os pacotes em falta." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "A abortar a instalação." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1029,35 +1032,35 @@ msgstr[1] "" "Os seguintes pacotes desapareceram do seu sistema pois\n" "todos os ficheiros foram por outros pacotes:" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "Nota: Isto foi feito automaticamente e intencionalmente pelo dpkg." -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "Ignorar o lançamento pretendido, não disponÃvel, '%s' do pacote '%s'" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "A escolher '%s' como pacote pacote de código fonte em vez de '%s'\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "Ignorar a versão '%s', não disponÃvel, do pacote '%s'" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "O comando update não leva argumentos" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Não é suposto nós apagarmos coisas, não pode iniciar o AutoRemover" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1069,7 +1072,7 @@ msgstr[1] "" "Os seguintes pacotes foram instalados automaticamente e já não são " "necessários:" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1078,11 +1081,11 @@ msgstr[0] "O pacote %lu foi instalado automaticamente e já não é necessário. msgstr[1] "" "Os pacotes %lu foram instalados automaticamente e já não são necessários.\n" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "Utilize 'apt-get autoremove' para os remover." -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1100,23 +1103,23 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "A seguinte informação pode ajudar a resolver a situação:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" msgstr "Erro Interno, o AutoRemover estragou coisas" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "Erro Interno, AllUpgrade estragou algo" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Você deve querer executar 'apt-get -f install' para corrigir estes:" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1124,7 +1127,7 @@ msgstr "" "Dependências não satisfeitas. Tente 'apt-get -f install' sem nenhum pacote " "(ou especifique uma solução)." -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1136,62 +1139,62 @@ msgstr "" "distribuição unstable em que alguns pacotes pedidos ainda não foram \n" "criados ou foram movidos do Incoming." -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "Pacotes estragados" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "Os seguintes pacotes extra serão instalados:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "Pacotes sugeridos:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "Pacotes recomendados:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "ImpossÃvel encontrar o pacote %s" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s está definido para ser instalado automaticamente.\n" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "A calcular a actualização... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "Falhou" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "Pronto" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "Erro Interno, o solucionador de problemas estragou coisas" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "ImpossÃvel criar acesso exclusivo ao directório de downloads" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 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:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "Não foi possÃvel encontrar um pacote de código fonte para %s" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -1201,7 +1204,7 @@ msgstr "" "'%s' em:\n" "%s\n" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1212,78 +1215,82 @@ msgstr "" "bzr get %s\n" "para obter as últimas actualizações (possivelmente por lançar) ao pacote.\n" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, 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:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "Você não possui espaço livre suficiente em %s" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, 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" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, 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:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "Obter código fonte %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "Falhou obter alguns arquivos." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, 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:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "O comando de descompactação '%s' falhou.\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, 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:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "O comando de compilação '%s' falhou.\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "O processo filho falhou" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 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:2506 +#: cmdline/apt-get.cc:2524 #, 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:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "%s não tem dependências de compilação.\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1292,7 +1299,7 @@ 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:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1301,32 +1308,32 @@ msgstr "" "a dependência de %s para %s não pode ser satisfeita porque nenhuma versão " "disponÃvel do pacote %s pode satisfazer os requisitos de versão" -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, 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:2693 +#: cmdline/apt-get.cc:2711 #, 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:2709 +#: cmdline/apt-get.cc:2727 #, 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:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "Falhou processar as dependências de compilação" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "Módulos Suportados:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1416,7 +1423,7 @@ msgstr "" "apt-get(8), sources.list(5) e apt.conf(5)\n" " Este APT tem Poderes de Super Vaca.\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1670,10 +1677,10 @@ msgstr "O ficheiro %s/%s substitui o que está no pacote %s" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1809,23 +1816,23 @@ msgstr "Falha em localizar um ficheiro de controle válido" msgid "Unparsable control file" msgstr "Ficheiro de controle não interpretável" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "Não foi possÃvel abrir pipe para %s" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "Erro de leitura do processo %s" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "Falhou o stat" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "Falhou definir hora de modificação" @@ -1918,7 +1925,7 @@ msgstr "Foi atingido o tempo limite de ligação" msgid "Server closed the connection" msgstr "O servidor fechou a ligação" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "Erro de leitura" @@ -1930,7 +1937,7 @@ msgstr "Uma resposta sobrecarregou o buffer." msgid "Protocol corruption" msgstr "Corrupção de protocolo" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "Erro de escrita" @@ -1984,7 +1991,7 @@ msgstr "Ligação de socket de dados expirou" msgid "Unable to accept connection" msgstr "ImpossÃvel aceitar ligação" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "Problema ao calcular o hash do ficheiro" @@ -2120,67 +2127,67 @@ msgstr "Recebi uma única linha de cabeçalho acima de %u caracteres" msgid "Bad header line" msgstr "Linha de cabeçalho errada" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "O servidor HTTP enviou um cabeçalho de resposta inválido" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "O servidor HTTP enviou um cabeçalho Content-Length inválido" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "O servidor HTTP enviou um cabeçalho Content-Range inválido" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "Este servidor HTTP possui suporte de range errado" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "Formato de data desconhecido" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "A selecção falhou" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "O tempo da ligação expirou" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "Erro ao escrever para o ficheiro de saÃda" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "Erro ao escrever para ficheiro" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "Erro ao escrever para o ficheiro" -#: methods/http.cc:894 +#: methods/http.cc:900 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:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "Erro ao ler do servidor" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 msgid "Failed to truncate file" msgstr "Falhou truncar o ficheiro" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "Dados de cabeçalho errados" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "A ligação falhou" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "Erro interno" @@ -2379,14 +2386,14 @@ msgstr "Operação %s inválida" msgid "Unable to stat the mount point %s" msgstr "ImpossÃvel executar stat ao ponto de montagem %s" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "ImpossÃvel mudar para %s" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "ImpossÃvel executar stat ao cdrom" @@ -2413,149 +2420,149 @@ msgstr "" msgid "Could not get lock %s" msgstr "Não foi possÃvel obter acesso exclusivo a %s" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Esperou por %s mas não estava lá" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, 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:635 +#: apt-pkg/contrib/fileutl.cc:657 #, c-format msgid "Sub-process %s received signal %u." msgstr "O sub-processo %s recebeu o sinal %u." -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, 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:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "O sub-processo %s terminou inesperadamente" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "Não foi possÃvel abrir ficheiro o %s" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, 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:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "lido, ainda restam %lu para serem lidos mas não resta nenhum" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "escrito, ainda restam %lu para escrever mas não foi possÃvel" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, c-format msgid "Problem closing the gzip file %s" msgstr "Problema ao fechar o ficheiro gzip %s" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, c-format msgid "Problem closing the file %s" msgstr "Problema ao fechar o ficheiro %s" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, c-format msgid "Problem renaming the file %s to %s" msgstr "Problema ao renomear o ficheiro %s para %s" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, c-format msgid "Problem unlinking the file %s" msgstr "Problema ao remover o link do ficheiro %s" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "Problema sincronizando o ficheiro" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "Cache de pacotes vazia" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "O ficheiro de cache de pacotes está corrompido" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 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:158 +#: apt-pkg/pkgcache.cc:161 #, 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:163 +#: apt-pkg/pkgcache.cc:166 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:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "Depende" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "Pré-Depende" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "Sugere" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "Recomenda" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "Em Conflito" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "Substitui" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "Obsoleta" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "Estraga" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "Aumenta" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "importante" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "necessário" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "padrão" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "opcional" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "extra" @@ -2676,7 +2683,7 @@ msgstr "O tipo '%s' não é conhecido na linha %u na lista de fontes %s" #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" "Não foi possÃvel proceder à configuração imediata em '%s'. Para detalhes, " @@ -2697,10 +2704,10 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" -"Não foi possÃvel proceder à configuração imediata no já descompactado '%s'." +"Não foi possÃvel proceder à configuração imediata no já descompactado '%s'. " "Para mais detalhes por favor veja man 5 apt.conf em APT::Immediate-Configure." #: apt-pkg/pkgrecords.cc:32 @@ -2716,7 +2723,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:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2724,13 +2731,13 @@ msgstr "" "Erro, pkgProblemResolver::Resolve gerou falhas, isto pode ser causado por " "pacotes mantidos (hold)." -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Não foi possÃvel corrigir problemas, você tem pacotes mantidos (hold) " "estragados." -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2755,12 +2762,12 @@ msgstr "ImpossÃvel criar acesso exclusivo ao directório %s" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "A obter o ficheiro %li de %li (%s restantes)" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "A obter o ficheiro %li de %li" @@ -2781,12 +2788,12 @@ 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:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Sistema de empacotamento '%s' não é suportado" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "" "Não foi possÃvel determinar um tipo de sistema de empacotamento adequado" @@ -2810,17 +2817,21 @@ msgstr "" 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/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "A lista de fontes não pôde ser lida." + +#: apt-pkg/policy.cc:344 #, 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:365 +#: apt-pkg/policy.cc:366 #, 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:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "Nenhuma prioridade (ou zero) especificada para marcação (pin)" @@ -2928,12 +2939,12 @@ msgstr "falhou renomear, %s (%s -> %s)." msgid "MD5Sum mismatch" msgstr "MD5Sum não coincide" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" msgstr "Código de verificação hash não coincide" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 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 " @@ -2942,32 +2953,32 @@ msgstr "" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "Ficheiro Release expirou, a ignorar %s (inválido desde %s)" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, 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:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "Ocorreu um erro durante a verificação da assinatura. O repositório não está " "actualizado e serão utilizados os ficheiros anteriores de Ãndice. Erro do " "GPG: %s: %s\n" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "Erro GPG: %s: %s" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2977,7 +2988,7 @@ msgstr "" "significar que você precisa corrigir manualmente este pacote. (devido a " "arquitectura em falta)" -#: apt-pkg/acquire-item.cc:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2986,7 +2997,7 @@ msgstr "" "Não foi possÃvel localizar arquivo para o pacote %s. Isto pode significar " "que você precisa consertar manualmente este pacote." -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2994,7 +3005,7 @@ msgstr "" "Os arquivos de Ãndice de pacotes estão corrompidos. Nenhum campo Filename: " "para o pacote %s." -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "Tamanho incorrecto" @@ -3119,39 +3130,39 @@ msgstr "A escrever lista de novas source\n" msgid "Source list entries for this disc are:\n" msgstr "As entradas de listas de Source para este Disco são:\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "Escreveu %i registos.\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, 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:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, 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:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" "Escreveu %i registos com %i ficheiros em falta e %i ficheiros não " "coincidentes\n" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, c-format msgid "Skipping nonexistent file %s" msgstr "A saltar ficheiro %s inexistente" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "Não foi possÃvel encontrar registo de autenticação para: %s" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, c-format msgid "Hash mismatch for: %s" msgstr "Hash não coincide para: %s" @@ -3217,12 +3228,12 @@ msgstr "" msgid "Installing %s" msgstr "A instalar %s" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "A configurar %s" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "A remover %s" @@ -3242,76 +3253,77 @@ msgstr "A notar o desaparecimento de %s" msgid "Running post-installation trigger %s" msgstr "A correr o 'trigger' de pós-instalação %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "Falta o directório '%s'" -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Could not open file '%s'" msgstr "Não foi possÃvel abrir ficheiro o '%s'" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "A preparar %s" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "A desempacotar %s" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "A preparar para configurar %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "%s instalado" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "A preparar a remoção de %s" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "%s removido" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "A preparar para remover completamente %s" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "Remoção completa de %s" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Não é possÃvel escrever o registo (log), openpty() falhou (/dev/pts não está " "montado?)\n" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "A correr o dpkg" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 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:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "problemas de dependências - deixando por configurar" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3319,7 +3331,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:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" @@ -3327,7 +3339,7 @@ msgstr "" "Nenhum relatório apport escrito pois a mensagem de erro indica erro de disco " "cheio" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3335,7 +3347,7 @@ msgstr "" "Nenhum relatório apport escrito pois a mensagem de erro indica um erro de " "memória esgotada" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index 08e8a103d..e32dd4034 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: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+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." @@ -151,14 +151,14 @@ msgstr " Pacote alfinetado (\"pin\"): " msgid " Version table:" msgstr " Tabela de versão:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, 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:1739 +#: cmdline/apt-cache.cc:1745 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -328,31 +328,31 @@ msgstr "ImpossÃvel escrever para %s" 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:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "Lista de extensão de pacotes é muito extensa" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "Erro processando o diretório %s" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "Lista de extensão de fontes é muito extensa" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "Erro ao gravar cabeçalho no arquivo de conteúdo" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "Erro processando conteúdo %s" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -434,11 +434,11 @@ msgstr "" " -c=? Lê o arquivo de configuração especificado.\n" " -o=? Define uma opção de configuração arbitrária" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "Nenhuma seleção combinou" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, 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'" @@ -551,7 +551,7 @@ msgstr "Repositório não possuÃa campo pacote" msgid " %s has no override entry\n" msgstr " %s não possui entrada override\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " mantenedor de %s é %s, não %s\n" @@ -661,79 +661,79 @@ msgstr "Problema removendo %s" msgid "Failed to rename %s to %s" msgstr "Falhou ao renomear %s para %s" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "S" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "Erro de compilação de regex - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "Os pacotes a seguir têm dependências desencontradas:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "mas %s está instalado" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "mas %s está para ser instalado" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "mas não é instalável" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "mas é um pacote virtual" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "mas não está instalado" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "mas não será instalado" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " ou" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "Os NOVOS pacotes a seguir serão instalados:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "Os pacotes a seguir serão REMOVIDOS:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "Os pacotes a seguir serão mantidos em suas versões atuais:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "Os pacotes a seguir serão atualizados:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "Os pacotes a seguir serão REVERTIDOS:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "Os seguintes pacotes mantidos serão mudados:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (por causa de %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -742,65 +742,65 @@ msgstr "" "Isso NÃO deveria ser feito a menos que você saiba exatamente o que você está " "fazendo!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu pacotes atualizados, %lu pacotes novos instalados, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu reinstalados, " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu revertidos, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu a serem removidos e %lu não atualizados.\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu pacotes não totalmente instalados ou removidos.\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, fuzzy, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "Nota, selecionando %s para expressão regular '%s'\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, fuzzy, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "Nota, selecionando %s para expressão regular '%s'\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, fuzzy, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "Versão selecionada %s (%s) para %s\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "O pacote %s é um pacote virtual fornecido por:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [Instalado]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 #, fuzzy msgid " [Not candidate version]" msgstr "Versões candidatas" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "Você deveria selecionar explicitamente um para instalar." -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -811,167 +811,170 @@ msgstr "" "Isto pode significar que o pacote está faltando, ficou obsoleto ou\n" "está disponÃvel somente a partir de outra fonte\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "No entanto, os pacotes a seguir o substituem:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, fuzzy, c-format msgid "Package '%s' has no installation candidate" msgstr "O pacote %s não tem candidato para instalação" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, fuzzy, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "Nota, selecionando %s ao invés de %s\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "Pulando %s, já está instalado e a atualização não está configurada.\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, fuzzy, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "Pulando %s, já está instalado e a atualização não está configurada.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "A reinstalação de %s não é possÃvel, não pode ser baixado.\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s já é a versão mais nova.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, c-format msgid "%s set to manually installed.\n" msgstr "%s configurado para instalar manualmente.\n" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "O pacote %s não está instalado, então não será removido\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "Corrigindo dependências..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " falhou." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "ImpossÃvel corrigir dependências" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "ImpossÃvel minimizar o conjunto de atualizações" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " Pronto" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 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." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "Dependências desencontradas. Tente usar -f." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "AVISO: Os pacotes a seguir não podem ser autenticados!" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "Aviso de autenticação sobreposto.\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "Instalar estes pacotes sem verificação [s/N]? " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "Alguns pacotes não puderam ser autenticados" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "Há problemas e -y foi usado sem --force-yes" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Erro interno, InstallPackages foi chamado com pacotes quebrados!" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "Pacotes precisam ser removidos mas a remoção está desabilitada." -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "Erro interno, Ordenação não finalizou" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "A lista de fontes não pode ser lida." - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" "Que estranho.. Os tamanhos não batem, mande e-mail para apt@packages.debian." "org" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "É preciso baixar %sB/%sB de arquivos.\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "É preciso baixar %sB de arquivos.\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" "Depois desta operação, %sB adicionais de espaço em disco serão usados.\n" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, 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" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, 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:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "Você não possui espaço suficiente em %s." -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "\"Trivial Only\" especificado mas esta não é uma operação trivial." -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "Sim, faça o que eu digo!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -982,28 +985,28 @@ msgstr "" "Para continuar digite a frase '%s'\n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "Abortar." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "Você quer continuar [S/n]? " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Falhou ao buscar %s %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "Alguns arquivos falharam ao baixar" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "Baixar completo e no modo somente baixar (\"download only\")" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1011,19 +1014,19 @@ msgstr "" "ImpossÃvel buscar alguns arquivos, talvez executar apt-get update ou tentar " "com --fix-missing?" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing e troca de mÃdia não são suportados atualmente" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "ImpossÃvel corrigir pacotes faltantes." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "Abortando instalação." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1033,35 +1036,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, 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" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "O comando update não leva argumentos" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Nós não deverÃamos apagar coisas, impossÃvel iniciar AutoRemover" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1075,7 +1078,7 @@ msgstr[1] "" "Os seguintes pacotes foram automaticamente instalados e não são mais " "requeridos:" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1087,11 +1090,11 @@ msgstr[1] "" "Os seguintes pacotes foram automaticamente instalados e não são mais " "requeridos:" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "Use 'apt-get autoremove' para removê-los." -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1109,23 +1112,23 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "A informação a seguir pode ajudar a resolver a situação:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" msgstr "Erro Interno, o AutoRemover quebrou coisas" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "Erro interno, AllUpgrade quebrou coisas" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Você deve querer executar 'apt-get -f install' para corrigÃ-los:" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1133,7 +1136,7 @@ msgstr "" "Dependências desencontradas. Tente 'apt-get -f install' sem nenhum pacote " "(ou especifique uma solução)." -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1145,69 +1148,69 @@ msgstr "" "distribuição instável, que alguns pacotes requeridos não foram\n" "criados ainda ou foram retirados da \"Incoming\"." -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "Pacotes quebrados" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "Os pacotes extra a seguir serão instalados:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "Pacotes sugeridos:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "Pacotes recomendados:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "ImpossÃvel achar pacote %s" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "%s configurado para instalar manualmente.\n" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "Calculando atualização... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "Falhou" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "Pronto" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "Erro interno, o solucionador de problemas quebrou coisas" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "ImpossÃvel criar trava no diretório de download" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 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:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "ImpossÃvel encontrar um pacote fonte para %s" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1215,76 +1218,80 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Pulando arquivo já baixado '%s'\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "Você não possui espaço livre suficiente em %s" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Preciso obter %sB/%sB de arquivos fonte.\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Preciso obter %sB de arquivos fonte.\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "Obter fonte %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "Falhou ao buscar alguns arquivos." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, 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:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Comando de desempacotamento '%s' falhou.\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, 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:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "Comando de construção '%s' falhou.\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "Processo filho falhou" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 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:2506 +#: cmdline/apt-get.cc:2524 #, 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:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "%s não tem dependências de construção.\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1293,7 +1300,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:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1302,32 +1309,32 @@ 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:2666 +#: cmdline/apt-get.cc:2684 #, 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:2693 +#: cmdline/apt-get.cc:2711 #, 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:2709 +#: cmdline/apt-get.cc:2727 #, 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:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "Falhou ao processar as dependências de construção" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "Módulos para os quais há suporte:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1415,7 +1422,7 @@ msgstr "" "para mais informações e opções.\n" " Este APT tem Poderes de Super Vaca.\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1667,10 +1674,10 @@ msgstr "Arquivo %s/%s sobrescreve arquivo no pacote %s" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1806,23 +1813,23 @@ msgstr "Falhou ao localizar um arquivo de controle válido" msgid "Unparsable control file" msgstr "Arquivo de controle não interpretável" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "Não foi possÃvel abrir \"pipe\" para %s" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "Erro de leitura do processo %s" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "Falhou ao executar \"stat\"" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "Falhou ao definir hora de modificação" @@ -1915,7 +1922,7 @@ msgstr "Conexão expirou" msgid "Server closed the connection" msgstr "Servidor fechou a conexão" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "Erro de leitura" @@ -1927,7 +1934,7 @@ msgstr "Uma resposta sobrecarregou o buffer" msgid "Protocol corruption" msgstr "Corrupção de protocolo" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "Erro de escrita" @@ -1981,7 +1988,7 @@ msgstr "Conexão do socket de dados expirou" msgid "Unable to accept connection" msgstr "ImpossÃvel aceitar conexão" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "Problema criando o hash do arquivo" @@ -2118,67 +2125,67 @@ msgstr "Recebi uma única linha de cabeçalho acima de %u caracteres" msgid "Bad header line" msgstr "Linha de cabeçalho ruim" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "O servidor HTTP enviou um cabeçalho de resposta inválido" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "O servidor HTTP enviou um cabeçalho \"Content-Length\" inválido" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "O servidor HTTP enviou um cabeçalho \"Content-Range\" inválido" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "Este servidor HTTP possui suporte a \"range\" quebrado" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "Formato de data desconhecido" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "Seleção falhou" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "Conexão expirou" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "Erro escrevendo para arquivo de saÃda" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "Erro escrevendo para arquivo" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "Erro escrevendo para o arquivo" -#: methods/http.cc:894 +#: methods/http.cc:900 msgid "Error reading from server. Remote end closed connection" msgstr "Erro lendo do servidor. Ponto remoto fechou a conexão" -#: methods/http.cc:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "Erro lendo do servidor" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 msgid "Failed to truncate file" msgstr "Falhou ao truncar arquivo" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "Dados de cabeçalho ruins" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "Conexão falhou" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "Erro interno" @@ -2373,14 +2380,14 @@ msgstr "Operação %s inválida" msgid "Unable to stat the mount point %s" msgstr "ImpossÃvel executar \"stat\" no ponto de montagem %s" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "ImpossÃvel mudar para %s" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "ImpossÃvel executar \"stat\" no cdrom" @@ -2404,149 +2411,149 @@ msgstr "Não usando travamento para arquivo de trava montado via nfs %s" msgid "Could not get lock %s" msgstr "Não foi possÃvel obter trava %s" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Esperado %s mas este não estava lá" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, 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:635 +#: apt-pkg/contrib/fileutl.cc:657 #, 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:639 +#: apt-pkg/contrib/fileutl.cc:661 #, 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:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Sub-processo %s finalizou inesperadamente" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "Não foi possÃvel abrir arquivo %s" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, 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:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "leitura, ainda restam %lu para serem lidos mas nenhum deixado" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "escrita, ainda restam %lu para gravar mas não foi possÃvel" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, fuzzy, c-format msgid "Problem closing the gzip file %s" msgstr "Problema fechando o arquivo" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "Problema fechando o arquivo" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "Problema sincronizando o arquivo" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "Problema removendo o arquivo" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "Problema sincronizando o arquivo" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "Cache de pacotes vazio" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "O arquivo de cache de pacotes está corrompido" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 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:158 +#: apt-pkg/pkgcache.cc:161 #, 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:163 +#: apt-pkg/pkgcache.cc:166 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:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "Depende" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "Pré-Depende" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "Sugere" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "Recomenda" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "Conflita" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "Substitui" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "Obsoleta" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "Quebra" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "importante" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "requerido" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "padrão" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "opcional" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "extra" @@ -2669,7 +2676,7 @@ msgstr "Tipo '%s' não é conhecido na linha %u na lista de fontes %s" #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" @@ -2688,7 +2695,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" @@ -2705,7 +2712,7 @@ msgstr "" "O pacote %s precisa ser reinstalado, mas não foi possÃvel encontrar um " "arquivo para o mesmo." -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2713,11 +2720,11 @@ msgstr "" "Erro, pkgProblemResolver::Resolve gerou falhas, isto pode ser causado por " "pacotes mantidos (hold)." -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "ImpossÃvel corrigir problemas, você manteve (hold) pacotes quebrados." -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2742,12 +2749,12 @@ msgstr "ImpossÃvel criar trava no diretório de listas" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Obtendo o arquivo %li de %li (%s restantes)" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "Obtendo arquivo %li de %li" @@ -2768,12 +2775,12 @@ 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:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Sistema de empacotamento '%s' não é suportado" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "ImpossÃvel determinar um tipo de sistema de empacotamento aplicável." @@ -2796,17 +2803,21 @@ msgstr "" 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/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "A lista de fontes não pode ser lida." + +#: apt-pkg/policy.cc:344 #, 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:365 +#: apt-pkg/policy.cc:366 #, 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:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "Nenhuma prioridade (ou zero) especificada para \"pin\"" @@ -2914,41 +2925,41 @@ msgstr "renomeação falhou, %s (%s -> %s)." msgid "MD5Sum mismatch" msgstr "MD5Sum incorreto" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" msgstr "Hash Sum incorreto" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 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" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2958,7 +2969,7 @@ msgstr "" "que você precisa consertar manualmente este pacote. (devido a arquitetura " "não especificada)." -#: apt-pkg/acquire-item.cc:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2967,7 +2978,7 @@ msgstr "" "Não foi possÃvel localizar arquivo para o pacote %s. Isto pode significar " "que você precisa consertar manualmente este pacote." -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2975,7 +2986,7 @@ msgstr "" "Os arquivos de Ãndice de pacotes estão corrompidos. Nenhum campo \"Filename:" "\" para o pacote %s." -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "Tamanho incorreto" @@ -3098,39 +3109,39 @@ msgstr "Gravando nova lista de fontes\n" msgid "Source list entries for this disc are:\n" msgstr "Entradas na lista de fontes para este disco são:\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "Gravados %i registros.\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Gravados %i registros com %i arquivos faltando.\n" -#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, 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:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" "Gravados %i registros com %i arquivos faltando e %i arquivos que não " "combinam\n" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, fuzzy, c-format msgid "Skipping nonexistent file %s" msgstr "Abrindo arquivo de configuração %s" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, fuzzy, c-format msgid "Hash mismatch for: %s" msgstr "Hash Sum incorreto" @@ -3187,12 +3198,12 @@ msgstr "" msgid "Installing %s" msgstr "Instalando %s" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "Configurando %s" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "Removendo %s" @@ -3212,92 +3223,93 @@ msgstr "" msgid "Running post-installation trigger %s" msgstr "Executando gatilho pós-instalação %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "Diretório '%s' está faltando" -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, fuzzy, c-format msgid "Could not open file '%s'" msgstr "Não foi possÃvel abrir arquivo %s" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "Preparando %s" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "Desempacotando %s" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "Preparando para configurar %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "%s instalado" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "Preparando para a remoção de %s" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "%s removido" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "Preparando para remover completamente %s" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "%s completamente removido" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "ImpossÃvel escrever log, openpty() falhou (/dev/pts não montado?)\n" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ro\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+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" @@ -152,14 +152,14 @@ msgstr " Pachet ales special: " msgid " Version table:" msgstr " Tabela de versiuni:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, 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:1739 +#: cmdline/apt-cache.cc:1745 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -324,31 +324,31 @@ msgstr "Nu s-a putut scrie în %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Nu s-a putut citi versiunea debconf. Este instalat debconf?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "Lista de extensii pentru pachet este prea lungă" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "Eroare la prelucrarea directorului %s" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "Lista de extensii pentru sursă este prea lungă" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "Eroare la scrierea antetului în fiÈ™ierul index" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "Eroare la prelucrarea conÈ›inutului %s" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -436,11 +436,11 @@ msgstr "" " -c=? CiteÈ™te acest fiÈ™ier de configurare\n" " -o=? Ajustează o opÈ›iune de configurare arbitrară" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "Nu s-a potrivit nici o selecÈ›ie" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Unele fiÈ™iere lipsesc din grupul fiÈ™ierului pachet '%s'" @@ -553,7 +553,7 @@ msgstr "Arhiva nu are câmp de pachet" msgid " %s has no override entry\n" msgstr " %s nu are intrare de înlocuire\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s responsabil este %s nu %s\n" @@ -663,79 +663,79 @@ msgstr "Problemă la desfacerea %s" msgid "Failed to rename %s to %s" msgstr "EÈ™ec la redenumirea lui %s în %s" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "Eroare de compilare expresie regulată - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "Următoarele pachete au dependenÈ›e neîndeplinite:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "dar %s este instalat" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "dar %s este pe cale de a fi instalat" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "dar nu este instalabil" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "dar este un pachet virtual" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "dar nu este instalat" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "dar nu este pe cale să fie instalat" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " sau" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "Următoarele pachete NOI vor fi instalate:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "Următoarele pachete vor fi ȘTERSE:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "Următoarele pachete au fost reÈ›inute:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "Următoarele pachete vor fi ÃŽNNOITE:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "Următoarele pachete vor fi DE-GRADATE:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "Următoarele pachete È›inute vor fi schimbate:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (datorită %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -743,65 +743,65 @@ msgstr "" "AVERTISMENT: Următoarele pachete esenÈ›iale vor fi È™terse.\n" "Aceasta NU ar trebui făcută decât dacă È™tiÈ›i exact ce vreÈ›i!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu înnoite, %lu nou instalate, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu reinstalate, " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu de-gradate, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu de È™ters È™i %lu neînnoite.\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu instalate sau È™terse incomplet.\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, fuzzy, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "Notă, selectare %s pentru expresie regulată '%s'\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, fuzzy, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "Notă, selectare %s pentru expresie regulată '%s'\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, fuzzy, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "Versiune selectată %s (%s) pentru %s\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "Pachetul %s este un pachet virtual furnizat de către:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [Instalat]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 #, fuzzy msgid " [Not candidate version]" msgstr "Versiuni candidat" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "Ar trebui să alegeÈ›i în mod explicit unul pentru instalare." -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -812,166 +812,169 @@ msgstr "" "Aceasta ar putea însemna că pachetul lipseÈ™te, s-a învechit, sau\n" "este disponibil numai din altă sursă\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "Oricum următoarele pachete îl înlocuiesc:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, fuzzy, c-format msgid "Package '%s' has no installation candidate" msgstr "Pachetul %s nu are nici un candidat la instalare" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, fuzzy, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "Notă, se selectează %s în locul lui %s\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "Sar peste %s, este deja instalat È™i înnoirea nu este activată.\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, fuzzy, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "Sar peste %s, este deja instalat È™i înnoirea nu este activată.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "Reinstalarea lui %s nu este posibilă, nu poate fi descărcat.\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s este deja la cea mai nouă versiune.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, c-format msgid "%s set to manually installed.\n" msgstr "%s este marcat ca fiind instalat manual.\n" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "Pachetul %s nu este instalat, aÈ™a încât nu este È™ters\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "Corectez dependenÈ›ele..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " eÈ™ec." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "Nu s-au putut corecta dependenÈ›ele" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "Nu s-a putut micÈ™ora mulÈ›imea pachetelor de înnoit" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " Terminat" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 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." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "DependenÈ›e neîndeplinite. ÃŽncercaÈ›i să folosiÈ›i -f." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "AVERTISMENT: Următoarele pachete nu pot fi autentificate!" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "Avertisment de autentificare înlocuit.\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "InstalaÈ›i aceste pachete fără verificare [y/N]? " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "Unele pachete n-au putut fi autentificate" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "Sunt unele probleme È™i -y a fost folosit fără --force-yes" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Eroare internă, InstallPackages a fost apelat cu pachete deteriorate!" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "Pachete trebuiesc È™terse dar È™tergerea este dezactivată." -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "Eroare internă, Ordering nu s-a terminat" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "Lista surselor nu poate fi citită." - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" "Ce ciudat.. Dimensiunile nu se potrivesc, scrieÈ›i la apt@packages.debian.org" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Este nevoie să descărcaÈ›i %sB/%sB de arhive.\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Este nevoie să descărcaÈ›i %sB de arhive.\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "După această operaÈ›ie vor fi folosiÈ›i din disc încă %sB.\n" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, 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" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "N-am putut determina spaÈ›iul disponibil în %s" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "Nu aveÈ›i suficient spaÈ›iu în %s." -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "A fost specificat 'doar neimportant' dar nu este o operaÈ›iune neimportantă." -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "Da, fă cum îți spun!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -982,28 +985,28 @@ msgstr "" "Pentru a continua tastaÈ›i fraza '%s'\n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "RenunÈ›are." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "VreÈ›i să continuaÈ›i [Y/n]? " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "EÈ™ec la aducerea lui %s %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "Descărcarea unor fiÈ™iere a eÈ™uat" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "Descărcare completă È™i în modul doar descărcare" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1011,19 +1014,19 @@ msgstr "" "Nu s-au putut aduce unele arhive, poate ar fi o idee bună să rulaÈ›i 'apt-get " "update' sau încercaÈ›i cu --fix-missing?" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing È™i schimbul de mediu nu este deocamdată suportat" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "Nu pot corecta pachetele lipsă." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "Abandonez instalarea." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1034,36 +1037,36 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Nu pot determina starea listei surse de pachete %s" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "Comanda de actualizare nu are argumente" # XXX: orice sugestie este bine-venită -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Nu este voie să se È™teargă lucruri, nu se poate porni AutoRemover" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1077,7 +1080,7 @@ msgstr[1] "" msgstr[2] "" "Următoarele pachete au fost instalate automat È™i nu mai sunt necesare:" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1089,11 +1092,11 @@ msgstr[1] "" msgstr[2] "" "Următoarele pachete au fost instalate automat È™i nu mai sunt necesare:" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "FolosiÈ›i 'apt-get autoremove' pentru a le È™terge." -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1112,23 +1115,23 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "Următoarele informaÈ›ii ar putea să vă ajute la rezolvarea situaÈ›iei:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" msgstr "Eroare internă, AutoRemover a deteriorat diverse chestiuni" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "Eroare internă, înnoire totală a defectat diverse chestiuni" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "AÈ›i putea porni 'apt-get -f install' pentru a corecta acestea:" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1136,7 +1139,7 @@ msgstr "" "DependenÈ›e neîndeplinite. ÃŽncercaÈ›i 'apt-get -f install' fără nici un pachet " "(sau oferiÈ›i o altă soluÈ›ie)." -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1149,70 +1152,70 @@ msgstr "" "pachete\n" "cerute n-au fost create încă sau au fost mutate din Incoming." -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "Pachete deteriorate" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "Următoarele extra pachete vor fi instalate:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "Pachete sugerate:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "Pachete recomandate:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "Nu pot găsi pachetul %s" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "%s este marcat ca fiind instalat manual.\n" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "Calculez înnoirea... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "EÈ™ec" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "Terminat" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "" "Eroare internă, rezolvatorul de probleme a deteriorat diverse chestiuni" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "Nu s-a putut bloca directorul de descărcare" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 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:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "Nu s-a putut găsi o sursă pachet pentru %s" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1220,76 +1223,80 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Sar peste fiÈ™ierul deja descărcat '%s'\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "Nu aveÈ›i suficient spaÈ›iu în %s" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, 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" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, 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:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "Aducere sursa %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "EÈ™ec la aducerea unor arhive." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, 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:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Comanda de despachetare '%s' eÈ™uată.\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, 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:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "Comanda de construire '%s' eÈ™uată.\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "Procesul copil a eÈ™uat" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 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:2506 +#: cmdline/apt-get.cc:2524 #, 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:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "%s nu are dependenÈ›e înglobate.\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1298,7 +1305,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:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1307,32 +1314,32 @@ 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:2666 +#: cmdline/apt-get.cc:2684 #, 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:2693 +#: cmdline/apt-get.cc:2711 #, 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:2709 +#: cmdline/apt-get.cc:2727 #, 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:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "EÈ™ec la prelucrarea dependenÈ›elor de compilare" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "Module suportate:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1421,7 +1428,7 @@ msgstr "" "pentru mai multe informaÈ›ii È™i opÈ›iuni.\n" " Acest APT are puterile unei Super Vaci.\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1673,10 +1680,10 @@ msgstr "FiÈ™ierul %s/%s îl suprascrie pe cel din pachetul %s" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1816,23 +1823,23 @@ msgstr "EÈ™ec la localizare a unui fiÈ™ier de control valid" msgid "Unparsable control file" msgstr "FiÈ™ier de control neanalizabil" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "Nu s-a putut deschide conexiunea pentru %s" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "Eroare de citire din procesul %s" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "EÈ™ec la „statâ€" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "EÈ™ec la ajustarea timpului de modificare" @@ -1925,7 +1932,7 @@ msgstr "Timpul de conectare a expirat" msgid "Server closed the connection" msgstr "Serverul a închis conexiunea" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "Eroare de citire" @@ -1937,7 +1944,7 @@ msgstr "Un răspuns a depășit zona de tampon." msgid "Protocol corruption" msgstr "Protocol corupt" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "Eroare de scriere" @@ -1993,7 +2000,7 @@ msgstr "Timpul de conectare la socket-ul de date expirat" msgid "Unable to accept connection" msgstr "Nu s-a putut accepta conexiune" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "Problemă la calcularea dispersiei pentru fiÈ™ierul" @@ -2130,68 +2137,68 @@ msgstr "S-a primit o singură linie de antet de peste %u caractere" msgid "Bad header line" msgstr "Linie de antet necorespunzătoare" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "Serverul HTTP a trimis un antet de răspuns necorespunzător" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "Serverul HTTP a trimis un antet Content-Length necorespunzător" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "Serverul HTTP a trimis un antet zonă de conÈ›inut necorespunzător" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "Acest server HTTP are un suport defect de intervale" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "Format dată necunoscut" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "SelecÈ›ia a eÈ™uat" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "Timp de conectare expirat" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "Eroare la scrierea fiÈ™ierului de rezultat" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "Eroare la scrierea în fiÈ™ier" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "Eroare la scrierea în fiÈ™ierul" -#: methods/http.cc:894 +#: methods/http.cc:900 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:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "Eroare la citirea de la server" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 msgid "Failed to truncate file" msgstr "EÈ™ec la trunchierea fiÈ™ierului" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "Antet de date necorespunzător" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "Conectare eÈ™uată" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "Eroare internă" @@ -2386,14 +2393,14 @@ msgstr "OperaÈ›iune invalidă %s" msgid "Unable to stat the mount point %s" msgstr "Nu pot determina starea punctului de montare %s" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "Nu pot schimba la %s" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "EÈ™ec la „stat†pentru CD" @@ -2417,149 +2424,149 @@ msgstr "Nu este folosit blocajul pentru fiÈ™ierul montat nfs %s" msgid "Could not get lock %s" msgstr "Nu pot determina blocajul %s" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "AÈ™teptat %s, dar n-a fost acolo" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Subprocesul %s a primit o eroare de segmentare." -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "Subprocesul %s a primit o eroare de segmentare." -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, 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:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Subprocesul %s s-a terminat brusc" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "Nu s-a putut deschide fiÈ™ierul %s" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "Nu s-a putut deschide conexiunea pentru %s" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu 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:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "scriere, încă mai am %lu de scris dar nu pot" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, fuzzy, c-format msgid "Problem closing the gzip file %s" msgstr "Problemă la închiderea fiÈ™ierului" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "Problemă la închiderea fiÈ™ierului" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "Problemă în timpul sincronizării fiÈ™ierului" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "Problemă la dezlegarea fiÈ™ierului" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "Problemă în timpul sincronizării fiÈ™ierului" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "Cache gol de pachet" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "Cache-ul fiÈ™ierului pachet este deteriorat" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "FiÈ™ierul cache al pachetului este o versiune incompatibilă" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "Acest APT nu suportă versioning system '%s'" -#: apt-pkg/pkgcache.cc:163 +#: apt-pkg/pkgcache.cc:166 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:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "Depinde" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "Pre-depinde" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "Sugerează" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "Recomandă" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "Este în conflict" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "ÃŽnlocuieÈ™te" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "ÃŽnvechit" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "Corupe" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "important" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "cerut" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "standard" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "opÈ›ional" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "extra" @@ -2677,7 +2684,7 @@ msgstr "Tipul '%s' nu este cunoscut în linia %u din lista sursă %s" #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" @@ -2696,7 +2703,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" @@ -2712,7 +2719,7 @@ msgid "" msgstr "" "Pachetul %s are nevoie să fie reinstalat, dar nu pot găsi o arhivă pentru el." -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2720,11 +2727,11 @@ msgstr "" "Eroare, pkgProblemResolver::Resolve a generat întreruperi, aceasta poate fi " "cauzată de pachete È›inute." -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "Nu pot corecta problema, aÈ›i È›inut pachete deteriorate." -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2749,12 +2756,12 @@ msgstr "Nu pot încuia directorul cu lista" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, 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:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "Se descarcă fiÈ™ierul %li din %li" @@ -2775,12 +2782,12 @@ 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:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Sistemul de pachete '%s' nu este suportat" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "Nu s-a putut determina un tip de sistem de împachetare potrivit" @@ -2804,17 +2811,21 @@ 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/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "Lista surselor nu poate fi citită." + +#: apt-pkg/policy.cc:344 #, 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:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "Nu s-a înÈ›eles tipul de pin %s" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "Fără prioritate (sau zero) specificată pentru pin" @@ -2922,12 +2933,12 @@ msgstr "redenumire eÈ™uată, %s (%s -> %s)." msgid "MD5Sum mismatch" msgstr "Nepotrivire MD5Sum" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" msgstr "Nepotrivire la suma de căutare" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 msgid "There is no public key available for the following key IDs:\n" msgstr "" "Nu există nici o cheie publică disponibilă pentru următoarele " @@ -2936,29 +2947,29 @@ msgstr "" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2967,7 +2978,7 @@ 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:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2976,7 +2987,7 @@ msgstr "" "N-am putut localiza un fiÈ™ier pentru pachetul %s. Aceasta ar putea însemna " "că aveÈ›i nevoie să depanaÈ›i manual acest pachet." -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2984,7 +2995,7 @@ msgstr "" "FiÈ™ierele index de pachete sunt deteriorate. Fără câmpul 'nume fiÈ™ier:' la " "pachetul %s." -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "Nepotrivire dimensiune" @@ -3108,38 +3119,38 @@ msgstr "Scriere noua listă sursă\n" msgid "Source list entries for this disc are:\n" msgstr "Intrările listei surselor pentru acest disc sunt:\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "S-au scris %i înregistrări.\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, 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:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, 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:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" "S-au scris %i înregistrări cu %i fiÈ™iere lipsă È™i %i fiÈ™iere nepotrivite\n" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, fuzzy, c-format msgid "Skipping nonexistent file %s" msgstr "Se deschide fiÈ™ierul de configurare %s" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, fuzzy, c-format msgid "Hash mismatch for: %s" msgstr "Nepotrivire la suma de căutare" @@ -3196,12 +3207,12 @@ msgstr "" msgid "Installing %s" msgstr "Se instalează %s" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "Se configurează %s" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "Se È™terge %s" @@ -3221,93 +3232,94 @@ msgstr "" msgid "Running post-installation trigger %s" msgstr "Se rulează declanÈ™atorul post-instalare %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "Directorul „%s†lipseÈ™te." -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, fuzzy, c-format msgid "Could not open file '%s'" msgstr "Nu s-a putut deschide fiÈ™ierul %s" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "Se pregăteÈ™te %s" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "Se despachetează %s" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "Se pregăteÈ™te configurarea %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "Instalat %s" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "Se pregăteÈ™te È™tergerea lui %s" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "Șters %s" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "Se pregăteÈ™te È™tergerea completă a %s" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "Șters complet %s" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Nu se poate scrie jurnalul, openpty() a eÈ™uat (oare /dev/pts e montat?)\n" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.8.0~pre1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+0200\n" "PO-Revision-Date: 2010-08-24 21:35+0400\n" "Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n" "Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n" @@ -156,14 +156,14 @@ msgstr " ФикÑатор пакета: " msgid " Version table:" msgstr " Таблица верÑий:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s Ð´Ð»Ñ %s Ñкомпилирован %s %s\n" -#: cmdline/apt-cache.cc:1739 +#: cmdline/apt-cache.cc:1745 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -325,32 +325,32 @@ msgstr "Ðевозможно запиÑать в %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Ðевозможно определить верÑию debconf. Он уÑтановлен?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "СпиÑок раÑширений, допуÑтимых Ð´Ð»Ñ Ð¿Ð°ÐºÐµÑ‚Ð¾Ð², Ñлишком длинен" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "Ошибка обработки каталога %s" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "СпиÑок раÑширений иÑточников Ñлишком длинен" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "" "Ошибка запиÑи заголовка в полный перечень Ñодержимого пакетов (Contents)" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "ошибка обработки полного Ð¿ÐµÑ€ÐµÑ‡Ð½Ñ Ñодержимого пакетов (Contents) %s" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -436,11 +436,11 @@ msgstr "" " -c=? ИÑпользовать указанный файл наÑтройки\n" " -o=? Задать значение произвольному параметру наÑтройки" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "Совпадений не обнаружено" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Ð’ группе пакетов `%s' отÑутÑтвуют некоторые файлы" @@ -552,7 +552,7 @@ msgstr "Ð’ архиве нет Ð¿Ð¾Ð»Ñ package" msgid " %s has no override entry\n" msgstr " Ðет запиÑи о переназначении (override) Ð´Ð»Ñ %s\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " пакет %s Ñопровождает %s, а не %s\n" @@ -663,80 +663,80 @@ msgstr "Ðе удалоÑÑŒ удалить %s" msgid "Failed to rename %s to %s" msgstr "Ðе удалоÑÑŒ переименовать %s в %s" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "д" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "Ошибка компилÑции регулÑрного Ð²Ñ‹Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "Пакеты, имеющие неудовлетворённые завиÑимоÑти:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "но %s уже уÑтановлен" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "но %s будет уÑтановлен" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "но он не может быть уÑтановлен" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "но Ñто виртуальный пакет" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "но он не уÑтановлен" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "но он не будет уÑтановлен" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " или" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "ÐОВЫЕ пакеты, которые будут уÑтановлены:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "Пакеты, которые будут УДÐЛЕÐЫ:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "Пакеты, которые будут оÑтавлены в неизменном виде:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "Пакеты, которые будут обновлены:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "Пакеты, будут заменены на более СТÐРЫЕ верÑии:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "" "Пакеты, которые должны были бы оÑтатьÑÑ Ð±ÐµÐ· изменений, но будут заменены:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (вÑледÑтвие %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -744,64 +744,64 @@ msgstr "" "Ð’ÐИМÐÐИЕ: Ðти ÑущеÑтвенно важные пакеты будут удалены.\n" "ÐЕ ДЕЛÐЙТЕ Ñтого, еÑли вы ÐЕ предÑтавлÑете Ñебе вÑе возможные поÑледÑтвиÑ!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "обновлено %lu, уÑтановлено %lu новых пакетов, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "переуÑтановлено %lu переуÑтановлено, " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu пакетов заменены на Ñтарые верÑии, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "Ð´Ð»Ñ ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ð¾Ñ‚Ð¼ÐµÑ‡ÐµÐ½Ð¾ %lu пакетов, и %lu пакетов не обновлено.\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "не уÑтановлено до конца или удалено %lu пакетов.\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "Заметьте, выбираетÑÑ %s Ð´Ð»Ñ Ð·Ð°Ð´Ð°Ñ‡Ð¸ %s\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "Заметьте, выбираетÑÑ %s Ð´Ð»Ñ Ñ€ÐµÐ³ÑƒÐ»Ñрного Ð²Ñ‹Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ %s\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "Выбрана верÑÐ¸Ñ %s (%s) Ð´Ð»Ñ %s\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "Пакет %s - виртуальный, его функции предоÑтавлÑÑŽÑ‚ÑÑ Ð¿Ð°ÐºÐµÑ‚Ð°Ð¼Ð¸:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [УÑтановлен]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 msgid " [Not candidate version]" msgstr " [Ðет верÑии-кандидата]" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "Ð’Ñ‹ должны Ñвно указать, какой именно вы хотите уÑтановить." -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -812,175 +812,178 @@ msgstr "" "Ðто может означать, что пакет отÑутÑтвует, уÑтарел, или доÑтупен из " "иÑточников, не упомÑнутых в sources.list\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "Однако Ñледующие пакеты могут его заменить:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, c-format msgid "Package '%s' has no installation candidate" msgstr "Ð”Ð»Ñ Ð¿Ð°ÐºÐµÑ‚Ð° %s не найден кандидат на уÑтановку" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "Виртуальные пакеты, подобные %s, не могут быть удалены\n" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "Заметьте, вмеÑто %2$s выбираетÑÑ %1$s\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "ПропуÑкаетÑÑ %s - пакет уже уÑтановлен и нет команды upgrade.\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" "ПропуÑкаетÑÑ %s - пакет не уÑтановлен, а запрошено только обновление.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "ПереуÑтановка %s невозможна, он не ÑкачиваетÑÑ.\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "Уже уÑтановлена ÑÐ°Ð¼Ð°Ñ Ð½Ð¾Ð²Ð°Ñ Ð²ÐµÑ€ÑÐ¸Ñ %s.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, c-format msgid "%s set to manually installed.\n" msgstr "%s уÑтановлен вручную.\n" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "Пакет %s не уÑтановлен, поÑтому не может быть удалён\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "ИÑправление завиÑимоÑтей..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " не удалоÑÑŒ." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "Ðевозможно Ñкорректировать завиÑимоÑти" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "Ðевозможно минимизировать набор обновлений" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " Готово" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "" "Возможно, Ð´Ð»Ñ Ð¸ÑÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ñтих ошибок вы захотите воÑпользоватьÑÑ `apt-get -" "f install'." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "Ðеудовлетворённые завиÑимоÑти. ПопытайтеÑÑŒ иÑпользовать -f." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "Ð’ÐИМÐÐИЕ: Следующие пакеты невозможно аутентифицировать!" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "Предупреждение об аутентификации не принÑто в внимание.\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "УÑтановить Ñти пакеты без проверки [y/N]? " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "Ðекоторые пакеты невозможно аутентифицировать" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "СущеÑтвуют проблемы, а параметр -y указан без --force-yes" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" "ВнутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°, InstallPackages была вызвана Ñ Ð½ÐµÑ€Ð°Ð±Ð¾Ñ‚Ð¾ÑпоÑобными " "пакетами!" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "Пакеты необходимо удалить, но удаление запрещено." -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "ВнутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°, Ordering не завершилаÑÑŒ" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "Ðе читаетÑÑ Ð¿ÐµÑ€ÐµÑ‡ÐµÐ½ÑŒ иÑточников." - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "Странно.. ÐеÑовпадение размеров, напишите на apt@packages.debian.org" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Ðеобходимо Ñкачать %sB/%sB архивов.\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Ðеобходимо Ñкачать %sБ архивов.\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" "ПоÑле данной операции, объём занÑтого диÑкового проÑтранÑтва возраÑÑ‚Ñ‘Ñ‚ на " "%sB.\n" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "" "ПоÑле данной операции, объём занÑтого диÑкового проÑтранÑтва уменьшитÑÑ Ð½Ð° " "%sB.\n" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "Ðе удалоÑÑŒ определить количеÑтво Ñвободного меÑта в %s" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "ÐедоÑтаточно Ñвободного меÑта в %s." -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "Запрошено выполнение только тривиальных операций, но Ñто не Ñ‚Ñ€Ð¸Ð²Ð¸Ð°Ð»ÑŒÐ½Ð°Ñ " "операциÑ." -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "Да, делать, как Ñ Ñкажу!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -991,28 +994,28 @@ msgstr "" "Чтобы продолжить, введите фразу: '%s'\n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "Ðварийное завершение." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "Хотите продолжить [Д/н]? " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Ðе удалоÑÑŒ получить %s %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "Ðекоторые файлы Ñкачать не удалоÑÑŒ" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "Указан режим \"только Ñкачивание\", и Ñкачивание завершено" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1020,19 +1023,19 @@ msgstr "" "Ðевозможно получить некоторые архивы, вероÑтно надо запуÑтить apt-get update " "или попытатьÑÑ Ð¿Ð¾Ð²Ñ‚Ð¾Ñ€Ð¸Ñ‚ÑŒ запуÑк Ñ ÐºÐ»ÑŽÑ‡Ð¾Ð¼ --fix-missing" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing и Ñмена ноÑÐ¸Ñ‚ÐµÐ»Ñ Ð² данный момент не поддерживаютÑÑ" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "Ðевозможно иÑправить Ñитуацию Ñ Ð¿Ñ€Ð¾Ð¿ÑƒÑ‰ÐµÐ½Ð½Ñ‹Ð¼Ð¸ пакетами." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "Ðварийное завершение уÑтановки." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1049,35 +1052,35 @@ msgstr[2] "" "Следующие пакеты иÑчез из ÑиÑтемы, так как вÑе их файлы\n" "теперь берутÑÑ Ð¸Ð· других пакетов:" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "Замечание: Ñто Ñделано автоматичеÑки и Ñпециально программой dpkg." -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "ИгнорируетÑÑ Ð½ÐµÐ´Ð¾Ñтупный выпуÑк '%s' пакета '%s'" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "ИÑпользуетÑÑ '%s' в качеÑтве иÑходного пакета вмеÑто '%s'\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "ИгнорируетÑÑ Ð½ÐµÐ´Ð¾ÑÑ‚ÑƒÐ¿Ð½Ð°Ñ Ð²ÐµÑ€ÑÐ¸Ñ '%s' пакета '%s'" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "Команде update не нужны аргументы" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Ðе предполагалоÑÑŒ удалÑÑ‚ÑŒ stuff, невозможно запуÑтить AutoRemover" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1089,7 +1092,7 @@ msgstr[1] "" msgstr[2] "" "Следующие пакеты уÑтанавливалиÑÑŒ автоматичеÑки и больше не требуютÑÑ:" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1098,11 +1101,11 @@ msgstr[0] "%lu пакет был уÑтановлен автоматичеÑки msgstr[1] "%lu пакета было уÑтановлено автоматичеÑки и больше не требуетÑÑ.\n" msgstr[2] "%lu пакетов было уÑтановлены автоматичеÑки и больше не требуютÑÑ.\n" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "Ð”Ð»Ñ Ð¸Ñ… ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ð¸Ñпользуйте 'apt-get autoremove'." -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1120,25 +1123,25 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "Ð¡Ð»ÐµÐ´ÑƒÑŽÑ‰Ð°Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ, возможно, поможет вам:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" msgstr "ВнутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°, AutoRemover вÑÑ‘ поломал" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "ВнутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°, AllUpgrade вÑÑ‘ поломал" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" "Возможно, длÑ иÑправлениÑ Ñтих ошибок вы захотите воÑпользоватьÑÑ `apt-get -" "f install':" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1146,7 +1149,7 @@ msgstr "" "Ðеудовлетворённые завиÑимоÑти. ПопытайтеÑÑŒ выполнить 'apt-get -f install', " "не ÑƒÐºÐ°Ð·Ñ‹Ð²Ð°Ñ Ð¸Ð¼ÐµÐ½Ð¸ пакета, (или найдите другое решение)." -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1157,63 +1160,63 @@ msgstr "" "или же иÑпользуете неÑтабильную верÑию диÑтрибутива, где запрошенные вами\n" "пакеты ещё не Ñозданы или были удалены из Incoming." -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "Сломанные пакеты" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "Будут уÑтановлены Ñледующие дополнительные пакеты:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "Предлагаемые пакеты:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "Рекомендуемые пакеты:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "Ðе удалоÑÑŒ найти пакет %s" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s выбран Ð´Ð»Ñ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡ÐµÑкой уÑтановки.\n" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "РаÑчёт обновлений... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "Ðеудачно" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "Готово" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "ВнутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°, решатель проблем вÑÑ‘ поломал" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "Ðевозможно заблокировать каталог, куда ÑкладываютÑÑ Ñкачиваемые файлы" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 msgid "Must specify at least one package to fetch source for" msgstr "" "Укажите как минимум один пакет, иÑходный код которого необходимо получить" -#: cmdline/apt-get.cc:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "Ðевозможно найти пакет Ñ Ð¸Ñходным кодом Ð´Ð»Ñ %s" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -1222,7 +1225,7 @@ msgstr "" "Ð’ÐИМÐÐИЕ: упаковка %s поддерживаетÑÑ Ð² ÑиÑтеме ÐºÐ¾Ð½Ñ‚Ñ€Ð¾Ð»Ñ Ð²ÐµÑ€Ñий %s:\n" "%s\n" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1233,76 +1236,80 @@ msgstr "" "bzr get %s\n" "Ð´Ð»Ñ Ð¿Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð¸Ñ Ð¿Ð¾Ñледних (возможно не выпущенных) обновлений пакета.\n" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "ПропуÑкаем уже Ñкачанный файл %s\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "ÐедоÑтаточно меÑта в %s" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Ðеобходимо получить %sб/%sб архивов иÑходного кода.\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Ðеобходимо получить %sб архивов иÑходного кода.\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "Получение иÑходного кода %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "Ðекоторые архивы не удалоÑÑŒ получить." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "ПропуÑкаетÑÑ Ñ€Ð°Ñпаковка уже раÑпакованного иÑходного кода в %s\n" -#: cmdline/apt-get.cc:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Команда раÑпаковки '%s' завершилаÑÑŒ неудачно.\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Проверьте, уÑтановлен ли пакет 'dpkg-dev'.\n" -#: cmdline/apt-get.cc:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "Команда Ñборки '%s' завершилаÑÑŒ неудачно.\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "Порождённый процеÑÑ Ð·Ð°Ð²ÐµÑ€ÑˆÐ¸Ð»ÑÑ Ð½ÐµÑƒÐ´Ð°Ñ‡Ð½Ð¾" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 msgid "Must specify at least one package to check builddeps for" msgstr "" "Ð”Ð»Ñ Ð¿Ñ€Ð¾Ð²ÐµÑ€ÐºÐ¸ завиÑимоÑтей Ð´Ð»Ñ Ñборки необходимо указать как минимум один " "пакет" -#: cmdline/apt-get.cc:2506 +#: cmdline/apt-get.cc:2524 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Ðевозможно получить информацию о завиÑимоÑÑ‚ÑÑ… Ð´Ð»Ñ Ñборки %s" -#: cmdline/apt-get.cc:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "%s не имеет завиÑимоÑтей Ð´Ð»Ñ Ñборки.\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1311,7 +1318,7 @@ msgstr "" "ЗавиÑимоÑÑ‚ÑŒ типа %s Ð´Ð»Ñ %s не может быть удовлетворена, так как пакет %s не " "найден" -#: cmdline/apt-get.cc:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1320,32 +1327,32 @@ msgstr "" "ЗавиÑимоÑÑ‚ÑŒ типа %s Ð´Ð»Ñ %s не может быть удовлетворена, поÑкольку ни одна из " "верÑий пакета %s не удовлетворÑет требованиÑм" -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Ðе удалоÑÑŒ удовлетворить завиÑимоÑÑ‚ÑŒ типа %s Ð´Ð»Ñ Ð¿Ð°ÐºÐµÑ‚Ð° %s: УÑтановленный " "пакет %s новее, чем надо" -#: cmdline/apt-get.cc:2693 +#: cmdline/apt-get.cc:2711 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Ðевозможно удовлетворить завиÑимоÑÑ‚ÑŒ типа %s Ð´Ð»Ñ Ð¿Ð°ÐºÐµÑ‚Ð° %s: %s" -#: cmdline/apt-get.cc:2709 +#: cmdline/apt-get.cc:2727 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "ЗавиÑимоÑти Ð´Ð»Ñ Ñборки %s не могут быть удовлетворены." -#: cmdline/apt-get.cc:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "Обработка завиÑимоÑтей Ð´Ð»Ñ Ñборки завершилаÑÑŒ неудачно" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "Поддерживаемые модули:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1437,7 +1444,7 @@ msgstr "" "ÑодержитÑÑ Ð¿Ð¾Ð´Ñ€Ð¾Ð±Ð½Ð°Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¸ опиÑание параметров.\n" " Ð’ APT еÑÑ‚ÑŒ ÐºÐ¾Ñ€Ð¾Ð²ÑŒÑ Ð¡Ð£ÐŸÐ•Ð Ð¡Ð˜Ð›Ð.\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1689,10 +1696,10 @@ msgstr "Файл %s/%s перепиÑывает файл в пакете %s" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1828,23 +1835,23 @@ msgstr "Ðе удалоÑÑŒ найти правильный control-файл" msgid "Unparsable control file" msgstr "Ðе удалоÑÑŒ прочеÑÑ‚ÑŒ Ñодержимое control-файла" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "Ðе удалоÑÑŒ открыть канал Ð´Ð»Ñ %s" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "Ошибка Ñ‡Ñ‚ÐµÐ½Ð¸Ñ Ð¸Ð· процеÑÑа %s" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "Ðе удалоÑÑŒ получить атрибуты" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "Ðе удалоÑÑŒ уÑтановить Ð²Ñ€ÐµÐ¼Ñ Ð¼Ð¾Ð´Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ð¸" @@ -1939,7 +1946,7 @@ msgstr "ДопуÑтимое Ð²Ñ€ÐµÐ¼Ñ Ð¾Ð¶Ð¸Ð´Ð°Ð½Ð¸Ñ Ð´Ð»Ñ Ñоединен msgid "Server closed the connection" msgstr "Сервер прервал Ñоединение" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "Ошибка чтениÑ" @@ -1951,7 +1958,7 @@ msgstr "Ответ переполнил буфер." msgid "Protocol corruption" msgstr "ИÑкажение протокола" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "Ошибка запиÑи" @@ -2007,7 +2014,7 @@ msgstr "Ð’Ñ€ÐµÐ¼Ñ ÑƒÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ Ð´Ð»Ñ Ñоке msgid "Unable to accept connection" msgstr "Ðевозможно принÑÑ‚ÑŒ Ñоединение" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "Проблема при хешировании файла" @@ -2141,67 +2148,67 @@ msgstr "Получен заголовок длиннее %u Ñимволов" msgid "Bad header line" msgstr "Ðеверный заголовок" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "Http-Ñервер поÑлал неверный заголовок" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "Http Ñервер поÑлал неверный заголовок Content-Length" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "Http-Ñервер поÑлал неверный заголовок Content-Range" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "Ðтот HTTP-Ñервер не поддерживает Ñкачивание фрагментов файлов" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "ÐеизвеÑтный формат данных" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "Ошибка в select" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "Ð’Ñ€ÐµÐ¼Ñ Ð¾Ð¶Ð¸Ð´Ð°Ð½Ð¸Ñ Ð´Ð»Ñ ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ Ð¸Ñтекло" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "Ошибка запиÑи в выходной файл" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "Ошибка запиÑи в файл" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "Ошибка запиÑи в файл" -#: methods/http.cc:894 +#: methods/http.cc:900 msgid "Error reading from server. Remote end closed connection" msgstr "Ошибка чтениÑ, удалённый Ñервер прервал Ñоединение" -#: methods/http.cc:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "Ошибка Ñ‡Ñ‚ÐµÐ½Ð¸Ñ Ñ Ñервера" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 msgid "Failed to truncate file" msgstr "Ðе удалоÑÑŒ обрезать файл" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "Ðеверный заголовок данных" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "Соединение разорвано" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "ВнутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°" @@ -2400,14 +2407,14 @@ msgstr "ÐÐµÐ²ÐµÑ€Ð½Ð°Ñ Ð¾Ð¿ÐµÑ€Ð°Ñ†Ð¸Ñ %s" msgid "Unable to stat the mount point %s" msgstr "Ðевозможно прочитать атрибуты точки Ð¼Ð¾Ð½Ñ‚Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ %s" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "Ðевозможно Ñменить текущий каталог на %s" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "Ðевозможно получить атрибуты cdrom" @@ -2435,151 +2442,151 @@ msgstr "" msgid "Could not get lock %s" msgstr "Ðе удалоÑÑŒ получить доÑтуп к файлу блокировки %s" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "ОжидалоÑÑŒ завершение процеÑÑа %s, но он не был запущен" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "" "Ðарушение защиты памÑти (segmentation fault) в порождённом процеÑÑе %s." -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, c-format msgid "Sub-process %s received signal %u." msgstr "Порождённый процеÑÑ %s получил Ñигнал %u." -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Порождённый процеÑÑ %s вернул код ошибки (%u)" -#: apt-pkg/contrib/fileutl.cc:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Порождённый процеÑÑ %s неожиданно завершилÑÑ" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "Ðе удалоÑÑŒ открыть файл %s" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, c-format msgid "Could not open file descriptor %d" msgstr "Ðе удалоÑÑŒ открыть файловый деÑкриптор %d" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "" "ошибка при чтении. ÑобиралиÑÑŒ прочеÑÑ‚ÑŒ ещё %lu байт, но ничего больше нет" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "ошибка при запиÑи, ÑобиралиÑÑŒ запиÑать ещё %lu байт, но не Ñмогли" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, c-format msgid "Problem closing the gzip file %s" msgstr "Проблема Ð·Ð°ÐºÑ€Ñ‹Ñ‚Ð¸Ñ gzip-файла %s" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, c-format msgid "Problem closing the file %s" msgstr "Проблема Ð·Ð°ÐºÑ€Ñ‹Ñ‚Ð¸Ñ Ñ„Ð°Ð¹Ð»Ð° %s" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, c-format msgid "Problem renaming the file %s to %s" msgstr "Проблема при переименовании файла %s в %s" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, c-format msgid "Problem unlinking the file %s" msgstr "Проблема при удалении файла %s" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "Проблема при Ñинхронизации файла" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "КÑш пакетов пуÑÑ‚" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "КÑш пакетов повреждён" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "Ðе Ð¿Ð¾Ð´Ð´ÐµÑ€Ð¶Ð¸Ð²Ð°ÐµÐ¼Ð°Ñ Ð²ÐµÑ€ÑÐ¸Ñ ÐºÑша пакетов" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "Данный APT не поддерживает ÑиÑтему верÑий '%s'" -#: apt-pkg/pkgcache.cc:163 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache was built for a different architecture" msgstr "КÑш пакетов был Ñобран Ð´Ð»Ñ Ð´Ñ€ÑƒÐ³Ð¾Ð¹ архитектуры" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "ЗавиÑит" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "ПредЗавиÑит" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "Предлагает" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "Рекомендует" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "Конфликтует" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "ЗаменÑет" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "Замещает" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "Ломает" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "Улучшает" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "важный" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "необходимый" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "Ñтандартный" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "необÑзательный" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "дополнительный" @@ -2701,10 +2708,10 @@ msgstr "ÐеизвеÑтный тип '%s' в Ñтроке %u в ÑпиÑке и #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" -"Ðе удалоÑÑŒ выполнить оперативную наÑтройку '%s'.Подробней, Ñмотрите в man 5 " +"Ðе удалоÑÑŒ выполнить оперативную наÑтройку '%s'. Подробней, Ñмотрите в man 5 " "apt.conf о APT::Immediate-Configure. (%d)" #: apt-pkg/packagemanager.cc:452 @@ -2723,7 +2730,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" "Ðе удалоÑÑŒ выполнить оперативную наÑтройку уже раÑпакованного '%s'. " @@ -2741,7 +2748,7 @@ msgid "" msgstr "" "Пакет %s нуждаетÑÑ Ð² переуÑтановке, но найти архив Ð´Ð»Ñ Ð½ÐµÐ³Ð¾ не удалоÑÑŒ." -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2749,11 +2756,11 @@ msgstr "" "Ошибка, pkgProblemResolver::Resolve Ñгенерировал повреждённые пакеты. Ðто " "может быть вызвано отложенными (held) пакетами." -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "Ðевозможно иÑправить ошибки, у Ð²Ð°Ñ Ð¾Ñ‚Ð»Ð¾Ð¶ÐµÐ½Ñ‹ (held) битые пакеты." -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2778,12 +2785,12 @@ msgstr "Ðевозможно заблокировать каталог %s" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "СкачиваетÑÑ Ñ„Ð°Ð¹Ð» %li из %li (оÑталоÑÑŒ %s)" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "СкачиваетÑÑ Ñ„Ð°Ð¹Ð» %li из %li" @@ -2803,12 +2810,12 @@ msgstr "Метод %s запуÑтилÑÑ Ð½Ðµ корректно" msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "Ð’Ñтавьте диÑк Ñ Ð¼ÐµÑ‚ÐºÐ¾Ð¹ '%s' в уÑтройÑтво '%s' и нажмите ввод." -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Менеджер пакетов '%s' не поддерживаетÑÑ" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "Ðевозможно определить подходÑщий тип менеджера пакетов" @@ -2829,17 +2836,21 @@ msgstr "СпиÑки пакетов или status-файл не могут Ð±Ñ‹Ñ msgid "You may want to run apt-get update to correct these problems" msgstr "Ð’Ñ‹ можете запуÑтить 'apt-get update' Ð´Ð»Ñ Ð¸ÑÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ñтих ошибок" -#: apt-pkg/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "Ðе читаетÑÑ Ð¿ÐµÑ€ÐµÑ‡ÐµÐ½ÑŒ иÑточников." + +#: apt-pkg/policy.cc:344 #, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "ÐÐµÐ²ÐµÑ€Ð½Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ в файле параметров %s: отÑутÑтвует заголовок Package" -#: apt-pkg/policy.cc:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "ÐеизвеÑтный тип фикÑации %s" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "Ð”Ð»Ñ Ñ„Ð¸ÐºÑации не указан приоритет (или указан нулевой)" @@ -2942,43 +2953,43 @@ msgstr "переименовать не удалоÑÑŒ, %s (%s -> %s)." msgid "MD5Sum mismatch" msgstr "MD5Sum не Ñовпадает" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" msgstr "Хеш Ñумма не Ñовпадает" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 msgid "There is no public key available for the following key IDs:\n" msgstr "ÐедоÑтупен открытый ключ Ð´Ð»Ñ Ñледующих ID ключей:\n" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "Файл Release проÑрочен, игнорируетÑÑ %s (недоÑтоверный Ð½Ð°Ñ‡Ð¸Ð½Ð°Ñ Ñ %s)" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Конфликт раÑпроÑтранениÑ: %s (ожидалÑÑ %s, но получен %s)" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "Произошла ошибка при проверке подпиÑи. Репозиторий не обновлён и будут " "иÑпользованы предыдущие индекÑные файлы. Ошибка GPG: %s: %s\n" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "Ошибка GPG: %s: %s" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2987,7 +2998,7 @@ msgstr "" "Ðе удалоÑÑŒ обнаружить файл пакета %s. Ðто может означать, что вам придётÑÑ " "вручную иÑправить Ñтот пакет (возможно, пропущен arch)" -#: apt-pkg/acquire-item.cc:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2996,13 +3007,13 @@ msgstr "" "Ðе удалоÑÑŒ обнаружить файл пакета %s. Ðто может означать, что вам придётÑÑ " "вручную иÑправить Ñтот пакет." -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "Ðекорректный перечень пакетов. Ðет Ð¿Ð¾Ð»Ñ Filename: Ð´Ð»Ñ Ð¿Ð°ÐºÐµÑ‚Ð° %s." -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "Ðе Ñовпадает размер" @@ -3127,39 +3138,39 @@ msgstr "ЗапиÑÑŒ нового ÑпиÑка иÑточников\n" msgid "Source list entries for this disc are:\n" msgstr "ЗапиÑи в ÑпиÑке иÑточников Ð´Ð»Ñ Ñтого диÑка:\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "Сохранено %i запиÑей.\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Сохранено %i запиÑей Ñ %i отÑутÑтвующими файлами.\n" -#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Сохранено %i запиÑей Ñ %i неÑовпадающими файлами\n" -#: apt-pkg/indexcopy.cc:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" "Сохранено %i запиÑей Ñ %i отÑутÑтвующими файлами и Ñ %i неÑовпадающими " "файлами\n" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, c-format msgid "Skipping nonexistent file %s" msgstr "ПропуÑкаетÑÑ Ð½ÐµÑущеÑтвующий файл %s" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "Ðе удалоÑÑŒ найти аутентификационную запиÑÑŒ длÑ: %s" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, c-format msgid "Hash mismatch for: %s" msgstr "Ðе Ñовпадает хеш Ñумма длÑ: %s" @@ -3225,12 +3236,12 @@ msgstr "" msgid "Installing %s" msgstr "УÑтанавливаетÑÑ %s" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "ÐаÑтраиваетÑÑ %s" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "УдалÑетÑÑ %s" @@ -3250,76 +3261,77 @@ msgstr "Уведомление об иÑчезновении %s" msgid "Running post-installation trigger %s" msgstr "ВыполнÑетÑÑ Ð¿Ð¾ÑлеуÑтановочный триггер %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "ОтÑутÑтвует каталог %s" -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Could not open file '%s'" msgstr "Ðе удалоÑÑŒ открыть файл %s" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "ПодготавливаетÑÑ %s" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "РаÑпаковываетÑÑ %s" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "ПодготавливаетÑÑ Ð´Ð»Ñ Ð½Ð°Ñтройки %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "УÑтановлен %s" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "ПодготавливаетÑÑ Ð´Ð»Ñ ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ %s" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "Удалён %s" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "Подготовка к полному удалению %s" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "%s полноÑтью удалён" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Ðе удалоÑÑŒ запиÑать в журнал, неудачное выполнение openpty() (/dev/pts не " "Ñмонтирован?)\n" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "ЗапуÑкаетÑÑ dpkg" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 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:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "проблемы Ñ Ð·Ð°Ð²Ð¸ÑимоÑÑ‚Ñми - оÑтавлÑем ненаÑтроенным" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3327,7 +3339,7 @@ msgstr "" "Отчёты apport не запиÑаны, так как Ñообщение об ошибке указывает на " "повторную ошибку от предыдущего отказа." -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" @@ -3335,7 +3347,7 @@ msgstr "" "Отчёты apport не запиÑаны, так как получено Ñообщение об ошибке о нехватке " "меÑта на диÑке" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3343,7 +3355,7 @@ msgstr "" "Отчёты apport не запиÑаны, так как получено Ñообщение об ошибке о нехватке " "памÑти" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+0200\n" "PO-Revision-Date: 2010-08-24 23:57+0100\n" "Last-Translator: Ivan Masár <helix84@centrum.sk>\n" "Language-Team: Slovak <sk-i18n@lists.linux.sk>\n" @@ -150,14 +150,14 @@ msgstr " Pripevnený balÃk:" msgid " Version table:" msgstr " Tabuľka verziÃ:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, 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:1739 +#: cmdline/apt-cache.cc:1745 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -321,31 +321,31 @@ msgstr "Do %s sa nedá zapisovaÅ¥" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Nedá sa urÄiÅ¥ verzia programu debconf. Je debconf nainÅ¡talovaný?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "Zoznam rozÅ¡Ãrenà balÃka je prÃliÅ¡ dlhý" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "Chyba pri spracovávanà adresára %s" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "Zoznam zdrojových rozÅ¡Ãrenà je prÃliÅ¡ dlhý" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "Chyba pri zapisovanà hlaviÄky do súboru" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "Chyba pri spracovávanà obsahu %s" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -425,11 +425,11 @@ msgstr "" " -c=? NaÄÃta tento konfiguraÄný súbor\n" " -o=? Nastavà ľubovoľnú voľbu" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "Nevyhovel žiaden výber" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, 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" @@ -541,7 +541,7 @@ msgstr "ArchÃv neobsahuje pole „package“" msgid " %s has no override entry\n" msgstr " %s nemá žiadnu položku override\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " správcom %s je %s, nie %s\n" @@ -651,79 +651,79 @@ msgstr "Problém s odlinkovanÃm %s" msgid "Failed to rename %s to %s" msgstr "Premenovanie %s na %s zlyhalo" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "Chyba pri preklade regulárneho výrazu - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "Nasledovné balÃky majú nesplnené závislosti:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "ale nainÅ¡talovaný je %s" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "ale inÅ¡talovaÅ¥ sa bude %s" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "ale sa nedá nainÅ¡talovaÅ¥" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "ale je to virtuálny balÃk" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "ale nie je nainÅ¡talovaný" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "ale sa nebude inÅ¡talovaÅ¥" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " alebo" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "NainÅ¡talujú sa nasledovné NOVÉ balÃky:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "Nasledovné balÃky sa ODSTRÃNIA:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "Nasledovné balÃky sa ponechajú v súÄasnej verzii:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "Nasledovné balÃky sa aktualizujú:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "Nasledovné balÃky sa DEGRADUJÚ:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "Nasledovné pridržané balÃky sa zmenia:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (kvôli %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -731,64 +731,64 @@ msgstr "" "UPOZORNENIE: Nasledovné dôležité balÃky sa odstránia.\n" "Ak presne neviete, Äo robÃte, tak to NEROBTE!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu aktualizovaných, %lu nových nainÅ¡talovaných, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu reinÅ¡talovaných, " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu degradovaných, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu na odstránenie a %lu neaktualizovaných.\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu iba ÄiastoÄne nainÅ¡talovaných alebo odstránených.\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "Poznámka: vyberá sa „%s“ pre úlohu „%s“\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "Poznámka: vyberá sa „%s“ pre regulárny výraz „%s“\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "Vybraná verzia „%s“ (%s) pre „%s“\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "BalÃk %s je virtuálny balÃk poskytovaný balÃkmi:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [NainÅ¡talovaný]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 msgid " [Not candidate version]" msgstr " [Nie je kandidátska verzia]" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "Mali by ste explicitne vybraÅ¥ jeden na inÅ¡taláciu." -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -798,167 +798,170 @@ msgstr "" "BalÃk %s nie je dostupný, ale odkazuje naň iný balÃk. Možno to znamená,\n" "že balÃk chýba, bol zruÅ¡ený alebo je dostupný iba z iného zdroja\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "AvÅ¡ak nahrádzajú ho nasledovné balÃky:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, c-format msgid "Package '%s' has no installation candidate" msgstr "BalÃk „%s“ nemá kandidáta na inÅ¡taláciu" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "Virtuálne balÃky ako „%s“ nemožno odstrániÅ¥\n" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "Poznámka: „%s“ sa vyberá namiesto „%s“\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "Preskakuje sa %s, pretože je už nainÅ¡talovaný.\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" "Preskakuje sa %s, nie je nainÅ¡talovaný a bola vy6iadan8 iba aktualizácia.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "Nie je možná reinÅ¡talácia %s, pretože sa nedá stiahnuÅ¥.\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s je už najnovÅ¡ej verzie.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, c-format msgid "%s set to manually installed.\n" msgstr "%s je oznaÄený ako manuálne nainÅ¡talovaný.\n" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "BalÃk %s nie je nainÅ¡talovaný, nedá sa teda odstrániÅ¥\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "Opravujú sa závislosti..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " zlyhalo." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "Závislosti sa nedajú opraviÅ¥" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "Sada na aktualizáciu sa nedá minimalizovaÅ¥" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " Hotovo" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "Možno to budete chcieÅ¥ napraviÅ¥ spustenÃm „apt-get -f install“." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "Nesplnené závislosti. Skúste použiÅ¥ -f." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "UPOZORNENIE: Pri nasledovných balÃkoch sa nedá overiÅ¥ vierohodnosÅ¥!" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "Upozornenie o vierohodnosti bolo potlaÄené.\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "NainÅ¡talovaÅ¥ tieto nekontrolované balÃky [y/N]? " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "Nedala sa zistiÅ¥ vierohodnosÅ¥ niektorých balÃkov" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "Nastali problémy a -y bolo použité bez --force-yes" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Vnútorná chyba, InstallPackages bolo volané s poÅ¡kodenými balÃkmi!" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "Je potrebné odstránenie balÃka, ale funkcia OdstrániÅ¥ je vypnutá." -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "Vnútorná chyba, Triedenie sa neukonÄilo" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "Nedá sa naÄÃtaÅ¥ zoznam zdrojov." - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 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" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Je potrebné stiahnuÅ¥ %sB/%sB archÃvov.\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Je potrebné stiahnuÅ¥ %sB archÃvov.\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, 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" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, 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" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, 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:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "Na %s nemáte dostatok voľného miesta." -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Zadané „iba triviálne“, ale toto nie je triviálna operácia." -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "Ãno, urob to, Äo vravÃm!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -969,28 +972,28 @@ msgstr "" "Ak chcete pokraÄovaÅ¥, opÃÅ¡te frázu „%s“\n" " ?]" -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "PreruÅ¡ené." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "Chcete pokraÄovaÅ¥ [Y/n]? " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Zlyhalo stiahnutie %s %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "Niektoré súbory sa nedajú stiahnuÅ¥" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "SÅ¥ahovanie ukonÄené v režime „iba stiahnuť“" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -998,19 +1001,19 @@ msgstr "" "Niektoré archÃvy sa nedajú stiahnuÅ¥. Skúste spustiÅ¥ apt-get update alebo --" "fix-missing" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing a výmena nosiÄa nie sú momentálne podporované" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "Chýbajúce balÃky sa nedajú opraviÅ¥." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "InÅ¡talácia sa preruÅ¡uje." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1027,35 +1030,35 @@ msgstr[2] "" "Nasledovné balÃky zmizli z vášho systému, pretože\n" "vÅ¡etky súbory boli prepÃsané inými balÃkmi:" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "Pozn.: Toto robà dpkg automaticky a zámerne." -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "IgnorovaÅ¥ nedostupné cieľové vydanie „%s“ balÃka „%s“" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Vyberá sa „%s“ ako zdrojový balÃk namiesto „%s“\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "IgnorovaÅ¥ nedostupnú verziu „%s“ balÃka „%s“" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "PrÃkaz update neprijÃma žiadne argumenty" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Nemajú sa odstraňovaÅ¥ veci, nespustà sa AutoRemover" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1068,7 +1071,7 @@ msgstr[1] "" msgstr[2] "" "Nasledovné balÃky boli nainÅ¡talované automaticky a už viac nie sú potrebné:" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1080,11 +1083,11 @@ msgstr[1] "" msgstr[2] "" "%lu balÃkov bolo nainÅ¡talovaných automaticky a už viac nie sú potrebné.\n" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "Na ich odstránenie použite „apt-get autoremove“." -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1102,23 +1105,23 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "Nasledovné informácie vám možno pomôžu vyrieÅ¡iÅ¥ túto situáciu:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" msgstr "Vnútorná chyba, AutoRemover nieÄo pokazil" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "Vnútorná chyba, AllUpgrade pokazil veci" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Možno to budete chcieÅ¥ napraviÅ¥ spustenÃm „apt-get -f install“:" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1126,7 +1129,7 @@ msgstr "" "Nesplnené závislosti. Skúste spustiÅ¥ „apt-get -f install“ bez balÃkov (alebo " "navrhnite rieÅ¡enie)." -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1138,62 +1141,62 @@ msgstr "" "požadované balÃky eÅ¡te neboli vytvorené alebo presunuté z fronty\n" "Novoprichádzajúcich (Incoming) balÃkov." -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "PoÅ¡kodené balÃky" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "NainÅ¡talujú sa nasledovné extra balÃky:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "Navrhované balÃky:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "OdporúÄané balÃky:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "BalÃk %s sa nedá nájsÅ¥" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s je oznaÄený ako automaticky nainÅ¡talovaný.\n" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "PrepoÄÃtava sa aktualizácia... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "Chyba" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "Hotovo" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "Vnútorná chyba, „problem resolver“ nieÄo pokazil" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "Adresár pre sÅ¥ahovanie sa nedá zamknúť" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 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:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "Nedá sa nájsÅ¥ zdrojový balÃk pre %s" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -1203,7 +1206,7 @@ msgstr "" "adrese:\n" "%s\n" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1215,83 +1218,87 @@ msgstr "" "ak chcete zÃskaÅ¥ najnovÅ¡ie (a pravdepodobne zatiaľ nevydané) aktualizácie " "balÃka.\n" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Preskakuje sa už stiahnutý súbor „%s“\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "Na %s nemáte dostatok voľného miesta" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Je potrebné stiahnuÅ¥ %sB/%sB zdrojových archÃvov.\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, 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:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "StiahnuÅ¥ zdroj %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "Zlyhalo stiahnutie niektorých archÃvov." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, 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:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "PrÃkaz na rozbalenie „%s“ zlyhal.\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, 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:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "PrÃkaz na zostavenie „%s“ zlyhal.\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "Proces potomka zlyhal" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 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:2506 +#: cmdline/apt-get.cc:2524 #, 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:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "%s nemá žiadne závislosti na zostavenie.\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "%s závislosÅ¥ pre %s sa nemôže splniÅ¥, pretože sa nedá nájsÅ¥ balÃk %s" -#: cmdline/apt-get.cc:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1300,31 +1307,31 @@ msgstr "" "%s závislosÅ¥ pre %s sa nedá splniÅ¥, pretože sa nedá nájsÅ¥ verzia balÃka %s, " "ktorá zodpovedá požiadavke na verziu" -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, 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:2693 +#: cmdline/apt-get.cc:2711 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Zlyhalo splnenie %s závislosti pre %s: %s" -#: cmdline/apt-get.cc:2709 +#: cmdline/apt-get.cc:2727 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Závislosti na zostavenie %s sa nedajú splniÅ¥." -#: cmdline/apt-get.cc:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "Spracovanie závislostà na zostavenie zlyhalo" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "Podporované moduly:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1412,7 +1419,7 @@ msgstr "" "a apt.conf(5).\n" " Tento APT má schopnosti posvätnej kravy.\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1661,10 +1668,10 @@ msgstr "Súbor %s/%s prepisuje ten z balÃka %s" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1799,23 +1806,23 @@ msgstr "Nedá sa nájsÅ¥ platný riadiaci súbor" msgid "Unparsable control file" msgstr "Nespracovateľný riadiaci súbor" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "Nedá sa otvoriÅ¥ rúra pre %s" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "Chyba pri ÄÃtanà z procesu %s" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "Vyhodnotenie zlyhalo" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "Zlyhalo nastavenie Äasu zmeny" @@ -1908,7 +1915,7 @@ msgstr "Uplynul Äas spojenia" msgid "Server closed the connection" msgstr "Server ukonÄil spojenie" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "Chyba pri ÄÃtanÃ" @@ -1920,7 +1927,7 @@ msgstr "OdpoveÄ preplnila zásobnÃk." msgid "Protocol corruption" msgstr "NaruÅ¡enie protokolu" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "Chyba pri zápise" @@ -1974,7 +1981,7 @@ msgstr "Uplynulo spojenie dátového socketu" msgid "Unable to accept connection" msgstr "Spojenie sa nedá prijaÅ¥" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "Problém s haÅ¡ovanÃm súboru" @@ -2106,67 +2113,67 @@ msgstr "ZÃskal sa jeden riadok hlaviÄky cez %u znakov" msgid "Bad header line" msgstr "Chybná hlaviÄka" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "HTTP server poslal neplatnú hlaviÄku odpovede" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "HTTP server poslal neplatnú hlaviÄku Content-Length" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "HTTP server poslal neplatnú hlaviÄku Content-Range" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "Tento HTTP server má poÅ¡kodenú podporu rozsahov" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "Neznámy formát dátumu" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "Výber zlyhal" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "Uplynul Äas spojenia" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "Chyba zápisu do výstupného súboru" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "Chyba zápisu do súboru" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "Chyba zápisu do tohto súboru" -#: methods/http.cc:894 +#: methods/http.cc:900 msgid "Error reading from server. Remote end closed connection" msgstr "Chyba pri ÄÃtanà zo servera. Druhá strana ukonÄila spojenie" -#: methods/http.cc:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "Chyba pri ÄÃtanà zo servera" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 msgid "Failed to truncate file" msgstr "Nepodarilo sa skrátiÅ¥ súbor" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "Zlé dátové záhlavie" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "Spojenie zlyhalo" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "Vnútorná chyba" @@ -2363,14 +2370,14 @@ msgstr "Neplatná operácia %s" msgid "Unable to stat the mount point %s" msgstr "PrÃpojný bod %s sa nedá vyhodnotiÅ¥" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "Nedá sa prejsÅ¥ do %s" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "Nedá sa vykonaÅ¥ stat() CD-ROM" @@ -2394,149 +2401,149 @@ msgstr "Zamykanie pre súbor zámku %s pripojený cez NFS sa nepoužÃva" msgid "Could not get lock %s" msgstr "Zámok %s sa nedá zÃskaÅ¥" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "ÄŒakalo sa na %s, ale nebolo to tam" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Podproces %s obdržal chybu segmentácie." -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, c-format msgid "Sub-process %s received signal %u." msgstr "Podproces %s dostal signál %u." -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, 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:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Podproces %s neoÄakávane skonÄil" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "Nedá sa otvoriÅ¥ súbor %s" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, c-format msgid "Could not open file descriptor %d" msgstr "Nedá sa otvoriÅ¥ popisovaÄ súboru %d" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "ÄÃtanie, stále treba preÄÃtaÅ¥ %lu, ale už niÄ neostáva" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "zápis, stále treba zapÃsaÅ¥ %lu, no nedá sa to" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, c-format msgid "Problem closing the gzip file %s" msgstr "Problém pri zatváranà gzip súboru %s" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, c-format msgid "Problem closing the file %s" msgstr "Problém pri zatváranà súboru %s" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, 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:925 +#: apt-pkg/contrib/fileutl.cc:956 #, c-format msgid "Problem unlinking the file %s" msgstr "Problém pri odstraňovanà súboru %s" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "Problém pri synchronizovanà súboru" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "Vyrovnávacia pamäť balÃkov je prázdna" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "Súbor vyrovnávacej pamäti balÃkov je poÅ¡kodený" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 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:158 +#: apt-pkg/pkgcache.cc:161 #, 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:163 +#: apt-pkg/pkgcache.cc:166 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:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "Závisà na" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "Predzávisà na" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "Navrhuje" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "OdporúÄa" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "Koliduje s" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "Nahrádza" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "Zneplatňuje" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "KazÃ" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "RozÅ¡iruje" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "dôležitý" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "požadovaný" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "Å¡tandardný" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "voliteľný" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "extra" @@ -2655,7 +2662,7 @@ msgstr "Typ „%s“ je neznámy na riadku %u v zozname zdrojov %s" #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" "Nebolo možné vykonaÅ¥ okamžitú konfiguráciu „%s“. Pozri prosÃm podrobnosti v " @@ -2675,7 +2682,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" "Nebolo možné vykonaÅ¥ okamžitú konfiguráciu už rozbaleného „%s“. Pozri prosÃm " @@ -2692,7 +2699,7 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "Je nutné preinÅ¡talovaÅ¥ balÃk %s, ale nedá sa nájsÅ¥ jeho archÃv." -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2700,11 +2707,11 @@ msgstr "" "Chyba, pkgProblemResolver::Resolve vytvára poruchy, Äo môže být spôsobené " "pridržanými balÃkmi." -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "Problémy sa nedajú opraviÅ¥, niektoré balÃky držÃte v poÅ¡kodenom stave." -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2729,12 +2736,12 @@ msgstr "Adresár %s sa nedá zamknúť" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, 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:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "SÅ¥ahuje sa %li. súbor z %li" @@ -2754,12 +2761,12 @@ msgstr "Spôsob %s nebol správne spustený" 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:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Systém balÃkov „%s“ nie je podporovaný" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "Nedá sa urÄiÅ¥ vhodný typ systému balÃkov" @@ -2780,17 +2787,21 @@ msgstr "Zoznamy balÃkov alebo stavový súbor sa nedajú spracovaÅ¥ alebo otvor 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/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "Nedá sa naÄÃtaÅ¥ zoznam zdrojov." + +#: apt-pkg/policy.cc:344 #, 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:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "Nezrozumiteľné pridržanie typu %s" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "Nebola zadaná žiadna (alebo nulová) priorita na pridržanie" @@ -2894,43 +2905,43 @@ msgstr "premenovanie zlyhalo, %s (%s -> %s)." msgid "MD5Sum mismatch" msgstr "Nezhoda kontrolných MD5 súÄtov" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" msgstr "Nezhoda kontrolných haÅ¡ súÄtov" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 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" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "PlatnosÅ¥ súboru Release vyprÅ¡ala, ignoruje sa %s (neplatný od %s)" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, 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:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "PoÄas overovania podpisu sa vyskytla chyba. Repozitár nie je aktualizovaný a " "použijú sa predoÅ¡lé indexové súbory. Chyba GPG: %s: %s\n" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "Chyba GPG: %s: %s" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2939,7 +2950,7 @@ 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:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2948,13 +2959,13 @@ msgstr "" "Nedá sa nájsÅ¥ súbor s balÃkom %s. Asi budete musieÅ¥ opraviÅ¥ tento balÃk " "manuálne." -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, 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/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "Veľkosti sa nezhodujú" @@ -3079,37 +3090,37 @@ msgstr "Zapisuje sa nový zoznam zdrojov\n" msgid "Source list entries for this disc are:\n" msgstr "Položky zoznamu zdrojov pre tento disk sú:\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "ZapÃsaných %i záznamov.\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, 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:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, 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:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, 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" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, c-format msgid "Skipping nonexistent file %s" msgstr "Preskakuje sa neexistujúci súbor %s" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "Nebolo možné nájsÅ¥ autentifikaÄný záznam pre: %s" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, c-format msgid "Hash mismatch for: %s" msgstr "Nezhoda kontrolných haÅ¡ súÄtov: %s" @@ -3173,12 +3184,12 @@ msgstr "" msgid "Installing %s" msgstr "InÅ¡taluje sa %s" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "Nastavuje sa %s" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "Odstraňuje sa %s" @@ -3198,76 +3209,77 @@ msgstr "Zaznamenali sme zmiznutie %s" msgid "Running post-installation trigger %s" msgstr "Vykonáva sa spúšťaÄ post-installation %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "Adresár „%s“ chýba" -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Could not open file '%s'" msgstr "Nedá sa otvoriÅ¥ súbor „%s“" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "Pripravuje sa %s" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "Rozbaľuje sa %s" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "Pripravuje sa nastavenie %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "NainÅ¡talovaný balÃk %s" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "Pripravuje sa odstránenie %s" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "Odstránený balÃk %s" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "Pripravuje sa úplné odstránenie %s" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "BalÃk „%s“ je úplne odstránený" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Nedá sa zapÃsaÅ¥ záznam, volanie openpty() zlyhalo (/dev/pts nie je " "pripojený?)\n" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "Spúšťa sa dpkg" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 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:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "problém so závislosÅ¥ami - ponecháva sa nenakonfigurované" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3275,7 +3287,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:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" @@ -3283,7 +3295,7 @@ msgstr "" "NezapÃÅ¡e sa správa apport, pretože chybová správa indikuje, že je disk " "zaplnený" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3291,7 +3303,7 @@ msgstr "" "NezapÃÅ¡e sa správa apport, pretože chybová správa indikuje chybu nedostatku " "pamäte" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.5.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+0200\n" "PO-Revision-Date: 2005-02-16 22:18+0100\n" "Last-Translator: Jure Cuhalev <gandalf@owca.info>\n" "Language-Team: Slovenian <sl@li.org>\n" @@ -147,14 +147,14 @@ msgstr " Zaponka paketa:" msgid " Version table:" msgstr " Tabela razlièic:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, fuzzy, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s za %s %s preveden na %s %s\n" -#: cmdline/apt-cache.cc:1739 +#: cmdline/apt-cache.cc:1745 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -321,31 +321,31 @@ msgstr "Ni mogoèe pisati na %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Ni mogoèe ugotoviti razlièice debconfa. Je sploh name¹èen?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "Seznam raz¹iritev paketov je predolg" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "Napaka pri obdelavi imenika %s" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "Seznam raz¹iritev virov je predolg" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "Napaka pri pisanju glave v vsebinsko datoteko" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "Napaka pri obdelavi vsebine %s" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 #, fuzzy msgid "" "Usage: apt-ftparchive [options] command\n" @@ -426,11 +426,11 @@ msgstr "" " -c=? Prebere podano datoteko z nastavitvami\n" " -o=? Nastavi poljubno nastavitveno mo¾nost" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "Nobena izbira se ne ujema" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Nekatere datoteke manjkajo v skupini paketnih datotek '%s'" @@ -540,7 +540,7 @@ msgstr "Arhiv ni imel polja s paketom" msgid " %s has no override entry\n" msgstr " %s nima prekrivnega vnosa\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " Vzdr¾evalec %s je %s in ne %s\n" @@ -650,79 +650,79 @@ msgstr "Napaka pri odvezovanju %s" msgid "Failed to rename %s to %s" msgstr "Ni mogoèe preimenovati %s v %s" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "Napaka pri prevajanju regex - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "Naslednji paketi imajo nere¹ene odvisnosti:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "vendar je paket %s name¹èen" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "vendar bo paket %s name¹èen" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "vendar se ga ne da namestiti" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "vendar je navidezen paket" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "vendar ni name¹èen" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "vendar ne bo name¹èen" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " ali" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "Naslednji NOVI paketi bodo name¹èeni:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "Naslednji novi paketi bodo ODSTRANJENI:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "Naslednji paketi so bili zadr¾ani:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "Naslednji paketi bodo nadgrajeni:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "Naslednji paketi bodo POSTARANI:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "Naslednji zadr¾ani paketi bodo spremenjeni:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (zaradi %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 #, fuzzy msgid "" "WARNING: The following essential packages will be removed.\n" @@ -731,65 +731,65 @@ msgstr "" "OPOZORILO: Naslednji kljuèni paketi bodo odstranjeni.\n" "To NI priporoèljivo, razen èe natanèno veste, kaj poènete." -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu nadgrajenih, %lu na novo name¹èenih, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu posodobljenih, " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu postaranih, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu bo odstranjenih in %lu ne nadgrajenih.\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu ne popolnoma name¹èenih ali odstranjenih.\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, fuzzy, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "Opomba: izbran %s namesto regex '%s'\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, fuzzy, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "Opomba: izbran %s namesto regex '%s'\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, fuzzy, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "Izbrana razlièica %s (%s) za %s\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "Paket %s je navidezen in ga je priskrbel:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [Name¹èeno]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 #, fuzzy msgid " [Not candidate version]" msgstr "Razlièice kandidatov" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "Sami izberite paket, ki ga ¾elite namestiti." -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -800,165 +800,168 @@ msgstr "" "To ponavadi pomeni, da paket manjka, je zastaran ali\n" "pa je na voljo samo iz drugega vira.\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "Kakorkoli, naslednji paketi ga nadomestijo:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, fuzzy, c-format msgid "Package '%s' has no installation candidate" msgstr "Paket %s nima kandidata za namestitev" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, fuzzy, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "Opomba: izbran %s namesto %s \n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "%s preskoèen, ker je ¾e name¹èen in ne potrebuje nadgradnje.\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, fuzzy, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "%s preskoèen, ker je ¾e name¹èen in ne potrebuje nadgradnje.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "Ponovna namestitev %s ni mo¾na, ker ni mo¾en prenos.\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "Najnovej¹a razlièica %s je ¾e name¹èena.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "vendar bo paket %s name¹èen" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "Paket %s ni name¹èen, zato ni odstranjen\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "Popravljanje odvisnosti ..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " spodletelo." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "Ni mogoèe popraviti odvisnosti" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "Ni mogoèe pomanj¹ati zbirke za nadgradnjo" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " Opravljeno" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "Èe ¾elite popraviti napake, poskusite pognati 'apt-get -f install'." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "Nere¹ene odvisnosti. Poskusite uporabiti -f." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "POZORO: Naslednjih paketov ni bilo mogoèe avtenticirati!" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "Namestim te pakete brez prevejanje [y/N]? " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "Nisem uspel avtenticirati nekaterih paketkov" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "Pri¹lo je do te¾av in -y je bil uporabljen brez --force-yes" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "Odstraniti je potrebno pakete, a je Odstranjevanje onemogoèeno." -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 #, fuzzy msgid "Internal error, Ordering didn't finish" msgstr "Notranja napaka pri dodajanju odklona" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "Seznama virov ni mogoèe brati." - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Potrebno je dobiti %sB/%sB arhivov.\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Potrebno je dobiti %sB arhivov.\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, fuzzy, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "Po odpakiranju bo uporabljenega %sB dodatnega prostora na disku.\n" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, fuzzy, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Po odpakiranju bo spro¹èenega %sB prostora na disku.\n" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, fuzzy, c-format msgid "Couldn't determine free space in %s" msgstr "Nimate dovolj prostora na %s" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "V %s je premalo prostora." -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Izbrana je mo¾nost Samo preprosto, a to opravilo ni preprosto." -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "Da, naredi tako kot pravim!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, fuzzy, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -969,28 +972,28 @@ msgstr "" "Za nadaljevanje vnesite frazo '%s'\n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "Prekini." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "Ali ¾elite nadaljevati [Y/n]? " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Ni mogoèe dobiti %s %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "Prenos nekaterih datotek ni uspel" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "Prenos dokonèan in uporabljen naèin samo prenos" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -998,19 +1001,19 @@ msgstr "" "Nekaterih arhivov ni mogoèe dobiti. Poskusite uporabiti apt-get update ali --" "fix-missing." -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing in izmenjava medija trenutno nista podprta" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "Ni mogoèe popraviti manjkajoèih paketov." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "Prekinjanje namestitve." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1020,35 +1023,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Ni mogoèe doloèiti seznama izvornih paketov %s" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "Ukaz update ne potrebuje argumentov" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1058,7 +1061,7 @@ msgid_plural "" msgstr[0] "Naslednji NOVI paketi bodo name¹èeni:" msgstr[1] "Naslednji NOVI paketi bodo name¹èeni:" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1066,11 +1069,11 @@ msgid_plural "" msgstr[0] "Naslednji NOVI paketi bodo name¹èeni:" msgstr[1] "Naslednji NOVI paketi bodo name¹èeni:" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1086,24 +1089,24 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "Naslednji podatki vam bodo morda pomagali re¹iti te¾avo:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "Notranja napaka zaradi AllUpgrade." -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "Notranja napaka zaradi AllUpgrade." -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Poskusite zagnati 'apt-get -f install', èe ¾elite popraviti:" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1111,7 +1114,7 @@ msgstr "" "Nere¹ene odvisnosti. Poskusite 'apt-get -f install' brez paketov (ali " "podajte re¹itev)." -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1122,71 +1125,71 @@ msgstr "" "nemogoè polo¾aj, èe uporabljate nestabilno izdajo pa, da nekateri zahtevani " "paketi ¹e niso ustvarjeni ali prene¹eni iz Prihajajoèe." -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "Pokvarjeni paketi" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "Naslednji dodatni paketi bodo name¹èeni:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "Predlagani paketi:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "Priporoèeni paketi:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "Ni mogoèe najti paketa %s" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "vendar bo paket %s name¹èen" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "Preraèunavanje nadgradnje ... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "Spodletelo" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "Opravljeno" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 #, fuzzy msgid "Internal error, problem resolver broke stuff" msgstr "Notranja napaka zaradi AllUpgrade." -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "Ni mogoèe zakleniti imenika za prenose" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 msgid "Must specify at least one package to fetch source for" msgstr "" "Potrebno je navesti vsaj en paket, za katerega ¾elite dobiti izorno kodo" -#: cmdline/apt-get.cc:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "Izvornega paketa za %s ni mogoèe najti" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1194,83 +1197,87 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, fuzzy, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Odpakiranje ¾e odpakiranih izvornih paketov v %s preskoèeno\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "Nimate dovolj prostora na %s" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Potrebno je dobiti %sB/%sB izvornih arhivov.\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Potrebno je dobiti %sB izvornih arhivov.\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "Dobi vir %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "Nekaterih arhivov ni mogoèe dobiti." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Odpakiranje ¾e odpakiranih izvornih paketov v %s preskoèeno\n" -#: cmdline/apt-get.cc:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Ukaz odpakiranja '%s' ni uspel.\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "Ukaz gradnje '%s' ni uspel.\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "Otro¹ki proces ni uspel" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 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:2506 +#: cmdline/apt-get.cc:2524 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Ni mogoèe dobiti informacij o odvisnostih za gradnjo za %s" -#: cmdline/apt-get.cc:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "%s nima odvisnosti za gradnjo.\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, 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:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1279,31 +1286,31 @@ msgstr "" "%s odvisnosti za %s ni mogoèe zadostiti, ker nobena razlièica paketa %s ne " "more zadostiti zahtevi po razlièici" -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, 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:2693 +#: cmdline/apt-get.cc:2711 #, 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:2709 +#: cmdline/apt-get.cc:2727 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Odvisnostim za gradnjo %s ni mogoèe zadostiti." -#: cmdline/apt-get.cc:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "Obdelava odvisnosti za gradnjo ni uspela" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "Podprti moduli:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1388,7 +1395,7 @@ msgstr "" "sources.list(5) in apt.conf(5).\n" " APT ima moè Super Krave.\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1636,10 +1643,10 @@ msgstr "Datoteka %s/%s prepisuje datoteko v paketu %s" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1773,23 +1780,23 @@ msgstr "Ni mogoèe najti veljavne nadzorne datoteka" msgid "Unparsable control file" msgstr "Nadzorne datoteke ni mogoèe razèleniti" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "Ni mogoèe odprti %s" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "Napaka pri branju iz procesa %s" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "Doloèitev ni uspela" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "Nastavitev èasa spremembe ni uspela" @@ -1883,7 +1890,7 @@ msgstr "Povezava potekla" msgid "Server closed the connection" msgstr "Stre¾nik je zaprl povezavo" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "Napaka pri branju" @@ -1895,7 +1902,7 @@ msgstr "Odgovor je prekoraèil vmesnik." msgid "Protocol corruption" msgstr "Okvara protokola" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "Napaka pri pisanju" @@ -1949,7 +1956,7 @@ msgstr "Povezava podatkovne vtiènice potekla" msgid "Unable to accept connection" msgstr "Ni mogoèe sprejeti povezave" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "Te¾ava pri razpr¹evanju datoteke" @@ -2080,68 +2087,68 @@ msgstr "Dobljena je ena vrstica glave preko %u znakov" msgid "Bad header line" msgstr "Napaèna vrstica glave" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "Stre¾nik HTTP je poslal napaèno glavo odgovora" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "Stre¾nik HTTP je poslal glavo z napaèno dol¾ino vsebine" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "Stre¾nik HTTP je poslal glavo z napaènim obsegom vsebine" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "Ta stre¾nik HTTP ima pokvarjen obseg podpore" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "Neznana oblika datuma" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "Izbira ni uspela" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "Èas za povezavo se je iztekel" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "Napaka pri pisanju v izhodno datoteko" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "Napaka pri pisanju v datoteko" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "Napaka pri pisanju v datoteko" -#: methods/http.cc:894 +#: methods/http.cc:900 msgid "Error reading from server. Remote end closed connection" msgstr "Napaka pri branju oddaljene in zaprte povezave s stre¾nika " -#: methods/http.cc:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "Napaka pri branju s stre¾nika" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 #, fuzzy msgid "Failed to truncate file" msgstr "Napaka pri pisanju datoteke %s" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "Napaèni podatki glave" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "Povezava ni uspela" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "Notranja napaka" @@ -2335,14 +2342,14 @@ msgstr "Napaèna operacija %s" msgid "Unable to stat the mount point %s" msgstr "Ni mogoèe doloèiti priklopne toèke %s" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "Ni mogoèe spremeniti v %s" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "Ni mogoèe doloèiti CD-ROM-a" @@ -2366,149 +2373,149 @@ msgstr "Brez uporabe zaklepanja za datoteko %s, priklopljeno z NTFS" msgid "Could not get lock %s" msgstr "Ni mogoèe dobiti zaklenjene datoteke %s" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Èakal, a %s ni bil tam" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Napaka pri razèlenjenosti podprocesa %s." -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "Napaka pri razèlenjenosti podprocesa %s." -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Podproces %s je vrnil kodo napake (%u)" -#: apt-pkg/contrib/fileutl.cc:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Podproces %s se je neprièakovano zakljuèil" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "Ne morem odpreti datoteke %s" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "Ni mogoèe odprti %s" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "berem, ¹e vedno %lu za branje, a nobeden ostal" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "pi¹em, ¹e vedno %lu za pisanje, a ni mogoèe" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, fuzzy, c-format msgid "Problem closing the gzip file %s" msgstr "Te¾ava pri zapiranju datoteke" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "Te¾ava pri zapiranju datoteke" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "Te¾ava pri usklajevanju datoteke" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "Te¾ava pri odvezovanju datoteke" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "Te¾ava pri usklajevanju datoteke" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "Prazen predpomnilnik paketov" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "Datoteka s predpomnilnikom paketov je pokvarjena" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "Razlièica datoteke s predpomnilnikom paketov ni ustrezna" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, 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:163 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache was built for a different architecture" msgstr "Predpomnilnik paketov je bil zgrajen za drugaèno arhitekturo" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "Odvisen od" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "Predodvisnost" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "Priporoèa" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "Priporoèa" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "V sporu z" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "Zamenja" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "Zastarani" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "pomembno" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "obvezno" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "standardno" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "izbirno" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "dodatno" @@ -2627,7 +2634,7 @@ msgstr "Vrsta '%s' v vrstici %u v seznamu virov %s ni znana" #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" @@ -2645,7 +2652,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" @@ -2661,7 +2668,7 @@ msgid "" msgstr "" "Paket %s mora biti ponovno name¹èen, vendar ne morem najti arhiva zanj." -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2669,11 +2676,11 @@ msgstr "" "Napaka. pkgProblemResolver::Napake pri razre¹itvi, ki so jih morda " "povzroèili zadr¾ani paketi." -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "Ni mogoèe popraviti te¾av. Imate zadr¾ane pakete." -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2698,12 +2705,12 @@ msgstr "Imenika seznamov ni mogoèe zakleniti" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, fuzzy, c-format msgid "Retrieving file %li of %li" msgstr "Branje seznama datotek" @@ -2726,12 +2733,12 @@ msgstr "" " '%s'\n" "v enoto '%s' in pritisnite enter\n" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Paketni sistem '%s' ni podprt" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "Ni mogoèe ugotoviti ustrezne vrste paketnega sistema" @@ -2752,17 +2759,21 @@ msgstr "Ni mogoèe odprti ali razèleniti seznama paketov ali datoteke stanja." msgid "You may want to run apt-get update to correct these problems" msgstr "Èe ¾elite odpraviti te¾ave, poskusite zagnati apt-get update." -#: apt-pkg/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "Seznama virov ni mogoèe brati." + +#: apt-pkg/policy.cc:344 #, fuzzy, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "Napaèen zapis v datoteki z nastavitvami. Ni glave paketa" -#: apt-pkg/policy.cc:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "Ni mogoèe razumeti vrste zaponke %s" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "Prioriteta zaponke ni doloèena ali pa je niè." @@ -2865,42 +2876,42 @@ msgstr "preimenovanje spodletelo, %s (%s -> %s)." msgid "MD5Sum mismatch" msgstr "Neujemanje vsote MD5" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 #, fuzzy msgid "Hash Sum mismatch" msgstr "Neujemanje vsote MD5" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 msgid "There is no public key available for the following key IDs:\n" msgstr "" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2909,7 +2920,7 @@ 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:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2918,7 +2929,7 @@ msgstr "" "Ni bilo mogoèe najti datoteke za paket %s. Morda boste morali roèno " "popraviti ta paket." -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2926,7 +2937,7 @@ msgstr "" "Datoteke s kazali paketov so pokvarjene. Brez imena datotek: polje alu paket " "%s." -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "Neujemanje velikosti" @@ -3048,39 +3059,39 @@ msgstr "Pi¹em nov seznam virov\n" msgid "Source list entries for this disc are:\n" msgstr "Izvorni vnosi za ta medij so:\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "Zapisal %i zapisov.\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Zapisal %i zapisov z %i manjkajoèimi datotekami.\n" -#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Zapisal %i zapisov z %i neujemajoèimi datotekami.\n" -#: apt-pkg/indexcopy.cc:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" "Zapisal %i zapisov z %i manjkajoèimi datotekami in %i neujemajoèimi " "datotekami.\n" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, fuzzy, c-format msgid "Skipping nonexistent file %s" msgstr "Odpiranje nastavitvene datoteke %s" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, fuzzy, c-format msgid "Hash mismatch for: %s" msgstr "Neujemanje vsote MD5" @@ -3137,12 +3148,12 @@ msgstr "" msgid "Installing %s" msgstr " Name¹èen: " -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, fuzzy, c-format msgid "Configuring %s" msgstr "Povezujem se z %s" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, fuzzy, c-format msgid "Removing %s" msgstr "Odpiram %s" @@ -3162,92 +3173,93 @@ msgstr "" msgid "Running post-installation trigger %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, fuzzy, c-format msgid "Directory '%s' missing" msgstr "Manjka imenik s seznami %spartial." -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, fuzzy, c-format msgid "Could not open file '%s'" msgstr "Ne morem odpreti datoteke %s" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, fuzzy, c-format msgid "Preparing %s" msgstr "Odpiram %s" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, fuzzy, c-format msgid "Unpacking %s" msgstr "Odpiram %s" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, fuzzy, c-format msgid "Preparing to configure %s" msgstr "Odpiranje nastavitvene datoteke %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, fuzzy, c-format msgid "Installed %s" msgstr " Name¹èen: " -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, fuzzy, c-format msgid "Removed %s" msgstr "Priporoèa" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, fuzzy, c-format msgid "Preparing to completely remove %s" msgstr "Odpiranje nastavitvene datoteke %s" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, fuzzy, c-format msgid "Completely removed %s" msgstr "Odstranitev %s ni uspela" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+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" @@ -150,14 +150,14 @@ msgstr " PaketnÃ¥lning: " msgid " Version table:" msgstr " Versionstabell:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, 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:1739 +#: cmdline/apt-cache.cc:1745 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -320,31 +320,31 @@ msgstr "Kunde inte skriva till %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Kan inte ta reda pÃ¥ debconf-version. Är debconf installerat?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "Listan över filtillägg för Packages är för lÃ¥ng" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "Fel vid behandling av katalogen %s" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "Listan över filtillägg för Sources är för lÃ¥ng" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "Fel vid skrivning av rubrik till innehÃ¥llsfil" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "Fel vid behandling av innehÃ¥llet %s" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -425,11 +425,11 @@ msgstr "" " -c=? Läs denna konfigurationsfil\n" " -o=? Ställ in en godtycklig konfigurationsflagga" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "Inga val träffades" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "NÃ¥gra filer saknas i paketfilsgruppen \"%s\"" @@ -544,7 +544,7 @@ msgid " %s has no override entry\n" msgstr " %s har ingen post i override-filen\n" # parametrar: paket, ny, gammal -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " ansvarig för paketet %s är %s ej %s\n" @@ -656,79 +656,79 @@ msgstr "Problem med att länka ut %s" msgid "Failed to rename %s to %s" msgstr "Misslyckades med att byta namn pÃ¥ %s till %s" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "J" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "Fel vid kompilering av reguljärt uttryck - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "Följande paket har beroenden som inte kan tillfredsställas:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "men %s är installerat" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "men %s kommer att installeras" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "men det kan inte installeras" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "men det är ett virtuellt paket" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "men det är inte installerat" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "men det kommer inte att installeras" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " eller" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "Följande NYA paket kommer att installeras:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "Följande paket kommer att TAS BORT:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "Följande paket har hÃ¥llits tillbaka:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "Följande paket kommer att uppgraderas:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "Följande paket kommer att NEDGRADERAS:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "Följande tillbakahÃ¥llna paket kommer att ändras:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (pÃ¥ grund av %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -736,64 +736,64 @@ 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!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu att uppgradera, %lu att nyinstallera, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu att installera om, " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu att nedgradera, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu att ta bort och %lu att inte uppgradera.\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu är inte helt installerade eller borttagna.\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "Observera, väljer \"%s\" för funktionen \"%s\"\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "Observera, väljer \"%s\" för det reguljära uttrycket \"%s\"\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "Valde version \"%s\" (%s) för \"%s\"\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "Paketet %s är ett virtuellt paket som tillhandahÃ¥lls av:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [Installerat]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 msgid " [Not candidate version]" msgstr " [Inte kandidatversion]" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "Du bör uttryckligen ange ett att installera." -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -804,170 +804,173 @@ msgstr "" "Det kan betyda att paketet saknas, har blivit förÃ¥ldrat eller endast\n" "är tillgängligt frÃ¥n andra källor\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "Dock kan följande paket ersätta det:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, c-format msgid "Package '%s' has no installation candidate" msgstr "Paketet \"%s\" har ingen installationskandidat" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "Virtuella paket som \"%s\" kan inte tas bort\n" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "Observera, väljer \"%s\" istället för \"%s\"\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" "Hoppar över %s, det är redan installerat och uppgradering har inte valts.\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" "Hoppar över %s, det är inte installerat och endast uppgraderingar har " "begärts.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "Ominstallation av %s är inte möjlig, det kan inte hämtas.\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s är redan den senaste versionen.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, c-format msgid "%s set to manually installed.\n" msgstr "%s är satt till manuellt installerad.\n" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "Paketet %s är inte installerat, sÃ¥ det tas inte bort\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "Korrigerar beroenden...." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " misslyckades." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "Kunde inte korrigera beroenden" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "Kunde inte minimera uppgraderingsuppsättningen" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " Färdig" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "Du bör köra \"apt-get -f install\" för att korrigera dessa." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "Otillfredsställda beroenden. Prova med -f." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "VARNING: Följande paket kunde inte autentiseras!" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "Autentiseringsvarning Ã¥sidosatt.\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "Installera dessa paket utan verifiering [j/N]? " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "NÃ¥gra av paketen kunde inte autentiseras" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "Problem har uppstÃ¥tt och -y användes utan --force-yes" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Internt fel. InstallPackages anropades med trasiga paket!" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "Paketen mÃ¥ste tas bort men \"Remove\" är inaktiverat." -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "Internt fel. Sorteringen färdigställdes inte" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "Listan över källor kunde inte läsas." - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" "Konstigt.. storlekarna stämde inte överens, skicka e-post till apt@packages." "debian.org" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Behöver hämta %sB/%sB arkiv.\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Behöver hämta %sB arkiv.\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" "Efter denna Ã¥tgärd kommer ytterligare %sB utrymme användas pÃ¥ disken.\n" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Efter denna Ã¥tgärd kommer %sB att frigöras pÃ¥ disken.\n" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "Kunde inte fastställa ledigt utrymme i %s" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "Du har inte tillräckligt mycket ledigt utrymme i %s" -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "\"Trivial Only\" angavs, men detta är inte en trivial handling." -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "Ja, gör som jag säger!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -979,28 +982,28 @@ msgstr "" " ?] " # Visas dÃ¥ man svarar nej -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "Avbryter." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "Vill du fortsätta [J/n]? " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Misslyckades med att hämta %s %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "Misslyckades med att hämta vissa filer" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "Hämtningen färdig i \"endast-hämta\"-läge" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1008,19 +1011,19 @@ msgstr "" "Vissa arkiv kunte inte hämtas. Prova att köra \"apt-get update\" eller med --" "fix-missing." -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing och mediabyte stöds inte för tillfället" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "Kunde inte korrigera saknade paket." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "Avbryter installationen." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1034,36 +1037,36 @@ msgstr[1] "" "Följande paket har försvunnit frÃ¥n ditt system eftersom\n" "alla filer har skrivits över av andra paket:" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "Observera: Detta sker med automatik och vid behov av dpkg." -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "Ignorera otillgängliga mÃ¥lutgÃ¥van \"%s\" av paketet \"%s\"" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Väljer \"%s\" som källkodspaket istället för \"%s\"\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "Ignorera otillgängliga versionen \"%s\" av paketet \"%s\"" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "Uppdateringskommandot tar inga argument" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "Det är inte meningen att vi ska ta bort nÃ¥got, kan inte starta AutoRemover" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1074,7 +1077,7 @@ msgstr[0] "" msgstr[1] "" "Följande paket har installerats automatiskt och är inte längre nödvändiga:" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1084,11 +1087,11 @@ msgstr[0] "" msgstr[1] "" "%lu paket blev installerade automatiskt och är inte längre nödvändiga.\n" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "Använd \"apt-get autoremove\" för att ta bort dem." -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1106,23 +1109,23 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "Följande information kan vara till hjälp för att lösa situationen:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" msgstr "Internt fel, AutoRemover förstörde nÃ¥got" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "Internt fel, AllUpgrade förstörde nÃ¥got" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Du bör köra \"apt-get -f install\" för att korrigera dessa:" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1130,7 +1133,7 @@ msgstr "" "Otillfredsställda beroenden. Prova med \"apt-get -f install\" utan paket " "(eller ange en lösning)." -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1142,62 +1145,62 @@ msgstr "" "att nÃ¥gra nödvändiga paket ännu inte har skapats eller flyttats\n" "ut frÃ¥n \"Incoming\"." -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "Trasiga paket" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "Följande ytterligare paket kommer att installeras:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "Föreslagna paket:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "Rekommenderade paket:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "Kunde inte hitta paketet %s" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s är satt till automatiskt installerad.\n" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "Beräknar uppgradering... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "Misslyckades" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "Färdig" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "Internt fel, problemlösaren förstörde nÃ¥gonting" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "Kunde inte lÃ¥sa hämtningskatalogen" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 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:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "Kunde inte hitta nÃ¥got källkodspaket för %s" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -1207,7 +1210,7 @@ msgstr "" "pÃ¥:\n" "%s\n" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1218,74 +1221,78 @@ msgstr "" "bzr get %s\n" "för att hämta senaste (möjligen inte utgivna) uppdateringar av paketet.\n" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Hoppar över redan hämtade filen \"%s\"\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "Du har inte tillräckligt mycket ledigt utrymme i %s" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Behöver hämta %sB/%sB källkodsarkiv.\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Behöver hämta %sB källkodsarkiv.\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "Hämtar källkoden %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "Misslyckades med att hämta vissa arkiv." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, 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:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Uppackningskommandot \"%s\" misslyckades.\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, 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:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "Byggkommandot \"%s\" misslyckades.\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "Barnprocessen misslyckades" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 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:2506 +#: cmdline/apt-get.cc:2524 #, 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:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "%s har inga byggberoenden.\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1294,7 +1301,7 @@ msgstr "" "%s-beroendet pÃ¥ %s kan inte tillfredsställas eftersom paketet %s inte kan " "hittas" -#: cmdline/apt-get.cc:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1303,32 +1310,32 @@ msgstr "" "%s-beroendet pÃ¥ %s kan inte tillfredsställas eftersom inga tillgängliga " "versioner av paketet %s tillfredsställer versionskraven" -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, 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:2693 +#: cmdline/apt-get.cc:2711 #, 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:2709 +#: cmdline/apt-get.cc:2727 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Byggberoenden för %s kunde inte tillfredsställas." -#: cmdline/apt-get.cc:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "Misslyckades med att behandla byggberoenden" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "Moduler som stöds:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1415,7 +1422,7 @@ msgstr "" "för mer information och flaggor.\n" " Denna APT har Speciella Ko-Krafter.\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1671,10 +1678,10 @@ msgstr "Filen %s/%s skriver över den i paketet %s" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1810,24 +1817,24 @@ msgstr "Misslyckades med att hitta en giltig control-fil" msgid "Unparsable control file" msgstr "Kunde inte tolka control-filen" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "Kunde inte öppna rör för %s" # %s = programnamn -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "Läsfel frÃ¥n %s-processen" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "Kunde inte ta status" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "Misslyckades ställa in ändringstid" @@ -1920,7 +1927,7 @@ msgstr "Tidsgränsen för anslutningen överskreds" msgid "Server closed the connection" msgstr "Servern stängde anslutningen" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "Läsfel" @@ -1932,7 +1939,7 @@ msgstr "Ett svar spillde bufferten." msgid "Protocol corruption" msgstr "Protokollet skadat" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "Skrivfel" @@ -1986,7 +1993,7 @@ msgstr "Anslutet datauttag (socket) fick inte svar inom tidsgränsen" msgid "Unable to accept connection" msgstr "Kunde inte ta emot anslutningen" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "Problem med att lägga filen till hashtabellen" @@ -2125,67 +2132,67 @@ msgstr "Fick en ensam rubrikrad pÃ¥ %u tecken" msgid "Bad header line" msgstr "Felaktig rubrikrad" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "Http-servern sände ett ogiltigt svarshuvud" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "Http-servern sände ett ogiltigt Content-Length-rubrik" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "Http-servern sände ett ogiltigt Content-Range-rubrik" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "Den här http-serverns stöd för delvis hämtning fungerar inte" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "Okänt datumformat" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "\"Select\" misslyckades" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "Anslutningen överskred tidsgränsen" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "Fel vid skrivning till utdatafil" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "Fel vid skrivning till fil" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "Fel vid skrivning till filen" -#: methods/http.cc:894 +#: methods/http.cc:900 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:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "Fel vid läsning frÃ¥n server" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 msgid "Failed to truncate file" msgstr "Misslyckades med att kapa av filen" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "Felaktiga data i huvud" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "Anslutningen misslyckades" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "Internt fel" @@ -2383,14 +2390,14 @@ msgid "Unable to stat the mount point %s" msgstr "Kunde inte ta status pÃ¥ monteringspunkten %s." # Felmeddelande för misslyckad chdir -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "Kunde inte byta till %s" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "Kunde inte ta status pÃ¥ cd-romen." @@ -2414,152 +2421,152 @@ msgstr "Använder inte lÃ¥sning för nfs-monterade lÃ¥sfilen %s" msgid "Could not get lock %s" msgstr "Kunde inte erhÃ¥lla lÃ¥set %s" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Väntade pÃ¥ %s men den fanns inte där" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, 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:635 +#: apt-pkg/contrib/fileutl.cc:657 #, c-format msgid "Sub-process %s received signal %u." msgstr "Underprocessen %s tog emot signal %u." -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Underprocessen %s svarade med en felkod (%u)" -#: apt-pkg/contrib/fileutl.cc:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Underprocessen %s avslutades oväntat" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "Kunde inte öppna filen %s" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, c-format msgid "Could not open file descriptor %d" msgstr "Kunde inte öppna filhandtag %d" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "läsning, har fortfarande %lu att läsa men ingenting finns kvar" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "skrivning, har fortfarande %lu att skriva men kunde inte" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, c-format msgid "Problem closing the gzip file %s" msgstr "Problem med att stänga gzip-filen %s" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, c-format msgid "Problem closing the file %s" msgstr "Problem med att stänga filen %s" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, 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:925 +#: apt-pkg/contrib/fileutl.cc:956 #, c-format msgid "Problem unlinking the file %s" msgstr "Problem med att avlänka filen %s" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "Problem med att synkronisera filen" # Felmeddelande -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "Paketcachen är tom" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "Paketcachefilen är skadad" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "Paketcachefilens version är inkompatibel" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, 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:163 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache was built for a different architecture" msgstr "Paketcachen byggdes för en annan arkitektur" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "Beroende av" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "Förberoende av" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "FöreslÃ¥r" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "Rekommenderar" # "Konfliktar"? -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "StÃ¥r i konflikt med" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "Ersätter" # "FörÃ¥ldrar"? -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "FörÃ¥ldrar" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "Gör sönder" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "Utökar" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "viktigt" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "nödvändigt" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "standard" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "valfri" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "extra" @@ -2677,7 +2684,7 @@ msgstr "Typ \"%s\" är inte känd pÃ¥ rad %u i listan över källor %s" #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" "Kunde inte genomföra omedelbar konfiguration pÃ¥ \"%s\". Se man 5 apt.conf " @@ -2698,7 +2705,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" "Kunde inte genomföra omedelbar konfiguration pÃ¥ redan uppackade \"%s\". Se " @@ -2716,7 +2723,7 @@ msgid "" msgstr "" "Paketet %s mÃ¥ste installeras om, men jag kan inte hitta nÃ¥got arkiv för det." -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2724,11 +2731,11 @@ msgstr "" "Fel, pkgProblemResolver::Resolve genererade avbrott; detta kan bero pÃ¥ " "tillbakahÃ¥llna paket." -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "Kunde inte korrigera problemen, du har hÃ¥llit tillbaka trasiga paket." -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2753,12 +2760,12 @@ msgstr "Kunde inte lÃ¥sa katalogen %s" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Hämtar fil %li av %li (%s Ã¥terstÃ¥r)" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "Hämtar fil %li av %li" @@ -2779,13 +2786,13 @@ 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:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Paketsystemet \"%s\" stöds inte" # -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "Kunde inte fastställa en lämplig paketsystemstyp" @@ -2806,18 +2813,22 @@ msgstr "Paketlistan eller statusfilen kunde inte tolkas eller öppnas." 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:106 +msgid "The list of sources could not be read." +msgstr "Listan över källor kunde inte läsas." + # "Package" är en sträng i konfigurationsfilen -#: apt-pkg/policy.cc:343 +#: apt-pkg/policy.cc:344 #, 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:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "Förstod inte nÃ¥ltypen %s" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "Prioritet ej angiven (eller noll) för nÃ¥l" @@ -2922,44 +2933,44 @@ msgstr "namnbyte misslyckades, %s (%s -> %s)." msgid "MD5Sum mismatch" msgstr "MD5-kontrollsumman stämmer inte" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" msgstr "Hash-kontrollsumman stämmer inte" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 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" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "Release-filen har gÃ¥tt ut, ignorerar %s (ogiltig sedan %s)" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, 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:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "Ett fel inträffade vid verifiering av signaturen. FörrÃ¥det har inte " "uppdaterats och de tidigare indexfilerna kommer att användas. GPG-fel: %s: " "%s\n" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "GPG-fel: %s: %s" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2968,7 +2979,7 @@ 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:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2977,13 +2988,13 @@ msgstr "" "Jag kunde inte hitta nÃ¥gon fil för paketet %s. Detta kan betyda att du " "manuellt mÃ¥ste reparera detta paket." -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, 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/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "Storleken stämmer inte" @@ -3108,37 +3119,37 @@ msgstr "Skriver ny källista\n" msgid "Source list entries for this disc are:\n" msgstr "Poster i källistan för denna skiva:\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "Skrev %i poster.\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Skrev %i poster med %i saknade filer.\n" -#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, 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:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, 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" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, c-format msgid "Skipping nonexistent file %s" msgstr "Hoppar över icke-existerande filen %s" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "Kan inte hitta autentiseringspost för: %s" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, c-format msgid "Hash mismatch for: %s" msgstr "Hash-kontrollsumman stämmer inte för: %s" @@ -3204,12 +3215,12 @@ msgstr "" msgid "Installing %s" msgstr "Installerar %s" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "Konfigurerar %s" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "Tar bort %s" @@ -3229,75 +3240,76 @@ msgstr "Uppmärksammar försvinnandet av %s" msgid "Running post-installation trigger %s" msgstr "Kör efterinstallationsutlösare %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "Katalogen \"%s\" saknas" -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Could not open file '%s'" msgstr "Kunde inte öppna filen \"%s\"" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "Förbereder %s" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "Packar upp %s" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "Förbereder konfigurering av %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "Installerade %s" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "Förbereder borttagning av %s" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "Tog bort %s" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "Förbereder borttagning av hela %s" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "Tog bort hela %s" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Kan inte skriva loggfil, openpty() misslyckades (/dev/pts inte monterad?)\n" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "Kör dpkg" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 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:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "beroendeproblem - lämnar okonfigurerad" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3305,7 +3317,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:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" @@ -3313,7 +3325,7 @@ msgstr "" "Ingen apport-rapport skrevs därför att felmeddelandet indikerar att " "diskutrymmet är slut" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3321,7 +3333,7 @@ msgstr "" "Ingen apport-rapport skrevs därför att felmeddelandet indikerar att minnet " "är slut" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+0200\n" "PO-Revision-Date: 2008-11-06 15:54+0700\n" "Last-Translator: Theppitak Karoonboonyanan <thep@linux.thai.net>\n" "Language-Team: Thai <thai-l10n@googlegroups.com>\n" @@ -149,14 +149,14 @@ msgstr " à¸à¸²à¸£à¸•à¸£à¸¶à¸‡à¹à¸žà¸à¹€à¸à¸ˆ: " msgid " Version table:" msgstr " ตารางรุ่น:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s สำหรับ %s คà¸à¸¡à¹„พล์เมื่ภ%s %s\n" -#: cmdline/apt-cache.cc:1739 +#: cmdline/apt-cache.cc:1745 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -320,31 +320,31 @@ msgstr "ไม่สามารถเขียนลงà¹à¸Ÿà¹‰à¸¡ %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "ไม่สามารถà¸à¹ˆà¸²à¸™à¸£à¸¸à¹ˆà¸™à¸‚à¸à¸‡ debconf ได้ ได้ติดตั้ง debconf ไว้หรืà¸à¹„ม่?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "รายชื่à¸à¸™à¸²à¸¡à¸ªà¸à¸¸à¸¥à¹à¸žà¸à¹€à¸à¸ˆà¸¢à¸²à¸§à¹€à¸à¸´à¸™à¹„ป" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดขณะประมวลผลไดเรà¸à¸—à¸à¸£à¸µ %s" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "รายชื่à¸à¸™à¸²à¸¡à¸ªà¸à¸¸à¸¥à¸‹à¸à¸£à¹Œà¸ªà¸¢à¸²à¸§à¹€à¸à¸´à¸™à¹„ป" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดขณะเขียนข้à¸à¸¡à¸¹à¸¥à¸ªà¹ˆà¸§à¸™à¸«à¸±à¸§à¸¥à¸‡à¹ƒà¸™à¹à¸Ÿà¹‰à¸¡à¸ªà¸²à¸£à¸šà¸±à¸" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดขณะประมวลผลสารบัภ%s" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -421,11 +421,11 @@ msgstr "" " -c=? à¸à¹ˆà¸²à¸™à¹à¸Ÿà¹‰à¸¡à¸„่าตั้งนี้\n" " -o=? à¸à¸³à¸«à¸™à¸”ตัวเลืà¸à¸à¸„่าตั้งเป็นรายตัว" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "ไม่มีรายà¸à¸²à¸£à¹€à¸¥à¸·à¸à¸à¸—ี่ตรง" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "บางà¹à¸Ÿà¹‰à¸¡à¸‚าดหายไปในà¸à¸¥à¸¸à¹ˆà¸¡à¹à¸Ÿà¹‰à¸¡à¹à¸žà¸à¹€à¸à¸ˆ `%s'" @@ -536,7 +536,7 @@ msgstr "à¹à¸žà¸à¹€à¸à¸ˆà¹„ม่มีช่à¸à¸‡à¸‚้à¸à¸¡à¸¹à¸¥ 'Package msgid " %s has no override entry\n" msgstr " %s ไม่มีข้à¸à¸¡à¸¹à¸¥ override\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " ผู้ดูà¹à¸¥ %s คืภ%s ไม่ใช่ %s\n" @@ -646,79 +646,79 @@ msgstr "มีปัà¸à¸«à¸²à¸‚ณะลบà¹à¸Ÿà¹‰à¸¡ %s" msgid "Failed to rename %s to %s" msgstr "ไม่สามารถเปลี่ยนชื่ภ%s ไปเป็น %s" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "คà¸à¸¡à¹„พล์นิพจน์เรà¸à¸´à¸§à¸¥à¸²à¸£à¹Œà¹„ม่สำเร็จ - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "à¹à¸žà¸à¹€à¸à¸ˆà¸•à¹ˆà¸à¹„ปนี้ขาดà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ต้à¸à¸‡à¹ƒà¸Šà¹‰:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "à¹à¸•à¹ˆà¸£à¸¸à¹ˆà¸™à¸—ี่ติดตั้งไว้คืภ%s" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "à¹à¸•à¹ˆà¸£à¸¸à¹ˆà¸™à¸—ี่จะติดตั้งคืภ%s" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "à¹à¸•à¹ˆà¹„ม่สามารถติดตั้งได้" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "à¹à¸•à¹ˆà¹à¸žà¸à¹€à¸à¸ˆà¸™à¸µà¹‰à¹€à¸›à¹‡à¸™à¹à¸žà¸à¹€à¸à¸ˆà¹€à¸ªà¸¡à¸·à¸à¸™" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "à¹à¸•à¹ˆà¹„ด้ติดตั้งไว้" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "à¹à¸•à¹ˆà¹à¸žà¸à¹€à¸à¸ˆà¸™à¸µà¹‰à¸ˆà¸°à¹„ม่ถูà¸à¸•à¸´à¸”ตั้ง" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " หรืà¸" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "จะติดตั้งà¹à¸žà¸à¹€à¸à¸ˆ *ใหม่* ต่à¸à¹„ปนี้:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "จะ *ลบ* à¹à¸žà¸à¹€à¸à¸ˆà¸•à¹ˆà¸à¹„ปนี้:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "จะคงรุ่นà¹à¸žà¸à¹€à¸à¸ˆà¸•à¹ˆà¸à¹„ปนี้:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "จะปรับรุ่นà¹à¸žà¸à¹€à¸à¸ˆà¸•à¹ˆà¸à¹„ปนี้ขึ้น:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "จะปรับรุ่นà¹à¸žà¸à¹€à¸à¸ˆà¸•à¹ˆà¸à¹„ปนี้ *ลง*:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "จะเปลี่ยนà¹à¸›à¸¥à¸‡à¸£à¸²à¸¢à¸à¸²à¸£à¸„งรุ่นà¹à¸žà¸à¹€à¸à¸ˆà¸•à¹ˆà¸à¹„ปนี้:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (เนื่à¸à¸‡à¸ˆà¸²à¸ %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -726,65 +726,65 @@ msgstr "" "*คำเตืà¸à¸™*: à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่จำเป็นต่à¸à¹„ปนี้จะถูà¸à¸–à¸à¸”ถà¸à¸™\n" "คุณ *ไม่ควร* ทำเช่นนี้ นà¸à¸à¸ˆà¸²à¸à¸„ุณเข้าใจสิ่งที่จะทำ!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "ปรับรุ่นขึ้น %lu, ติดตั้งใหม่ %lu, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "ติดตั้งซ้ำ %lu, " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "ปรับรุ่นลง %lu, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "ถà¸à¸”ถà¸à¸™ %lu à¹à¸¥à¸°à¹„ม่ปรับรุ่น %lu\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "ติดตั้งหรืà¸à¸–à¸à¸”ถà¸à¸™à¹„ม่ครบ %lu\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, fuzzy, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "หมายเหตุ: จะเลืà¸à¸ %s สำหรับนิพจน์เรà¸à¸´à¸§à¸¥à¸²à¸£à¹Œ '%s'\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, fuzzy, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "หมายเหตุ: จะเลืà¸à¸ %s สำหรับนิพจน์เรà¸à¸´à¸§à¸¥à¸²à¸£à¹Œ '%s'\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, fuzzy, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "เลืà¸à¸à¸£à¸¸à¹ˆà¸™ %s (%s) สำหรับ %s à¹à¸¥à¹‰à¸§\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "à¹à¸žà¸à¹€à¸à¸ˆ %s เป็นà¹à¸žà¸à¹€à¸à¸ˆà¹€à¸ªà¸¡à¸·à¸à¸™à¸—ี่ตระเตรียมโดย:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [ติดตั้งà¸à¸¢à¸¹à¹ˆ]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 #, fuzzy msgid " [Not candidate version]" msgstr "รุ่นà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่มี" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "คุณควรเจาะจงเลืà¸à¸à¹à¸žà¸à¹€à¸à¸ˆà¹ƒà¸”à¹à¸žà¸à¹€à¸à¸ˆà¸«à¸™à¸¶à¹ˆà¸‡à¹€à¸žà¸·à¹ˆà¸à¸•à¸´à¸”ตั้ง" -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -794,164 +794,167 @@ msgstr "" "ไม่มีà¹à¸žà¸à¹€à¸à¸ˆ %s ให้ใช้ติดตั้ง à¹à¸•à¹ˆà¸–ูà¸à¸à¹‰à¸²à¸‡à¸–ึงโดยà¹à¸žà¸à¹€à¸à¸ˆà¸à¸·à¹ˆà¸™\n" "à¹à¸žà¸à¹€à¸à¸ˆà¸™à¸µà¹‰à¸à¸²à¸ˆà¸‚าดหายไป หรืà¸à¸•à¸à¸£à¸¸à¹ˆà¸™à¹„ปà¹à¸¥à¹‰à¸§ หรืà¸à¸à¸¢à¸¹à¹ˆà¹ƒà¸™à¹à¸«à¸¥à¹ˆà¸‡à¸à¸·à¹ˆà¸™\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "à¸à¸¢à¹ˆà¸²à¸‡à¹„รà¸à¹‡à¸”ี à¹à¸žà¸à¹€à¸à¸ˆà¸•à¹ˆà¸à¹„ปนี้ได้à¹à¸—นที่à¹à¸žà¸à¹€à¸à¸ˆà¸”ังà¸à¸¥à¹ˆà¸²à¸§à¹„ปà¹à¸¥à¹‰à¸§:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, fuzzy, c-format msgid "Package '%s' has no installation candidate" msgstr "à¹à¸žà¸à¹€à¸à¸ˆ %s ไม่มีรุ่นที่จะใช้ติดตั้ง" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, fuzzy, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "หมายเหตุ: จะเลืà¸à¸ %s à¹à¸—น %s\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "จะข้าม %s เนื่à¸à¸‡à¸ˆà¸²à¸à¹à¸žà¸à¹€à¸à¸ˆà¸•à¸´à¸”ตั้งไว้à¹à¸¥à¹‰à¸§ à¹à¸¥à¸°à¹„ม่มีà¸à¸²à¸£à¸à¸³à¸«à¸™à¸”ให้ปรับรุ่น\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, fuzzy, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "จะข้าม %s เนื่à¸à¸‡à¸ˆà¸²à¸à¹à¸žà¸à¹€à¸à¸ˆà¸•à¸´à¸”ตั้งไว้à¹à¸¥à¹‰à¸§ à¹à¸¥à¸°à¹„ม่มีà¸à¸²à¸£à¸à¸³à¸«à¸™à¸”ให้ปรับรุ่น\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "ไม่สามารถติดตั้ง %s ซ้ำได้ เนื่à¸à¸‡à¸ˆà¸²à¸à¹„ม่สามารถดาวน์โหลดได้\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s เป็นรุ่นใหม่ล่าสุดà¸à¸¢à¸¹à¹ˆà¹à¸¥à¹‰à¸§\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, c-format msgid "%s set to manually installed.\n" msgstr "à¸à¸³à¸«à¸™à¸” %s ให้เป็นà¸à¸²à¸£à¸•à¸´à¸”ตั้งà¹à¸šà¸šà¹€à¸¥à¸·à¸à¸à¹€à¸à¸‡à¹à¸¥à¹‰à¸§\n" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "à¹à¸žà¸à¹€à¸à¸ˆ %s ไม่ได้ติดตั้งไว้ จึงไม่มีà¸à¸²à¸£à¸–à¸à¸”ถà¸à¸™\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "à¸à¸³à¸¥à¸±à¸‡à¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¸„วามขึ้นต่à¸à¸à¸±à¸™à¸£à¸°à¸«à¸§à¹ˆà¸²à¸‡à¹à¸žà¸à¹€à¸à¸ˆ..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " ล้มเหลว" -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "ไม่สามารถà¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¸„วามขึ้นต่à¸à¸à¸±à¸™à¸£à¸°à¸«à¸§à¹ˆà¸²à¸‡à¹à¸žà¸à¹€à¸à¸ˆà¹„ด้" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "ไม่สามารถจำà¸à¸±à¸”รายà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸£à¸¸à¹ˆà¸™à¹ƒà¸«à¹‰à¸™à¹‰à¸à¸¢à¸—ี่สุดได้" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " เสร็จà¹à¸¥à¹‰à¸§" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "คุณà¸à¸²à¸ˆà¸•à¹‰à¸à¸‡à¹€à¸£à¸µà¸¢à¸ 'apt-get -f install' เพื่à¸à¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¹€à¸«à¸¥à¹ˆà¸²à¸™à¸µà¹‰" -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "รายà¸à¸²à¸£à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ต้à¸à¸‡à¹ƒà¸Šà¹‰à¹„ม่ครบ à¸à¸£à¸¸à¸“าลà¸à¸‡à¹ƒà¸Šà¹‰à¸•à¸±à¸§à¹€à¸¥à¸·à¸à¸ -f" -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "*คำเตืà¸à¸™*: à¹à¸žà¸à¹€à¸à¸ˆà¸•à¹ˆà¸à¹„ปนี้ไม่สามารถยืนยันà¹à¸«à¸¥à¹ˆà¸‡à¸•à¹‰à¸™à¸•à¸à¹„ด้!" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "จะข้ามà¸à¸²à¸£à¹€à¸•à¸·à¸à¸™à¹€à¸à¸µà¹ˆà¸¢à¸§à¸à¸±à¸šà¸à¸²à¸£à¸¢à¸·à¸™à¸¢à¸±à¸™à¹à¸«à¸¥à¹ˆà¸‡à¸•à¹‰à¸™à¸•à¸\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "จะติดตั้งà¹à¸žà¸à¹€à¸à¸ˆà¹€à¸«à¸¥à¹ˆà¸²à¸™à¸µà¹‰à¹‚ดยไม่ตรวจสà¸à¸šà¸«à¸£à¸·à¸à¹„ม่ [y/N]? " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "มีบางà¹à¸žà¸à¹€à¸à¸ˆà¹„ม่สามารถยืนยันà¹à¸«à¸¥à¹ˆà¸‡à¸•à¹‰à¸™à¸•à¸à¹„ด้" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "มีปัà¸à¸«à¸²à¸šà¸²à¸‡à¸›à¸£à¸°à¸à¸²à¸£ à¹à¸¥à¸°à¸¡à¸µà¸à¸²à¸£à¹ƒà¸Šà¹‰ -y โดยไม่ระบุ --force-yes" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดภายใน: มีà¸à¸²à¸£à¹€à¸£à¸µà¸¢à¸ InstallPackages ด้วยà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่เสีย!" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "มีà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่จำเป็นต้à¸à¸‡à¸–à¸à¸”ถà¸à¸™ à¹à¸•à¹ˆà¸–ูà¸à¸«à¹‰à¸²à¸¡à¸à¸²à¸£à¸–à¸à¸”ถà¸à¸™à¹„ว้" -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "ข้à¸à¸œà¸´à¸”พลาดภายใน: à¸à¸²à¸£à¹€à¸£à¸µà¸¢à¸‡à¸¥à¸³à¸”ับไม่เสร็จสิ้น" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "ไม่สามารถà¸à¹ˆà¸²à¸™à¸£à¸²à¸¢à¸Šà¸·à¹ˆà¸à¹à¸«à¸¥à¹ˆà¸‡à¹à¸žà¸à¹€à¸à¸ˆà¹„ด้" - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "à¹à¸›à¸¥à¸à¸›à¸£à¸°à¸«à¸¥à¸²à¸”.. ขนาดไม่ตรงà¸à¸±à¸™ à¸à¸£à¸¸à¸“าà¸à¸µà¹€à¸¡à¸¥à¹à¸ˆà¹‰à¸‡ apt@packages.debian.org" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "ต้à¸à¸‡à¸”าวน์โหลดà¹à¸žà¸à¹€à¸à¸ˆ %sB/%sB\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "ต้à¸à¸‡à¸”าวน์โหลดà¹à¸žà¸à¹€à¸à¸ˆ %sB\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "หลังจาà¸à¸à¸²à¸£à¸à¸£à¸°à¸—ำนี้ ต้à¸à¸‡à¹ƒà¸Šà¹‰à¹€à¸™à¸·à¹‰à¸à¸—ี่บนดิสà¸à¹Œà¸à¸µà¸ %sB\n" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "หลังจาà¸à¸à¸²à¸£à¸à¸£à¸°à¸—ำนี้ เนื้à¸à¸—ี่บนดิสà¸à¹Œà¸ˆà¸°à¸§à¹ˆà¸²à¸‡à¹€à¸žà¸´à¹ˆà¸¡à¸à¸µà¸ %sB\n" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "ไม่สามารถคำนวณพื้นที่ว่างใน %s" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "คุณมีพื้นที่ว่างเหลืà¸à¹„ม่พà¸à¹ƒà¸™ %s" -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Trivial Only ถูà¸à¸à¸³à¸«à¸™à¸”ไว้ à¹à¸•à¹ˆà¸„ำสั่งนี้ไม่ใช่คำสั่งเล็à¸à¸™à¹‰à¸à¸¢" -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "Yes, do as I say!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -962,28 +965,28 @@ msgstr "" "หาà¸à¸•à¹‰à¸à¸‡à¸à¸²à¸£à¸”ำเนินà¸à¸²à¸£à¸•à¹ˆà¸ ให้พิมพ์ประโยค '%s'\n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "เลิà¸à¸—ำ" -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "คุณต้à¸à¸‡à¸à¸²à¸£à¸ˆà¸°à¸”ำเนินà¸à¸²à¸£à¸•à¹ˆà¸à¹„ปหรืà¸à¹„ม่ [Y/n]?" -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "ไม่สามารถดาวน์โหลด %s %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "ดาวน์โหลดบางà¹à¸Ÿà¹‰à¸¡à¹„ม่สำเร็จ" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "ดาวน์โหลดสำเร็จà¹à¸¥à¹‰à¸§ à¹à¸¥à¸°à¸à¸¢à¸¹à¹ˆà¹ƒà¸™à¹‚หมดดาวน์โหลดà¸à¸¢à¹ˆà¸²à¸‡à¹€à¸”ียว" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -991,19 +994,19 @@ msgstr "" "ดาวน์โหลดบางà¹à¸žà¸à¹€à¸à¸ˆà¹„ม่สำเร็จ บางที à¸à¸²à¸£à¹€à¸£à¸µà¸¢à¸ apt-get update หรืà¸à¸¥à¸à¸‡à¹ƒà¸Šà¹‰à¸•à¸±à¸§à¹€à¸¥à¸·à¸à¸ --fix-" "missing à¸à¸²à¸ˆà¸Šà¹ˆà¸§à¸¢à¹„ด้" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "ยังไม่รà¸à¸‡à¸£à¸±à¸š --fix-missing พร้à¸à¸¡à¸à¸±à¸šà¸à¸²à¸£à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¹à¸œà¹ˆà¸™" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "ไม่สามารถà¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ขาดหายได้" -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "จะล้มเลิà¸à¸à¸²à¸£à¸•à¸´à¸”ตั้ง" -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1013,35 +1016,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "ไม่สามารถ stat รายà¸à¸²à¸£à¹à¸žà¸à¹€à¸à¸ˆà¸‹à¸à¸£à¹Œà¸ª %s" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "คำสั่ง update ไม่รับà¸à¸²à¸£à¹Œà¸à¸´à¸§à¹€à¸¡à¸™à¸•à¹Œà¹€à¸žà¸´à¹ˆà¸¡" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "apt ถูà¸à¸à¸³à¸«à¸™à¸”ไม่ให้มีà¸à¸²à¸£à¸¥à¸šà¹ƒà¸”ๆ จึงไม่สามารถดำเนินà¸à¸²à¸£à¸–à¸à¸”ถà¸à¸™à¸à¸±à¸•à¹‚นมัติได้" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1051,7 +1054,7 @@ msgid_plural "" msgstr[0] "à¹à¸žà¸à¹€à¸à¸ˆà¸•à¹ˆà¸à¹„ปนี้ถูà¸à¸•à¸´à¸”ตั้งà¹à¸šà¸šà¸à¸±à¸•à¹‚นมัติไว้ à¹à¸¥à¸°à¹„ม่ต้à¸à¸‡à¹ƒà¸Šà¹‰à¸à¸µà¸à¸•à¹ˆà¸à¹„ปà¹à¸¥à¹‰à¸§:" msgstr[1] "à¹à¸žà¸à¹€à¸à¸ˆà¸•à¹ˆà¸à¹„ปนี้ถูà¸à¸•à¸´à¸”ตั้งà¹à¸šà¸šà¸à¸±à¸•à¹‚นมัติไว้ à¹à¸¥à¸°à¹„ม่ต้à¸à¸‡à¹ƒà¸Šà¹‰à¸à¸µà¸à¸•à¹ˆà¸à¹„ปà¹à¸¥à¹‰à¸§:" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1059,11 +1062,11 @@ msgid_plural "" msgstr[0] "à¹à¸žà¸à¹€à¸à¸ˆà¸•à¹ˆà¸à¹„ปนี้ถูà¸à¸•à¸´à¸”ตั้งà¹à¸šà¸šà¸à¸±à¸•à¹‚นมัติไว้ à¹à¸¥à¸°à¹„ม่ต้à¸à¸‡à¹ƒà¸Šà¹‰à¸à¸µà¸à¸•à¹ˆà¸à¹„ปà¹à¸¥à¹‰à¸§:" msgstr[1] "à¹à¸žà¸à¹€à¸à¸ˆà¸•à¹ˆà¸à¹„ปนี้ถูà¸à¸•à¸´à¸”ตั้งà¹à¸šà¸šà¸à¸±à¸•à¹‚นมัติไว้ à¹à¸¥à¸°à¹„ม่ต้à¸à¸‡à¹ƒà¸Šà¹‰à¸à¸µà¸à¸•à¹ˆà¸à¹„ปà¹à¸¥à¹‰à¸§:" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "ใช้ 'apt-get autoremove' เพื่à¸à¸¥à¸šà¹à¸žà¸à¹€à¸à¸ˆà¸”ังà¸à¸¥à¹ˆà¸²à¸§à¹„ด้" -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1081,23 +1084,23 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "ข้à¸à¸¡à¸¹à¸¥à¸•à¹ˆà¸à¹„ปนี้à¸à¸²à¸ˆà¸Šà¹ˆà¸§à¸¢à¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¹„ด้:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" msgstr "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดภายใน: AutoRemover ทำความเสียหาย" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดภายใน: AllUpgrade ทำความเสียหาย" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "คุณà¸à¸²à¸ˆà¹€à¸£à¸µà¸¢à¸ 'apt-get -f install' เพื่à¸à¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¸™à¸µà¹‰à¹„ด้:" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1105,7 +1108,7 @@ msgstr "" "มีปัà¸à¸«à¸²à¸„วามขึ้นต่à¸à¸à¸±à¸™à¸£à¸°à¸«à¸§à¹ˆà¸²à¸‡à¹à¸žà¸à¹€à¸à¸ˆ à¸à¸£à¸¸à¸“าลà¸à¸‡à¹ƒà¸Šà¹‰ 'apt-get -f install' โดยไม่ระบุà¹à¸žà¸à¹€à¸à¸ˆ " "(หรืà¸à¸ˆà¸°à¸£à¸°à¸šà¸¸à¸—างà¹à¸à¹‰à¸à¹‡à¹„ด้)" -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1116,69 +1119,69 @@ msgstr "" "หรืà¸à¸–้าคุณà¸à¸³à¸¥à¸±à¸‡à¹ƒà¸Šà¹‰à¸£à¸¸à¹ˆà¸™ unstable à¸à¹‡à¹€à¸›à¹‡à¸™à¹„ปได้ว่าà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่จำเป็นบางรายà¸à¸²à¸£\n" "ยังไม่ถูà¸à¸ªà¸£à¹‰à¸²à¸‡à¸‚ึ้น หรืà¸à¸–ูà¸à¸¢à¹‰à¸²à¸¢à¸à¸à¸à¸ˆà¸²à¸ Incoming" -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "à¹à¸žà¸à¹€à¸à¸ˆà¸¡à¸µà¸›à¸±à¸à¸«à¸²" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "จะติดตั้งà¹à¸žà¸à¹€à¸à¸ˆà¹€à¸žà¸´à¹ˆà¸¡à¹€à¸•à¸´à¸¡à¸•à¹ˆà¸à¹„ปนี้:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่à¹à¸™à¸°à¸™à¸³:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ควรใช้ร่วมà¸à¸±à¸™:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "ไม่พบà¹à¸žà¸à¹€à¸à¸ˆ %s" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "à¸à¸³à¸«à¸™à¸” %s ให้เป็นà¸à¸²à¸£à¸•à¸´à¸”ตั้งà¹à¸šà¸šà¹€à¸¥à¸·à¸à¸à¹€à¸à¸‡à¹à¸¥à¹‰à¸§\n" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "à¸à¸³à¸¥à¸±à¸‡à¸„ำนวณà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸£à¸¸à¹ˆà¸™... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "ล้มเหลว" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "เสร็จà¹à¸¥à¹‰à¸§" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดภายใน: à¸à¸¥à¹„à¸à¸à¸²à¸£à¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¸—ำความเสียหาย" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "ไม่สามารถล็à¸à¸„ไดเรà¸à¸—à¸à¸£à¸µà¸”าวน์โหลด" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 msgid "Must specify at least one package to fetch source for" msgstr "ต้à¸à¸‡à¸£à¸°à¸šà¸¸à¹à¸žà¸à¹€à¸à¸ˆà¸à¸¢à¹ˆà¸²à¸‡à¸™à¹‰à¸à¸¢à¸«à¸™à¸¶à¹ˆà¸‡à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่จะดาวน์โหลดซà¸à¸£à¹Œà¸ªà¹‚ค้ด" -#: cmdline/apt-get.cc:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "ไม่พบà¹à¸žà¸à¹€à¸à¸ˆà¸‹à¸à¸£à¹Œà¸ªà¹‚ค้ดสำหรับ %s" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1186,81 +1189,85 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "จะข้ามà¹à¸Ÿà¹‰à¸¡ '%s' ที่ดาวน์โหลดไว้à¹à¸¥à¹‰à¸§\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "คุณมีพื้นที่ว่างเหลืà¸à¹„ม่พà¸à¹ƒà¸™ %s" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "ต้à¸à¸‡à¸”าวน์โหลดซà¸à¸£à¹Œà¸ªà¹‚ค้ด %sB/%sB\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "ต้à¸à¸‡à¸”าวน์โหลดซà¸à¸£à¹Œà¸ªà¹‚ค้ด %sB\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "ดาวน์โหลดซà¸à¸£à¹Œà¸ª %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "ไม่สามารถดาวน์โหลดบางà¹à¸Ÿà¹‰à¸¡" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "จะข้ามà¸à¸²à¸£à¹à¸•à¸à¸‹à¸à¸£à¹Œà¸ªà¸‚à¸à¸‡à¸‹à¸à¸£à¹Œà¸ªà¸—ี่à¹à¸•à¸à¹„ว้à¹à¸¥à¹‰à¸§à¹ƒà¸™ %s\n" -#: cmdline/apt-get.cc:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "คำสั่งà¹à¸•à¸à¹à¸Ÿà¹‰à¸¡ '%s' ล้มเหลว\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "à¸à¸£à¸¸à¸“าตรวจสà¸à¸šà¸§à¹ˆà¸²à¹„ด้ติดตั้งà¹à¸žà¸à¹€à¸à¸ˆ 'dpkg-dev' à¹à¸¥à¹‰à¸§\n" -#: cmdline/apt-get.cc:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "คำสั่ง build '%s' ล้มเหลว\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "โพรเซสลูà¸à¸¥à¹‰à¸¡à¹€à¸«à¸¥à¸§" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 msgid "Must specify at least one package to check builddeps for" msgstr "ต้à¸à¸‡à¸£à¸°à¸šà¸¸à¹à¸žà¸à¹€à¸à¸ˆà¸à¸¢à¹ˆà¸²à¸‡à¸™à¹‰à¸à¸¢à¸«à¸™à¸¶à¹ˆà¸‡à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่จะตรวจสà¸à¸šà¸ªà¸´à¹ˆà¸‡à¸—ี่ต้à¸à¸‡à¸à¸²à¸£à¸ªà¸³à¸«à¸£à¸±à¸šà¸à¸²à¸£ build" -#: cmdline/apt-get.cc:2506 +#: cmdline/apt-get.cc:2524 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "ไม่สามารถà¸à¹ˆà¸²à¸™à¸‚้à¸à¸¡à¸¹à¸¥à¸ªà¸´à¹ˆà¸‡à¸—ี่ต้à¸à¸‡à¸à¸²à¸£à¸ªà¸³à¸«à¸£à¸±à¸šà¸à¸²à¸£ build ขà¸à¸‡ %s" -#: cmdline/apt-get.cc:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "%s ไม่ต้à¸à¸‡à¸à¸²à¸£à¸ªà¸´à¹ˆà¸‡à¹ƒà¸”สำหรับ build\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, 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:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1269,30 +1276,30 @@ msgstr "" "ไม่สามารถติดตั้งสิ่งเชื่à¸à¸¡à¹‚ยง %s สำหรับ %s ได้ เพราะไม่มีà¹à¸žà¸à¹€à¸à¸ˆ %s " "รุ่นที่จะสà¸à¸”คล้à¸à¸‡à¸à¸±à¸šà¸„วามต้à¸à¸‡à¸à¸²à¸£à¸£à¸¸à¹ˆà¸™à¸‚à¸à¸‡à¹à¸žà¸à¹€à¸à¸ˆà¹„ด้" -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "ไม่สามารถติดตั้งสิ่งเชื่à¸à¸¡à¹‚ยง %s สำหรับ %s ได้: à¹à¸žà¸à¹€à¸à¸ˆ %s ที่ติดตั้งไว้ใหม่เà¸à¸´à¸™à¹„ป" -#: cmdline/apt-get.cc:2693 +#: cmdline/apt-get.cc:2711 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "ไม่สามารถติดตั้งสิ่งเชื่à¸à¸¡à¹‚ยง %s สำหรับ %s ได้: %s" -#: cmdline/apt-get.cc:2709 +#: cmdline/apt-get.cc:2727 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "ไม่สามารถติดตั้งสิ่งที่จำเป็นสำหรับà¸à¸²à¸£ build ขà¸à¸‡ %s ได้" -#: cmdline/apt-get.cc:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "ติดตั้งสิ่งที่จำเป็นสำหรับà¸à¸²à¸£ build ไม่สำเร็จ" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "มà¸à¸”ูลที่รà¸à¸‡à¸£à¸±à¸š:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1378,7 +1385,7 @@ msgstr "" "à¹à¸¥à¸° apt.conf(5)\n" " APT นี้มีพลังขà¸à¸‡ Super Cow\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1623,10 +1630,10 @@ msgstr "à¹à¸Ÿà¹‰à¸¡ %s/%s เขียนทับà¹à¸Ÿà¹‰à¸¡à¹ƒà¸™à¹à¸žà¸à¹ #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1760,23 +1767,23 @@ msgstr "ไม่พบà¹à¸Ÿà¹‰à¸¡à¸„วบคุมที่ใช้à¸à¸²à¸£ msgid "Unparsable control file" msgstr "ไม่สามารถà¹à¸ˆà¸‡à¹à¸Ÿà¹‰à¸¡à¸„วบคุมได้" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "ไม่สามารถเปิดไปป์สำหรับ %s" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดขณะà¸à¹ˆà¸²à¸™à¸ˆà¸²à¸à¹‚พรเซส %s" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "stat ไม่สำเร็จ" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "à¸à¸³à¸«à¸™à¸”เวลาà¹à¸à¹‰à¹„ขไม่สำเร็จ" @@ -1866,7 +1873,7 @@ msgstr "หมดเวลารà¸à¹€à¸Šà¸·à¹ˆà¸à¸¡à¸•à¹ˆà¸" msgid "Server closed the connection" msgstr "เซิร์ฟเวà¸à¸£à¹Œà¸›à¸´à¸”à¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸à¸¡à¸•à¹ˆà¸" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "à¸à¸²à¸£à¸à¹ˆà¸²à¸™à¸‚้à¸à¸¡à¸¹à¸¥à¸œà¸´à¸”พลาด" @@ -1878,7 +1885,7 @@ msgstr "คำตà¸à¸šà¸—่วมบัฟเฟà¸à¸£à¹Œ" msgid "Protocol corruption" msgstr "มีความเสียหายขà¸à¸‡à¹‚พรโทคà¸à¸¥" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "à¸à¸²à¸£à¹€à¸‚ียนข้à¸à¸¡à¸¹à¸¥à¸œà¸´à¸”พลาด" @@ -1932,7 +1939,7 @@ msgstr "หมดเวลารà¸à¹€à¸Šà¸·à¹ˆà¸à¸¡à¸•à¹ˆà¸à¸‹à¹‡à¸à¸à¹€à¸ msgid "Unable to accept connection" msgstr "ไม่สามารถรับà¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸à¸¡à¸•à¹ˆà¸" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "เà¸à¸´à¸”ปัà¸à¸«à¸²à¸‚ณะคำนวณค่าà¹à¸®à¸Šà¸‚à¸à¸‡à¹à¸Ÿà¹‰à¸¡" @@ -2063,67 +2070,67 @@ msgstr "ได้รับบรรทัดข้à¸à¸¡à¸¹à¸¥à¸ªà¹ˆà¸§à¸™à¸«à¸± msgid "Bad header line" msgstr "บรรทัดข้à¸à¸¡à¸¹à¸¥à¸ªà¹ˆà¸§à¸™à¸«à¸±à¸§à¸œà¸´à¸”พลาด" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "เซิร์ฟเวà¸à¸£à¹Œ HTTP ส่งข้à¸à¸¡à¸¹à¸¥à¸ªà¹ˆà¸§à¸™à¸«à¸±à¸§à¸•à¸à¸šà¸¡à¸²à¹„ม่ถูà¸à¸•à¹‰à¸à¸‡" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "เซิร์ฟเวà¸à¸£à¹Œ HTTP ส่งข้à¸à¸¡à¸¹à¸¥à¸ªà¹ˆà¸§à¸™à¸«à¸±à¸§ Content-Length มาไม่ถูà¸à¸•à¹‰à¸à¸‡" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "เซิร์ฟเวà¸à¸£à¹Œ HTTP ส่งข้à¸à¸¡à¸¹à¸¥à¸ªà¹ˆà¸§à¸™à¸«à¸±à¸§ Content-Range มาไม่ถูà¸à¸•à¹‰à¸à¸‡" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "à¸à¸²à¸£à¸ªà¸™à¸±à¸šà¸ªà¸™à¸¸à¸™ Content-Range ที่เซิร์ฟเวà¸à¸£à¹Œ HTTP ผิดพลาด" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "พบรูปà¹à¸šà¸šà¸§à¸±à¸™à¸—ี่ที่ไม่รู้จัà¸" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "select ไม่สำเร็จ" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "หมดเวลารà¸à¹€à¸Šà¸·à¹ˆà¸à¸¡à¸•à¹ˆà¸" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดขณะเขียนลงà¹à¸Ÿà¹‰à¸¡à¸œà¸¥à¸¥à¸±à¸žà¸˜à¹Œ" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดขณะเขียนลงà¹à¸Ÿà¹‰à¸¡" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดขณะเขียนลงà¹à¸Ÿà¹‰à¸¡" -#: methods/http.cc:894 +#: methods/http.cc:900 msgid "Error reading from server. Remote end closed connection" msgstr "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดขณะà¸à¹ˆà¸²à¸™à¸‚้à¸à¸¡à¸¹à¸¥à¸ˆà¸²à¸à¹€à¸‹à¸´à¸£à¹Œà¸Ÿà¹€à¸§à¸à¸£à¹Œ ปลายทางà¸à¸µà¸à¸”้านหนึ่งปิดà¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸à¸¡à¸•à¹ˆà¸" -#: methods/http.cc:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดขณะà¸à¹ˆà¸²à¸™à¸‚้à¸à¸¡à¸¹à¸¥à¸ˆà¸²à¸à¹€à¸‹à¸´à¸£à¹Œà¸Ÿà¹€à¸§à¸à¸£à¹Œ" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 msgid "Failed to truncate file" msgstr "ไม่สามารถตัดท้ายà¹à¸Ÿà¹‰à¸¡" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "ข้à¸à¸¡à¸¹à¸¥à¸ªà¹ˆà¸§à¸™à¸«à¸±à¸§à¸œà¸´à¸”พลาด" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "เชื่à¸à¸¡à¸•à¹ˆà¸à¹„ม่สำเร็จ" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "ข้à¸à¸œà¸´à¸”พลาดภายใน" @@ -2315,14 +2322,14 @@ msgstr "ไม่รู้จัà¸à¸„ำสั่ง %s" msgid "Unable to stat the mount point %s" msgstr "ไม่สามารถ stat จุดเมานท์ %s" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "ไม่สามารถเปลี่ยนไดเรà¸à¸—à¸à¸£à¸µà¹„ปยัง %s" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "ไม่สามารถ stat ซีดีรà¸à¸¡" @@ -2346,149 +2353,149 @@ msgstr "จะไม่ใช้à¸à¸²à¸£à¸¥à¹‡à¸à¸„à¸à¸±à¸šà¹à¸Ÿà¹‰à¸¡à¸¥à¹‡ msgid "Could not get lock %s" msgstr "ไม่สามารถล็à¸à¸„ %s" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "รà¸à¹‚พรเซส %s à¹à¸•à¹ˆà¸•à¸±à¸§à¹‚พรเซสไม่à¸à¸¢à¸¹à¹ˆ" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "โพรเซสย่à¸à¸¢ %s เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดขà¸à¸‡à¸à¸²à¸£à¹ƒà¸Šà¹‰à¸¢à¹ˆà¸²à¸™à¸«à¸™à¹ˆà¸§à¸¢à¸„วามจำ (segmentation fault)" -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "โพรเซสย่à¸à¸¢ %s เà¸à¸´à¸”ข้à¸à¸œà¸´à¸”พลาดขà¸à¸‡à¸à¸²à¸£à¹ƒà¸Šà¹‰à¸¢à¹ˆà¸²à¸™à¸«à¸™à¹ˆà¸§à¸¢à¸„วามจำ (segmentation fault)" -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "โพรเซสย่à¸à¸¢ %s คืนค่าข้à¸à¸œà¸´à¸”พลาด (%u)" -#: apt-pkg/contrib/fileutl.cc:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "โพรเซสย่à¸à¸¢ %s จบà¸à¸²à¸£à¸—ำงานà¸à¸£à¸°à¸—ันหัน" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "ไม่สามารถเปิดà¹à¸Ÿà¹‰à¸¡ %s" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "ไม่สามารถเปิดไปป์สำหรับ %s" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "read: ยังเหลืภ%lu ที่ยังไม่ได้à¸à¹ˆà¸²à¸™ à¹à¸•à¹ˆà¸‚้à¸à¸¡à¸¹à¸¥à¸«à¸¡à¸”à¹à¸¥à¹‰à¸§" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "write: ยังเหลืภ%lu ที่ยังไม่ได้เขียน à¹à¸•à¹ˆà¹„ม่สามารถเขียนได้" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, fuzzy, c-format msgid "Problem closing the gzip file %s" msgstr "เà¸à¸´à¸”ปัà¸à¸«à¸²à¸‚ณะปิดà¹à¸Ÿà¹‰à¸¡" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "เà¸à¸´à¸”ปัà¸à¸«à¸²à¸‚ณะปิดà¹à¸Ÿà¹‰à¸¡" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "เà¸à¸´à¸”ปัà¸à¸«à¸²à¸‚ณะ sync à¹à¸Ÿà¹‰à¸¡" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "เà¸à¸´à¸”ปัà¸à¸«à¸²à¸‚ณะลบà¹à¸Ÿà¹‰à¸¡" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "เà¸à¸´à¸”ปัà¸à¸«à¸²à¸‚ณะ sync à¹à¸Ÿà¹‰à¸¡" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "à¹à¸„ชขà¸à¸‡à¹à¸žà¸à¹€à¸à¸ˆà¸§à¹ˆà¸²à¸‡à¹€à¸›à¸¥à¹ˆà¸²" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "à¹à¸Ÿà¹‰à¸¡à¹à¸„ชขà¸à¸‡à¹à¸žà¸à¹€à¸à¸ˆà¹€à¸ªà¸µà¸¢à¸«à¸²à¸¢" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "à¹à¸Ÿà¹‰à¸¡à¹à¸„ชขà¸à¸‡à¹à¸žà¸à¹€à¸à¸ˆà¹€à¸›à¹‡à¸™à¸„นละรุ่นà¸à¸±à¸™" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "APT รุ่นนี้ไม่รà¸à¸‡à¸£à¸±à¸šà¸£à¸°à¸šà¸šà¸™à¸±à¸šà¸£à¸¸à¹ˆà¸™à¹à¸šà¸š '%s'" -#: apt-pkg/pkgcache.cc:163 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache was built for a different architecture" msgstr "à¹à¸„ชขà¸à¸‡à¹à¸žà¸à¹€à¸à¸ˆà¸–ูà¸à¸ªà¸£à¹‰à¸²à¸‡à¸¡à¸²à¸ªà¸³à¸«à¸£à¸±à¸šà¸ªà¸–าปัตยà¸à¸£à¸£à¸¡à¸à¸·à¹ˆà¸™" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "ต้à¸à¸‡à¹ƒà¸Šà¹‰" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "ต้à¸à¸‡à¹ƒà¸Šà¹‰à¸‚ณะติดตั้ง" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "à¹à¸™à¸°à¸™à¸³" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "ควรใช้ร่วมà¸à¸±à¸š" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "ขัดà¹à¸¢à¹‰à¸‡à¸à¸±à¸š" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "à¹à¸—นที่" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "ใช้à¹à¸—น" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "ทำให้พัง" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "สำคัà¸" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "จำเป็น" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "มาตรà¸à¸²à¸™" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "ตัวเลืà¸à¸" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "ส่วนเสริม" @@ -2606,7 +2613,7 @@ msgstr "ไม่รู้จัà¸à¸Šà¸™à¸´à¸” '%s' ที่บรรทัด #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" @@ -2625,7 +2632,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" @@ -2640,7 +2647,7 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "จำเป็นต้à¸à¸‡à¸•à¸´à¸”ตั้งà¹à¸žà¸à¹€à¸à¸ˆ %s ซ้ำ à¹à¸•à¹ˆà¸«à¸²à¸•à¸±à¸§à¹à¸žà¸à¹€à¸à¸ˆà¹„ม่พบ" -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2648,11 +2655,11 @@ msgstr "" "ข้à¸à¸œà¸´à¸”พลาด: pkgProblemResolver::Resolve สร้างคำตà¸à¸šà¸—ี่ทำให้เà¸à¸´à¸”à¹à¸žà¸à¹€à¸à¸ˆà¹€à¸ªà¸µà¸¢ " "à¸à¸²à¸ˆà¹€à¸à¸´à¸”จาà¸à¹à¸žà¸à¹€à¸à¸ˆà¸—ี่ถูà¸à¸à¸³à¸«à¸™à¸”ให้คงรุ่นไว้" -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "ไม่สามารถà¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¹„ด้ คุณได้คงรุ่นà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่เสียà¸à¸¢à¸¹à¹ˆà¹„ว้" -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2675,12 +2682,12 @@ msgstr "ไม่สามารถล็à¸à¸„ไดเรà¸à¸—à¸à¸£à¸µà¸£à¸² #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "à¸à¸³à¸¥à¸±à¸‡à¸”าวน์โหลดà¹à¸Ÿà¹‰à¸¡à¸—ี่ %li จาภ%li (เหลืà¸à¸à¸µà¸ %s)" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "à¸à¸³à¸¥à¸±à¸‡à¸”าวน์โหลดà¹à¸Ÿà¹‰à¸¡à¸—ี่ %li จาภ%li" @@ -2700,12 +2707,12 @@ msgstr "ไม่สามารถเรียà¸à¸—ำงานวิธีภmsgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "à¸à¸£à¸¸à¸“าใส่à¹à¸œà¹ˆà¸™à¸Šà¸·à¹ˆà¸: '%s' ลงในไดรว์ '%s' à¹à¸¥à¹‰à¸§à¸à¸” enter" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "ไม่รà¸à¸‡à¸£à¸±à¸šà¸£à¸°à¸šà¸šà¹à¸žà¸à¹€à¸à¸ˆ '%s'" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "ไม่สามารถระบุชนิดขà¸à¸‡à¸£à¸°à¸šà¸šà¹à¸žà¸à¹€à¸à¸ˆà¸—ี่เหมาะสมได้" @@ -2726,17 +2733,21 @@ msgstr "ไม่สามารถà¹à¸ˆà¸‡à¸«à¸£à¸·à¸à¹€à¸›à¸´à¸”รายช msgid "You may want to run apt-get update to correct these problems" msgstr "คุณà¸à¸²à¸ˆà¹€à¸£à¸µà¸¢à¸ `apt-get update' เพื่à¸à¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¹€à¸«à¸¥à¹ˆà¸²à¸™à¸µà¹‰à¹„ด้" -#: apt-pkg/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "ไม่สามารถà¸à¹ˆà¸²à¸™à¸£à¸²à¸¢à¸Šà¸·à¹ˆà¸à¹à¸«à¸¥à¹ˆà¸‡à¹à¸žà¸à¹€à¸à¸ˆà¹„ด้" + +#: apt-pkg/policy.cc:344 #, fuzzy, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "ระเบียนผิดรูปà¹à¸šà¸šà¹ƒà¸™à¹à¸Ÿà¹‰à¸¡à¸„่าปรับà¹à¸•à¹ˆà¸‡: ไม่มีข้à¸à¸¡à¸¹à¸¥à¸ªà¹ˆà¸§à¸™à¸«à¸±à¸§ 'Package'" -#: apt-pkg/policy.cc:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "ไม่เข้าใจชนิดà¸à¸²à¸£à¸•à¸£à¸¶à¸‡ %s" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "ไม่ได้ระบุลำดับความสำคัภ(หรืà¸à¸„่าศูนย์) สำหรับà¸à¸²à¸£à¸•à¸£à¸¶à¸‡" @@ -2838,61 +2849,61 @@ msgstr "เปลี่ยนชื่à¸à¹„ม่สำเร็จ: %s (%s -> msgid "MD5Sum mismatch" msgstr "MD5Sum ไม่ตรงà¸à¸±à¸™" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" msgstr "ผลรวมà¹à¸®à¸Šà¹„ม่ตรงà¸à¸±à¸™" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 msgid "There is no public key available for the following key IDs:\n" msgstr "ไม่มีà¸à¸¸à¸à¹à¸ˆà¸ªà¸²à¸˜à¸²à¸£à¸“ะสำหรับà¸à¸¸à¸à¹à¸ˆà¸«à¸¡à¸²à¸¢à¹€à¸¥à¸‚ต่à¸à¹„ปนี้:\n" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, 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:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " "manually fix this package." msgstr "ไม่พบà¹à¸Ÿà¹‰à¸¡à¸ªà¸³à¸«à¸£à¸±à¸šà¹à¸žà¸à¹€à¸à¸ˆ %s คุณà¸à¸²à¸ˆà¸•à¹‰à¸à¸‡à¹à¸à¹‰à¸›à¸±à¸à¸«à¸²à¹à¸žà¸à¹€à¸à¸ˆà¸™à¸µà¹‰à¹€à¸à¸‡" -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "à¹à¸Ÿà¹‰à¸¡à¸”ัชนีà¹à¸žà¸à¹€à¸à¸ˆà¹€à¸ªà¸µà¸¢à¸«à¸²à¸¢ ไม่มีข้à¸à¸¡à¸¹à¸¥ Filename: (ชื่à¸à¹à¸Ÿà¹‰à¸¡) สำหรับà¹à¸žà¸à¹€à¸à¸ˆ %s" -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "ขนาดไม่ตรงà¸à¸±à¸™" @@ -3015,37 +3026,37 @@ msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸‚ียนรายชื่à¸à¹à¸«à¸¥à¹ˆà¸‡à¹à¸ž msgid "Source list entries for this disc are:\n" msgstr "บรรทัดรายชื่à¸à¹à¸«à¸¥à¹ˆà¸‡à¹à¸žà¸à¹€à¸à¸ˆà¸ªà¸³à¸«à¸£à¸±à¸šà¹à¸œà¹ˆà¸™à¸™à¸µà¹‰à¸„ืà¸:\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "เขียนà¹à¸¥à¹‰à¸§ %i ระเบียน\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "เขียนà¹à¸¥à¹‰à¸§ %i ระเบียน โดยมีà¹à¸Ÿà¹‰à¸¡à¸‚าดหาย %i à¹à¸Ÿà¹‰à¸¡\n" -#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "เขียนà¹à¸¥à¹‰à¸§ %i ระเบียน โดยมีà¹à¸Ÿà¹‰à¸¡à¸œà¸´à¸”ขนาด %i à¹à¸Ÿà¹‰à¸¡\n" -#: apt-pkg/indexcopy.cc:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "เขียนà¹à¸¥à¹‰à¸§ %i ระเบียน โดยมีà¹à¸Ÿà¹‰à¸¡à¸‚าดหาย %i à¹à¸Ÿà¹‰à¸¡ à¹à¸¥à¸°à¹à¸Ÿà¹‰à¸¡à¸œà¸´à¸”ขนาด %i à¹à¸Ÿà¹‰à¸¡\n" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, fuzzy, c-format msgid "Skipping nonexistent file %s" msgstr "ขณะเปิดà¹à¸Ÿà¹‰à¸¡à¸„่าตั้ง %s" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, fuzzy, c-format msgid "Hash mismatch for: %s" msgstr "ผลรวมà¹à¸®à¸Šà¹„ม่ตรงà¸à¸±à¸™" @@ -3102,12 +3113,12 @@ msgstr "" msgid "Installing %s" msgstr "à¸à¸³à¸¥à¸±à¸‡à¸•à¸´à¸”ตั้ง %s" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "à¸à¸³à¸¥à¸±à¸‡à¸•à¸±à¹‰à¸‡à¸„่า %s" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "à¸à¸³à¸¥à¸±à¸‡à¸–à¸à¸”ถà¸à¸™ %s" @@ -3127,94 +3138,95 @@ msgstr "" msgid "Running post-installation trigger %s" msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸£à¸µà¸¢à¸à¸à¸²à¸£à¸ªà¸°à¸à¸´à¸” %s หลังà¸à¸²à¸£à¸•à¸´à¸”ตั้ง" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "ไม่มีไดเรà¸à¸—à¸à¸£à¸µ '%s'" -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, fuzzy, c-format msgid "Could not open file '%s'" msgstr "ไม่สามารถเปิดà¹à¸Ÿà¹‰à¸¡ %s" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸•à¸£à¸µà¸¢à¸¡ %s" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "à¸à¸³à¸¥à¸±à¸‡à¹à¸•à¸à¹à¸žà¸à¹€à¸à¸ˆ %s" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸•à¸£à¸µà¸¢à¸¡à¸•à¸±à¹‰à¸‡à¸„่า %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "ติดตั้ง %s à¹à¸¥à¹‰à¸§" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸•à¸£à¸µà¸¢à¸¡à¸–à¸à¸”ถà¸à¸™ %s" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "ถà¸à¸”ถà¸à¸™ %s à¹à¸¥à¹‰à¸§" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸•à¸£à¸µà¸¢à¸¡à¸–à¸à¸”ถà¸à¸™ %s à¸à¸¢à¹ˆà¸²à¸‡à¸ªà¸¡à¸šà¸¹à¸£à¸“์" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "ถà¸à¸”ถà¸à¸™ %s à¸à¸¢à¹ˆà¸²à¸‡à¸ªà¸¡à¸šà¸¹à¸£à¸“์à¹à¸¥à¹‰à¸§" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "ไม่สามารถเขียนบันทึà¸à¸›à¸à¸´à¸šà¸±à¸•à¸´à¸à¸²à¸£ เนื่à¸à¸‡à¸ˆà¸²à¸ openpty() ล้มเหลว (ไม่ได้เมานท์ /dev/pts " "หรืà¸à¹€à¸›à¸¥à¹ˆà¸²?)\n" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+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" @@ -154,14 +154,14 @@ msgstr " Naka-Pin na Pakete: " msgid " Version table:" msgstr " Talaang Bersyon:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, 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:1739 +#: cmdline/apt-cache.cc:1745 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -328,31 +328,31 @@ msgstr "Hindi makapagsulat sa %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Hindi makuha ang bersyon ng debconf. Nakaluklok ba ang debconf?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "Mahaba masyado ang talaan ng extensyon ng mga pakete" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "Error sa pagproseso ng directory %s" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "Mahaba masyado ang talaan ng extensyon ng pagkukunan (source)" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "Error sa pagsulat ng panimula sa talaksang nilalaman (contents)" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "Error sa pagproseso ng Contents %s" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -437,11 +437,11 @@ msgstr "" " -c=? Basahin itong talaksang pagkaayos\n" " -o=? Itakda ang isang option na pagkaayos" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "Walang mga pinili na tugma" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "May mga talaksang kulang sa grupo ng talaksang pakete `%s'" @@ -554,7 +554,7 @@ msgstr "Walang field ng pakete ang arkibo" msgid " %s has no override entry\n" msgstr " %s ay walang override entry\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " Tagapangalaga ng %s ay %s hindi %s\n" @@ -664,79 +664,79 @@ msgstr "Problema sa pag-unlink ng %s" msgid "Failed to rename %s to %s" msgstr "Bigo ang pagpangalan muli ng %s tungong %s" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "O" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "Error sa pag-compile ng regex - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "Ang sumusunod na mga pakete ay may kulang na dependensiya:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "ngunit ang %s ay nakaluklok" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "ngunit ang %s ay iluluklok" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "ngunit hindi ito maaaring iluklok" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "ngunit ito ay birtwal na pakete" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "ngunit ito ay hindi nakaluklok" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "ngunit ito ay hindi iluluklok" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " o" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "Ang sumusunod na mga paketeng BAGO ay iluluklok:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "Ang sumusunod na mga pakete ay TATANGGALIN:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "Ang sumusunod na mga pakete ay hinayaang maiwanan:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "Ang susunod na mga pakete ay iu-upgrade:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "Ang susunod na mga pakete ay ida-DOWNGRADE:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "Ang susunod na mga hinawakang mga pakete ay babaguhin:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (dahil sa %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -744,65 +744,65 @@ msgstr "" "BABALA: Ang susunod na mga paketeng esensyal ay tatanggalin.\n" "HINDI ito dapat gawin kung hindi niyo alam ng husto ang inyong ginagawa!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu na nai-upgrade, %lu na bagong luklok, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu iniluklok muli, " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu nai-downgrade, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "%lu na tatanggalin at %lu na hindi inupgrade\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu na hindi lubos na nailuklok o tinanggal.\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, fuzzy, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "Paunawa, pinili ang %s para sa regex '%s'\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, fuzzy, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "Paunawa, pinili ang %s para sa regex '%s'\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, fuzzy, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "Ang napiling bersyon %s (%s) para sa %s\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "Ang paketeng %s ay paketeng birtwal na bigay ng:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [Nakaluklok]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 #, fuzzy msgid " [Not candidate version]" msgstr "Bersyong Kandidato" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "Dapat kayong mamili ng isa na iluluklok." -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -813,173 +813,176 @@ msgstr "" "Maaaring nawawala ang pakete, ito'y laos na, o ito'y makukuha lamang\n" "sa ibang pinagmulan.\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "Gayunpaman, ang sumusunod na mga pakete ay humahalili sa kanya:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, fuzzy, c-format msgid "Package '%s' has no installation candidate" msgstr "Ang paketeng %s ay walang kandidatong maaaring instolahin" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, fuzzy, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "Paunawa, pinili ang %s imbes na %s\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" "Linaktawan ang %s, ito'y nakaluklok na at hindi nakatakda ang upgrade.\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, fuzzy, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" "Linaktawan ang %s, ito'y nakaluklok na at hindi nakatakda ang upgrade.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "Ang pagluklok muli ng %s ay hindi maaari, hindi ito makuha.\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s ay pinakabagong bersyon na.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "ngunit ang %s ay iluluklok" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "Hindi nakaluklok ang paketeng %s, kaya't hindi ito tinanggal\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "Inaayos ang mga dependensiya..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " ay bigo." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "Hindi maayos ang mga dependensiya" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "Hindi mai-minimize ang upgrade set" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " Tapos" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 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." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "May mga kulang na dependensiya. Subukan niyong gamitin ang -f." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "" "BABALA: Ang susunod na mga pakete ay hindi matiyak ang pagka-awtentiko!" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "" "Ipina-walang-bisa ang babala tungkol sa pagka-awtentiko ng mga pakete.\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "Iluklok ang mga paketeng ito na walang beripikasyon [o/H]? " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "May mga paketeng hindi matiyak ang pagka-awtentiko" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "May mga problema at -y ay ginamit na walang --force-yes" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" "Error na internal, tinawagan ang InstallPackages na may sirang mga pakete!" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "" "May mga paketeng kailangang tanggalin ngunit naka-disable ang Tanggal/Remove." -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "Error na internal, hindi natapos ang pagsaayos na pagkasunud-sunod" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "Hindi mabasa ang talaan ng pagkukunan (sources)." - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" "Nakapagtataka.. Hindi magkatugma ang laki, mag-email sa apt@packages.debian." "org" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Kailangang kumuha ng %sB/%sB ng arkibo.\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Kailangang kumuha ng %sB ng arkibo.\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, fuzzy, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" "Matapos magbuklat ay %sB na karagdagang puwang sa disk ang magagamit.\n" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, fuzzy, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Matapos magbuklat ay %sB na puwang sa disk ang mapapalaya.\n" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "Hindi matantsa ang libreng puwang sa %s" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "Kulang kayo ng libreng puwang sa %s." -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Tinakdang Trivial Only ngunit hindi ito operasyong trivial." -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "Oo, gawin ang sinasabi ko!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -990,28 +993,28 @@ msgstr "" "Upang magpatuloy, ibigay ang pariralang '%s'\n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "Abort." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "Nais niyo bang magpatuloy [O/h]? " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Bigo sa pagkuha ng %s %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "May mga talaksang hindi nakuha" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "Kumpleto ang pagkakuha ng mga talaksan sa modong pagkuha lamang" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1019,19 +1022,19 @@ msgstr "" "Hindi nakuha ang ilang mga arkibo, maaaring patakbuhin ang apt-get update o " "subukang may --fix-missing?" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing at pagpalit ng media ay kasalukuyang hindi suportado" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "Hindi maayos ang mga kulang na pakete." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "Ina-abort ang pag-instol." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1041,35 +1044,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Hindi ma-stat ang talaan ng pagkukunan ng pakete %s" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "Ang utos na update ay hindi tumatanggap ng mga argumento" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1079,7 +1082,7 @@ msgid_plural "" msgstr[0] "Ang sumusunod na mga paketeng BAGO ay iluluklok:" msgstr[1] "Ang sumusunod na mga paketeng BAGO ay iluluklok:" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1087,11 +1090,11 @@ msgid_plural "" msgstr[0] "Ang sumusunod na mga paketeng BAGO ay iluluklok:" msgstr[1] "Ang sumusunod na mga paketeng BAGO ay iluluklok:" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1107,26 +1110,26 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "" "Ang sumusunod na impormasyon ay maaaring makatulong sa pag-ayos ng problema:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "Error na internal, may nasira ang problem resolver" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "Internal error, nakasira ng bagay-bagay ang AllUpgrade" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" "Maaaring patakbuhin niyo ang 'apt-get -f install' upang ayusin ang mga ito:" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1134,7 +1137,7 @@ msgstr "" "May mga dependensiyang kulang. Subukan ang 'apt-get -f install' na walang " "mga pakete (o magtakda ng solusyon)." -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1145,69 +1148,69 @@ msgstr "" "o kung kayo'y gumagamit ng pamudmod na unstable ay may ilang mga paketeng\n" "kailangan na hindi pa nalikha o linipat mula sa Incoming." -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "Sirang mga pakete" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "Ang mga sumusunod na extra na pakete ay luluklokin:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "Mga paketeng mungkahi:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "Mga paketeng rekomendado:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "Hindi mahanap ang paketeng %s" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "ngunit ang %s ay iluluklok" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "Sinusuri ang pag-upgrade... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "Bigo" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "Tapos" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "Error na internal, may nasira ang problem resolver" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "Hindi maaldaba ang directory ng download" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 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:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "Hindi mahanap ang paketeng source para sa %s" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1215,74 +1218,78 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Linaktawan ang nakuha na na talaksan '%s'\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "Kulang kayo ng libreng puwang sa %s" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Kailangang kumuha ng %sB/%sB ng arkibong source.\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Kailangang kumuha ng %sB ng arkibong source.\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "Kunin ang Source %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "Bigo sa pagkuha ng ilang mga arkibo." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, 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:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Bigo ang utos ng pagbuklat '%s'.\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, 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:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "Utos na build '%s' ay bigo.\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "Bigo ang prosesong anak" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 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:2506 +#: cmdline/apt-get.cc:2524 #, 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:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "Walang build depends ang %s.\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1291,7 +1298,7 @@ msgstr "" "Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi " "mahanap" -#: cmdline/apt-get.cc:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1300,32 +1307,32 @@ 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:2666 +#: cmdline/apt-get.cc:2684 #, 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:2693 +#: cmdline/apt-get.cc:2711 #, 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:2709 +#: cmdline/apt-get.cc:2727 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Hindi mabuo ang build-dependencies para sa %s." -#: cmdline/apt-get.cc:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "Bigo sa pagproseso ng build dependencies" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "Suportadong mga Module:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1410,7 +1417,7 @@ msgstr "" "para sa karagdagang impormasyon at mga option.\n" " Ang APT na ito ay may Kapangyarihan Super Kalabaw.\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1659,10 +1666,10 @@ msgstr "Ang talaksang %s/%s ay pumapatong sa isang talaksan sa paketeng %s" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1798,23 +1805,23 @@ msgstr "Bigo sa paghanap ng tanggap na talaksang control" msgid "Unparsable control file" msgstr "Di maintindihang talaksang control" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "Hindi makapag-bukas ng pipe para sa %s" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "Error sa pagbasa mula sa prosesong %s" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "Bigo ang pag-stat" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "Bigo ang pagtakda ng oras ng pagbago" @@ -1907,7 +1914,7 @@ msgstr "Lumipas ang koneksyon" msgid "Server closed the connection" msgstr "Sinarhan ng server ang koneksyon" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "Error sa pagbasa" @@ -1919,7 +1926,7 @@ msgstr "May sagot na bumubo sa buffer." msgid "Protocol corruption" msgstr "Sira ang protocol" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "Error sa pagsulat" @@ -1973,7 +1980,7 @@ msgstr "Nag-timeout ang socket ng datos" msgid "Unable to accept connection" msgstr "Hindi makatanggap ng koneksyon" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "Problema sa pag-hash ng talaksan" @@ -2109,68 +2116,68 @@ msgstr "Nakatanggap ng isang linyang panimula mula %u na mga karakter" msgid "Bad header line" msgstr "Maling linyang panimula" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "Nagpadala ang HTTP server ng di tanggap na reply header" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "Nagpadala ang HTTP server ng di tanggap na Content-Length header" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "Nagpadala ang HTTP server ng di tanggap na Content-Range header" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "Sira ang range support ng HTTP server na ito" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "Di kilalang anyo ng petsa" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "Bigo ang pagpili" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "Nag-timeout ang koneksyon" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "Error sa pagsulat ng talaksang output" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "Error sa pagsulat sa talaksan" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "Error sa pagsusulat sa talaksan" -#: methods/http.cc:894 +#: methods/http.cc:900 msgid "Error reading from server. Remote end closed connection" msgstr "Error sa pagbasa mula sa server, sinarhan ng remote ang koneksyon" -#: methods/http.cc:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "Error sa pagbasa mula sa server" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 #, fuzzy msgid "Failed to truncate file" msgstr "Bigo sa pagsulat ng talaksang %s" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "Maling datos sa panimula" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "Bigo ang koneksyon" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "Internal na error" @@ -2366,14 +2373,14 @@ msgstr "Di tanggap na operasyon %s" msgid "Unable to stat the mount point %s" msgstr "Di mai-stat ang mount point %s" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "Di makalipat sa %s" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "Bigo sa pag-stat ng cdrom" @@ -2400,149 +2407,149 @@ msgstr "" msgid "Could not get lock %s" msgstr "hindi makuha ang aldaba %s" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Naghintay, para sa %s ngunit wala nito doon" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Nakatanggap ang sub-process %s ng segmentation fault." -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "Nakatanggap ang sub-process %s ng segmentation fault." -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, 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:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Ang sub-process %s ay lumabas ng di inaasahan" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "Hindi mabuksan ang talaksang %s" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "Hindi makapag-bukas ng pipe para sa %s" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "pagbasa, mayroong %lu na babasahin ngunit walang natira" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "pagsulat, mayroon pang %lu na isusulat ngunit hindi makasulat" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, fuzzy, c-format msgid "Problem closing the gzip file %s" msgstr "Problema sa pagsara ng talaksan" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "Problema sa pagsara ng talaksan" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "Problema sa pag-sync ng talaksan" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "Problema sa pag-unlink ng talaksan" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "Problema sa pag-sync ng talaksan" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "Walang laman ang cache ng pakete" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "Sira ang talaksan ng cache ng pakete" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 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:158 +#: apt-pkg/pkgcache.cc:161 #, 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:163 +#: apt-pkg/pkgcache.cc:166 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:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "Dependensiya" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "PreDepends" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "Mungkahi" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "Rekomendado" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "Tunggali" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "Pumapalit" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "Linalaos" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "importante" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "kailangan" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "standard" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "optional" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "extra" @@ -2661,7 +2668,7 @@ msgstr "Hindi kilalang uri '%s' sa linyang %u sa talaksan ng pagkukunan %s" #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" @@ -2680,7 +2687,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" @@ -2697,7 +2704,7 @@ msgstr "" "Kailangan ma-instol muli ang paketeng %s, ngunit hindi ko mahanap ang arkibo " "para dito." -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2705,12 +2712,12 @@ msgstr "" "Error, pkgProblemResolver::Resolve ay naghudyat ng mga break, maaaring dulot " "ito ng mga paketeng naka-hold." -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Hindi maayos ang mga problema, mayroon kayong sirang mga pakete na naka-hold." -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2735,12 +2742,12 @@ msgstr "Hindi maaldaba ang directory ng talaan" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Kinukuha ang talaksang %li ng %li (%s ang natitira)" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "Kinukuha ang talaksang %li ng %li" @@ -2761,12 +2768,12 @@ 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:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Hindi suportado ang sistema ng paketeng '%s'" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "Hindi matuklasan ang akmang uri ng sistema ng pakete " @@ -2790,17 +2797,21 @@ msgstr "" "Maaaring patakbuhin niyo ang apt-get update upang ayusin ang mga problemang " "ito" -#: apt-pkg/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "Hindi mabasa ang talaan ng pagkukunan (sources)." + +#: apt-pkg/policy.cc:344 #, 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:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "Hindi naintindihan ang uri ng pin %s" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "Walang prioridad (o sero) na nakatakda para sa pin" @@ -2905,42 +2916,42 @@ msgstr "pagpalit ng pangalan ay bigo, %s (%s -> %s)." msgid "MD5Sum mismatch" msgstr "Di tugmang MD5Sum" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 #, fuzzy msgid "Hash Sum mismatch" msgstr "Di tugmang MD5Sum" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 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" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2949,7 +2960,7 @@ 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:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2958,7 +2969,7 @@ msgstr "" "Hindi ko mahanap ang talaksan para sa paketeng %s. Maaaring kailanganin " "niyong ayusin ng de kamay ang paketeng ito." -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2966,7 +2977,7 @@ msgstr "" "Sira ang talaksang index ng mga pakete. Walang Filename: field para sa " "paketeng %s." -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "Di tugmang laki" @@ -3090,39 +3101,39 @@ msgstr "Sinusulat ang bagong listahan ng pagkukunan\n" msgid "Source list entries for this disc are:\n" msgstr "Mga nakatala sa Listahan ng Source para sa Disc na ito ay:\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "Nagsulat ng %i na record.\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, 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:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, 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:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" "Nagsulat ng %i na record na may %i na talaksang kulang at %i na talaksang " "mismatch\n" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, fuzzy, c-format msgid "Skipping nonexistent file %s" msgstr "Binubuksan ang talaksang pagsasaayos %s" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, fuzzy, c-format msgid "Hash mismatch for: %s" msgstr "Di tugmang MD5Sum" @@ -3179,12 +3190,12 @@ msgstr "" msgid "Installing %s" msgstr "Iniluklok ang %s" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "Isasaayos ang %s" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "Tinatanggal ang %s" @@ -3204,92 +3215,93 @@ msgstr "" msgid "Running post-installation trigger %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, fuzzy, c-format msgid "Directory '%s' missing" msgstr "Nawawala ang directory ng talaan %spartial." -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, fuzzy, c-format msgid "Could not open file '%s'" msgstr "Hindi mabuksan ang talaksang %s" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "Hinahanda ang %s" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "Binubuklat ang %s" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "Hinahanda ang %s upang isaayos" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "Iniluklok ang %s" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "Naghahanda para sa pagtanggal ng %s" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "Tinanggal ang %s" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "Naghahanda upang tanggalin ng lubusan ang %s" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "Natanggal ng lubusan ang %s" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-all\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+0200\n" "PO-Revision-Date: 2006-07-29 15:57+0300\n" "Last-Translator: Artem Bondarenko <artem.brz@gmail.com>\n" "Language-Team: УкраїнÑька <uk@li.org>\n" @@ -150,14 +150,14 @@ msgstr " ФікÑатор(pin) пакунка: " msgid " Version table:" msgstr " Ð¢Ð°Ð±Ð»Ð¸Ñ†Ñ Ð²ÐµÑ€Ñій:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, 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:1739 +#: cmdline/apt-cache.cc:1745 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -321,33 +321,33 @@ msgstr "Ðеможливо запиÑати в %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Ðеможливо визначити верÑÑ–ÑŽ debconf. Він вÑтановлений?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "СпиÑок розширень, припуÑтимих Ð´Ð»Ñ Ð¿Ð°ÐºÑƒÐ½ÐºÑ–Ð², занадто довгий" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "Помилка обробки течи %s" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "" "СпиÑок розширень, припуÑтимих Ð´Ð»Ñ Ð¿Ð°ÐºÑƒÐ½ÐºÑ–Ð² з вихідними текÑтами, занадто " "довгий" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "Помилка запиÑу заголовка в повний перелік вміÑту пакунків (Contents)" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "помилка обробки повного переліку вміÑту пакунків (Contents) %s" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -435,11 +435,11 @@ msgstr "" " -c=? ВикориÑтати зазначений конфігураційний файл\n" " -o=? Вказати довільний параметр конфігурації" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "Збігів не виÑвлено" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "У групі пакунків '%s' відÑутні деÑкі файли" @@ -552,7 +552,7 @@ msgstr "Ð’ архіві немає Ð¿Ð¾Ð»Ñ package" msgid " %s has no override entry\n" msgstr " ВідÑутній Ð·Ð°Ð¿Ð¸Ñ Ð¿Ñ€Ð¾ Ð¿ÐµÑ€ÐµÐ¿Ñ€Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð´Ð»Ñ %s\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " пакунок %s Ñупроводжує %s, а не %s\n" @@ -662,79 +662,79 @@ msgstr "Ðе вдалоÑÑ Ð²Ð¸Ð´Ð°Ð»Ð¸Ñ‚Ð¸ %s" msgid "Failed to rename %s to %s" msgstr "Ðе вдалоÑÑ Ð¿ÐµÑ€ÐµÐ¹Ð¼ÐµÐ½ÑƒÐ²Ð°Ñ‚Ð¸ %s в %s" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "Т" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "Помилка компілÑції регулÑрного виразу - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "Пакунки, що мають незадоволені залежноÑÑ‚Ñ–:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "але %s вже вÑтановлений" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "але %s буде вÑтановлений" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "але він не може бути вÑтановлений" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "але це віртуальний пакунок" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "але він не вÑтановлений" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "але він не буде вÑтановлений" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " чи" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "ÐОВІ пакунки, Ñкі будуть вÑтановлені:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "Пакунки, Ñкі будуть ВИДÐЛЕÐІ:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "Пакунки, Ñкі будуть залишені в незмінному виглÑді:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "Пакунки, Ñкі будуть ОÐОВЛЕÐІ:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "Пакунки, будуть замінені на більш СТÐРІ верÑÑ–Ñ—:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "Пакунки, Ñкі повинні були б залишитиÑÑ Ð±ÐµÐ· змін, але будуть замінені:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (внаÑлідок %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -742,65 +742,65 @@ msgstr "" "УВÐГÐ: Ці Ñ–Ñтотно важливі пакунки будуть вилучені.\n" "ÐЕ РОБІТЬ цього, Ñкщо ви ÐЕ уÑвлÑєте Ñобі вÑÑ– можливі наÑлідки!" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "оновлено %lu, вÑтановлено %lu нових пакунків, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr " %lu перевÑтановлено, " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu пакунків замінено на Ñтарі верÑÑ–Ñ—, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "Ð´Ð»Ñ Ð²Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ Ð²Ñ–Ð´Ð¼Ñ–Ñ‡ÐµÐ½Ð¾ %lu пакунків, Ñ– %lu пакунків не оновлено.\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "не вÑтановлено до ÐºÑ–Ð½Ñ†Ñ Ñ‡Ð¸ видалено %lu пакунків.\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, fuzzy, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "Помітьте, регулÑрний вираз %2$s призводить до вибору %1$s\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, fuzzy, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "Помітьте, регулÑрний вираз %2$s призводить до вибору %1$s\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, fuzzy, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "Обрана верÑÑ–Ñ %s (%s) Ð´Ð»Ñ %s\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "Пакунок %s - віртуальний, його функції надаютьÑÑ Ð¿Ð°ÐºÑƒÐ½ÐºÐ°Ð¼Ð¸:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [Ð’Ñтановлено]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 #, fuzzy msgid " [Not candidate version]" msgstr "ВерÑÑ–Ñ— кандидатів" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "Ви повинні Ñвно вказати, Ñкий Ñаме ви хочете вÑтановити." -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -812,175 +812,178 @@ msgstr "" "Це може означати, що пакунок відÑутній, заÑтарів, або доÑтупний з джерел, не " "згаданих в sources.list\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "Однак наÑтупні пакунки можуть його замінити:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, fuzzy, c-format msgid "Package '%s' has no installation candidate" msgstr "Ð”Ð»Ñ Ð¿Ð°ÐºÑƒÐ½ÐºÐ° %s не знайдені кандидати на вÑтановленнÑ" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, fuzzy, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "Помітьте, заміÑÑ‚ÑŒ %2$s вибираєтьÑÑ %1$s\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" "ПропуÑкаєтьÑÑ %s - пакунок вже вÑтановлений, Ñ– Ð¾Ð¿Ñ†Ñ–Ñ upgrade не " "вÑтановлена.\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, fuzzy, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" "ПропуÑкаєтьÑÑ %s - пакунок вже вÑтановлений, Ñ– Ð¾Ð¿Ñ†Ñ–Ñ upgrade не " "вÑтановлена.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "ПеревÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ %s неможливе, бо він не може бути завантаженим.\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "Вже вÑтановлена найновіша верÑÑ–Ñ %s.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "але %s буде вÑтановлений" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "Пакунок %s не вÑтановлений, тому не може бути видалений\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "Ð’Ð¸Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð½Ñ Ð·Ð°Ð»ÐµÐ¶Ð½Ð¾Ñтей..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " невдача." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "Ðеможливо Ñкоригувати залежноÑÑ‚Ñ–" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "Ðеможливо мінімізувати набір оновлень" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " Виконано" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "" "Можливо, Ð´Ð»Ñ Ð²Ð¸Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð½Ñ Ñ†Ð¸Ñ… помилок ви захочете ÑкориÑтатиÑÑ 'apt-get -f " "install'." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "Ðезадоволені залежноÑÑ‚Ñ–. Спробуйте викориÑтати -f." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "УВÐГÐ: ÐаÑтупні пакунки неможливо автентифікувати!" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "Ðвтентифікаційне Ð¿Ð¾Ð¿ÐµÑ€ÐµÐ´Ð¶ÐµÐ½Ð½Ñ Ð½Ðµ прийнÑто до уваги.\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "Ð’Ñтановити ці пакунки без перевірки [Ñ‚/Ð]? " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "ДеÑкі пакунки неможливо автентифікувати" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "ІÑнують проблеми, а Ð¾Ð¿Ñ†Ñ–Ñ -y викориÑтана без --force-yes" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" "Ð’Ð½ÑƒÑ‚Ñ€Ñ–ÑˆÐ½Ñ Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ°, InstallPackages була викликана з непрацездатними " "пакунками!" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "Пакунки необхідно видалити, але Ð²Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ Ð·Ð°Ð±Ð¾Ñ€Ð¾Ð½ÐµÐ½Ðµ." -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "Ð’Ð½ÑƒÑ‚Ñ€Ñ–ÑˆÐ½Ñ Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ°, Ordering не завершилаÑÑ" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "Ðеможливо прочитати перелік джерел." - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "Дивно.. РозбіжніÑÑ‚ÑŒ розмірів, напишіть на apt@packages.debian.org" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Ðеобхідно завантажити %sB/%sB архівів.\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Ðеобхідно завантажити %sB архівів.\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, fuzzy, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "ПіÑÐ»Ñ Ñ€Ð¾Ð·Ð¿Ð°ÐºÑƒÐ²Ð°Ð½Ð½Ñ Ð¾Ð±'єм зайнÑтого диÑкового проÑтору зроÑте на %sB.\n" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, fuzzy, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "" "ПіÑÐ»Ñ Ñ€Ð¾Ð·Ð¿Ð°ÐºÑƒÐ²Ð°Ð½Ð½Ñ Ð¾Ð±'єм зайнÑтого диÑкового проÑтору зменшитьÑÑ Ð½Ð° %sB.\n" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "Ðе вдалоÑÑ Ð²Ð¸Ð·Ð½Ð°Ñ‡Ð¸Ñ‚Ð¸ кількіÑÑ‚ÑŒ вільного міÑÑ†Ñ Ð² %s" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "ÐедоÑтатньо вільного міÑÑ†Ñ Ð² %s." -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "Запитане Ð²Ð¸ÐºÐ¾Ð½Ð°Ð½Ð½Ñ Ñ‚Ñ–Ð»ÑŒÐºÐ¸ тривіальних операцій, але це не тривіальна " "операціÑ." -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "Так, робити, Ñк Ñ Ñкажу!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -991,28 +994,28 @@ msgstr "" "Щоб продовжити, введіть фразу: '%s'\n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "Перервано." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "Бажаєте продовжити [Т/н]? " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Ðе вдалоÑÑ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶Ð¸Ñ‚Ð¸ %s %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "ДеÑкі файли не вдалоÑÑ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶Ð¸Ñ‚Ð¸" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "Вказано режим \"тільки завантаженнÑ\", Ñ– Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð¾" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1020,19 +1023,19 @@ msgstr "" "Ðеможливо завантажити деÑкі архіви, імовірно треба виконати apt-get update " "або Ñпробувати повторити запуÑк з ключем --fix-missing?" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing Ñ– зміна ноÑÑ–Ñ Ð² даний момент не підтримуєтьÑÑ" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "Ðеможливо виправити втрачені пакунки." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "ПерериваєтьÑÑ Ð²ÑтановленнÑ." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1042,35 +1045,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Ðе вдалоÑÑ Ð¿Ñ€Ð¾Ñ‡Ð¸Ñ‚Ð°Ñ‚Ð¸ атрибути переліку вихідних текÑтів%s" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "Команді update не потрібні аргументи" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1080,7 +1083,7 @@ msgid_plural "" msgstr[0] "ÐОВІ пакунки були вÑтановлені автоматично Ñ– більше не потрібні:" msgstr[1] "ÐОВІ пакунки були вÑтановлені автоматично Ñ– більше не потрібні:" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1088,11 +1091,11 @@ msgid_plural "" msgstr[0] "ÐОВІ пакунки були вÑтановлені автоматично Ñ– більше не потрібні:" msgstr[1] "ÐОВІ пакунки були вÑтановлені автоматично Ñ– більше не потрібні:" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "ВикориÑтовуйте 'apt-get autoremove' щоб видалити Ñ—Ñ…." -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1110,26 +1113,26 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "ÐаÑтупна Ñ–Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–Ñ Ð¼Ð¾Ð¶Ð»Ð¸Ð²Ð¾ допоможе Вам:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "Ð’Ð½ÑƒÑ‚Ñ€Ñ–ÑˆÐ½Ñ Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ°, вирішувач проблем вÑе поламав" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "Ð’Ð½ÑƒÑ‚Ñ€Ñ–ÑˆÐ½Ñ Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ°, AllUpgrade вÑе поламав" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" "Можливо, Ð´Ð»Ñ Ð²Ð¸Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð½Ñ Ñ†Ð¸Ñ… помилок Ви захочете ÑкориÑтатиÑÑ 'apt-get -f " "install':" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1137,7 +1140,7 @@ msgstr "" "Ðезадоволені залежноÑÑ‚Ñ–. Спробуйте виконати 'apt-get -f install', не " "вказуючи імені пакунка (або знайдіть інше рішеннÑ)." -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1148,71 +1151,71 @@ msgstr "" "або ж викориÑтаєте неÑтабільний диÑтрибутив, Ñ– запитані Вами пакунки\n" "ще не Ñтворені або були вилучені з Incoming." -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "Зламані пакунки" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "Будуть вÑтановлені наÑтупні додаткові пакунки:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "Пропоновані пакунки:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "Рекомендовані пакунки:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "Ðе можу знайти пакунок %s" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "але %s буде вÑтановлений" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "ОбчиÑÐ»ÐµÐ½Ð½Ñ Ð¾Ð½Ð¾Ð²Ð»ÐµÐ½ÑŒ... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "Ðевдача" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "Виконано" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "Ð’Ð½ÑƒÑ‚Ñ€Ñ–ÑˆÐ½Ñ Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ°, вирішувач проблем вÑе поламав" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "Ðеможливо заблокувати теку Ð´Ð»Ñ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 msgid "Must specify at least one package to fetch source for" msgstr "" "Вкажіть Ñк мінімум один пакунок, Ð´Ð»Ñ Ñкого необхідно завантажити вихідні " "текÑти" -#: cmdline/apt-get.cc:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "Ðеможливо знайти пакунок з вихідними текÑтами Ð´Ð»Ñ %s" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1220,78 +1223,82 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "ПропуÑкаємо вже завантажений файл '%s'\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "ÐедоÑтатньо міÑÑ†Ñ Ð² %s" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Ðеобхідно завантажити %sB/%sB з архівів вихідних текÑтів.\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Потрібно завантажити %sB архівів з вихідними текÑтами.\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "Ð—Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ð²Ð¸Ñ…Ñ–Ð´Ð½Ð¸Ñ… текÑтів %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "ДеÑкі архіви не вдалоÑÑ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶Ð¸Ñ‚Ð¸." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" "Ð Ð¾Ð·Ð¿Ð°ÐºÑƒÐ²Ð°Ð½Ð½Ñ Ð²Ð¸Ñ…Ñ–Ð´Ð½Ð¸Ñ… текÑтів пропущено, тому що в %s вже перебувають " "розпаковані вихідні текÑти\n" -#: cmdline/apt-get.cc:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Команда Ñ€Ð¾Ð·Ð¿Ð°ÐºÑƒÐ²Ð°Ð½Ð½Ñ '%s' завершилаÑÑ Ð½ÐµÐ²Ð´Ð°Ð»Ð¾.\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Перевірте, чи вÑтановлений пакунок 'dpkg-dev'.\n" -#: cmdline/apt-get.cc:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "Команда побудови '%s' закінчилаÑÑ Ð½ÐµÐ²Ð´Ð°Ð»Ð¾.\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "Породжений Ð¿Ñ€Ð¾Ñ†ÐµÑ Ð·Ð°Ð²ÐµÑ€ÑˆÐ¸Ð²ÑÑ Ð½ÐµÐ²Ð´Ð°Ð»Ð¾" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 msgid "Must specify at least one package to check builddeps for" msgstr "" "Ð”Ð»Ñ Ð¿ÐµÑ€ÐµÐ²Ñ–Ñ€ÐºÐ¸ залежноÑтей Ð´Ð»Ñ Ð¿Ð¾Ð±ÑƒÐ´Ð¾Ð²Ð¸ необхідно вказати Ñк мінімум один " "пакунок" -#: cmdline/apt-get.cc:2506 +#: cmdline/apt-get.cc:2524 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Ðеможливо одержати інформацію про залежноÑÑ‚Ñ– Ð´Ð»Ñ Ð¿Ð¾Ð±ÑƒÐ´Ð¾Ð²Ð¸ %s" -#: cmdline/apt-get.cc:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "%s не має залежноÑтей Ð´Ð»Ñ Ð¿Ð¾Ð±ÑƒÐ´Ð¾Ð²Ð¸.\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1299,7 +1306,7 @@ msgid "" msgstr "" "ЗалежніÑÑ‚ÑŒ типу %s Ð´Ð»Ñ %s не може бути задоволена, бо пакунок %s не знайдено" -#: cmdline/apt-get.cc:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1308,32 +1315,32 @@ msgstr "" "ЗалежніÑÑ‚ÑŒ типу %s Ð´Ð»Ñ %s не може бути задоволена, бо ні одна з верÑій " "пакунка %s не задовольнÑÑ” умови" -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Ðе вдалоÑÑ Ð·Ð°Ð´Ð¾Ð²Ð¾Ð»ÑŒÐ½Ð¸Ñ‚Ð¸ залежніÑÑ‚ÑŒ типу %s Ð´Ð»Ñ Ð¿Ð°ÐºÑƒÐ½ÐºÐ° %s: Ð’Ñтановлений " "пакунок %s новіше, аніж треба" -#: cmdline/apt-get.cc:2693 +#: cmdline/apt-get.cc:2711 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Ðеможливо задовольнити залежніÑÑ‚ÑŒ типу %s Ð´Ð»Ñ Ð¿Ð°ÐºÑƒÐ½ÐºÐ° %s: %s" -#: cmdline/apt-get.cc:2709 +#: cmdline/apt-get.cc:2727 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "ЗалежноÑÑ‚Ñ– Ð´Ð»Ñ Ð¿Ð¾Ð±ÑƒÐ´Ð¾Ð²Ð¸ %s не можуть бути задоволені." -#: cmdline/apt-get.cc:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "Обробка залежноÑтей Ð´Ð»Ñ Ð¿Ð¾Ð±ÑƒÐ´Ð¾Ð²Ð¸ закінчилаÑÑ Ð½ÐµÐ²Ð´Ð°Ð»Ð¾" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "Підтримувані модулі:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1422,7 +1429,7 @@ msgstr "" "міÑÑ‚ÑÑ‚ÑŒ більше інформації.\n" " This APT has Super Cow Powers.\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1673,10 +1680,10 @@ msgstr "Файл %s/%s перезапиÑує інший з пакету %s" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1814,23 +1821,23 @@ msgstr "Ðе вдалоÑÑ Ð·Ð½Ð°Ð¹Ñ‚Ð¸ правильний контрольн msgid "Unparsable control file" msgstr "Контрольний файл не можливо обробити" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "Ðеможливо відкрити канал (pipe) Ð´Ð»Ñ %s" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "Помилка Ñ‡Ð¸Ñ‚Ð°Ð½Ð½Ñ Ð· процеÑу %s" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "Ðе вдалоÑÑ Ð¾Ð´ÐµÑ€Ð¶Ð°Ñ‚Ð¸ атрибути" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "Ðе вдалоÑÑ Ð²Ñтановити Ñ‡Ð°Ñ Ð¼Ð¾Ð´Ð¸Ñ„Ñ–ÐºÐ°Ñ†Ñ–Ñ—" @@ -1923,7 +1930,7 @@ msgstr "Ð§Ð°Ñ Ð·'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð²Ð¸Ñ‡ÐµÑ€Ð¿Ð°Ð²ÑÑ" msgid "Server closed the connection" msgstr "Сервер закрив з'єднаннÑ" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "Помилка читаннÑ" @@ -1935,7 +1942,7 @@ msgstr "Відповідь переповнила буфер." msgid "Protocol corruption" msgstr "Спотворений протокол" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "Помилка запиÑу" @@ -1991,7 +1998,7 @@ msgstr "Ð§Ð°Ñ Ð·'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð· Ñокетом даних Ð²Ð¸Ñ‡ÐµÑ€Ð¿Ð°Ð²Ñ msgid "Unable to accept connection" msgstr "Ðеможливо прийнÑти з'єднаннÑ" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "Проблема Ñ…ÐµÑˆÑƒÐ²Ð°Ð½Ð½Ñ Ñ„Ð°Ð¹Ð»Ð°" @@ -2126,70 +2133,70 @@ msgstr "Отримано одну заголовкову лінію понад % msgid "Bad header line" msgstr "Ðевірна Ð»Ñ–Ð½Ñ–Ñ Ð·Ð°Ð³Ð¾Ð»Ð¾Ð²ÐºÑƒ" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "HTTP Ñервер відіÑлав невірний заголовок 'reply'" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "HTTP Ñервер відіÑлав невірний заголовок 'Content-Length'" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "HTTP Ñервер відіÑлав невірний заголовок 'Content-Length'" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "Цей HTTP Ñервер має поламану підтримку 'range'" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "Ðевідомий формат дати" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "Вибір не вдавÑÑ" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "Ð§Ð°Ñ Ð¾Ñ‡Ñ–ÐºÑƒÐ²Ð°Ð½Ð½Ñ Ð·'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð²Ð¸Ð¹ÑˆÐ¾Ð²" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "Помилка запиÑу в вихідний файл" -#: methods/http.cc:852 +#: methods/http.cc:858 #, fuzzy msgid "Error writing to file" msgstr "Помилка запиÑу в файл" -#: methods/http.cc:880 +#: methods/http.cc:886 #, fuzzy msgid "Error writing to the file" msgstr "Помилка запиÑу в файл" -#: methods/http.cc:894 +#: methods/http.cc:900 msgid "Error reading from server. Remote end closed connection" msgstr "Помилка Ñ‡Ð¸Ñ‚Ð°Ð½Ð½Ñ Ð· Ñервера. Віддалена Ñторона закрила з'єднаннÑ" -#: methods/http.cc:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "Помилка Ñ‡Ð¸Ñ‚Ð°Ð½Ð½Ñ Ð· Ñервера" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 #, fuzzy msgid "Failed to truncate file" msgstr "Ðе вдалоÑÑ Ð·Ð°Ð¿Ð¸Ñати файл %s" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "Погана заголовкова інформаціÑ" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "З'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð½Ðµ вдалоÑÑ" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "Ð’Ð½ÑƒÑ‚Ñ€Ñ–ÑˆÐ½Ñ Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ°" @@ -2385,14 +2392,14 @@ msgstr "Ðевірна Ð´Ñ–Ñ %s" msgid "Unable to stat the mount point %s" msgstr "Ðеможливо прочитати атрибути точки Ð¼Ð¾Ð½Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ %s" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "Ðеможливо зробити зміни у %s" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "Ðе вдалоÑÑ Ð¿Ñ€Ð¾Ñ‡Ð¸Ñ‚Ð°Ñ‚Ð¸ атрибути cdrom" @@ -2420,150 +2427,150 @@ msgstr "" msgid "Could not get lock %s" msgstr "Ðе можливо отримати lock %s" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "ОчікуєтьÑÑ Ð½Ð° %s але його тут немає" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "ÐŸÑ–Ð´Ð¿Ñ€Ð¾Ñ†ÐµÑ %s отримав segmentation fault." -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "ÐŸÑ–Ð´Ð¿Ñ€Ð¾Ñ†ÐµÑ %s отримав segmentation fault." -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "ÐŸÑ–Ð´Ð¿Ñ€Ð¾Ñ†ÐµÑ %s повернув код помилки (%u)" -#: apt-pkg/contrib/fileutl.cc:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "ÐŸÑ–Ð´Ð¿Ñ€Ð¾Ñ†ÐµÑ %s раптово завершивÑÑ" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "Ðе можливо відкрити файл %s" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "Ðеможливо відкрити канал (pipe) Ð´Ð»Ñ %s" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "" "помилка при читанні. мали прочитати ще %lu байт, але нічого більше нема" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "помилка при запиÑÑ–, мали прочитати ще %lu байт, але не змогли" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, fuzzy, c-format msgid "Problem closing the gzip file %s" msgstr "Проблема з закриттÑм файла" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "Проблема з закриттÑм файла" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "Проблема з Ñинхронізацією файла" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "Проблема з роз'єднаннÑм файла" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "Проблема з Ñинхронізацією файла" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "Кеш пакунків пуÑтий" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "Файл кешу пакунків пошкоджений" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "Файл кешу пакунків має неÑуміÑну верÑÑ–ÑŽ" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "APT не підтримує ÑиÑтему Ð¿Ñ€Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð²ÐµÑ€Ñій '%s'" -#: apt-pkg/pkgcache.cc:163 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache was built for a different architecture" msgstr "Кеш пакунків був побудований Ð´Ð»Ñ Ñ–Ð½ÑˆÐ¾Ñ— архітектури" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "ЗалежноÑÑ‚Ñ– (Depends)" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "Пре-ЗалежноÑÑ‚Ñ– (PreDepends)" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "Пропонує (Suggests)" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "Рекомендує" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "Конфлікти" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "ЗамінÑÑ” (Replaces)" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "ЗаÑтарілі (Obsoletes)" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "Важливі (Important)" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "Ðеобхідні (Required)" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "Стандартні (Standard)" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "Ðеобов'Ñзкові (Optional)" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "Додаткові (Extra)" @@ -2684,7 +2691,7 @@ msgstr "Ðевідомий тип '%s' в лінії %u в переліку дж #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" @@ -2703,7 +2710,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" @@ -2720,7 +2727,7 @@ msgstr "" "Пакунок %s повинен бути перевÑтановленим, але Ñ Ð½Ðµ можу знайти архіву Ð´Ð»Ñ " "нього." -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2728,11 +2735,11 @@ msgstr "" "Помилка, pkgProblemResolver::Resolve згенерував зупинку, це може бути " "пов'Ñзано з зафікÑованими пакунками." -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "Ðеможливо уÑунути проблеми, Ви маєте поламані зафікÑовані пакунки." -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2757,12 +2764,12 @@ msgstr "Ðеможливо заблокувати теку з перелікам #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, fuzzy, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "ЗавантажуєтьÑÑ Ñ„Ð°Ð¹Ð» %li з %li (%s залишилоÑÑŒ)" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, fuzzy, c-format msgid "Retrieving file %li of %li" msgstr "ЗавантажуєтьÑÑ Ñ„Ð°Ð¹Ð» %li з %li" @@ -2783,12 +2790,12 @@ msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "" "Будь-лаÑка, вÑтавте диÑк з поміткою: '%s' в CD привід '%s' Ñ– натиÑніть Enter." -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "СиÑтема Ð¿Ð°ÐºÑƒÐ²Ð°Ð½Ð½Ñ '%s' не підтримуєтьÑÑ" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "Ðеможливо визначити тип необхідної ÑиÑтеми Ð¿Ð°ÐºÑƒÐ²Ð°Ð½Ð½Ñ " @@ -2809,17 +2816,21 @@ msgstr "Ðе можу обробити чи відкрити перелік па msgid "You may want to run apt-get update to correct these problems" msgstr "Можливо, Ð´Ð»Ñ Ð²Ð¸Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð½Ñ Ñ†Ð¸Ñ… помилок Ви захочете запуÑтити apt-get" -#: apt-pkg/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "Ðеможливо прочитати перелік джерел." + +#: apt-pkg/policy.cc:344 #, fuzzy, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "Ðевірний Ð·Ð°Ð¿Ð¸Ñ Ð² preferences файлі, відÑутній заголовок Package" -#: apt-pkg/policy.cc:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "Ðе зрозумів тип %s Ð´Ð»Ñ pin" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "Ðе вÑтановлено пріоритету (або вÑтановлено 0) Ð´Ð»Ñ pin" @@ -2923,13 +2934,13 @@ msgstr "Ðе вдалоÑÑ Ð¿ÐµÑ€ÐµÐ¹Ð¼ÐµÐ½ÑƒÐ²Ð°Ñ‚Ð¸, %s (%s -> %s)." msgid "MD5Sum mismatch" msgstr "ÐевідповідніÑÑ‚ÑŒ MD5Sum" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 #, fuzzy msgid "Hash Sum mismatch" msgstr "ÐевідповідніÑÑ‚ÑŒ MD5Sum" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 #, fuzzy msgid "There is no public key available for the following key IDs:\n" msgstr "ВідÑутній публічний ключ Ð´Ð»Ñ Ð·Ð°Ð´Ð°Ð½Ð¸Ñ… ID ключа:\n" @@ -2937,29 +2948,29 @@ msgstr "ВідÑутній публічний ключ Ð´Ð»Ñ Ð·Ð°Ð´Ð°Ð½Ð¸Ñ… ID #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2968,7 +2979,7 @@ msgstr "" "Я не можу знайти файл Ð´Ð»Ñ Ð¿Ð°ÐºÑƒÐ½ÐºÑƒ %s. Можливо, Ви захочете влаÑноруч " "виправити цей пакунок. (due to missing arch)" -#: apt-pkg/acquire-item.cc:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2977,14 +2988,14 @@ msgstr "" "Я не можу знайти файл Ð´Ð»Ñ Ð¿Ð°ÐºÑƒÐ½ÐºÑƒ %s. Можливо, Ви захочете влаÑноруч " "виправити цей пакунок." -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" "ІндекÑні файли пакунків пошкоджені. Ðемає Ð¿Ð¾Ð»Ñ Filename Ð´Ð»Ñ Ð¿Ð°ÐºÑƒÐ½ÐºÑƒ %s." -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "ÐевідповідніÑÑ‚ÑŒ розміру" @@ -3106,37 +3117,37 @@ msgstr "ЗапиÑуєтьÑÑ Ð½Ð¾Ð²Ð¸Ð¹ перелік джерел\n" msgid "Source list entries for this disc are:\n" msgstr "Перелік джерел Ð´Ð»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ диÑку:\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "ЗапиÑано %i запиÑів.\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "ЗапиÑано %i запиÑів з %i відÑутніми файлами.\n" -#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "ЗапиÑано %i запиÑів з %i невідповідними файлам\n" -#: apt-pkg/indexcopy.cc:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "ЗапиÑано %i запиÑів з %i відÑутніми Ñ– %i невідповідними файлами\n" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, fuzzy, c-format msgid "Skipping nonexistent file %s" msgstr "ВідкриваєтьÑÑ ÐºÐ¾Ð½Ñ„Ñ–Ð³ÑƒÑ€Ð°Ñ†Ñ–Ð¹Ð½Ð¸Ð¹ файл %s" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, fuzzy, c-format msgid "Hash mismatch for: %s" msgstr "ÐевідповідніÑÑ‚ÑŒ MD5Sum" @@ -3193,12 +3204,12 @@ msgstr "" msgid "Installing %s" msgstr "Ð’Ñтановлено %s" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "ÐšÐ¾Ð½Ñ„Ñ–Ð³ÑƒÑ€Ð°Ñ†Ñ–Ñ %s" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "ВидалÑєтьÑÑ %s" @@ -3218,93 +3229,94 @@ msgstr "" msgid "Running post-installation trigger %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, fuzzy, c-format msgid "Directory '%s' missing" msgstr "Lists тека %spartial відÑутнÑ." -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, fuzzy, c-format msgid "Could not open file '%s'" msgstr "Ðе можливо відкрити файл %s" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "Підготовка %s" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "Ð Ð¾Ð·Ð¿Ð°ÐºÑƒÐ²Ð°Ð½Ð½Ñ %s" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "Підготовка до конфігурації %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "Ð’Ñтановлено %s" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "Підготовка до Ð²Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ %s" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "Видалено %s" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "Підготовка до повного Ð²Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ %s" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "ПовніÑÑ‚ÑŽ видалено %s" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Ðеможливо запиÑати в лог, проблема з openpty() (не змонтовано /dev/pts?)\n" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -1,13 +1,13 @@ # Vietnamese Translation for Apt. # This file is put in the public domain. -# Clytie Siddall <clytie@riverland.net.au>, 2005, 2006, 2007, 2008. +# Clytie Siddall <clytie@riverland.net.au>, 2005, 2006, 2007, 2008, 2009, 2010. # msgid "" msgstr "" -"Project-Id-Version: apt 0.7.14\n" +"Project-Id-Version: apt 0.8.0~pre1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" -"PO-Revision-Date: 2008-12-22 19:04+1030\n" +"POT-Creation-Date: 2010-09-28 17:23+0200\n" +"PO-Revision-Date: 2010-09-29 21:36+0930\n" "Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n" "Language-Team: Vietnamese <vi-VN@googlegroups.com>\n" "Language: vi\n" @@ -24,12 +24,11 @@ msgstr "Gói %s phiên bản %s phụ thuá»™c và o phần má»m chÆ°a có :\n" #: cmdline/apt-cache.cc:284 msgid "Total package names: " -msgstr "Tổng số tên gói: " +msgstr "Tổng các tên gói: " #: cmdline/apt-cache.cc:286 -#, fuzzy msgid "Total package structures: " -msgstr "Tổng số tên gói: " +msgstr "Tổng các cấu trúc gói: " #: cmdline/apt-cache.cc:326 msgid " Normal packages: " @@ -97,9 +96,8 @@ msgid "Package file %s is out of sync." msgstr "Táºp tin gói %s không đồng bá»™ được." #: cmdline/apt-cache.cc:1273 -#, fuzzy msgid "You must give at least one search pattern" -msgstr "Bạn phải Ä‘Æ°a ra đúng má»™t mẫu" +msgstr "Bạn phải Ä‘Æ°a ra Ãt nhất 1 chuá»—i tìm kiếm" #: cmdline/apt-cache.cc:1429 cmdline/apt-cache.cc:1431 #: cmdline/apt-cache.cc:1508 @@ -150,15 +148,14 @@ msgstr " Ghim gói: " msgid " Version table:" msgstr " Bảng phiên bản:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s cho %s được biên dịch trên %s %s\n" -#: cmdline/apt-cache.cc:1739 -#, fuzzy +#: cmdline/apt-cache.cc:1745 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -221,6 +218,7 @@ msgstr "" " unmet\t\tHiện các cách phụ thuá»™c _chÆ°a thá»±c hiện_\n" " search\t\t_Tìm kiếm_ mẫu biểu thức chÃnh quy trong danh sách gói\n" " show\t\t_Hiệnị_ mục ghi có thể Ä‘á»c, cho những gói đó\n" +" showauto Hiển thị danh sách các gói được tá»± Ä‘á»™ng cà i đặt\n" " depends\tHiện thông tin cách _phụ thuá»™c_ thô cho gói\n" " rdepends\tHiện thông tin cách _phụ thuá»™c ngược lại_, cho gói\n" " pkgnames\tHiện danh sách _tên_ má»i _gói_\n" @@ -241,18 +239,17 @@ msgstr "" "\t\t\tapt-cache(8) và apt.conf(5).\n" #: cmdline/apt-cdrom.cc:77 -#, fuzzy 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, nhÆ° « Debian 2.1r1 ÄÄ©a 1 »" +msgstr "Hãy cung cấp tên cho ÄÄ©a nà y, nhÆ° « Debian 5.0.3 ÄÄ©a 1 »" #: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "Hãy nạp Ä‘Ä©a và o ổ và bấm nút Enter" #: cmdline/apt-cdrom.cc:127 -#, fuzzy, c-format +#, c-format msgid "Failed to mount '%s' to '%s'" -msgstr "Việc đổi tên %s thà nh %s bị lá»—i" +msgstr "Lá»—i lắp « %s » trên « %s »" #: cmdline/apt-cdrom.cc:162 msgid "Repeat this process for the rest of the CDs in your set." @@ -334,31 +331,31 @@ msgstr "Không thể ghi và o %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Không thể lấy phiên bản debconf. Debconf có được cà i đặt chÆ°a?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "Danh sách mở rá»™ng gói quá dà i" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "Gặp lá»—i khi xá» lý thÆ° mục %s" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "Danh sách mở rá»™ng nguồn quá dà i" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 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:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "Gặp lá»—i khi xá» lý ná»™i dung %s" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -399,7 +396,7 @@ msgid "" " -c=? Read this configuration file\n" " -o=? Set an arbitrary configuration option" msgstr "" -"Cách sá» dụng: apt-ftparchive [tùy_chá»n...] lệnh\n" +"Sá» dụng: apt-ftparchive [tùy_chá»n...] lệnh\n" "\n" "[ftparchive: FTP archive: kho FTP]\n" "\n" @@ -454,11 +451,11 @@ msgstr "" " -c=? \t\tÄá»c táºp tin cấu hình nà y\n" " -o=? \t\tLáºp má»™t tùy chá»n cấu hình nhiệm ý, v.d. « -o dir::cache=/tmp »" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "Không có Ä‘iá»u đã chá»n khá»›p được" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, 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 »." @@ -474,13 +471,12 @@ 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 %s" #: ftparchive/cachedb.cc:72 -#, fuzzy msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." msgstr "" -"Dạng thức co 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á» rồi tạo lại co sở dữ liệu nà y." +"Äịnh dạng co 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 co sở dữ liệu." #: ftparchive/cachedb.cc:77 #, c-format @@ -504,24 +500,24 @@ msgstr "Không thể lấy con chạy" #: ftparchive/writer.cc:73 #, c-format msgid "W: Unable to read directory %s\n" -msgstr "W: Không thể Ä‘á»c thÆ° mục %s\n" +msgstr "CB: Không thể Ä‘á»c thÆ° mục %s\n" #: ftparchive/writer.cc:78 #, c-format msgid "W: Unable to stat %s\n" -msgstr "W: Không thể lấy thông tin toà n bá»™ cho %s\n" +msgstr "CB: Không thể lấy thông tin toà n bá»™ cho %s\n" #: ftparchive/writer.cc:134 msgid "E: " -msgstr "E: " +msgstr "Lá»–I: " #: ftparchive/writer.cc:136 msgid "W: " -msgstr "W: " +msgstr "CB: " #: ftparchive/writer.cc:143 msgid "E: Errors apply to file " -msgstr "E: có lá»—i áp dụng và o táºp tin " +msgstr "Lá»–I: có lá»—i áp dụng và o táºp tin " #: ftparchive/writer.cc:161 ftparchive/writer.cc:193 #, c-format @@ -571,7 +567,7 @@ msgstr "Kho không có trÆ°á»ng gói" msgid " %s has no override entry\n" msgstr " %s không có mục ghi đè\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " ngÆ°á»i bảo quản %s là %s không phải %s\n" @@ -681,79 +677,79 @@ msgstr "Gặp lá»—i khi bá» liên kết %s" msgid "Failed to rename %s to %s" msgstr "Việc đổi tên %s thà nh %s bị lá»—i" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "C" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "Lá»—i biên dich biểu thức chÃnh quy - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "Những gói theo đây phụ thuá»™c và o phần má»m chÆ°a có :" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "nhÆ°ng mà %s đã được cà i đặt" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "nhÆ°ng mà %s sẽ được cà i đặt" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "nhÆ°ng mà nó không có khả năng cà i đặt" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "nhÆ°ng mà nó là gói ảo" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "nhÆ°ng mà nó chÆ°a được cà i đặt" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "nhÆ°ng mà nó sẽ không được cà i đặt" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " hay" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "Theo đây có những gói MỚI sẽ được cà i đặt:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "Theo đây có những gói sẽ bị Gá» BỎ :" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "Theo đây có những gói đã được giữ lại:" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "Theo đây có những gói sẽ được nâng cấp:" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "Theo đây có những gói sẽ được HẠCẤP:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "Theo đây có những gói sẽ được thay đổi:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (do %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -761,65 +757,64 @@ msgstr "" "CẢNH BÃO : theo đây có những gói chủ yếu sẽ bị gỡ bá».\n" "ÄỪNG là m nhÆ° thế trừ khi bạn biết là m gì ở đây nó má»™t cách chÃnh xác." -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "%lu đã nâng cấp, %lu má»›i được cà i đặt, " -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "%lu được cà i đặt lại, " -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "%lu được hạ cấp, " -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, 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" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, 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" -#: cmdline/apt-get.cc:634 -#, fuzzy, c-format +#: cmdline/apt-get.cc:635 +#, c-format msgid "Note, selecting '%s' for task '%s'\n" -msgstr "Ghi chú : Ä‘ang chá»n %s cho biểu thức chÃnh quy « %s »\n" +msgstr "Ghi chú : Ä‘ang chá»n « %s » cho tác vụ « %s »\n" -#: cmdline/apt-get.cc:640 -#, fuzzy, c-format +#: cmdline/apt-get.cc:641 +#, c-format msgid "Note, selecting '%s' for regex '%s'\n" -msgstr "Ghi chú : Ä‘ang chá»n %s cho biểu thức chÃnh quy « %s »\n" +msgstr "Ghi chú : Ä‘ang chá»n « %s » cho biểu thức chÃnh quy « %s »\n" -#: cmdline/apt-get.cc:647 -#, fuzzy, c-format +#: cmdline/apt-get.cc:648 +#, c-format msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Äã chá»n phiên bản %s (%s) cho %s\n" +msgstr "Äã chá»n phiên bản « %s » (%s) cho « %s »\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "Gói %s là gói ảo được cung cấp do :\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [Äã cà i đặt]" -#: cmdline/apt-get.cc:677 -#, fuzzy +#: cmdline/apt-get.cc:678 msgid " [Not candidate version]" -msgstr "Phiên bản ứng cá»" +msgstr " [Không phải phiên bản ứng cá»]" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "Bạn nên chá»n má»™t cách dứt khoát gói cần cà i." -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -830,200 +825,204 @@ msgstr "" "đã tham chiếu đến nó. Có lẽ có nghÄ©a là gói còn thiếu,\n" "đã trở thà nh cÅ©, hay chỉ sẵn sà ng từ nguồn khác.\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "Tuy nhiên, những gói theo đây thay thế nó :" -#: cmdline/apt-get.cc:712 -#, fuzzy, c-format +#: cmdline/apt-get.cc:713 +#, c-format msgid "Package '%s' has no installation candidate" -msgstr "Gói %s không có ứng cá» cà i đặt" +msgstr "Gói « %s » không có ứng cá» cà i đặt" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" -msgstr "" +msgstr "Không thể gỡ bỠđược gói ảo nhÆ° « %s »\n" -#: cmdline/apt-get.cc:754 -#, fuzzy, c-format +#: cmdline/apt-get.cc:755 +#, c-format msgid "Note, selecting '%s' instead of '%s'\n" -msgstr "Ghi chú : Ä‘ang chá»n %s thay vì %s\n" +msgstr "Ghi chú : Ä‘ang chá»n « %s » thay cho « %s »\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "Äang bá» qua %s vì nó đã được cà i đặt và chÆ°a láºp tùy chá»n Nâng cấp.\n" -#: cmdline/apt-get.cc:788 -#, fuzzy, c-format +#: cmdline/apt-get.cc:789 +#, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "Äang bá» qua %s vì nó đã được cà i đặt và chÆ°a láºp tùy chá»n Nâng cấp.\n" +msgstr "" +"Äang bá» qua %s vì nó không phải được cà i đặt và chỉ yêu cầu Nâng cấp.\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "Không thể cà i đặt lại %s vì không thể tải vá» nó.\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s là phiên bản mÆ¡i nhất.\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, 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:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "ChÆ°a cà i đặt gói %s nên không thể gỡ bá» nó\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." -msgstr "Äang sá»a cách phụ thuá»™c..." +msgstr "Äang sá»a chữa quan hệ phụ thuá»™c..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." -msgstr " đã thất bại." +msgstr " bị lá»—i." -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "Không thể sá»a cách phụ thuá»™c" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" -msgstr "Không thể cá»±c tiểu hóa bá»™ nâng cấp" +msgstr "Không thể cá»±c tiểu hóa táºp hợp nâng cấp" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" -msgstr " Äã xong" +msgstr " Hoà n tất" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "Có lẽ bạn hãy chay lệnh « apt-get -f install » để sá»a hết." -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "" "Còn có cách phụ thuá»™c và o phần má»m chÆ°a có. NhÆ° thế thì bạn hãy cố dùng tùy " "chá»n « -f »." -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 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." -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "Cảnh báo xác thá»±c bị đè.\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "Cà i đặt những gói nà y mà không kiểm chứng không? [y/N] [c/K] " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "Má»™t số gói không thể được xác thá»±c" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "Gáºp lá»—i và đã dùng tùy chá»n « -y » mà không có « --force-yes »" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 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." -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 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." -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 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" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "Không thể Ä‘á»c danh sách nguồn." - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" "Lạ... Hai kÃch cỡ không khá»›p được. Hãy gởi thÆ° cho <apt@packages.debian.org>" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Cần phải lấy %sB/%sB kho.\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Cần phải lấy %sB kho.\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "Sau thao tác nà y, %sB sức chứa Ä‘Ä©a thêm sẽ được chiếm.\n" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Sau thao tác nà y, %sB sức chứa Ä‘Ä©a thêm sẽ được giải phóng.\n" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "Không thể quyết định chá»— rảnh trong %s" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "Bạn chÆ°a có đủ sức chức còn rảnh trong %s." -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "Xác Ä‘inh « Chỉ không đáng kể » (Trivial Only) nhÆ°ng mà thao tác nà y đáng kể." -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "Có, là m Ä‘i." -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" "To continue type in the phrase '%s'\n" " ?] " msgstr "" -"Bạn sắp là m gì có thể có hai.\n" -"Äể tiếp tục thì hãy gõ cụm từ « %s »\n" +"Bạn sắp là m gì có thể là m hại.\n" +"Äể tiếp tục thì gõ cụm từ « %s »\n" "?]" -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "Hủy bá»." -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " -msgstr "Bạn có muốn tiếp tục không? [Y/n] [C/k] " +msgstr "Bạn có muốn tiếp tục không? [C/k] " -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" -msgstr "Việc gói %s bị lá»—i %s\n" +msgstr "Việc lấy %s bị lá»—i %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "Má»™t số táºp tin không tải vỠđược" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "Má»›i tải vá» xong và trong chế Ä‘á»™ chỉ tải vá»" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -1031,21 +1030,21 @@ msgstr "" "Không thể lấy má»™t số kho, có lẽ hãy chạy lệnh « apt-get update » (apt lấy " "cáºp nháºt) hay cố vá»›i « --fix-missing » (sá»a các Ä‘iá»u còn thiếu) không?" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "" "ChÆ°a hô trợ tùy chá»n « --fix-missing » (sá»a khi thiếu Ä‘iá»u) và trao đổi " "phÆ°Æ¡ng tiện." -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "Không thể sá»a những gói còn thiếu." -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." -msgstr "Äang hủy bá» cà i đặt." +msgstr "Äang hủy bá» tiến trình cà i đặt." -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1053,58 +1052,58 @@ msgid_plural "" "The following packages disappeared from your system as\n" "all files have been overwritten by other packages:" msgstr[0] "" +"Những gói theo đây không còn nằm trên hệ thống nà y vì má»i táºp tin Ä‘á»u bị gói " +"khác ghi đè:" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." -msgstr "" +msgstr "Ghi chú : thay đổi nà y được tá»± Ä‘á»™ng là m bởi dpkg." -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" -msgstr "" +msgstr "Bá» qua bản phát hà nh Ä‘Ãch không sẵn sà ng « %s » của gói « %s »" -#: cmdline/apt-get.cc:1486 -#, fuzzy, c-format +#: cmdline/apt-get.cc:1498 +#, c-format msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Không thể lấy các thông tin vá» danh sách gói nguồn %s" +msgstr "Äang chá»n « %s » là m gói nguồn, thay cho « %s »\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" -msgstr "" +msgstr "Bá» qua phiên bản không sẵn sà ng « %s » của gói « %s »" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" -msgstr "Lệnh cáºp nháºt không chấp nháºt đối số" +msgstr "Lệnh cáºp nháºt không chấp nháºn đối số" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Không nên xoá gì thì không thể khởi chạy Bá»™ Gỡ bá» Tá»± Ä‘á»™ng" -#: cmdline/apt-get.cc:1653 -#, fuzzy +#: cmdline/apt-get.cc:1666 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" "The following packages were automatically installed and are no longer " "required:" msgstr[0] "" -"Theo đây có những gói đã được cà i đặt tá»± Ä‘á»™ng nên không còn cần thiết lại:" +"Gói nà o theo đây đã được tá»± Ä‘á»™ng cà i đặt nên không còn cần thiết lại:" -#: cmdline/apt-get.cc:1657 -#, fuzzy, c-format +#: cmdline/apt-get.cc:1670 +#, 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] "" -"Theo đây có những gói đã được cà i đặt tá»± Ä‘á»™ng nên không còn cần thiết lại:" +msgstr[0] "%lu gói đã được tá»± Ä‘á»™ng cà i đặt nên không còn cần thiết lại.\n" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "Hãy sá» dụng lệnh « apt-get autoremove » để gỡ bá» chúng." -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1122,23 +1121,23 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "Có lẽ thông tin theo đây sẽ giúp đỡ quyết định trÆ°á»ng hợp:" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" msgstr "Lá»—i ná»™i bá»™ : Bá»™ Gỡ bá» Tá»± Ä‘á»™ng đã là m hÆ° gì." -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "Lá»—i ná»™i bá»™: AllUpgrade (toà n bá»™ nâng cấp) đã ngắt gì" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Có lẽ bạn hãy chạy lênh « apt-get -f install » để sá»a hết:" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1146,7 +1145,7 @@ msgstr "" "Gói còn phụ thuá»™c và o phần má»m chÆ°a có. Hãy cố chạy lệnh « apt-get -f " "install » mà không có gói nà o (hoặc ghi rõ cách quyết định)." -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1158,152 +1157,162 @@ msgstr "" "bất định, có lẽ chÆ°a tạo má»™t số gói cần thiết,\n" "hoặc chÆ°a di chuyển chúng ra phần Incoming (Äến)." -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" -msgstr "Gói bị ngắt" +msgstr "Gói bị há»ng" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "Những gói thêm theo đây sẽ được cà i đặt:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" -msgstr "Gói được đệ nghị:" +msgstr "Gói Ä‘á» nghị:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" -msgstr "Gói được khuyên:" +msgstr "Gói khuyến khÃch:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "Không tìm thấy gói %s" -#: cmdline/apt-get.cc:1981 -#, fuzzy, c-format +#: cmdline/apt-get.cc:1994 +#, c-format msgid "%s set to automatically installed.\n" -msgstr "%s được đặt thà nh « được cà i đặt bằng tay ».\n" +msgstr "%s được láºp thà nh « được tá»± Ä‘á»™ng cà i đặt ».\n" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " -msgstr "Äang tÃnh nâng cấp... " +msgstr "Äang tÃnh bÆ°á»›c nâng cấp... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "Bị lá»—i" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" -msgstr "Xong" +msgstr "Hoà n tất" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" -msgstr "Lá»—i ná»™i bá»™: bá»™ tháo gỡ vấn đỠđã ngắt gì" +msgstr "Lá»—i ná»™i bá»™ : bá»™ tháo gỡ vấn đỠđã ngắt gì" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" -msgstr "Không thể khóa thÆ° mục tải vá»" +msgstr "Không thể khoá thÆ° mục tải vá»" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 msgid "Must specify at least one package to fetch source for" -msgstr "Phải ghi rõ Ãt nhất má»™t gói cần lấy nguồn cho nó" +msgstr "Phải ghi rõ Ãt nhất má»™t gói cho đó cần lấy mã nguồn" -#: cmdline/apt-get.cc:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "Không tìm thấy gói nguồn cho %s" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" +"GHI CHÚ : sá»± đóng gói « %s » được bảo tồn trong hệ thống Ä‘iá»u khiển phiên " +"bản « %s » tại:\n" +"%s\n" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" "bzr get %s\n" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" +"Hãy sá» dụng câu lệnh:\n" +"bzr get %s\n" +"để lấy các bản cáºp nháºt gói má»›i nhất (có thể là chÆ°a phát hà nh).\n" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, 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:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "Không đủ sức chứa còn rảnh trong %s" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, 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" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Cần phải lấy %sB kho nguồn.\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "Lấy nguồn %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "Việc lấy má»™t số kho bị lá»—i." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, 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:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Lệnh giải nén « %s » bị lá»—i.\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Hãy kiểm tra xem gói « dpkg-dev » có được cà i đặt chÆ°a.\n" -#: cmdline/apt-get.cc:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "Lệnh xây dụng « %s » bị lá»—i.\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "Tiến trình con bị lá»—i" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 msgid "Must specify at least one package to check builddeps for" msgstr "" "Phải ghi rõ Ãt nhất má»™t gói cần kiểm tra cách phụ thuá»™c khi xây dụng cho nó" -#: cmdline/apt-get.cc:2506 +#: cmdline/apt-get.cc:2524 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Không thể lấy thông tin vá» cách phụ thuá»™c khi xây dụng cho %s" -#: cmdline/apt-get.cc:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "%s không phụ thuá»™c và o gì khi xây dụng.\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "cách phụ thuá»™c %s cho %s không thể được thá»a vì không tìm thấy gá»i %s" -#: cmdline/apt-get.cc:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1312,32 +1321,31 @@ msgstr "" "cách phụ thuá»™c %s cho %s không thể được thá»a vì không có phiên bản sẵn sà ng " "của gói %s có thể thá»a Ä‘iá»u kiện phiên bản." -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Việc cố thá»a cách phụ thuá»™c %s cho %s bị lá»—i vì gói đã cà i đặt %s quá má»›i" -#: cmdline/apt-get.cc:2693 +#: cmdline/apt-get.cc:2711 #, 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:2709 +#: cmdline/apt-get.cc:2727 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Không thể thá»a cách phụ thuá»™c khi xây dụng cho %s." -#: cmdline/apt-get.cc:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "Việc xá» lý cách phụ thuá»™c khi xây dụng bị lá»—i" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "Mô-Ä‘un đã há»— trợ :" -#: cmdline/apt-get.cc:2786 -#, fuzzy +#: cmdline/apt-get.cc:2804 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1392,7 +1400,7 @@ msgstr "" "source: \tnguồn]\n" "\n" "apt-get là má»™t giao diện dòng lệnh Ä‘Æ¡n giản để tải vá» và cà i đặt gói.\n" -"Những lệnh đã dùng thÆ°á»ng nhất là update (cáºp nháºt) và install (cà i đặt).\n" +"Những lệnh được dùng thÆ°á»ng nhất là update (cáºp nháºt) và install (cà i đặt).\n" "\n" "Lệnh:\n" " update\t\tLấy danh sách gói má»›i (_cáºp nháºt_)\n" @@ -1410,6 +1418,8 @@ msgstr "" " clean \t\tXóa các táºp tin kho đã tải vá» (_là m sạch_)\n" " autoclean \tXóa các táºp tin kho cÅ© đã tải vá» (_tá»± Ä‘á»™ng là m sạch_)\n" " check \t\t_Kiểm chứng_ không có quan hệ phụ thuá»™c bị ngắt\n" +" markauto Äánh dấu những gói Ä‘Æ°a ra nhÆ° là « được tá»± Ä‘á»™ng cà i đặt »\n" +" unmarkauto Äánh dấu những gói Ä‘Æ°a ra nhÆ° là « được cà i đặt bằng tay »\n" "\n" "Tùy chá»n:\n" " -h \t_Trợ giúp_ nà y.\n" @@ -1430,13 +1440,17 @@ msgstr "" "sources.list(5) và apt.conf(5).\n" " Trình APT nà y có năng lá»±c của siêu bò.\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" " Keep also in mind that locking is deactivated,\n" " so don't depend on the relevance to the real current situation!" msgstr "" +"GHI CHÚ : đây chỉ là má»™t sá»± mô phá»ng !\n" +" apt-get yêu cầu quyá»n ngÆ°á»i chủ để thá»±c hiện tháºt.\n" +" CÅ©ng ghi nhá»› rằng chức năng khoá bị tắt,\n" +" thì không nên thấy đây là trÆ°á»ng hợp hiện thá»i tháºt." #: cmdline/acqprogress.cc:55 msgid "Hit " @@ -1477,7 +1491,7 @@ msgstr "" #: cmdline/apt-sortpkgs.cc:86 msgid "Unknown package record!" -msgstr "Không biết mục ghi gói." +msgstr "Không rõ mục ghi gói." #: cmdline/apt-sortpkgs.cc:150 msgid "" @@ -1492,7 +1506,7 @@ msgid "" " -c=? Read this configuration file\n" " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -"Cách sá» dụng: apt-sortpkgs [tùy_chá»n...] táºp_tin1 [táºp_tin2 ...]\n" +"Sá» dụng: apt-sortpkgs [tùy_chá»n...] táºp_tin1 [táºp_tin2 ...]\n" "\n" "[sortpkgs: sort packages: sắp xếp các gói]\n" "\n" @@ -1512,34 +1526,30 @@ msgstr "Thiết láºp mặc định sai." #: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94 #: dselect/install:105 dselect/update:45 msgid "Press enter to continue." -msgstr "Hãy bấm phÃm Enter để tiếp tục lại." +msgstr "Bấm phÃm Enter để tiếp tục lại." #: dselect/install:91 msgid "Do you want to erase any previously downloaded .deb files?" msgstr "Bạn có muốn xoá bất kỳ táºp tin .deb đã tải vá» trÆ°á»›c không?" #: dselect/install:101 -#, fuzzy msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Gáºp má»™t số lá»—i khi giải nén. Sẽ cấu hình" +msgstr "Gáºp má»™t số lá»—i trong khi giải nén. Những gói đã được cà i đặt" #: dselect/install:102 -#, fuzzy msgid "will be configured. This may result in duplicate errors" -msgstr "những gói đã Ä‘Æ°Æ¡c cà i đặt. Có lẽ sẽ gây ra lá»—i trùng" +msgstr "sẽ cÅ©ng được cấu hình. Có lẽ sẽ gây ra lá»—i trùng" #: dselect/install:103 msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"hoặc lá»—i khi không có phần má»m mà gói khác phụ thuá»™c và o nó. Không có sao, " -"chỉ những lá»—i" +msgstr "hoặc lá»—i do quan hệ phụ thuá»™c chÆ°a thoả. TrÆ°á»ng hợp nà y vẫn đúng," #: dselect/install:104 msgid "" "above this message are important. Please fix them and run [I]nstall again" msgstr "" -"ở trên thông Ä‘iệp nà y là quan trá»ng. Hãy sá»a chúng và chạy lại [I]nstall " -"(cà i đặt)" +"chỉ những lá»—i bên trên thông Ä‘iệp nà y còn lại quan trá»ng. Hãy sá»a chữa, sau " +"đó chạy lại lệnh cà i đặt (I)." #: dselect/update:30 msgid "Merging available information" @@ -1559,12 +1569,12 @@ msgstr "Kho bị há»ng." #: apt-inst/contrib/extracttar.cc:193 msgid "Tar checksum failed, archive corrupted" -msgstr "Tiến trình tar (kiểm tổng tar) thât bại: kho bị há»ng." +msgstr "Lá»—i kiểm tổng tar, kho bị há»ng" #: apt-inst/contrib/extracttar.cc:296 #, c-format msgid "Unknown TAR header type %u, member %s" -msgstr "Không biết kiểu phần đầu tar %u, bá»™ phạn %s" +msgstr "Không rõ kiểu phần đầu tar %u, bá»™ phạn %s" #: apt-inst/contrib/arfile.cc:70 msgid "Invalid archive signature" @@ -1575,9 +1585,9 @@ msgid "Error reading archive member header" msgstr "Gặp lá»—i khi Ä‘á»c phần đầu bá»™ phạn kho" #: apt-inst/contrib/arfile.cc:90 -#, fuzzy, c-format +#, c-format msgid "Invalid archive member header %s" -msgstr "Phần đầu bá»™ phạn kho không hợp lê" +msgstr "Phần đầu bá»™ pháºn kho lÆ°u không hợp lệ %s" #: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" @@ -1681,10 +1691,10 @@ msgstr "Táºp tin %s/%s ghi đè lên Ä‘iá»u trong gói %s" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1823,23 +1833,23 @@ msgstr "Việc định vị táºp tin Ä‘iá»u khiển hợp lệ bị lá»—i" msgid "Unparsable control file" msgstr "Táºp tin Ä‘iá»u khiển không có khả năng phân tách" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "Không thể mở ống dẫn cho %s" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "Gặp lá»—i Ä‘á»c từ tiến trình %s" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "Việc lấy các thông tin bị lá»—i" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "Việc láºp giá» sá»a đổi bị lá»—i" @@ -1881,7 +1891,7 @@ msgstr "Äịa chỉ URI không hợp lệ: URI không thể bắt đầu vá»›i #. Login must be before getpeername otherwise dante won't work. #: methods/ftp.cc:168 msgid "Logging in" -msgstr "Äang đăng nháºp..." +msgstr "Äang đăng nháºp" #: methods/ftp.cc:174 msgid "Unable to determine the peer name" @@ -1932,7 +1942,7 @@ msgstr "Thá»i hạn kết nối" msgid "Server closed the connection" msgstr "Máy phục vụ đã đóng kết nối" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "Lá»—i Ä‘á»c" @@ -1944,7 +1954,7 @@ msgstr "Má»™t trả lá»i đã trà n bá»™ đệm." msgid "Protocol corruption" msgstr "Giao thức bị há»ng" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "Lá»—i ghi" @@ -1992,15 +2002,15 @@ msgstr "Lệnh EPRT (thông báo lá»—i) đã thất bại: máy phục vụ nói #: methods/ftp.cc:823 msgid "Data socket connect timed out" -msgstr "Kết nối ổ cắm dữ liệu đã quá giá»" +msgstr "Quá giá» kết nối ổ cắm dữ liệu" #: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "Không thể chấp nháºn kết nối" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" -msgstr "Gặp khó khăn băm táºp tin" +msgstr "Gặp khó khăn khi tạo chuá»—i duy nhất cho táºp tin" #: methods/ftp.cc:882 #, c-format @@ -2073,43 +2083,42 @@ msgid "Temporary failure resolving '%s'" msgstr "Việc tháo gỡ « %s » bị lá»—i tạm thá»i" #: methods/connect.cc:196 -#, fuzzy, c-format +#, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Gặp lá»—i nghiệm trá»ng khi tháo gỡ « %s:%s » (%i)" +msgstr "Gặp lá»—i nghiệm trá»ng khi tháo gỡ « %s:%s » (%i - %s)" #: methods/connect.cc:243 -#, fuzzy, c-format +#, c-format msgid "Unable to connect to %s:%s:" -msgstr "Không thể kết nối đến %s %s:" +msgstr "Không thể kết nối đến %s: %s:" #. TRANSLATOR: %s is the trusted keyring parts directory #: methods/gpgv.cc:71 -#, fuzzy, c-format +#, c-format msgid "No keyring installed in %s." -msgstr "Äang hủy bá» cà i đặt." +msgstr "Không có vòng khoá nà o được cà i đặt và o %s." #: methods/gpgv.cc:163 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ể quyết định vân tay khóa ?!" +msgstr "Lá»—i ná»™i bá»™ : chữ ký đúng, nhÆ°ng không thể quyết định vân tay khóa ?!" #: methods/gpgv.cc:168 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 -#, fuzzy msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"Không thể thá»±c hiện « %s » để kiểm chứng chữ ký (gpgv có được cà i đặt chÆ°a?)" +"Không thể thá»±c hiện « gpgv » để thẩm tra chữ ký (gpgv có được cà i đặt chÆ°a?)" #: methods/gpgv.cc:177 msgid "Unknown error executing gpgv" -msgstr "Gặp lá»—i lạ khi thá»±c hiện gpgv" +msgstr "Gặp lá»—i không rõ khi thá»±c hiện gpgv" #: methods/gpgv.cc:211 methods/gpgv.cc:218 msgid "The following signatures were invalid:\n" -msgstr "Những chữ ký theo đây là không hợp lệ:\n" +msgstr "Những chữ ký theo đây vẫn không hợp lệ:\n" #: methods/gpgv.cc:225 msgid "" @@ -2131,71 +2140,71 @@ msgstr "Äã lấy má»™t dòng đầu riêng lẻ chứa hÆ¡n %u ky tá»±" msgid "Bad header line" msgstr "Dòng đầu sai" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 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/http.cc:594 +#: methods/http.cc:600 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 dụng) không " "hợp lệ" -#: methods/http.cc:609 +#: methods/http.cc:615 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 vị ná»™i dụng) không " "hợp lệ" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "Máy phục vụ HTTP đã ngắt cách há»— trợ phạm vị" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" -msgstr "Không biết dạng ngà y" +msgstr "Không rõ dạng ngà y" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "Việc chá»n bị lá»—i" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "Kết nối đã quá giá»" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "Gặp lá»—i khi ghi và o táºp tin xuất" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "Gặp lá»—i khi ghi và o táºp tin" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "Gặp lá»—i khi ghi và o táºp tin đó" -#: methods/http.cc:894 +#: methods/http.cc:900 msgid "Error reading from server. Remote end closed connection" msgstr "Gặp lá»—i khi Ä‘á»c từ máy phục vụ : cuối ở xa đã đóng kết nối" -#: methods/http.cc:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "Gặp lá»—i khi Ä‘á»c từ máy phục vụ" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 msgid "Failed to truncate file" msgstr "Lá»—i cắt ngắn táºp tin" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "Dữ liệu dòng đầu sai" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "Kết nối bị ngắt" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "Gặp lá»—i ná»™i bá»™" @@ -2204,9 +2213,9 @@ msgid "Can't mmap an empty file" msgstr "Không thể mmap (ảnh xạ bá»™ nhá»›) tâp tin rá»—ng" #: apt-pkg/contrib/mmap.cc:89 -#, fuzzy, c-format +#, c-format msgid "Couldn't duplicate file descriptor %i" -msgstr "Không thể mở ống dẫn cho %s" +msgstr "Không thể nhân đôi bá»™ mô tả táºp tin %i" #: apt-pkg/contrib/mmap.cc:97 apt-pkg/contrib/mmap.cc:250 #, c-format @@ -2214,14 +2223,12 @@ msgid "Couldn't make mmap of %lu bytes" msgstr "Không thể tạo mmap (ảnh xạ bá»™ nhá»›) kÃch cỡ %lu byte" #: apt-pkg/contrib/mmap.cc:124 -#, fuzzy msgid "Unable to close mmap" -msgstr "Không thể mở %s" +msgstr "Không thể đóng mmap (ảnh xạ bá»™ nhá»›)" #: apt-pkg/contrib/mmap.cc:152 apt-pkg/contrib/mmap.cc:180 -#, fuzzy msgid "Unable to synchronize mmap" -msgstr "Không thể gá»i " +msgstr "Không thể Ä‘á»™ng bá»™ hoá mmap (ảnh xạ bá»™ nhá»›)" #: apt-pkg/contrib/mmap.cc:300 #, c-format @@ -2229,42 +2236,47 @@ msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " "Current value: %lu. (man 5 apt.conf)" msgstr "" +"Dynamic MMap (ảnh xạ bá»™ nhá»› Ä‘á»™ng) đã hết sức chứa.\n" +"Hãy tăng kÃch cỡ của « APT::Cache-Limit » (giá»›i hạn vùng nhá»› tạm Apt).\n" +"Giá trị hiện thá»i: %lu. (man 5 apt.conf)" #: apt-pkg/contrib/mmap.cc:399 #, c-format msgid "" "Unable to increase the size of the MMap as the limit of %lu bytes is already " "reached." -msgstr "" +msgstr "Không thể tăng kÃch cỡ của ảnh xạ bá»™ nhá»›, vì đã tá»›i giá»›i hạn %lu byte." #: apt-pkg/contrib/mmap.cc:402 msgid "" "Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" +"Không thể tăng kÃch cỡ của ảnh xạ bá»™ nhá»›, vì chức năng tá»± Ä‘á»™ng tăng bị ngÆ°á»i " +"dùng tắt." #. d means days, h means hours, min means minutes, s means seconds #: apt-pkg/contrib/strutl.cc:371 #, c-format msgid "%lid %lih %limin %lis" -msgstr "" +msgstr "%lingà y %ligiá» %liphút %ligiây" #. h means hours, min means minutes, s means seconds #: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lih %limin %lis" -msgstr "" +msgstr "%ligiá» %liphút %ligiây" #. min means minutes, s means seconds #: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%limin %lis" -msgstr "" +msgstr "%liphút %ligiây" #. s means seconds #: apt-pkg/contrib/strutl.cc:390 #, c-format msgid "%lis" -msgstr "" +msgstr "%ligiây" #: apt-pkg/contrib/strutl.cc:1119 #, c-format @@ -2317,14 +2329,15 @@ 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:777 -#, fuzzy, c-format +#, 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: có thể thá»±c hiện chỉ thị chỉ tại mức đầu" +msgstr "" +"Gặp lá»—i cú pháp %s:%u: chỉ thị rõ thì yêu cầu má»™t cây tuỳ chá»n là m đối số" #: apt-pkg/contrib/configuration.cc:827 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Gặp lá»—i cú pháp %s:%u: rác thêm tại kết thúc táºp tin" +msgstr "Gặp lá»—i cú pháp %s:%u: gặp rác thêm tại kết thúc táºp tin" #: apt-pkg/contrib/progress.cc:153 #, c-format @@ -2334,12 +2347,12 @@ msgstr "%c%s... Lá»—i." #: apt-pkg/contrib/progress.cc:155 #, c-format msgid "%c%s... Done" -msgstr "%c%s... Xong" +msgstr "%c%s... Hoà n tất" #: apt-pkg/contrib/cmndline.cc:77 #, c-format msgid "Command line option '%c' [from %s] is not known." -msgstr "Không biết tùy chá»n dòng lệnh « %c » [từ %s]." +msgstr "Không rõ tùy chá»n dòng lệnh « %c » [từ %s]." #: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111 #: apt-pkg/contrib/cmndline.cc:119 @@ -2355,7 +2368,7 @@ msgstr "Tùy chá»n dòng lệnh %s không phải bun (đúng/không đúng)" #: apt-pkg/contrib/cmndline.cc:165 apt-pkg/contrib/cmndline.cc:186 #, c-format msgid "Option %s requires an argument." -msgstr "Tùy chá»n %s cần đến má»™t đối số." +msgstr "Tùy chá»n %s yêu cầu má»™t đối số." #: apt-pkg/contrib/cmndline.cc:200 apt-pkg/contrib/cmndline.cc:206 #, c-format @@ -2365,7 +2378,7 @@ msgstr "Tùy chá»n %s: đặc tả mục cấu hình phải có má»™t « =<giá #: apt-pkg/contrib/cmndline.cc:236 #, c-format msgid "Option %s requires an integer argument, not '%s'" -msgstr "Tùy chá»n %s cần đến má»™t đối số số nguyên, không phải « %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:267 #, c-format @@ -2387,14 +2400,14 @@ msgstr "Thao tác không hợp lệ %s" 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:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "Không thể chuyển đổi sang %s" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "Việc lấy cac thông tin cho Ä‘Ä©a CD-ROM bị lá»—i" @@ -2418,155 +2431,155 @@ msgstr "Không dùng khả năng khóa cho táºp tin khóa đã lắp kiểu NFS msgid "Could not get lock %s" msgstr "Không thể lấy khóa %s" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Äã đợi %s nhÆ°ng mà chÆ°a gặp nó" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." -msgstr "Tiến trình con %s đã nháºn má»™t lá»—i chia ra từng Ä‘oạn." +msgstr "Tiến trình phụ %s đã nháºn má»™t lá»—i chia ra từng Ä‘oạn." -#: apt-pkg/contrib/fileutl.cc:635 -#, fuzzy, c-format +#: apt-pkg/contrib/fileutl.cc:657 +#, c-format msgid "Sub-process %s received signal %u." -msgstr "Tiến trình con %s đã nháºn má»™t lá»—i chia ra từng Ä‘oạn." +msgstr "Tiến trình phụ %s đã nháºn tÃn hiệu %u." -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, c-format msgid "Sub-process %s returned an error code (%u)" -msgstr "Tiến trình con %s đã trả lá»i mã lá»—i (%u)" +msgstr "Tiến trình phụ %s đã trả lá»i mã lá»—i (%u)" -#: apt-pkg/contrib/fileutl.cc:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" -msgstr "Tiến trình con %s đã thoát bất ngá»" +msgstr "Tiến trình phụ %s đã thoát bất thÆ°á»ng" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "Không thể mở táºp tin %s" -#: apt-pkg/contrib/fileutl.cc:714 -#, fuzzy, c-format +#: apt-pkg/contrib/fileutl.cc:745 +#, c-format msgid "Could not open file descriptor %d" -msgstr "Không thể mở ống dẫn cho %s" +msgstr "Không thể mở bá»™ mô tả táºp tin %d" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" -msgstr "Ä‘á»c, còn cần Ä‘á»c %lu nhÆ°ng mà không có Ä‘iá»u còn lại" +msgstr "Ä‘á»c, còn cần Ä‘á»c %lu nhÆ°ng mà không có gì còn lại" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "ghi, còn cần ghi %lu nhÆ°ng mà không thể" -#: apt-pkg/contrib/fileutl.cc:906 -#, fuzzy, c-format +#: apt-pkg/contrib/fileutl.cc:937 +#, c-format msgid "Problem closing the gzip file %s" -msgstr "Gặp lá»—i khi đóng táºp tin đó" +msgstr "Gặp vấn Ä‘á» khi đóng táºp tin gzip %s" -#: apt-pkg/contrib/fileutl.cc:909 -#, fuzzy, c-format +#: apt-pkg/contrib/fileutl.cc:940 +#, c-format msgid "Problem closing the file %s" -msgstr "Gặp lá»—i khi đóng táºp tin đó" +msgstr "Gặp vấn Ä‘á» khi đóng táºp tin %s" -#: apt-pkg/contrib/fileutl.cc:914 -#, fuzzy, c-format +#: apt-pkg/contrib/fileutl.cc:945 +#, c-format msgid "Problem renaming the file %s to %s" -msgstr "Gặp lá»—i khi đồng bá»™ hóa táºp tin đó" +msgstr "Gặp vấn Ä‘á» khi thay tên táºp tin %s bằng %s" -#: apt-pkg/contrib/fileutl.cc:925 -#, fuzzy, c-format +#: apt-pkg/contrib/fileutl.cc:956 +#, c-format msgid "Problem unlinking the file %s" -msgstr "Gặp lá»—i khi bá» liên kết táºp tin đó" +msgstr "Gặp vấn Ä‘á» khi bá» liên kết táºp tin %s" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" -msgstr "Gặp lá»—i khi đồng bá»™ hóa táºp tin đó" +msgstr "Gặp vấn Ä‘á» khi đồng bá»™ hóa táºp tin" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" -msgstr "Bá»™ nhá»› tạm gói rá»—ng" +msgstr "Bá»™ nhá»› tạm gói trống" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" -msgstr "Táºp tin bá»™ nhá»› tạm gói bị há»ng" +msgstr "Táºp tin nhá»› tạm gói bị há»ng" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" -msgstr "Táºp tin bá»™ nhá»› tạm gói là má»™t phiên bản không tÆ°Æ¡ng thÃch" +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:158 +#: apt-pkg/pkgcache.cc:161 #, 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:163 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache was built for a different architecture" -msgstr "Bá»™ nhá»› tạm gói được xây dụng cho kiến trức khác" +msgstr "Bá»™ nhá»› tạm gói được xây dá»±ng cho má»™t kiến trức khác" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "Phụ thuá»™c" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" -msgstr "Phụ thuá»™c trÆ°á»›c" +msgstr "Phụ thuá»™c sẵn" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" -msgstr "Äệ nghị" +msgstr "Äá» nghị" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" -msgstr "Khuyên" +msgstr "Khuyến khÃch" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "Xung Ä‘á»™t" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "Thay thế" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "Là m cÅ©" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "Là m hÆ°" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" -msgstr "" +msgstr "Tăng cÆ°á»ng" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "quan trá»ng" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" -msgstr "cần" +msgstr "yêu cầu" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "chuẩn" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "tùy chá»n" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" -msgstr "thêm" +msgstr "bổ sung" #: apt-pkg/depcache.cc:124 apt-pkg/depcache.cc:153 msgid "Building dependency tree" -msgstr "Äang xây dụng cây cách phụ thuá»™c..." +msgstr "Äang xây dá»±ng cây quan hệ phụ thuá»™c" #: apt-pkg/depcache.cc:125 msgid "Candidate versions" @@ -2574,11 +2587,11 @@ msgstr "Phiên bản ứng cá»" #: apt-pkg/depcache.cc:154 msgid "Dependency generation" -msgstr "Tạo ra cách phụ thuá»™c" +msgstr "Tạo ra quan hệ phụ thuá»™c" #: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:207 apt-pkg/depcache.cc:211 msgid "Reading state information" -msgstr "Äang Ä‘á»c thông tin tình trạng" +msgstr "Äang Ä‘á»c thông tin vá» tình trạng" #: apt-pkg/depcache.cc:236 #, c-format @@ -2593,46 +2606,49 @@ msgstr "Lá»—i ghi táºp tin tình trạng StateFile tạm thá»i %s" #: apt-pkg/depcache.cc:921 #, c-format msgid "Internal error, group '%s' has no installable pseudo package" -msgstr "" +msgstr "Gặp lá»—i ná»™i bá»™, nhóm « %s » không có gói giả có thể cà i đặt" #: apt-pkg/tagfile.cc:102 #, 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)" +msgstr "Không thể phân tÃch táºp tin gói %s (1)" #: apt-pkg/tagfile.cc:189 #, 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)" +msgstr "Không thể phân tÃch táºp tin gói %s (2)" #: apt-pkg/sourcelist.cc:92 -#, fuzzy, c-format +#, c-format msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" -"Gặp dòng dạng sai %lu trong danh sách nguồn %s (phân tách bản phân phối)" +"Gặp dòng dạng sai %lu trong danh sách nguồn %s ([tùy chá»n] không phân tÃch " +"được)" #: apt-pkg/sourcelist.cc:95 -#, fuzzy, c-format +#, c-format msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Gặp dòng dạng sai %lu trong danh sách nguồn %s (bản phân phối)" +msgstr "Gặp dòng dạng sai %lu trong danh sách nguồn %s ([tùy chá»n] quá ngắn)" #: apt-pkg/sourcelist.cc:106 -#, fuzzy, c-format +#, c-format msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" msgstr "" -"Gặp dòng dạng sai %lu trong danh sách nguồn %s (phân tách bản phân phối)" +"Gặp dòng dạng sai %lu trong danh sách nguồn %s ([%s] không phải là má»™t sá»± " +"gán)" #: apt-pkg/sourcelist.cc:112 -#, fuzzy, c-format +#, c-format msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "" -"Gặp dòng dạng sai %lu trong danh sách nguồn %s (phân tách bản phân phối)" +"Gặp dòng dạng sai %lu trong danh sách nguồn %s ([%s] không có khoá nà o)" #: apt-pkg/sourcelist.cc:115 -#, fuzzy, c-format +#, c-format msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -"Gặp dòng dạng sai %lu trong danh sách nguồn %s (phân tách bản phân phối)" +"Gặp dòng dạng sai %lu trong danh sách nguồn %s (khoá [%s] %s không có giá " +"trị)" #: apt-pkg/sourcelist.cc:128 #, c-format @@ -2665,7 +2681,7 @@ msgstr "" #: apt-pkg/sourcelist.cc:244 #, c-format msgid "Opening %s" -msgstr "Äang mở %s..." +msgstr "Äang mở %s" #: apt-pkg/sourcelist.cc:261 apt-pkg/cdrom.cc:438 #, c-format @@ -2685,9 +2701,11 @@ msgstr "Không biết kiểu « %s » trên dòng %u trong danh sách nguồn %s #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" 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:452 #, c-format @@ -2704,9 +2722,11 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" +"Không thể thá»±c hiện ngay láºp tức tiến trình cấu hình « %s » đã giải nén. Xem " +"« man 5 apt.conf » dÆ°á»›i « APT::Immediate-Configure » để tìm chi tiết." #: apt-pkg/pkgrecords.cc:32 #, c-format @@ -2719,7 +2739,7 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "Cần phải cà i đặt lại gói %s, nhÆ°ng mà không thể tìm kho cho nó." -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2727,11 +2747,11 @@ msgstr "" "Lá»—i: « pkgProblemResolver::Resolve » (bá»™ tháo gỡ vấn Ä‘á» gá»i::tháo gỡ) đã tạo " "ra nhiá»u chá»— ngắt, có lẽ má»™t số gói đã giữ lại đã gây ra trÆ°á»ng hợp nà y." -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "Không thể sá»a vấn Ä‘á», bạn đã giữ lại má»™t số gói bị ngắt." -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2740,31 +2760,31 @@ msgstr "" "dùng thay thế." #: apt-pkg/acquire.cc:79 -#, fuzzy, c-format +#, c-format msgid "List directory %spartial is missing." -msgstr "Thiếu thÆ° mục danh sách « %spartial »." +msgstr "Thiếu thÆ° mục danh sách %spartial." #: apt-pkg/acquire.cc:83 -#, fuzzy, c-format +#, c-format msgid "Archives directory %spartial is missing." -msgstr "Thiếu thÆ° mục kho « %spartial »." +msgstr "Thiếu thÆ° mục kho lÆ°u %spartial." #: apt-pkg/acquire.cc:91 -#, fuzzy, c-format +#, c-format msgid "Unable to lock directory %s" -msgstr "Không thể khóa thÆ° mục danh sách" +msgstr "Không thể khoá thÆ° mục %s" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Äang lấy táºp tin %li trên %li (%s còn lại)..." +msgstr "Äang lấy táºp tin %li trên %li (%s còn lại)" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" -msgstr "Äang lấy táºp tin %li trên %li..." +msgstr "Äang lấy táºp tin %li trên %li" #: apt-pkg/acquire-worker.cc:110 #, c-format @@ -2781,19 +2801,19 @@ msgstr "PhÆ°Æ¡ng pháp %s đã không bắt đầu cho đúng." msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "Hãy nạp Ä‘Ä©a có nhãn « %s » và o ổ « %s » và bấm nút Enter." -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:143 #, 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:157 +#: apt-pkg/init.cc:159 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:56 #, c-format msgid "Unable to stat %s." -msgstr "Không thể lấy các thông tin vá» %s." +msgstr "Không thể lấy trạng thái vá» %s." #: apt-pkg/srcrecords.cc:44 msgid "You must put some 'source' URIs in your sources.list" @@ -2810,19 +2830,22 @@ msgid "You may want to run apt-get update to correct these problems" msgstr "" "Có lẽ bạn muốn chạy « apt-get update » (lấy cáºp nháºt) để sá»a các vấn Ä‘á» nà y" -#: apt-pkg/policy.cc:343 -#, fuzzy, c-format +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "Không thể Ä‘á»c danh sách nguồn." + +#: apt-pkg/policy.cc:344 +#, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -"Gặp mục ghi không hợp lệ trong táºp tin tùy thÃch: không có phần đầu Package " -"(Gói)." +"Gặp mục ghi sai trong táºp tin tùy thÃch %s: không có dòng đầu Package (Gói)." -#: apt-pkg/policy.cc:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "Không hiểu kiểu ghim %s" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "ChÆ°a ghi rõ Æ°u tiên (hay số không) cho ghim" @@ -2857,19 +2880,19 @@ msgstr "Gặp lá»—i khi xá» lý %s (NewFileVer1 - táºp tin má»›i, phiên bản #: apt-pkg/pkgcachegen.cc:306 apt-pkg/pkgcachegen.cc:316 #: apt-pkg/pkgcachegen.cc:324 -#, fuzzy, c-format +#, c-format msgid "Error occurred while processing %s (NewVersion%d)" -msgstr "Gặp lá»—i khi xá» lý %s (NewVersion1 - phiên bản má»›i 1)" +msgstr "Gặp lá»—i khi xá» lý %s (NewVersion%d)" #: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Error occurred while processing %s (UsePackage3)" -msgstr "Gặp lá»—i khi xá» lý %s (UsePackage3 - dùng gói 3)" +msgstr "Gặp lá»—i khi xá» lý %s (UsePackage3)" #: apt-pkg/pkgcachegen.cc:353 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" -msgstr "Gặp lá»—i khi xá» lý %s (NewFileDesc2 - táºp tin mô tả má»›i 2)" +msgstr "Gặp lá»—i khi xá» lý %s (NewFileDesc2)" #: apt-pkg/pkgcachegen.cc:360 msgid "Wow, you exceeded the number of package names this APT is capable of." @@ -2924,43 +2947,46 @@ msgstr "việc thay đổi tên bị lá»—i, %s (%s → %s)." #: apt-pkg/acquire-item.cc:484 msgid "MD5Sum mismatch" -msgstr "MD5Sum (tổng kiểm) không khá»›p được" +msgstr "Sai khá»›p MD5Sum (tổng kiểm)" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" -msgstr "Sai khá»›p tổng băm (hash sum)" +msgstr "Sai khá»›p tổng chuá»—i duy nhất (hash sum)" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 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 ID khóa theo đây:\n" +msgstr "Không có khóa công sẵn sà ng cho những mã số khoá theo đây:\n" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" -msgstr "" +msgstr "Táºp tin phát hà nh đã hết hạn nên bá» qua %s (không hợp lệ kể từ %s)" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "" +msgstr "Bản phát hà nh xung Ä‘á»™t: %s (mong đợi %s còn nháºn %s)" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" +"Gặp lá»—i trong khi thẩm tra chữ ký.\n" +"Kho lÆ°u chÆ°a được cáºp nháºt nên dùng những táºp tin chỉ mục trÆ°á»›c.\n" +"Lá»—i GPG: %s: %s\n" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" -msgstr "" +msgstr "Lá»—i GPG: %s: %s" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2969,7 +2995,7 @@ 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:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2978,7 +3004,7 @@ 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." -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2986,34 +3012,37 @@ 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/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" -msgstr "KÃch cỡ không khá»›p được" +msgstr "Sai khá»›p kÃch cỡ" #: apt-pkg/indexrecords.cc:53 -#, fuzzy, c-format +#, c-format msgid "Unable to parse Release file %s" -msgstr "Không thể phân tách táºp tin gói %s (1)" +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:60 -#, fuzzy, c-format +#, c-format msgid "No sections in Release file %s" -msgstr "Ghi chú : Ä‘ang chá»n %s thay vì %s\n" +msgstr "Không có phần nà o trong táºp tin Phát hà nh %s" #: apt-pkg/indexrecords.cc:94 #, c-format msgid "No Hash entry in Release file %s" -msgstr "" +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:107 -#, fuzzy, c-format +#, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Gặp dòng không hợp lệ trong táºp tin trệch Ä‘i: %s" +msgstr "" +"Gặp mục nháºp « 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:122 -#, fuzzy, c-format +#, c-format msgid "Invalid 'Date' entry in Release file %s" -msgstr "Không thể phân tách táºp tin gói %s (1)" +msgstr "" +"Gặp mục nháºp « Date » (ngà y tháng) không hợp lệ trong táºp tin Phát hà nh %s" #: apt-pkg/vendorlist.cc:66 #, c-format @@ -3077,11 +3106,13 @@ msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" 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:703 #, c-format msgid "Found label '%s'\n" -msgstr "Nhãn đã lÆ°u : « %s »\n" +msgstr "Tìm thấy nhãn « %s »\n" #: apt-pkg/cdrom.cc:732 msgid "That is not a valid name, try again.\n" @@ -3094,7 +3125,7 @@ msgid "" "'%s'\n" msgstr "" "Tên Ä‘Ä©a nà y:\n" -"%s\n" +"« %s »\n" #: apt-pkg/cdrom.cc:752 msgid "Copying package lists..." @@ -3102,48 +3133,48 @@ msgstr "Äang sao chép các danh sách gói..." #: apt-pkg/cdrom.cc:778 msgid "Writing new source list\n" -msgstr "Äang ghi danh sách nguồn má»›i...\n" +msgstr "Äang ghi danh sách nguồn má»›i\n" #: apt-pkg/cdrom.cc:787 msgid "Source list entries for this disc are:\n" msgstr "Các mục nháºp danh sách nguồn cho Ä‘Ä©a nà y:\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "Má»›i ghi %i mục ghi.\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Má»›i ghi %i mục ghi vá»›i %i táºp tin còn thiếu.\n" -#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Má»›i ghi %i mục ghi vá»›i %i táºp tin không khá»›p vá»›i nhau\n" -#: apt-pkg/indexcopy.cc:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" "Má»›i ghi %i mục ghi vá»›i %i táºp tin còn thiếu và %i táºp tin không khá»›p vá»›i " "nhau\n" -#: apt-pkg/indexcopy.cc:532 -#, fuzzy, c-format +#: apt-pkg/indexcopy.cc:537 +#, c-format msgid "Skipping nonexistent file %s" -msgstr "Äang mở táºp tin cấu hình %s..." +msgstr "Äang bá» qua táºp tin không tồn tại %s" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" -msgstr "" +msgstr "Không tìm thấy mục ghi xác thá»±c cho : %s" -#: apt-pkg/indexcopy.cc:544 -#, fuzzy, c-format +#: apt-pkg/indexcopy.cc:549 +#, c-format msgid "Hash mismatch for: %s" -msgstr "Sai khá»›p tổng băm (hash sum)" +msgstr "Sai khá»›p chuá»—i duy nhất cho : %s" #: apt-pkg/cacheset.cc:337 #, c-format @@ -3156,19 +3187,19 @@ 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:447 -#, fuzzy, c-format +#, c-format msgid "Couldn't find task '%s'" -msgstr "Không tìm thấy tác vụ %s" +msgstr "Không tìm thấy tác vụ « %s »" #: apt-pkg/cacheset.cc:454 -#, fuzzy, c-format +#, c-format msgid "Couldn't find any package by regex '%s'" -msgstr "Không tìm thấy gói %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:467 #, c-format msgid "Can't select versions from package '%s' as it purely virtual" -msgstr "" +msgstr "Không thể chá»n phiên bản trong gói « %s » vì nó chỉ là ảo" #: apt-pkg/cacheset.cc:475 apt-pkg/cacheset.cc:483 #, c-format @@ -3176,141 +3207,150 @@ msgid "" "Can't select installed nor candidate version from package '%s' as it has " "neither of them" msgstr "" +"Không thể chá»n phiên bản được cà i đặt hoặc phiên bản ứng cá» trong gói « %s » " +"mà không có trong nó" #: apt-pkg/cacheset.cc:491 #, c-format msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" +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:499 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +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:507 #, 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/deb/dpkgpm.cc:52 #, c-format msgid "Installing %s" msgstr "Äang cà i đặt %s" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" -msgstr "Äang cấu hình %s..." +msgstr "Äang cấu hình %s" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" -msgstr "Äang gỡ bá» %s..." +msgstr "Äang gỡ bá» %s" #: apt-pkg/deb/dpkgpm.cc:55 -#, fuzzy, c-format +#, c-format msgid "Completely removing %s" -msgstr "Má»›i gỡ bá» hoà n toà n %s" +msgstr "Äang gỡ bá» hoà n toà n %s" #: apt-pkg/deb/dpkgpm.cc:56 #, c-format msgid "Noting disappearance of %s" -msgstr "" +msgstr "Äang ghi lÆ°u sá»± biến mất của %s" #: apt-pkg/deb/dpkgpm.cc:57 #, c-format msgid "Running post-installation trigger %s" msgstr "Äang chạy bá»™ gây nên tiến trình cuối cùng cà i đặt %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "Thiếu thÆ° mục « %s »" -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 -#, fuzzy, c-format +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 +#, c-format msgid "Could not open file '%s'" -msgstr "Không thể mở táºp tin %s" +msgstr "Không thể mở táºp tin « %s »" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" -msgstr "Äang chuẩn bị %s..." +msgstr "Äang chuẩn bị %s" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" -msgstr "Äang mở gói %s..." +msgstr "Äang mở gói %s" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" -msgstr "Äang chuẩn bị cấu hình %s..." +msgstr "Äang chuẩn bị cấu hình %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "Äã cà i đặt %s" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" -msgstr "Äang chuẩn bị gỡ bá» %s..." +msgstr "Äang chuẩn bị gỡ bá» %s" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "Äã gỡ bá» %s" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" -msgstr "Äang chuẩn bị gỡ bá» hoà n toà n %s..." +msgstr "Äang chuẩn bị gỡ bá» hoà n toà n %s" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "Má»›i gỡ bá» hoà n toà n %s" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "Không thể ghi lÆ°u, openpty() bị lá»—i (« /dev/pts » chÆ°a lắp ?)\n" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" -msgstr "" +msgstr "Äang chạy dpkg" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 msgid "No apport report written because MaxReports is reached already" msgstr "" +"Không ghi báo cáo apport, vì đã tá»›i 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:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" -msgstr "" +msgstr "gặp vấn Ä‘á» vá» quan hệ phụ thuá»™c nên để lại không có cấu hình" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" +"Không ghi báo cáo apport, vì thông Ä‘iệp lá»—i ngụ ý rằng nó là má»™t lá»—i kế tiếp " +"do má»™t sá»± thất bại trÆ°á»›c." -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" -msgstr "" +msgstr "Không ghi báo cáo apport, vì thông Ä‘iệp lá»—i ngụ ý má»™t lá»—i « Ä‘Ä©a đầy »" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" +"Không ghi báo cáo apport, vì thông Ä‘iệp lá»—i ngụ ý má»™t lá»—i « không đủ bá»™ nhá»› »" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" -msgstr "" +msgstr "Không ghi báo cáo apport, vì thông Ä‘iệp lá»—i ngụ ý má»™t lá»—i « V/R dpkg »" #: apt-pkg/deb/debsystem.cc:69 #, c-format @@ -3318,11 +3358,13 @@ msgid "" "Unable to lock the administration directory (%s), is another process using " "it?" msgstr "" +"Không thể khoá thÆ° mục quản lý (%s): có má»™t tiến trình khác Ä‘ang sá» dụng nó " +"không?" #: apt-pkg/deb/debsystem.cc:72 -#, fuzzy, c-format +#, c-format msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Không thể khóa thÆ° mục danh sách" +msgstr "Không thể khoá thÆ° mục quản lý (%s): bạn có quyá»n ngÆ°á»i chủ không?" #. TRANSLATORS: the %s contains the recovery command, usually #. dpkg --configure -a @@ -3331,22 +3373,23 @@ msgstr "Không thể khóa thÆ° mục danh sách" msgid "" "dpkg was interrupted, you must manually run '%s' to correct the problem. " msgstr "" +"dpkg bị gián Ä‘oạn, bạn cần phải tá»± Ä‘á»™ng chạy « %s » để giải vấn Ä‘á» nà y." #: apt-pkg/deb/debsystem.cc:106 msgid "Not locked" -msgstr "" +msgstr "Không phải bị khoá" #. FIXME: fallback to a default mirror here instead #. and provide a config option to define that default #: methods/mirror.cc:200 #, c-format msgid "No mirror file '%s' found " -msgstr "" +msgstr "Không tìm thấy táºp tin nhân bản « %s »" #: methods/mirror.cc:343 #, c-format msgid "[Mirror: %s]" -msgstr "" +msgstr "[Nhân bản: %s]" #: methods/rred.cc:465 #, c-format @@ -3354,6 +3397,8 @@ msgid "" "Could not patch %s with mmap and with file operation usage - the patch seems " "to be corrupt." msgstr "" +"Không thể vá lá»—i %s dùng mmap và cách sá» dụng táºp tin: có vẻ là đắp vá bị " +"há»ng." #: methods/rred.cc:470 #, c-format @@ -3361,46 +3406,9 @@ msgid "" "Could not patch %s with mmap (but no mmap specific fail) - the patch seems " "to be corrupt." msgstr "" +"Không thể vá lá»—i %s dùng mmap (mà không có lá»—i đặc trÆ°ng cho mmap): có vẻ là " +"đắp vá bị há»ng." #: methods/rsh.cc:329 msgid "Connection closed prematurely" msgstr "Kết nối bị đóng quá sá»›m." - -#~ msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting." -#~ msgstr "E: Danh sách lệnh từ « Acquire::gpgv::Options » quá dà i nên thoát." - -#~ msgid "Error occurred while processing %s (NewVersion2)" -#~ msgstr "Gặp lá»—i khi xá» lý %s (NewVersion2 - phiên ban má»›i 2)" - -#~ msgid "Malformed line %u in source list %s (vendor id)" -#~ msgstr "" -#~ "Gặp dòng dạng sai %u trong danh sách nguồn %s (mã nháºn biết nhà bán)" - -#~ msgid "Couldn't access keyring: '%s'" -#~ msgstr "Không thể truy cáºp vòng khoá « %s »" - -#~ msgid "Could not patch file" -#~ msgstr "Không thể vá lá»—i trong táºp tin %s" - -# Variable: do not translate/ biến: đừng dịch -#~ msgid " %4i %s\n" -#~ msgstr " %4i %s\n" - -# Variable: do not translate/ biến: đừng dịch -#~ msgid "%4i %s\n" -#~ msgstr "%4i %s\n" - -#~ msgid "Processing triggers for %s" -#~ msgstr "Äang xá» lý các bá»™ gây nên cho %s" - -#~ msgid "Dynamic MMap ran out of room" -#~ msgstr "Hết chá»— tạo sÆ¡ đồ bá»™ nhá»› Ä‘á»™ng (Dynamic MMap)" - -#~ msgid "" -#~ "Since you only requested a single operation it is extremely likely that\n" -#~ "the package is simply not installable and a bug report against\n" -#~ "that package should be filed." -#~ msgstr "" -#~ "Vì bạn đã yêu cầu chỉ má»™t thao tác riêng lẻ, rât có thể là \n" -#~ "gói nà y Ä‘Æ¡n giản không có khả năng cà i đặt, thì bạn hay\n" -#~ "thông báo lá»—i vá» gói nà y." diff --git a/po/zh_CN.po b/po/zh_CN.po index a87c90696..bc15dddb6 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: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+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" @@ -149,14 +149,14 @@ msgstr " 软件包é”:" msgid " Version table:" msgstr " 版本列表:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s,用于 %s 构架,编译于 %s %s\n" -#: cmdline/apt-cache.cc:1739 +#: cmdline/apt-cache.cc:1745 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -319,31 +319,31 @@ msgstr "æ— æ³•å†™å…¥ %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "æ— æ³•èŽ·å¾— debconf 的版本。您安装了 debconf å—?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "软件包的扩展列表太长" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "处ç†ç›®å½• %s 时出错" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "æºæ‰©å±•åˆ—表太长" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "将头写入到目录文件时出错" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "处ç†ç›®å½• %s 时出错" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -423,11 +423,11 @@ msgstr "" " -c=? 读å–指定é…置文件\n" " -o=? 设置任æ„指定的é…置选项" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "没有任何选定项是匹é…çš„" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "软件包文件组“%sâ€ä¸ç¼ºå°‘一些文件" @@ -538,7 +538,7 @@ msgstr "å½’æ¡£æ–‡ä»¶æ²¡æœ‰åŒ…å« package å—段" msgid " %s has no override entry\n" msgstr " %s ä¸æ²¡æœ‰ override 项\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s 的维护者 %s å¹¶éž %s\n" @@ -648,79 +648,79 @@ msgstr "在使用 unlink åˆ é™¤ %s 时出错" msgid "Failed to rename %s to %s" msgstr "æ— æ³•å°† %s é‡å‘½å为 %s" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "编译æ£åˆ™è¡¨è¾¾å¼æ—¶å‡ºé”™ - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "下列软件包有未满足的ä¾èµ–关系:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "但是 %s å·²ç»å®‰è£…" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "但是 %s æ£è¦è¢«å®‰è£…" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "ä½†æ— æ³•å®‰è£…å®ƒ" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "但是它是虚拟软件包" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "但是它还没有被安装" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "但是它将ä¸ä¼šè¢«å®‰è£…" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr " 或" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "下列ã€æ–°ã€‘软件包将被安装:" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "下列软件包将被ã€å¸è½½ã€‘:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "下列软件包的版本将ä¿æŒä¸å˜ï¼š" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "下列软件包将被å‡çº§ï¼š" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "下列软件包将被ã€é™çº§ã€‘:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "下列被è¦æ±‚ä¿æŒç‰ˆæœ¬ä¸å˜çš„软件包将被改å˜ï¼š" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%s (是由于 %s) " -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -728,64 +728,64 @@ msgstr "" "ã€è¦å‘Šã€‘:下列基础软件包将被å¸è½½ã€‚\n" "请勿å°è¯•ï¼Œé™¤éžæ‚¨ç¡®å®žçŸ¥é“您在åšä»€ä¹ˆï¼" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "å‡çº§äº† %lu 个软件包,新安装了 %lu 个软件包," -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "é‡æ–°å®‰è£…了 %lu 个软件包," -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "é™çº§äº† %lu 个软件包," -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "è¦å¸è½½ %lu 个软件包,有 %lu 个软件包未被å‡çº§ã€‚\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "有 %lu 个软件包没有被完全安装或å¸è½½ã€‚\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "注æ„,为任务 %2$s 选ä¸äº† %1$s\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "注æ„ï¼Œæ ¹æ®æ£åˆ™è¡¨è¾¾å¼ %2$s 选ä¸äº† %1$s\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "为 %3$s 选定了版本 %1$s (%2$s)\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "软件包 %s 是一个由下é¢çš„软件包æ供的虚拟软件包:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr " [已安装]" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 msgid " [Not candidate version]" msgstr " [æ— å€™é€‰ç‰ˆæœ¬]" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "请您明确地选择一个æ¥è¿›è¡Œå®‰è£…。" -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -796,164 +796,167 @@ msgstr "" "è¿™å¯èƒ½æ„味ç€è¿™ä¸ªç¼ºå¤±çš„软件包å¯èƒ½å·²è¢«åºŸå¼ƒï¼Œ\n" "或者åªèƒ½åœ¨å…¶ä»–å‘布æºä¸æ‰¾åˆ°\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "å¯æ˜¯ä¸‹åˆ—软件包å–代了它:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, c-format msgid "Package '%s' has no installation candidate" msgstr "软件包 %s 没有å¯ä¾›å®‰è£…的候选者" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "类似 %s 的虚拟软件包å¯ä»¥å¸è½½\n" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "注æ„ï¼Œé€‰å– %s è€Œéž %s\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "忽略了 %s,它已ç»è¢«å®‰è£…而且没有指定è¦å‡çº§ã€‚\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "忽略了 %s,它已ç»è¢«å®‰è£…而且仅请求了å‡çº§ã€‚\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "ä¸èƒ½é‡æ–°å®‰è£… %sï¼Œå› ä¸ºæ— æ³•ä¸‹è½½å®ƒã€‚\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s å·²ç»æ˜¯æœ€æ–°çš„版本了。\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, c-format msgid "%s set to manually installed.\n" msgstr "%s 被设置为手动安装。\n" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "软件包 %s è¿˜æœªå®‰è£…ï¼Œå› è€Œä¸ä¼šè¢«å¸è½½\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "æ£åœ¨æ›´æ£ä¾èµ–关系..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " 失败。" -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "æ— æ³•æ›´æ£ä¾èµ–关系" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "æ— æ³•æœ€å°åŒ–è¦å‡çº§çš„软件包集åˆ" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " 完æˆ" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "您也许需è¦è¿è¡Œâ€œapt-get -f installâ€æ¥ä¿®æ£ä¸Šé¢çš„错误。" -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "ä¸èƒ½æ»¡è¶³ä¾èµ–关系。ä¸å¦¨è¯•ä¸€ä¸‹ -f 选项。" -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ã€è¦å‘Šã€‘:下列软件包ä¸èƒ½é€šè¿‡éªŒè¯ï¼" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "忽略了认è¯è¦å‘Šã€‚\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "ä¸ç»éªŒè¯å°±å®‰è£…这些软件包å—?[y/N] " -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "有些软件包ä¸èƒ½é€šè¿‡éªŒè¯" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "碰到了一些问题,您使用了 -y 选项,但是没有用 --force-yes" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "内部错误,InstallPackages è¢«ç”¨åœ¨äº†æ— æ³•å®‰è£…çš„è½¯ä»¶åŒ…ä¸Šï¼" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "有软件包需è¦è¢«å¸è½½ï¼Œä½†æ˜¯å¸è½½åŠ¨ä½œè¢«ç¨‹åºè®¾ç½®æ‰€ç¦æ¢ã€‚" -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "内部错误,Ordering 未能完æˆ" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "æ— æ³•è¯»å–æºåˆ—表。" - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "怪了……文件大å°ä¸ç¬¦ï¼Œè¯·å‘ä¿¡ç»™ apt@packages.debian.org å§" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "需è¦ä¸‹è½½ %sB/%sB 的软件包。\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "需è¦ä¸‹è½½ %sB 的软件包。\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "解压缩åŽä¼šæ¶ˆè€—掉 %sB çš„é¢å¤–空间。\n" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "解压缩åŽå°†ä¼šç©ºå‡º %sB 的空间。\n" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "æ— æ³•èŽ·çŸ¥æ‚¨åœ¨ %s 上的å¯ç”¨ç©ºé—´" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "您在 %s 上没有足够的å¯ç”¨ç©ºé—´ã€‚" -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "虽然您指定了仅执行常规æ“作,但这ä¸æ˜¯ä¸ªå¸¸è§„æ“作。" -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "是,按我说的åšï¼" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -964,28 +967,28 @@ msgstr "" "若还想继ç»çš„è¯ï¼Œå°±è¾“入下é¢çš„çŸå¥â€œ%sâ€\n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "ä¸æ¢æ‰§è¡Œã€‚" -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "您希望继ç»æ‰§è¡Œå—?[Y/n]" -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "æ— æ³•ä¸‹è½½ %s %s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "æœ‰ä¸€äº›æ–‡ä»¶æ— æ³•ä¸‹è½½" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "下载完毕,目å‰æ˜¯â€œä»…下载â€æ¨¡å¼" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -993,19 +996,19 @@ msgstr "" "æœ‰å‡ ä¸ªè½¯ä»¶åŒ…æ— æ³•ä¸‹è½½ï¼Œæ‚¨å¯ä»¥è¿è¡Œ apt-get update æˆ–è€…åŠ ä¸Š --fix-missing 的选项" "å†è¯•è¯•ï¼Ÿ" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "ç›®å‰è¿˜ä¸æ”¯æŒ --fix-missing 和介质交æ¢" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "æ— æ³•æ›´æ£ç¼ºå°‘的软件包。" -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "ä¸æ¢å®‰è£…。" -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1014,42 +1017,35 @@ msgid_plural "" "all files have been overwritten by other packages:" msgstr[0] "ä»¥ä¸‹è½¯ä»¶åŒ…å› ä¸ºæ–‡ä»¶å·²è¢«å…¶ä»–è½¯ä»¶åŒ…è¦†ç›–è€Œæ¶ˆå¤±ï¼š" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "注æ„:这是自动被 dpkg 有æ„完æˆçš„。" -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "忽略ä¸å¯ç”¨çš„软件包 %2$s çš„ç›®æ ‡å‘行版本 %1$s" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "选择 %s 作为æºä»£ç åŒ…è€Œéž %s\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "忽略ä¸å¯ç”¨çš„ %2$s 软件包的 %1$s 版" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr " update 命令ä¸éœ€è¦å‚æ•°" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "我们ä¸åº”è¯¥è¿›è¡Œåˆ é™¤ï¼Œæ— æ³•å¯åŠ¨è‡ªåŠ¨åˆ 除器" -#: cmdline/apt-get.cc:1653 -#, fuzzy -#| msgid "" -#| "The following package is automatically installed and is no longer " -#| "required:" -#| msgid_plural "" -#| "The following packages were automatically installed and are no longer " -#| "required:" +#: cmdline/apt-get.cc:1666 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -1057,18 +1053,18 @@ msgid_plural "" "required:" msgstr[0] "下列软件包是自动安装的并且现在ä¸éœ€è¦äº†ï¼š" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" "%lu packages were automatically installed and are no longer required.\n" msgstr[0] "%lu 个自动安装的的软件包现在已ä¸å†éœ€è¦äº†ã€‚\n" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "使用'apt-get autoremove'æ¥å¸è½½å®ƒä»¬" -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1084,23 +1080,23 @@ msgstr "似乎自动å¸è½½å·¥å…·æŸå了一些软件,这ä¸åº”该å‘生。请 #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "下列信æ¯å¯èƒ½ä¼šå¯¹è§£å†³é—®é¢˜æœ‰æ‰€å¸®åŠ©ï¼š" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" msgstr "内部错误,自动å¸è½½å·¥å…·å事了" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "内部错误,全部å‡çº§å·¥å…·å事了" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "您å¯èƒ½éœ€è¦è¿è¡Œâ€œapt-get -f installâ€æ¥çº æ£ä¸‹åˆ—错误:" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1108,7 +1104,7 @@ msgstr "" "有未能满足的ä¾èµ–关系。请å°è¯•ä¸æŒ‡æ˜Žè½¯ä»¶åŒ…çš„åå—æ¥è¿è¡Œâ€œapt-get -f installâ€(也å¯" "以指定一个解决办法)。" -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1119,62 +1115,62 @@ msgstr "" "å› ä¸ºç³»ç»Ÿæ— æ³•è¾¾åˆ°æ‚¨è¦æ±‚的状æ€é€ æˆçš„。该版本ä¸å¯èƒ½ä¼šæœ‰ä¸€äº›æ‚¨éœ€è¦çš„软件\n" "包尚未被创建或是它们已被从新到(Incoming)目录移出。" -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "ç ´æŸçš„软件包" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "将会安装下列é¢å¤–的软件包:" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "建议安装的软件包:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "推è安装的软件包:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "æ— æ³•æ‰¾åˆ°è½¯ä»¶åŒ… %s" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s 被设置为手动安装。\n" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "æ£åœ¨å¯¹å‡çº§è¿›è¡Œè®¡ç®—... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "失败" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "完æˆ" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "内部错误,问题解决工具å事了" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "æ— æ³•é”定下载目录" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 msgid "Must specify at least one package to fetch source for" msgstr "è¦ä¸‹è½½æºä»£ç ,必须指定至少一个对应的软件包" -#: cmdline/apt-get.cc:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "æ— æ³•æ‰¾åˆ°ä¸Ž %s 对应的æºä»£ç 包" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -1183,7 +1179,7 @@ msgstr "" "æ示:%s 的打包工作被维护于以下ä½ç½®çš„ %s 版本控制系统ä¸ï¼š\n" "%s\n" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1194,81 +1190,85 @@ msgstr "" "bzr get %s\n" "获得该软件包的最近更新(å¯èƒ½å°šæœªæ£å¼å‘布)。\n" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "忽略已下载过的文件“%sâ€\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "您在 %s 上没有足够的å¯ç”¨ç©ºé—´" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "需è¦ä¸‹è½½ %sB/%sB çš„æºä»£ç 包。\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "需è¦ä¸‹è½½ %sB çš„æºä»£ç 包。\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "下载æºä»£ç %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "æœ‰ä¸€äº›åŒ…æ–‡ä»¶æ— æ³•ä¸‹è½½ã€‚" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "忽略已ç»è¢«è§£åŒ…到 %s 目录的æºä»£ç 包\n" -#: cmdline/apt-get.cc:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "è¿è¡Œè§£åŒ…的命令“%sâ€å‡ºé”™ã€‚\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "请检查是å¦å®‰è£…了“dpkg-devâ€è½¯ä»¶åŒ…。\n" -#: cmdline/apt-get.cc:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "æ‰§è¡Œæž„é€ è½¯ä»¶åŒ…å‘½ä»¤â€œ%sâ€å¤±è´¥ã€‚\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "å进程出错" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 msgid "Must specify at least one package to check builddeps for" msgstr "è¦æ£€æŸ¥ç”Ÿæˆè½¯ä»¶åŒ…的构建ä¾èµ–关系,必须指定至少一个软件包" -#: cmdline/apt-get.cc:2506 +#: cmdline/apt-get.cc:2524 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "æ— æ³•èŽ·å¾— %s 的构建ä¾èµ–关系信æ¯" -#: cmdline/apt-get.cc:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr " %s 没有构建ä¾èµ–关系信æ¯ã€‚\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, 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:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1277,30 +1277,30 @@ msgstr "" "ç”±äºŽæ— æ³•æ‰¾åˆ°ç¬¦åˆè¦æ±‚的软件包 %3$s çš„å¯ç”¨ç‰ˆæœ¬ï¼Œå› æ¤ä¸èƒ½æ»¡è¶³ %2$s 所è¦æ±‚çš„ " "%1$s ä¾èµ–关系" -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, 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:2693 +#: cmdline/apt-get.cc:2711 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "æ— æ³•æ»¡è¶³ %2$s 所è¦æ±‚ %1$s ä¾èµ–关系:%3$s" -#: cmdline/apt-get.cc:2709 +#: cmdline/apt-get.cc:2727 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "ä¸èƒ½æ»¡è¶³è½¯ä»¶åŒ… %s 所è¦æ±‚的构建ä¾èµ–关系。" -#: cmdline/apt-get.cc:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "æ— æ³•å¤„ç†æž„建ä¾èµ–关系" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "支æŒçš„模å—:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1387,7 +1387,7 @@ msgstr "" "以获å–更多信æ¯å’Œé€‰é¡¹ã€‚\n" " 本 APT 具有超级牛力。\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1633,10 +1633,10 @@ msgstr "文件 %s/%s 会覆盖属于软件包 %s ä¸çš„åŒå文件" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1770,23 +1770,23 @@ msgstr "æ— æ³•åœ¨å½’æ¡£æ–‡ä»¶ä¸æ‰¾åˆ°æœ‰æ•ˆçš„主控文件" msgid "Unparsable control file" msgstr "ä¸èƒ½è§£æžçš„主控文件" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "æ— æ³•ä¸º %s å¼€å¯ç®¡é“" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "从 %s 进程读å–æ•°æ®å‡ºé”™" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "æ— æ³•è¯»å–状æ€" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "æ— æ³•è®¾ç½®æ–‡ä»¶çš„ä¿®æ”¹æ—¥æœŸ" @@ -1878,7 +1878,7 @@ msgstr "连接超时" msgid "Server closed the connection" msgstr "æœåŠ¡å™¨å…³é—了连接" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "读错误" @@ -1890,7 +1890,7 @@ msgstr "回应超出了缓å˜åŒºå¤§å°ã€‚" msgid "Protocol corruption" msgstr "å议有误" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "写出错" @@ -1944,7 +1944,7 @@ msgstr "æ•°æ®å¥—接å—连接超时" msgid "Unable to accept connection" msgstr "æ— æ³•æŽ¥å—连接" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "æŠŠæ–‡ä»¶åŠ å…¥å“ˆå¸Œè¡¨æ—¶å‡ºé”™" @@ -2074,67 +2074,67 @@ msgstr "接收到一行报头行,它的长度超过了 %u 个å—符" msgid "Bad header line" msgstr "错误的报头行" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "该 HTTP æœåŠ¡å™¨å‘é€äº†ä¸€ä¸ªæ— 效的应ç”报头" -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "该 HTTP æœåŠ¡å™¨å‘é€äº†ä¸€ä¸ªæ— 效的 Content-Length 报头" -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "该 HTTP æœåŠ¡å™¨å‘é€äº†ä¸€ä¸ªæ— 效的 Content-Range 报头" -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "该 HTTP æœåŠ¡å™¨çš„ range 支æŒä¸æ£å¸¸" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "æ— æ³•è¯†åˆ«çš„æ—¥æœŸæ ¼å¼" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "select 调用出错" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "连接超时" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "写输出文件时出错" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "写入文件出错" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "写入文件出错" -#: methods/http.cc:894 +#: methods/http.cc:900 msgid "Error reading from server. Remote end closed connection" msgstr "从æœåŠ¡å™¨è¯»å–æ•°æ®æ—¶å‡ºé”™ï¼Œå¯¹æ–¹å…³é—了连接" -#: methods/http.cc:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "从æœåŠ¡å™¨è¯»å–æ•°æ®å‡ºé”™" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 msgid "Failed to truncate file" msgstr "æ— æ³•æˆªæ–文件" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "错误的报头数æ®" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "连接失败" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "内部错误" @@ -2326,14 +2326,14 @@ msgstr "æ— æ•ˆçš„æ“作 %s" msgid "Unable to stat the mount point %s" msgstr "æ— æ³•è¯»å–文件系统挂载点 %s 的状æ€" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "æ— æ³•åˆ‡æ¢å·¥ä½œç›®å½•åˆ° %s" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "æ— æ³•è¯»å–盘片的状æ€" @@ -2357,149 +2357,149 @@ msgstr "æ— æ³•åœ¨ nfs æ–‡ä»¶ç³»ç»Ÿä¸Šä½¿ç”¨æ–‡ä»¶é” %s" msgid "Could not get lock %s" msgstr "æ— æ³•èŽ·å¾—é” %s" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "ç‰å¾…å进程 %s 的退出,但是它并ä¸å˜åœ¨" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "å进程 %s å‘生了段错误" -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, c-format msgid "Sub-process %s received signal %u." msgstr "å进程 %s æ”¶åˆ°ä¿¡å· %u。" -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "å进程 %s è¿”å›žäº†ä¸€ä¸ªé”™è¯¯å· (%u)" -#: apt-pkg/contrib/fileutl.cc:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "å进程 %s 异常退出" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "æ— æ³•æ‰“å¼€æ–‡ä»¶ %s" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, c-format msgid "Could not open file descriptor %d" msgstr "æ— æ³•æ‰“å¼€æ–‡ä»¶æ述符 %d" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "读å–文件出错,还剩 %lu å—节没有读出" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "写入文件出错,还剩 %lu å—节没有ä¿å˜" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, c-format msgid "Problem closing the gzip file %s" msgstr "å…³é— gzip %s 文件出错" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, c-format msgid "Problem closing the file %s" msgstr "å…³é—文件 %s 出错" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, c-format msgid "Problem renaming the file %s to %s" msgstr "é‡å‘½å文件 %s 为 %s 出错" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, c-format msgid "Problem unlinking the file %s" msgstr "用 unlink åˆ é™¤æ–‡ä»¶ %s 出错" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "åŒæ¥æ–‡ä»¶å‡ºé”™" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "软件包缓å˜åŒºæ˜¯ç©ºçš„" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "软件包缓å˜æ–‡ä»¶æŸå了" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "软件包缓å˜åŒºæ–‡ä»¶çš„版本ä¸å…¼å®¹" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "本程åºç›®å‰ä¸æ”¯æŒâ€œ%sâ€ç‰ˆæœ¬ç³»ç»Ÿ" -#: apt-pkg/pkgcache.cc:163 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache was built for a different architecture" msgstr "软件包缓å˜åŒºæ˜¯ä¸ºå…¶å®ƒæž¶æž„的硬件构建的" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "ä¾èµ–" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "预ä¾èµ–" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "建议" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "推è" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "冲çª" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "替æ¢" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "废弃" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "ç ´å" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "增强" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "é‡è¦" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "必需" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "æ ‡å‡†" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "å¯é€‰" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "é¢å¤–" @@ -2617,7 +2617,7 @@ msgstr "æ— æ³•è¯†åˆ«åœ¨æºåˆ—表 %3$s 里,第 %2$u è¡Œä¸çš„软件包类别“ #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" "æ— æ³•ç«‹å³å¯¹ %s 进行é…置。请查看 man 5 apt.conf ä¸çš„ APT::Immediate-Configure " @@ -2637,7 +2637,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" "æ— æ³•ç«‹å³å¯¹å·²ç»è§£åŒ…çš„ %s 进行é…置。请查看 man 5 apt.conf ä¸çš„ APT::Immediate-" @@ -2654,7 +2654,7 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "软件包 %s 需è¦é‡æ–°å®‰è£…ï¼Œä½†æ˜¯æˆ‘æ— æ³•æ‰¾åˆ°ç›¸åº”çš„å®‰è£…æ–‡ä»¶ã€‚" -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2662,13 +2662,13 @@ msgstr "" "错误,pkgProblemResolver::Resolve å‘生故障,这å¯èƒ½æ˜¯æœ‰è½¯ä»¶åŒ…被è¦æ±‚ä¿æŒçŽ°çŠ¶çš„" "缘故。" -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "" "æ— æ³•ä¿®æ£é”™è¯¯ï¼Œå› 为您è¦æ±‚æŸäº›è½¯ä»¶åŒ…ä¿æŒçŽ°çŠ¶ï¼Œå°±æ˜¯å®ƒä»¬ç ´å了软件包间的ä¾èµ–å…³" "系。" -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2692,12 +2692,12 @@ msgstr "æ— æ³•å¯¹ç›®å½• %s åŠ é”" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "æ£åœ¨ä¸‹è½½ç¬¬ %li 个文件,共 %li 个(还剩 %s 个)" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "æ£åœ¨ä¸‹è½½ç¬¬ %li 个文件,共 %li 个" @@ -2717,12 +2717,12 @@ msgstr "获å–è½¯ä»¶åŒ…çš„æ¸ é“ %s 所需的驱动程åºæ²¡æœ‰æ£å¸¸å¯åŠ¨ã€‚" msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "è¯·æŠŠæ ‡æœ‰â€œ%sâ€çš„盘片æ’入驱动器“%sâ€å†æŒ‰å›žè½¦é”®ã€‚" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "ä¸æ”¯æŒâ€œ%sâ€æ‰“包系统" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "æ— æ³•ç¡®å®šé€‚åˆçš„打包系统类型" @@ -2743,17 +2743,21 @@ msgstr "æ— æ³•è§£æžæˆ–打开软件包的列表或是状æ€æ–‡ä»¶ã€‚" msgid "You may want to run apt-get update to correct these problems" msgstr "您å¯èƒ½éœ€è¦è¿è¡Œ apt-get update æ¥è§£å†³è¿™äº›é—®é¢˜" -#: apt-pkg/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "æ— æ³•è¯»å–æºåˆ—表。" + +#: apt-pkg/policy.cc:344 #, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "首选项文件 %s ä¸å‘çŽ°æœ‰æ— æ•ˆçš„è®°å½•ï¼Œæ— Package å—段头" -#: apt-pkg/policy.cc:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "æ— æ³•è¯†åˆ«é”定的类型 %s" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "没有为版本é”定指定优先级(或为零)" @@ -2855,42 +2859,42 @@ msgstr "æ— æ³•é‡å‘½å文件,%s (%s -> %s)。" msgid "MD5Sum mismatch" msgstr "MD5 æ ¡éªŒå’Œä¸ç¬¦" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" msgstr "Hash æ ¡éªŒå’Œä¸ç¬¦" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 msgid "There is no public key available for the following key IDs:\n" msgstr "以下 ID 的密钥没有å¯ç”¨çš„公钥:\n" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "Release 文件已过期,忽略 %s (从 %s èµ·æ— æ•ˆ)" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "冲çªçš„å‘行版:%s (期望 %s 但得到 %s)" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "æ ¡éªŒç¾å出错。æ¤ä»“库未被更新,ä»ç„¶ä½¿ç”¨ä»¥å‰çš„索引文件。GPG 错误:%s: %s\n" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "GPG 错误:%s: %s" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2899,7 +2903,7 @@ msgstr "" "æˆ‘æ— æ³•æ‰¾åˆ°ä¸€ä¸ªå¯¹åº” %s 软件包的文件。在这ç§æƒ…况下å¯èƒ½éœ€è¦æ‚¨æ‰‹åŠ¨ä¿®æ£è¿™ä¸ªè½¯ä»¶" "包。(缘于架构缺失)" -#: apt-pkg/acquire-item.cc:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2907,13 +2911,13 @@ msgid "" msgstr "" "æˆ‘æ— æ³•æ‰¾åˆ°å¯¹åº” %s 软件包的文件。在这ç§æƒ…况下您å¯èƒ½éœ€è¦æ‰‹åŠ¨ä¿®æ£è¿™ä¸ªè½¯ä»¶åŒ…。" -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "软件包的索引文件已æŸå。找ä¸åˆ°å¯¹åº”软件包 %s çš„ Filename: å—段。" -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "大å°ä¸ç¬¦" @@ -3038,37 +3042,37 @@ msgstr "æ£åœ¨å†™å…¥æ–°çš„æºåˆ—表\n" msgid "Source list entries for this disc are:\n" msgstr "对应于该盘片的软件æºè®¾ç½®é¡¹æ˜¯ï¼š\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "已写入 %i æ¡è®°å½•ã€‚\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "已写入 %i æ¡è®°å½•ï¼Œå¹¶æœ‰ %i 个文件缺失。\n" -#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "已写入 %i æ¡è®°å½•ï¼Œå¹¶æœ‰ %i 个文件ä¸åŒ¹é…\n" -#: apt-pkg/indexcopy.cc:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "已写入 %i æ¡è®°å½•ï¼Œå¹¶æœ‰ %i ä¸ªç¼ºå¤±ï¼Œä»¥åŠ %i 个文件ä¸åŒ¹é…\n" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, c-format msgid "Skipping nonexistent file %s" msgstr "跳过ä¸å˜åœ¨çš„文件 %s" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "æ— æ³•æ‰¾åˆ°è®¤è¯è®°å½•ï¼š%s" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, c-format msgid "Hash mismatch for: %s" msgstr "Hash æ ¡éªŒå’Œä¸ç¬¦ï¼š%s" @@ -3125,12 +3129,12 @@ msgstr "å› ä¸ºè½¯ä»¶åŒ… %s æ²¡æœ‰å®‰è£…ï¼Œæ— æ³•é€‰æ‹©å®ƒçš„å·²å®‰è£…ç‰ˆæœ¬" msgid "Installing %s" msgstr "æ£åœ¨å®‰è£… %s" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "æ£åœ¨é…ç½® %s" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "æ£åœ¨åˆ 除 %s" @@ -3150,92 +3154,93 @@ msgstr "注æ„到 %s å·²ç»æ¶ˆå¤±" msgid "Running post-installation trigger %s" msgstr "执行安装åŽæ‰§è¡Œçš„触å‘器 %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "目录 %s 缺失" -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Could not open file '%s'" msgstr "æ— æ³•æ‰“å¼€æ–‡ä»¶ %s" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "æ£åœ¨å‡†å¤‡ %s" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "æ£åœ¨è§£åŽ‹ç¼© %s" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "æ£åœ¨å‡†å¤‡é…ç½® %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "已安装 %s" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "æ£åœ¨å‡†å¤‡ %s çš„åˆ é™¤æ“作" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "å·²åˆ é™¤ %s" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "æ£åœ¨å‡†å¤‡å®Œå…¨åˆ 除 %s" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "å®Œå…¨åˆ é™¤äº† %s" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "æ— æ³•å†™å…¥æ—¥å¿—ã€‚ openpty() 失败(没有挂载 /dev/pts ?)\n" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "æ£åœ¨è¿è¡Œ dpkg" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 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:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "ä¾èµ–问题 - ä¿æŒæœªé…ç½®" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 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:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "å› ä¸ºé”™è¯¯æ¶ˆæ¯æŒ‡ç¤ºè¿™æ˜¯ç”±äºŽç£ç›˜å·²æ»¡ï¼Œæ²¡æœ‰å†™å…¥ apport 报告。" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "å› ä¸ºé”™è¯¯æ¶ˆæ¯æŒ‡ç¤ºè¿™æ˜¯ç”±äºŽå†…å˜ä¸è¶³ï¼Œæ²¡æœ‰å†™å…¥ apport 报告。" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "å› ä¸ºé”™è¯¯æ¶ˆæ¯æŒ‡ç¤ºè¿™æ˜¯ä¸€ä¸ª dpkg I/O 错误,没有写入 apport 报告。" diff --git a/po/zh_TW.po b/po/zh_TW.po index 3d5833ab2..f8592526f 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: \n" -"POT-Creation-Date: 2010-08-23 18:41-0400\n" +"POT-Creation-Date: 2010-09-28 17:23+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." @@ -150,14 +150,14 @@ msgstr " 套件鎖定:" msgid " Version table:" msgstr " 版本列表:" -#: cmdline/apt-cache.cc:1732 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 -#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:584 -#: cmdline/apt-get.cc:2740 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-cache.cc:1738 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:70 +#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589 +#: cmdline/apt-get.cc:2758 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s 是用於 %s 並在 %s %s 上編è¯çš„\n" -#: cmdline/apt-cache.cc:1739 +#: cmdline/apt-cache.cc:1745 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -321,31 +321,31 @@ msgstr "無法寫入 %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "無法å–å¾— debconf 版本。是å¦æœ‰å®‰è£ debconf?" -#: ftparchive/apt-ftparchive.cc:168 ftparchive/apt-ftparchive.cc:345 +#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347 msgid "Package extension list is too long" msgstr "套件延伸列表éŽé•·" -#: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:187 -#: ftparchive/apt-ftparchive.cc:210 ftparchive/apt-ftparchive.cc:260 -#: ftparchive/apt-ftparchive.cc:274 ftparchive/apt-ftparchive.cc:296 +#: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189 +#: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262 +#: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298 #, c-format msgid "Error processing directory %s" msgstr "處ç†ç›®éŒ„ %s 時發生錯誤" -#: ftparchive/apt-ftparchive.cc:258 +#: ftparchive/apt-ftparchive.cc:260 msgid "Source extension list is too long" msgstr "原始碼的延伸列表太長" -#: ftparchive/apt-ftparchive.cc:375 +#: ftparchive/apt-ftparchive.cc:377 msgid "Error writing header to contents file" msgstr "寫入標é 資訊到內容檔時發生錯誤" -#: ftparchive/apt-ftparchive.cc:405 +#: ftparchive/apt-ftparchive.cc:407 #, c-format msgid "Error processing contents %s" msgstr "處ç†å…§å®¹ %s 時發生錯誤" -#: ftparchive/apt-ftparchive.cc:590 +#: ftparchive/apt-ftparchive.cc:595 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -423,11 +423,11 @@ msgstr "" " -c=? 讀å–指定的è¨å®šæª”\n" " -o=? 指定任æ„çš„è¨å®šé¸é …" -#: ftparchive/apt-ftparchive.cc:796 +#: ftparchive/apt-ftparchive.cc:801 msgid "No selections matched" msgstr "找ä¸åˆ°ç¬¦åˆçš„é¸é …" -#: ftparchive/apt-ftparchive.cc:874 +#: ftparchive/apt-ftparchive.cc:879 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "套件檔案組 `%s' 少了部份檔案" @@ -539,7 +539,7 @@ msgstr "套件檔裡沒有套件資訊" msgid " %s has no override entry\n" msgstr " %s 沒有é‡æ–°å®šç¾©é …ç›®\n" -#: ftparchive/writer.cc:464 ftparchive/writer.cc:790 +#: ftparchive/writer.cc:464 ftparchive/writer.cc:793 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s çš„ç¶è·è€…是 %sï¼Œè€Œéž %s\n" @@ -649,79 +649,79 @@ msgstr "在å–消 %s 的連çµæ™‚發生å•é¡Œ" msgid "Failed to rename %s to %s" msgstr "無法將 %s æ›´å為 %s" -#: cmdline/apt-get.cc:134 +#: cmdline/apt-get.cc:135 msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:156 apt-pkg/cachefilter.cc:29 +#: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29 #, c-format msgid "Regex compilation error - %s" msgstr "ç·¨è¯æ£è¦è¡¨ç¤ºå¼æ™‚發生錯誤 - %s" -#: cmdline/apt-get.cc:251 +#: cmdline/apt-get.cc:252 msgid "The following packages have unmet dependencies:" msgstr "下列的套件有未滿足的相ä¾é—œä¿‚:" -#: cmdline/apt-get.cc:341 +#: cmdline/apt-get.cc:342 #, c-format msgid "but %s is installed" msgstr "但 %s å»å·²å®‰è£" -#: cmdline/apt-get.cc:343 +#: cmdline/apt-get.cc:344 #, c-format msgid "but %s is to be installed" msgstr "但 %s å»å°‡è¢«å®‰è£" -#: cmdline/apt-get.cc:350 +#: cmdline/apt-get.cc:351 msgid "but it is not installable" msgstr "但它å»ç„¡æ³•å®‰è£" -#: cmdline/apt-get.cc:352 +#: cmdline/apt-get.cc:353 msgid "but it is a virtual package" msgstr "但它是虛擬套件" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not installed" msgstr "但它å»å°šæœªå®‰è£" -#: cmdline/apt-get.cc:355 +#: cmdline/apt-get.cc:356 msgid "but it is not going to be installed" msgstr "但它å»å°‡ä¸æœƒè¢«å®‰è£" -#: cmdline/apt-get.cc:360 +#: cmdline/apt-get.cc:361 msgid " or" msgstr "或" -#: cmdline/apt-get.cc:391 +#: cmdline/apt-get.cc:392 msgid "The following NEW packages will be installed:" msgstr "下列ã€æ–°ã€‘套件將會被安è£ï¼š" -#: cmdline/apt-get.cc:419 +#: cmdline/apt-get.cc:420 msgid "The following packages will be REMOVED:" msgstr "下列套件將會被ã€ç§»é™¤ã€‘:" -#: cmdline/apt-get.cc:441 +#: cmdline/apt-get.cc:442 msgid "The following packages have been kept back:" msgstr "下列套件將會ç¶æŒå…¶åŽŸæœ‰ç‰ˆæœ¬ï¼š" -#: cmdline/apt-get.cc:464 +#: cmdline/apt-get.cc:465 msgid "The following packages will be upgraded:" msgstr "下列套件將會被å‡ç´šï¼š" -#: cmdline/apt-get.cc:487 +#: cmdline/apt-get.cc:488 msgid "The following packages will be DOWNGRADED:" msgstr "下列套件將會被ã€é™ç´šã€‘:" -#: cmdline/apt-get.cc:507 +#: cmdline/apt-get.cc:508 msgid "The following held packages will be changed:" msgstr "下列被ä¿ç•™ (hold) 的套件將會被更改:" -#: cmdline/apt-get.cc:560 +#: cmdline/apt-get.cc:561 #, c-format msgid "%s (due to %s) " msgstr "%sï¼ˆå› ç‚º %s)" -#: cmdline/apt-get.cc:568 +#: cmdline/apt-get.cc:569 msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" @@ -729,65 +729,65 @@ msgstr "" "ã€è¦å‘Šã€‘:下列的基本套件都將被移除。\n" "除éžæ‚¨å¾ˆæ¸…楚您在åšä»€éº¼ï¼Œå¦å‰‡è«‹å‹¿è¼•æ˜“嘗試ï¼" -#: cmdline/apt-get.cc:602 +#: cmdline/apt-get.cc:603 #, c-format msgid "%lu upgraded, %lu newly installed, " msgstr "å‡ç´š %lu å€‹ï¼Œæ–°å®‰è£ %lu 個," -#: cmdline/apt-get.cc:606 +#: cmdline/apt-get.cc:607 #, c-format msgid "%lu reinstalled, " msgstr "é‡æ–°å®‰è£ %lu 個," -#: cmdline/apt-get.cc:608 +#: cmdline/apt-get.cc:609 #, c-format msgid "%lu downgraded, " msgstr "é™ç´š %lu 個," -#: cmdline/apt-get.cc:610 +#: cmdline/apt-get.cc:611 #, c-format msgid "%lu to remove and %lu not upgraded.\n" msgstr "移除 %lu 個,有 %lu 個未被å‡ç´šã€‚\n" -#: cmdline/apt-get.cc:614 +#: cmdline/apt-get.cc:615 #, c-format msgid "%lu not fully installed or removed.\n" msgstr "%lu 個沒有完整得安è£æˆ–移除。\n" -#: cmdline/apt-get.cc:634 +#: cmdline/apt-get.cc:635 #, fuzzy, c-format msgid "Note, selecting '%s' for task '%s'\n" msgstr "注æ„ï¼Œæ ¹æ“šæ£è¦è¡¨ç¤ºå¼ '%2$s' 而é¸æ“‡äº† %1$s\n" -#: cmdline/apt-get.cc:640 +#: cmdline/apt-get.cc:641 #, fuzzy, c-format msgid "Note, selecting '%s' for regex '%s'\n" msgstr "注æ„ï¼Œæ ¹æ“šæ£è¦è¡¨ç¤ºå¼ '%2$s' 而é¸æ“‡äº† %1$s\n" -#: cmdline/apt-get.cc:647 +#: cmdline/apt-get.cc:648 #, fuzzy, c-format msgid "Selected version '%s' (%s) for '%s'\n" msgstr "é¸å®šçš„版本為 %3$s çš„ %1$s (%2$s)\n" -#: cmdline/apt-get.cc:657 +#: cmdline/apt-get.cc:658 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "套件 %s 是虛擬套件,æ供者為:\n" -#: cmdline/apt-get.cc:668 +#: cmdline/apt-get.cc:669 msgid " [Installed]" msgstr "ã€å·²å®‰è£ã€‘" -#: cmdline/apt-get.cc:677 +#: cmdline/apt-get.cc:678 #, fuzzy msgid " [Not candidate version]" msgstr "候é¸ç‰ˆæœ¬" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:680 msgid "You should explicitly select one to install." msgstr "請您明確地é¸æ“‡ä¸€å€‹ä¾†é€²è¡Œå®‰è£ã€‚" -#: cmdline/apt-get.cc:682 +#: cmdline/apt-get.cc:683 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -797,164 +797,167 @@ msgstr "" "無法å–得套件 %s,但它å»è¢«å…¶å®ƒçš„套件引用了。\n" "這æ„味著這個套件å¯èƒ½å·²ç¶“消失了ã€è¢«å»¢æ£„了,或是åªèƒ½ç”±å…¶ä»–的來æºå–å¾—\n" -#: cmdline/apt-get.cc:700 +#: cmdline/apt-get.cc:701 msgid "However the following packages replace it:" msgstr "然而,下列的套件å–代了它:" -#: cmdline/apt-get.cc:712 +#: cmdline/apt-get.cc:713 #, fuzzy, c-format msgid "Package '%s' has no installation candidate" msgstr "套件 %s 沒有å¯å®‰è£çš„候é¸ç‰ˆæœ¬" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:724 #, c-format msgid "Virtual packages like '%s' can't be removed\n" msgstr "" -#: cmdline/apt-get.cc:754 +#: cmdline/apt-get.cc:755 #, fuzzy, c-format msgid "Note, selecting '%s' instead of '%s'\n" msgstr "注æ„,é¸æ“‡äº†ä»¥ %s 替代 %s\n" -#: cmdline/apt-get.cc:784 +#: cmdline/apt-get.cc:785 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "忽略 %s,它已被安è£ä¸”沒有計劃è¦é€²è¡Œå‡ç´šã€‚\n" -#: cmdline/apt-get.cc:788 +#: cmdline/apt-get.cc:789 #, fuzzy, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "忽略 %s,它已被安è£ä¸”沒有計劃è¦é€²è¡Œå‡ç´šã€‚\n" -#: cmdline/apt-get.cc:798 +#: cmdline/apt-get.cc:799 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "無法é‡æ–°å®‰è£ %sï¼Œå› ç‚ºå®ƒç„¡æ³•ä¸‹è¼‰ã€‚\n" -#: cmdline/apt-get.cc:803 +#: cmdline/apt-get.cc:804 #, c-format msgid "%s is already the newest version.\n" msgstr "%s 已經是最新版本了。\n" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:823 cmdline/apt-get.cc:1992 #, c-format msgid "%s set to manually installed.\n" msgstr "%s 被è¨å®šç‚ºæ‰‹å‹•å®‰è£ã€‚\n" -#: cmdline/apt-get.cc:859 +#: cmdline/apt-get.cc:863 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "套件 %s 並沒有被安è£ï¼Œæ‰€ä»¥ä¹Ÿä¸æœƒè¢«ç§»é™¤\n" -#: cmdline/apt-get.cc:934 +#: cmdline/apt-get.cc:938 msgid "Correcting dependencies..." msgstr "æ£åœ¨ä¿®æ£ç›¸ä¾é—œä¿‚..." -#: cmdline/apt-get.cc:937 +#: cmdline/apt-get.cc:941 msgid " failed." msgstr " 失敗。" -#: cmdline/apt-get.cc:940 +#: cmdline/apt-get.cc:944 msgid "Unable to correct dependencies" msgstr "無法修æ£ç›¸ä¾é—œä¿‚" -#: cmdline/apt-get.cc:943 +#: cmdline/apt-get.cc:947 msgid "Unable to minimize the upgrade set" msgstr "無法將å‡ç´šè¨ˆåŠƒæœ€å°åŒ–" -#: cmdline/apt-get.cc:945 +#: cmdline/apt-get.cc:949 msgid " Done" msgstr " 完æˆ" -#: cmdline/apt-get.cc:949 +#: cmdline/apt-get.cc:953 msgid "You might want to run 'apt-get -f install' to correct these." msgstr "您也許得執行 'apt-get -f install' 以修æ£é€™äº›å•é¡Œã€‚" -#: cmdline/apt-get.cc:952 +#: cmdline/apt-get.cc:956 msgid "Unmet dependencies. Try using -f." msgstr "未能滿足相ä¾é—œä¿‚。試試 -f é¸é …。" -#: cmdline/apt-get.cc:977 +#: cmdline/apt-get.cc:981 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ã€è¦å‘Šã€‘:無法驗è‰ä¸‹åˆ—套件ï¼" -#: cmdline/apt-get.cc:981 +#: cmdline/apt-get.cc:985 msgid "Authentication warning overridden.\n" msgstr "忽略了驗è‰è¦å‘Šã€‚\n" -#: cmdline/apt-get.cc:988 +#: cmdline/apt-get.cc:992 msgid "Install these packages without verification [y/N]? " msgstr "是å¦ä¸ç¶“é©—è‰å°±å®‰è£é€™äº›å¥—件?[y/N]" -#: cmdline/apt-get.cc:990 +#: cmdline/apt-get.cc:994 msgid "Some packages could not be authenticated" msgstr "有部份套件無法驗è‰" -#: cmdline/apt-get.cc:999 cmdline/apt-get.cc:1154 +#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:1166 msgid "There are problems and -y was used without --force-yes" msgstr "發生了å•é¡Œï¼Œä¸” -y 並沒有和 --force-yes æé…使用" -#: cmdline/apt-get.cc:1040 +#: cmdline/apt-get.cc:1044 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "內部錯誤,在æ毀的套件上執行 InstallPackagesï¼" -#: cmdline/apt-get.cc:1049 +#: cmdline/apt-get.cc:1053 msgid "Packages need to be removed but remove is disabled." msgstr "有套件需è¦è¢«ç§»é™¤ï¼Œä½†å»è¢«ç¦æ¢ç§»é™¤ã€‚" -#: cmdline/apt-get.cc:1060 +#: cmdline/apt-get.cc:1064 msgid "Internal error, Ordering didn't finish" msgstr "內部錯誤,排åºæœªèƒ½å®Œæˆ" -#: cmdline/apt-get.cc:1085 cmdline/apt-get.cc:2190 cmdline/apt-get.cc:2481 -#: apt-pkg/cachefile.cc:106 -msgid "The list of sources could not be read." -msgstr "無法讀å–來æºåˆ—表。" - -#: cmdline/apt-get.cc:1100 +#: cmdline/apt-get.cc:1104 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "怪哉... 檔案大å°ä¸ç¬¦ï¼Œè«‹ç™¼ä¿¡çµ¦ apt@packages.debian.org" -#: cmdline/apt-get.cc:1105 +#. TRANSLATOR: The required 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:1111 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "需è¦ä¸‹è¼‰ %sB/%sB 的套件檔。\n" -#: cmdline/apt-get.cc:1108 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1116 #, c-format msgid "Need to get %sB of archives.\n" msgstr "需è¦ä¸‹è¼‰ %sB 的套件檔。\n" -#: cmdline/apt-get.cc:1113 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1123 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "æ¤æ“作完æˆä¹‹å¾Œï¼Œæœƒå¤šä½”用 %sB çš„ç£ç¢Ÿç©ºé–“。\n" -#: cmdline/apt-get.cc:1116 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1128 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "æ¤æ“作完æˆä¹‹å¾Œï¼Œæœƒç©ºå‡º %sB çš„ç£ç¢Ÿç©ºé–“。\n" -#: cmdline/apt-get.cc:1131 cmdline/apt-get.cc:1134 cmdline/apt-get.cc:2319 -#: cmdline/apt-get.cc:2322 +#: cmdline/apt-get.cc:1143 cmdline/apt-get.cc:1146 cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Couldn't determine free space in %s" msgstr "ç„¡æ³•ç¢ºèª %s 的未使用空間" -#: cmdline/apt-get.cc:1144 +#: cmdline/apt-get.cc:1156 #, c-format msgid "You don't have enough free space in %s." msgstr "在 %s è£¡æ²’æœ‰è¶³å¤ çš„çš„æœªä½¿ç”¨ç©ºé–“ã€‚" -#: cmdline/apt-get.cc:1160 cmdline/apt-get.cc:1180 +#: cmdline/apt-get.cc:1172 cmdline/apt-get.cc:1192 msgid "Trivial Only specified but this is not a trivial operation." msgstr "雖然指定了 Trivial Onlyï¼ˆè‡ªå‹•ç” NO)é¸é …,但這並ä¸æ˜¯ trivial æ“作。" -#: cmdline/apt-get.cc:1162 +#: cmdline/apt-get.cc:1174 msgid "Yes, do as I say!" msgstr "Yes, do as I say!" -#: cmdline/apt-get.cc:1164 +#: cmdline/apt-get.cc:1176 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -965,28 +968,28 @@ msgstr "" "請輸入 '%s' 這個å¥å以繼續進行\n" " ?] " -#: cmdline/apt-get.cc:1170 cmdline/apt-get.cc:1189 +#: cmdline/apt-get.cc:1182 cmdline/apt-get.cc:1201 msgid "Abort." msgstr "放棄執行。" -#: cmdline/apt-get.cc:1185 +#: cmdline/apt-get.cc:1197 msgid "Do you want to continue [Y/n]? " msgstr "是å¦ç¹¼çºŒé€²è¡Œ [Y/n]?" -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:2375 apt-pkg/algorithms.cc:1434 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:2392 apt-pkg/algorithms.cc:1462 #, c-format msgid "Failed to fetch %s %s\n" msgstr "無法å–å¾— %s,%s\n" -#: cmdline/apt-get.cc:1275 +#: cmdline/apt-get.cc:1287 msgid "Some files failed to download" msgstr "有部份檔案無法下載" -#: cmdline/apt-get.cc:1276 cmdline/apt-get.cc:2384 +#: cmdline/apt-get.cc:1288 cmdline/apt-get.cc:2401 msgid "Download complete and in download only mode" msgstr "下載完æˆï¼Œä¸”這是『僅下載ã€æ¨¡å¼" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1294 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -994,19 +997,19 @@ msgstr "" "有部份套件檔無法å–得,試著執行 apt-get update æˆ–è€…è©¦è‘—åŠ ä¸Š --fix-missing é¸" "é …ï¼Ÿ" -#: cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1298 msgid "--fix-missing and media swapping is not currently supported" msgstr "ç›®å‰å°šæœªæ”¯æ´ --fix-missing 和媒體抽æ›" -#: cmdline/apt-get.cc:1291 +#: cmdline/apt-get.cc:1303 msgid "Unable to correct missing packages." msgstr "無法修æ£æ¬ 缺的套件。" -#: cmdline/apt-get.cc:1292 +#: cmdline/apt-get.cc:1304 msgid "Aborting install." msgstr "放棄安è£ã€‚" -#: cmdline/apt-get.cc:1320 +#: cmdline/apt-get.cc:1332 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -1016,35 +1019,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1324 +#: cmdline/apt-get.cc:1336 msgid "Note: This is done automatic and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1454 +#: cmdline/apt-get.cc:1466 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1498 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "無法å–得來æºå¥—件列表 %s 的狀態" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1524 +#: cmdline/apt-get.cc:1536 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1540 +#: cmdline/apt-get.cc:1552 msgid "The update command takes no arguments" msgstr "update 指令ä¸éœ€ä»»ä½•åƒæ•¸" -#: cmdline/apt-get.cc:1605 +#: cmdline/apt-get.cc:1618 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "我們沒有計劃è¦åˆªé™¤ä»»ä½•æ±è¥¿ï¼Œç„¡æ³•å•Ÿå‹• AutoRemover" -#: cmdline/apt-get.cc:1653 +#: cmdline/apt-get.cc:1666 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -1054,7 +1057,7 @@ msgid_plural "" msgstr[0] "以下套件是被自動安è£é€²ä¾†çš„,且已ä¸å†æœƒè¢«ç”¨åˆ°äº†ï¼š" msgstr[1] "以下套件是被自動安è£é€²ä¾†çš„,且已ä¸å†æœƒè¢«ç”¨åˆ°äº†ï¼š" -#: cmdline/apt-get.cc:1657 +#: cmdline/apt-get.cc:1670 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -1062,11 +1065,11 @@ msgid_plural "" msgstr[0] "以下套件是被自動安è£é€²ä¾†çš„,且已ä¸å†æœƒè¢«ç”¨åˆ°äº†ï¼š" msgstr[1] "以下套件是被自動安è£é€²ä¾†çš„,且已ä¸å†æœƒè¢«ç”¨åˆ°äº†ï¼š" -#: cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:1672 msgid "Use 'apt-get autoremove' to remove them." msgstr "使用 'apt-get autoremove' 來將其移除。" -#: cmdline/apt-get.cc:1664 +#: cmdline/apt-get.cc:1677 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1084,23 +1087,23 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1667 cmdline/apt-get.cc:1809 +#: cmdline/apt-get.cc:1680 cmdline/apt-get.cc:1822 msgid "The following information may help to resolve the situation:" msgstr "以下的資訊或許有助於解決當å‰çš„情æ³ï¼š" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1684 msgid "Internal Error, AutoRemover broke stuff" msgstr "內部錯誤,AutoRemover 處ç†å¤±æ•—" -#: cmdline/apt-get.cc:1690 +#: cmdline/apt-get.cc:1703 msgid "Internal error, AllUpgrade broke stuff" msgstr "內部錯誤,AllUpgrade é€ æˆäº†æ壞" -#: cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1792 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "您也許得執行 'apt-get -f install' 以修æ£é€™äº›å•é¡Œï¼š" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1795 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1108,7 +1111,7 @@ msgstr "" "未能滿足相ä¾é—œä¿‚。請試著ä¸æŒ‡å®šå¥—件來執行 'apt-get -f install'(或採å–其它的解" "決方案)。" -#: cmdline/apt-get.cc:1794 +#: cmdline/apt-get.cc:1807 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" @@ -1118,69 +1121,69 @@ msgstr "" "有些套件無法安è£ã€‚這å¯èƒ½æ„謂著您的è¦æ±‚難以解決,或是若您使用的是\n" "unstable 發行版,å¯èƒ½æœ‰äº›å¿…è¦çš„套件尚未建立,或是被移出 Incoming 了。" -#: cmdline/apt-get.cc:1812 +#: cmdline/apt-get.cc:1825 msgid "Broken packages" msgstr "æ毀的套件" -#: cmdline/apt-get.cc:1841 +#: cmdline/apt-get.cc:1854 msgid "The following extra packages will be installed:" msgstr "下列的é¡å¤–套件將被安è£ï¼š" -#: cmdline/apt-get.cc:1931 +#: cmdline/apt-get.cc:1944 msgid "Suggested packages:" msgstr "建è°å¥—件:" -#: cmdline/apt-get.cc:1932 +#: cmdline/apt-get.cc:1945 msgid "Recommended packages:" msgstr "推薦套件:" -#: cmdline/apt-get.cc:1974 +#: cmdline/apt-get.cc:1987 #, c-format msgid "Couldn't find package %s" msgstr "無法找到套件 %s" -#: cmdline/apt-get.cc:1981 +#: cmdline/apt-get.cc:1994 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "%s 被è¨å®šç‚ºæ‰‹å‹•å®‰è£ã€‚\n" -#: cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:2015 msgid "Calculating upgrade... " msgstr "籌備å‡ç´šä¸... " -#: cmdline/apt-get.cc:2005 methods/ftp.cc:707 methods/connect.cc:111 +#: cmdline/apt-get.cc:2018 methods/ftp.cc:707 methods/connect.cc:111 msgid "Failed" msgstr "失敗" -#: cmdline/apt-get.cc:2010 +#: cmdline/apt-get.cc:2023 msgid "Done" msgstr "完æˆ" -#: cmdline/apt-get.cc:2077 cmdline/apt-get.cc:2085 +#: cmdline/apt-get.cc:2090 cmdline/apt-get.cc:2098 msgid "Internal error, problem resolver broke stuff" msgstr "內部錯誤,å•é¡ŒæŽ’é™¤å™¨é€ æˆäº†æ壞" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2142 +#: cmdline/apt-get.cc:2122 cmdline/apt-get.cc:2155 msgid "Unable to lock the download directory" msgstr "無法鎖定下載目錄" -#: cmdline/apt-get.cc:2185 +#: cmdline/apt-get.cc:2198 msgid "Must specify at least one package to fetch source for" msgstr "在å–å¾—åŽŸå§‹ç¢¼æ™‚å¿…é ˆè‡³å°‘æŒ‡å®šä¸€å€‹å¥—ä»¶" -#: cmdline/apt-get.cc:2225 cmdline/apt-get.cc:2501 +#: cmdline/apt-get.cc:2238 cmdline/apt-get.cc:2519 #, c-format msgid "Unable to find a source package for %s" msgstr "無法找到 %s 的原始碼套件" -#: cmdline/apt-get.cc:2241 +#: cmdline/apt-get.cc:2254 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2246 +#: cmdline/apt-get.cc:2259 #, c-format msgid "" "Please use:\n" @@ -1188,81 +1191,85 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "ç•¥éŽå·²ä¸‹è¼‰çš„檔案 '%s'\n" -#: cmdline/apt-get.cc:2332 +#: cmdline/apt-get.cc:2345 #, c-format msgid "You don't have enough free space in %s" msgstr "在 %s è£¡æ²’æœ‰è¶³å¤ çš„çš„æœªä½¿ç”¨ç©ºé–“" -#: cmdline/apt-get.cc:2338 +#. TRANSLATOR: The required 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:2353 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "需è¦ä¸‹è¼‰ %sB/%sB 的原始套件檔。\n" -#: cmdline/apt-get.cc:2341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2358 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "需è¦ä¸‹è¼‰ %sB 的原始套件檔。\n" -#: cmdline/apt-get.cc:2347 +#: cmdline/apt-get.cc:2364 #, c-format msgid "Fetch source %s\n" msgstr "å–得原始碼 %s\n" -#: cmdline/apt-get.cc:2380 +#: cmdline/apt-get.cc:2397 msgid "Failed to fetch some archives." msgstr "無法å–å¾—æŸäº›å¥—件檔。" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2427 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "ä¸è§£é–‹ï¼Œå› 原始碼已解開至 %s\n" -#: cmdline/apt-get.cc:2422 +#: cmdline/apt-get.cc:2439 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "解開指令 '%s' 失敗。\n" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2440 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "請檢查是å¦å·²å®‰è£äº† 'dpkg-dev' 套件。\n" -#: cmdline/apt-get.cc:2440 +#: cmdline/apt-get.cc:2457 #, c-format msgid "Build command '%s' failed.\n" msgstr "ç·¨è¯æŒ‡ä»¤ '%s' 失敗。\n" -#: cmdline/apt-get.cc:2460 +#: cmdline/apt-get.cc:2477 msgid "Child process failed" msgstr "å程åºå¤±æ•—" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2493 msgid "Must specify at least one package to check builddeps for" msgstr "在檢查編è¯ç›¸ä¾é—œä¿‚æ™‚å¿…é ˆè‡³å°‘æŒ‡å®šä¸€å€‹å¥—ä»¶" -#: cmdline/apt-get.cc:2506 +#: cmdline/apt-get.cc:2524 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "無法å–å¾— %s çš„ç·¨è¯ç›¸ä¾é—œä¿‚資訊" -#: cmdline/apt-get.cc:2526 +#: cmdline/apt-get.cc:2544 #, c-format msgid "%s has no build depends.\n" msgstr "%s 沒有編è¯ç›¸ä¾é—œä¿‚。\n" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2595 #, 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:2630 +#: cmdline/apt-get.cc:2648 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1270,30 +1277,30 @@ msgid "" msgstr "" "無法滿足 %2$s 所è¦æ±‚çš„ %1$s 相ä¾é—œä¿‚ï¼Œå› ç‚ºå¥—ä»¶ %3$s 沒有版本符åˆå…¶ç‰ˆæœ¬éœ€æ±‚" -#: cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:2684 #, 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:2693 +#: cmdline/apt-get.cc:2711 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "無法滿足 %2$s 的相ä¾é—œä¿‚ %1$s:%3$s" -#: cmdline/apt-get.cc:2709 +#: cmdline/apt-get.cc:2727 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "無法滿足套件 %s çš„ç·¨è¯ç›¸ä¾é—œä¿‚。" -#: cmdline/apt-get.cc:2714 +#: cmdline/apt-get.cc:2732 msgid "Failed to process build dependencies" msgstr "無法處ç†ç·¨è¯ç›¸ä¾é—œä¿‚" -#: cmdline/apt-get.cc:2745 +#: cmdline/apt-get.cc:2763 msgid "Supported modules:" msgstr "已支æ´æ¨¡çµ„:" -#: cmdline/apt-get.cc:2786 +#: cmdline/apt-get.cc:2804 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1379,7 +1386,7 @@ msgstr "" "以å–得更多資訊和é¸é …。\n" " 該 APT 有著超級牛力。\n" -#: cmdline/apt-get.cc:2958 +#: cmdline/apt-get.cc:2960 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1623,10 +1630,10 @@ msgstr "檔案 %s/%s 覆寫了套件 %s ä¸çš„相åŒæª”案" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:166 -#: apt-pkg/contrib/fileutl.cc:290 apt-pkg/sourcelist.cc:204 -#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:471 apt-pkg/init.cc:98 -#: apt-pkg/init.cc:106 apt-pkg/clean.cc:33 apt-pkg/policy.cc:306 +#: apt-inst/extract.cc:464 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/fileutl.cc:311 apt-pkg/sourcelist.cc:204 +#: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100 +#: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:307 #: methods/mirror.cc:87 #, c-format msgid "Unable to read %s" @@ -1760,23 +1767,23 @@ msgstr "找ä¸åˆ°å¯ç”¨çš„ control 檔" msgid "Unparsable control file" msgstr "無法分æžçš„ control 檔" -#: methods/bzip2.cc:68 +#: methods/bzip2.cc:65 #, c-format msgid "Couldn't open pipe for %s" msgstr "無法開啟管線給 %s 使用" -#: methods/bzip2.cc:113 +#: methods/bzip2.cc:109 #, c-format msgid "Read error from %s process" msgstr "ç”± %s 程åºè®€å–錯誤" -#: methods/bzip2.cc:145 methods/bzip2.cc:154 methods/copy.cc:43 -#: methods/gzip.cc:96 methods/gzip.cc:105 methods/rred.cc:486 +#: methods/bzip2.cc:141 methods/bzip2.cc:150 methods/copy.cc:43 +#: methods/gzip.cc:93 methods/gzip.cc:102 methods/rred.cc:486 #: methods/rred.cc:495 msgid "Failed to stat" msgstr "無法å–得狀態" -#: methods/bzip2.cc:151 methods/copy.cc:80 methods/gzip.cc:102 +#: methods/bzip2.cc:147 methods/copy.cc:80 methods/gzip.cc:99 #: methods/rred.cc:492 msgid "Failed to set modification time" msgstr "無法è¨å®šä¿®æ”¹æ™‚é–“" @@ -1867,7 +1874,7 @@ msgstr "連線逾時" msgid "Server closed the connection" msgstr "伺æœå™¨å·²é—œé–‰é€£ç·š" -#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:753 methods/rsh.cc:190 +#: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:784 methods/rsh.cc:190 msgid "Read error" msgstr "讀å–錯誤" @@ -1879,7 +1886,7 @@ msgstr "回應超éŽç·©è¡å€é•·åº¦ã€‚" msgid "Protocol corruption" msgstr "å”定失敗" -#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:795 methods/rsh.cc:232 +#: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:826 methods/rsh.cc:232 msgid "Write error" msgstr "寫入錯誤" @@ -1933,7 +1940,7 @@ msgstr "Data socket 連線逾時" msgid "Unable to accept connection" msgstr "無法接å—連線" -#: methods/ftp.cc:869 methods/http.cc:1000 methods/rsh.cc:302 +#: methods/ftp.cc:869 methods/http.cc:1006 methods/rsh.cc:302 msgid "Problem hashing file" msgstr "有å•é¡Œçš„雜湊檔" @@ -2064,67 +2071,67 @@ msgstr "å–å¾—ä¸€å€‹å–®è¡Œè¶…éŽ %u å—元的標é " msgid "Bad header line" msgstr "標é 行錯誤" -#: methods/http.cc:558 methods/http.cc:565 +#: methods/http.cc:564 methods/http.cc:571 msgid "The HTTP server sent an invalid reply header" msgstr "HTTP 伺æœå™¨å‚³é€äº†ä¸€å€‹ç„¡æ•ˆçš„回覆標é " -#: methods/http.cc:594 +#: methods/http.cc:600 msgid "The HTTP server sent an invalid Content-Length header" msgstr "HTTP 伺æœå™¨å‚³é€äº†ä¸€å€‹ç„¡æ•ˆçš„ Content-Length 標é " -#: methods/http.cc:609 +#: methods/http.cc:615 msgid "The HTTP server sent an invalid Content-Range header" msgstr "HTTP 伺æœå™¨å‚³é€äº†ä¸€å€‹ç„¡æ•ˆçš„ Content-Range 標é " -#: methods/http.cc:611 +#: methods/http.cc:617 msgid "This HTTP server has broken range support" msgstr "這個 HTTP 伺æœå™¨çš„範åœæ”¯æ´æœ‰å•é¡Œ" -#: methods/http.cc:635 +#: methods/http.cc:641 msgid "Unknown date format" msgstr "æœªçŸ¥çš„è³‡æ–™æ ¼å¼" -#: methods/http.cc:793 +#: methods/http.cc:799 msgid "Select failed" msgstr "é¸æ“‡å¤±æ•—" -#: methods/http.cc:798 +#: methods/http.cc:804 msgid "Connection timed out" msgstr "連線逾時" -#: methods/http.cc:821 +#: methods/http.cc:827 msgid "Error writing to output file" msgstr "在寫入輸出檔時發生錯誤" -#: methods/http.cc:852 +#: methods/http.cc:858 msgid "Error writing to file" msgstr "在寫入檔案時發生錯誤" -#: methods/http.cc:880 +#: methods/http.cc:886 msgid "Error writing to the file" msgstr "在寫入該檔時發生錯誤" -#: methods/http.cc:894 +#: methods/http.cc:900 msgid "Error reading from server. Remote end closed connection" msgstr "在讀å–伺æœå™¨æ™‚發生錯誤,é 端主機已關閉連線" -#: methods/http.cc:896 +#: methods/http.cc:902 msgid "Error reading from server" msgstr "在讀å–伺æœå™¨æ™‚發生錯誤" -#: methods/http.cc:985 apt-pkg/contrib/mmap.cc:281 +#: methods/http.cc:991 apt-pkg/contrib/mmap.cc:281 msgid "Failed to truncate file" msgstr "無法截çŸæª”案" -#: methods/http.cc:1154 +#: methods/http.cc:1160 msgid "Bad header data" msgstr "錯誤的標é 資料" -#: methods/http.cc:1171 methods/http.cc:1226 +#: methods/http.cc:1177 methods/http.cc:1232 msgid "Connection failed" msgstr "連線失敗" -#: methods/http.cc:1318 +#: methods/http.cc:1324 msgid "Internal error" msgstr "內部錯誤" @@ -2318,14 +2325,14 @@ msgstr "無效的æ“作 %s" msgid "Unable to stat the mount point %s" msgstr "無法å–得掛載點 %s 的狀態" -#: apt-pkg/contrib/cdromutl.cc:162 apt-pkg/contrib/cdromutl.cc:196 -#: apt-pkg/acquire.cc:477 apt-pkg/acquire.cc:502 apt-pkg/clean.cc:39 +#: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209 +#: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39 #: methods/mirror.cc:93 #, c-format msgid "Unable to change to %s" msgstr "無法切æ›è‡³ %s" -#: apt-pkg/contrib/cdromutl.cc:204 +#: apt-pkg/contrib/cdromutl.cc:217 msgid "Failed to stat the cdrom" msgstr "無法å–å¾— CD-ROM 的狀態" @@ -2349,149 +2356,149 @@ msgstr "ä¸åœ¨ä»¥ nfs 掛載的檔案 %s 上使用檔案鎖定" msgid "Could not get lock %s" msgstr "無法將 %s 鎖定" -#: apt-pkg/contrib/fileutl.cc:621 +#: apt-pkg/contrib/fileutl.cc:643 #, c-format msgid "Waited for %s but it wasn't there" msgstr "ç‰å¾… %s 但是它並ä¸å˜åœ¨" -#: apt-pkg/contrib/fileutl.cc:633 +#: apt-pkg/contrib/fileutl.cc:655 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "åç¨‹åº %s 收到一個記憶體錯誤。" -#: apt-pkg/contrib/fileutl.cc:635 +#: apt-pkg/contrib/fileutl.cc:657 #, fuzzy, c-format msgid "Sub-process %s received signal %u." msgstr "åç¨‹åº %s 收到一個記憶體錯誤。" -#: apt-pkg/contrib/fileutl.cc:639 +#: apt-pkg/contrib/fileutl.cc:661 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "åç¨‹åº %s 傳回錯誤碼 (%u)" -#: apt-pkg/contrib/fileutl.cc:641 +#: apt-pkg/contrib/fileutl.cc:663 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "åç¨‹åº %s ä¸é 期得çµæŸ" -#: apt-pkg/contrib/fileutl.cc:697 +#: apt-pkg/contrib/fileutl.cc:728 #, c-format msgid "Could not open file %s" msgstr "無法開啟檔案 %s" -#: apt-pkg/contrib/fileutl.cc:714 +#: apt-pkg/contrib/fileutl.cc:745 #, fuzzy, c-format msgid "Could not open file descriptor %d" msgstr "無法開啟管線給 %s 使用" -#: apt-pkg/contrib/fileutl.cc:774 +#: apt-pkg/contrib/fileutl.cc:805 #, c-format msgid "read, still have %lu to read but none left" msgstr "讀å–,ä»æœ‰ %lu 未讀但已無空間" -#: apt-pkg/contrib/fileutl.cc:807 +#: apt-pkg/contrib/fileutl.cc:838 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "寫入,ä»æœ‰ %lu 待寫入但已沒辨法" -#: apt-pkg/contrib/fileutl.cc:906 +#: apt-pkg/contrib/fileutl.cc:937 #, fuzzy, c-format msgid "Problem closing the gzip file %s" msgstr "在關閉檔案時發生å•é¡Œ" -#: apt-pkg/contrib/fileutl.cc:909 +#: apt-pkg/contrib/fileutl.cc:940 #, fuzzy, c-format msgid "Problem closing the file %s" msgstr "在關閉檔案時發生å•é¡Œ" -#: apt-pkg/contrib/fileutl.cc:914 +#: apt-pkg/contrib/fileutl.cc:945 #, fuzzy, c-format msgid "Problem renaming the file %s to %s" msgstr "在åŒæ¥æª”案時發生å•é¡Œ" -#: apt-pkg/contrib/fileutl.cc:925 +#: apt-pkg/contrib/fileutl.cc:956 #, fuzzy, c-format msgid "Problem unlinking the file %s" msgstr "在刪除檔案時發生å•é¡Œ" -#: apt-pkg/contrib/fileutl.cc:938 +#: apt-pkg/contrib/fileutl.cc:969 msgid "Problem syncing the file" msgstr "在åŒæ¥æª”案時發生å•é¡Œ" -#: apt-pkg/pkgcache.cc:142 +#: apt-pkg/pkgcache.cc:145 msgid "Empty package cache" msgstr "清空套件快å–" -#: apt-pkg/pkgcache.cc:148 +#: apt-pkg/pkgcache.cc:151 msgid "The package cache file is corrupted" msgstr "套件快å–檔æ壞" -#: apt-pkg/pkgcache.cc:153 +#: apt-pkg/pkgcache.cc:156 msgid "The package cache file is an incompatible version" msgstr "套件快å–檔版本ä¸ç¬¦" -#: apt-pkg/pkgcache.cc:158 +#: apt-pkg/pkgcache.cc:161 #, c-format msgid "This APT does not support the versioning system '%s'" msgstr "本 APT ä¸æ”¯æ´ '%s' 版本系統" -#: apt-pkg/pkgcache.cc:163 +#: apt-pkg/pkgcache.cc:166 msgid "The package cache was built for a different architecture" msgstr "這個套件快å–是用於å¦ä¸€ç¨®å¹³å°çš„" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Depends" msgstr "相ä¾é—œä¿‚" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "PreDepends" msgstr "é 先相ä¾é—œä¿‚" -#: apt-pkg/pkgcache.cc:290 +#: apt-pkg/pkgcache.cc:293 msgid "Suggests" msgstr "建è°" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Recommends" msgstr "推薦" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Conflicts" msgstr "è¡çª" -#: apt-pkg/pkgcache.cc:291 +#: apt-pkg/pkgcache.cc:294 msgid "Replaces" msgstr "å–代" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Obsoletes" msgstr "廢棄" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Breaks" msgstr "毀æ" -#: apt-pkg/pkgcache.cc:292 +#: apt-pkg/pkgcache.cc:295 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "important" msgstr "é‡è¦" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "required" msgstr "å¿…è¦" -#: apt-pkg/pkgcache.cc:303 +#: apt-pkg/pkgcache.cc:306 msgid "standard" msgstr "標準" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "optional" msgstr "次è¦" -#: apt-pkg/pkgcache.cc:304 +#: apt-pkg/pkgcache.cc:307 msgid "extra" msgstr "é¡å¤–" @@ -2609,7 +2616,7 @@ msgstr "未知的類型 '%1$s',ä½æ–¼åœ¨ä¾†æºåˆ—表 %3$s ä¸çš„第 %2$u è¡Œ" #: apt-pkg/packagemanager.cc:331 apt-pkg/packagemanager.cc:616 #, c-format msgid "" -"Could not perform immediate configuration on '%s'.Please see man 5 apt.conf " +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" @@ -2626,7 +2633,7 @@ msgstr "" #: apt-pkg/packagemanager.cc:495 #, c-format msgid "" -"Could not perform immediate configuration on already unpacked '%s'.Please " +"Could not perform immediate configuration on already unpacked '%s'. Please " "see man 5 apt.conf under APT::Immediate-Configure for details." msgstr "" @@ -2641,7 +2648,7 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "套件 %s 需è¦é‡æ–°å®‰è£ï¼Œä½†æ‰¾ä¸åˆ°å®ƒçš„套件檔。" -#: apt-pkg/algorithms.cc:1182 +#: apt-pkg/algorithms.cc:1210 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2649,11 +2656,11 @@ msgstr "" "錯誤,pkgProblemResolver::Resolve 的建立ä¸æ–·äº†ï¼Œé€™å¯èƒ½è‚‡å› æ–¼ä¿ç•™ (hold) 套" "件。" -#: apt-pkg/algorithms.cc:1184 +#: apt-pkg/algorithms.cc:1212 msgid "Unable to correct problems, you have held broken packages." msgstr "無法修æ£å•é¡Œï¼Œæ‚¨ä¿ç•™ (hold) 了æ毀的套件。" -#: apt-pkg/algorithms.cc:1460 apt-pkg/algorithms.cc:1462 +#: apt-pkg/algorithms.cc:1488 apt-pkg/algorithms.cc:1490 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2676,12 +2683,12 @@ msgstr "無法鎖定列表目錄" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:878 +#: apt-pkg/acquire.cc:857 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "æ£åœ¨å–得檔案 %li/%li(還有 %s)" -#: apt-pkg/acquire.cc:880 +#: apt-pkg/acquire.cc:859 #, c-format msgid "Retrieving file %li of %li" msgstr "æ£åœ¨å–得檔案 %li/%li" @@ -2701,12 +2708,12 @@ msgstr "安è£æ–¹å¼ %s 沒有æ£ç¢ºå•Ÿå‹•" msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "請把標籤為 '%s' 的光碟放入 '%s' è£ç½®ä¸ï¼Œç„¶å¾ŒæŒ‰ä¸‹ [Enter] éµã€‚" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:143 #, c-format msgid "Packaging system '%s' is not supported" msgstr "ä¸æ”¯æ´çš„套件包è£ç³»çµ± '%s'" -#: apt-pkg/init.cc:157 +#: apt-pkg/init.cc:159 msgid "Unable to determine a suitable packaging system type" msgstr "無法確èªåˆé©çš„套件包è£ç³»çµ±é¡žåž‹" @@ -2727,17 +2734,21 @@ msgstr "無法分æžæˆ–開啟套件清單或狀æ³æª”。" msgid "You may want to run apt-get update to correct these problems" msgstr "您也許得執行 apt-get update 以修æ£é€™äº›å•é¡Œ" -#: apt-pkg/policy.cc:343 +#: apt-pkg/cachefile.cc:106 +msgid "The list of sources could not be read." +msgstr "無法讀å–來æºåˆ—表。" + +#: apt-pkg/policy.cc:344 #, fuzzy, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "個人è¨å®šæª”ä¸æœ‰äº›ä¸æ£ç¢ºè³‡æ–™ï¼Œæ²’有以 Package é–‹é " -#: apt-pkg/policy.cc:365 +#: apt-pkg/policy.cc:366 #, c-format msgid "Did not understand pin type %s" msgstr "無法分æžéŽ–定類型 %s" -#: apt-pkg/policy.cc:373 +#: apt-pkg/policy.cc:374 msgid "No priority (or zero) specified for pin" msgstr "éŠ·å®šä¸¦æ²’æœ‰å„ªå…ˆé †åºä¹‹åˆ†ï¼ˆæˆ–零)" @@ -2839,41 +2850,41 @@ msgstr "無法é‡æ–°å‘½å,%s (%s -> %s)。" msgid "MD5Sum mismatch" msgstr "MD5Sum ä¸ç¬¦" -#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1570 -#: apt-pkg/acquire-item.cc:1713 +#: apt-pkg/acquire-item.cc:746 apt-pkg/acquire-item.cc:1574 +#: apt-pkg/acquire-item.cc:1717 msgid "Hash Sum mismatch" msgstr "Hash Sum ä¸ç¬¦" -#: apt-pkg/acquire-item.cc:1240 +#: apt-pkg/acquire-item.cc:1244 msgid "There is no public key available for the following key IDs:\n" msgstr "無法å–得以下的密鑰 ID 的公鑰:\n" #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is #. the time since then the file is invalid - formated in the same way as in #. the download progress display (e.g. 7d 3h 42min 1s) -#: apt-pkg/acquire-item.cc:1277 +#: apt-pkg/acquire-item.cc:1281 #, fuzzy, c-format msgid "Release file expired, ignoring %s (invalid since %s)" msgstr "Release 檔已éŽæœŸï¼Œç•¥éŽ %sï¼ˆæœ‰æ•ˆæœŸé™ %s)" -#: apt-pkg/acquire-item.cc:1298 +#: apt-pkg/acquire-item.cc:1302 #, c-format msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "發行版本è¡çªï¼š%s(應當是 %s 但å»å¾—到 %s)" -#: apt-pkg/acquire-item.cc:1324 +#: apt-pkg/acquire-item.cc:1328 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used.GPG error: %s: %s\n" +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1333 +#: apt-pkg/acquire-item.cc:1337 #, c-format msgid "GPG error: %s: %s" msgstr "" -#: apt-pkg/acquire-item.cc:1361 +#: apt-pkg/acquire-item.cc:1365 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2882,20 +2893,20 @@ msgstr "" "找ä¸åˆ° %s 套件的æŸå€‹æª”案。這æ„味著您å¯èƒ½è¦æ‰‹å‹•ä¿®å¾©é€™å€‹å¥—ä»¶ã€‚ï¼ˆå› ç‚ºæ‰¾ä¸åˆ°å¹³" "å°ï¼‰" -#: apt-pkg/acquire-item.cc:1420 +#: apt-pkg/acquire-item.cc:1424 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " "manually fix this package." msgstr "找ä¸åˆ° %s 套件的æŸå€‹æª”案。這æ„味著您å¯èƒ½è¦æ‰‹å‹•ä¿®å¾©é€™å€‹å¥—件。" -#: apt-pkg/acquire-item.cc:1475 +#: apt-pkg/acquire-item.cc:1479 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "這個套件的索引檔æ壞了。沒有套件 %s çš„ Filename: 欄ä½ã€‚" -#: apt-pkg/acquire-item.cc:1562 +#: apt-pkg/acquire-item.cc:1566 msgid "Size mismatch" msgstr "大å°ä¸ç¬¦" @@ -3016,37 +3027,37 @@ msgstr "æ£åœ¨å¯«å…¥æ–°çš„來æºåˆ—表\n" msgid "Source list entries for this disc are:\n" msgstr "該碟片的來æºåˆ—è¡¨é …ç›®ç‚ºï¼š\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:902 +#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:908 #, c-format msgid "Wrote %i records.\n" msgstr "寫入 %i ç†ç´€éŒ„。\n" -#: apt-pkg/indexcopy.cc:267 apt-pkg/indexcopy.cc:904 +#: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:910 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "寫入 %i ç†ç´€ç¶ ,其ä¸æœ‰ %i 個檔案éºå¤±äº†ã€‚\n" -#: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:907 +#: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:913 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "寫入 %i ç†ç´€ç¶ ,其ä¸æœ‰ %i 個檔案ä¸ç¬¦\n" -#: apt-pkg/indexcopy.cc:273 apt-pkg/indexcopy.cc:910 +#: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:916 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "寫入 %i ç†ç´€ç¶ ,其ä¸æœ‰ %i 個檔案éºå¤±äº†ï¼Œæœ‰ %i 個檔案ä¸ç¬¦\n" -#: apt-pkg/indexcopy.cc:532 +#: apt-pkg/indexcopy.cc:537 #, fuzzy, c-format msgid "Skipping nonexistent file %s" msgstr "é–‹å•Ÿè¨å®šæª” %s" -#: apt-pkg/indexcopy.cc:538 +#: apt-pkg/indexcopy.cc:543 #, c-format msgid "Can't find authentication record for: %s" msgstr "" -#: apt-pkg/indexcopy.cc:544 +#: apt-pkg/indexcopy.cc:549 #, fuzzy, c-format msgid "Hash mismatch for: %s" msgstr "Hash Sum ä¸ç¬¦" @@ -3103,12 +3114,12 @@ msgstr "" msgid "Installing %s" msgstr "æ£åœ¨å®‰è£ %s" -#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:819 +#: apt-pkg/deb/dpkgpm.cc:53 apt-pkg/deb/dpkgpm.cc:822 #, c-format msgid "Configuring %s" msgstr "æ£åœ¨è¨å®š %s" -#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:826 +#: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:829 #, c-format msgid "Removing %s" msgstr "æ£åœ¨ç§»é™¤ %s" @@ -3128,92 +3139,93 @@ msgstr "" msgid "Running post-installation trigger %s" msgstr "æ£åœ¨åŸ·è¡Œå®‰è£å¾Œå¥—件後續處ç†ç¨‹å¼ %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:646 #, c-format msgid "Directory '%s' missing" msgstr "找ä¸åˆ° '%s' 目錄" -#: apt-pkg/deb/dpkgpm.cc:658 apt-pkg/deb/dpkgpm.cc:671 +#: apt-pkg/deb/dpkgpm.cc:661 apt-pkg/deb/dpkgpm.cc:674 #, fuzzy, c-format msgid "Could not open file '%s'" msgstr "無法開啟檔案 %s" -#: apt-pkg/deb/dpkgpm.cc:812 +#: apt-pkg/deb/dpkgpm.cc:815 #, c-format msgid "Preparing %s" msgstr "æ£åœ¨æº–å‚™ %s" -#: apt-pkg/deb/dpkgpm.cc:813 +#: apt-pkg/deb/dpkgpm.cc:816 #, c-format msgid "Unpacking %s" msgstr "æ£åœ¨è§£é–‹ %s" -#: apt-pkg/deb/dpkgpm.cc:818 +#: apt-pkg/deb/dpkgpm.cc:821 #, c-format msgid "Preparing to configure %s" msgstr "æ£åœ¨æº–å‚™è¨å®š %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:823 #, c-format msgid "Installed %s" msgstr "å·²å®‰è£ %s" -#: apt-pkg/deb/dpkgpm.cc:825 +#: apt-pkg/deb/dpkgpm.cc:828 #, c-format msgid "Preparing for removal of %s" msgstr "æ£åœ¨æº–備移除 %s" -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-pkg/deb/dpkgpm.cc:830 #, c-format msgid "Removed %s" msgstr "已移除 %s" -#: apt-pkg/deb/dpkgpm.cc:832 +#: apt-pkg/deb/dpkgpm.cc:835 #, c-format msgid "Preparing to completely remove %s" msgstr "æ£åœ¨æº–備完整移除 %s" -#: apt-pkg/deb/dpkgpm.cc:833 +#: apt-pkg/deb/dpkgpm.cc:836 #, c-format msgid "Completely removed %s" msgstr "已完整移除 %s" -#: apt-pkg/deb/dpkgpm.cc:1039 +#: apt-pkg/deb/dpkgpm.cc:1042 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "無法寫入記錄檔,openpty() 失敗(/dev/pts 未掛載?)\n" -#: apt-pkg/deb/dpkgpm.cc:1070 +#: apt-pkg/deb/dpkgpm.cc:1073 msgid "Running dpkg" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1273 +#: apt-pkg/deb/dpkgpm.cc:1276 msgid "No apport report written because MaxReports is reached already" msgstr "" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1278 +#: apt-pkg/deb/dpkgpm.cc:1281 msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1280 +#: apt-pkg/deb/dpkgpm.cc:1283 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1286 +#: apt-pkg/deb/dpkgpm.cc:1289 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1292 +#: apt-pkg/deb/dpkgpm.cc:1295 msgid "" "No apport report written because the error message indicates a out of memory " "error" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1299 +#: apt-pkg/deb/dpkgpm.cc:1302 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" diff --git a/test/integration/Packages-bug-598669-install-postfix-gets-exim-heavy b/test/integration/Packages-bug-598669-install-postfix-gets-exim-heavy new file mode 100644 index 000000000..a249d6ed3 --- /dev/null +++ b/test/integration/Packages-bug-598669-install-postfix-gets-exim-heavy @@ -0,0 +1,30 @@ +Package: exim4-daemon-heavy +Priority: optional +Section: mail +Installed-Size: 1060 +Maintainer: Exim4 Maintainers <pkg-exim4-maintainers@lists.alioth.debian.org> +Architecture: i386 +Source: exim4 +Version: 4.72-1 +Replaces: mail-transport-agent +Provides: mail-transport-agent +Conflicts: mail-transport-agent +Filename: pool/main/e/exim4/exim4-daemon-heavy_4.72-1_i386.deb +Size: 508988 +MD5sum: 7adf3b0ef8f134e70d19ee216e6f4452 +Description: Exim MTA (v4) daemon with extended features, including exiscan-acl + +Package: postfix +Priority: extra +Section: mail +Installed-Size: 3196 +Maintainer: LaMont Jones <lamont@debian.org> +Architecture: i386 +Version: 2.7.1-1 +Replaces: mail-transport-agent +Provides: mail-transport-agent +Conflicts: mail-transport-agent +Filename: pool/main/p/postfix/postfix_2.7.1-1_i386.deb +Size: 1325662 +MD5sum: 1ef63b6a62b4be120a9cdc312b81a698 +Description: High-performance mail transport agent diff --git a/test/integration/Packages-policy-pinning b/test/integration/Packages-policy-pinning new file mode 100644 index 000000000..a9334e9dd --- /dev/null +++ b/test/integration/Packages-policy-pinning @@ -0,0 +1,12 @@ +Package: oldstuff +Version: 1.0 +Architecture: i386 +Maintainer: Joe Sixpack <joe@example.org> +Installed-Size: 100 +Filename: pool/oldstuff_1.0_i386.deb +Size: 100000 +MD5sum: 311aeeadf78324aaff54c9b4e1f76671 +SHA1: 3c695e028f74d5c544deeddaaa1242desa81088c +SHA256: b46fd1546151c545fe4bfa56a5cc0e7deaef23e2da3e4f129727fd660f28f050 +Description: some old but cool stuff + This package will disappear in the next mirror update diff --git a/test/integration/Packages-ubuntu-bug-614993 b/test/integration/Packages-ubuntu-bug-614993 new file mode 100644 index 000000000..f1d4593e0 --- /dev/null +++ b/test/integration/Packages-ubuntu-bug-614993 @@ -0,0 +1,1819 @@ +Package: libx11-xcb1 +Priority: optional +Section: libs +Installed-Size: 184 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Source: libx11 +Version: 2:1.3.3-3ubuntu1 +Depends: libc6 (>= 2.2.5), libx11-6 +Conflicts: libx11-6 (<< 2:1.1) +Filename: pool/main/libx/libx11/libx11-xcb1_1.3.3-3ubuntu1_amd64.deb +Size: 90286 +MD5sum: 56c300a1110d9b08ab7760e375724034 +SHA1: 81fd3a089e0141236ac4dd49e98f58d7b6db3af3 +SHA256: 97a7b225bbccc6a64e2264e7ca53bb585e12982e037d26f1b22fae2c79127dc0 +Description: Xlib/XCB interface library + libX11-xcb provides functions needed by clients which take advantage of + Xlib/XCB to mix calls to both Xlib and XCB over the same X connection. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + More information about XCB can be found at: + <URL:http://xcb.freedesktop.org> + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libX11 +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: libxcb-aux0 +Priority: extra +Section: libdevel +Installed-Size: 68 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Julien Danjou <acid@debian.org> +Architecture: amd64 +Source: xcb-util +Version: 0.3.6-1build1 +Depends: libc6 (>= 2.2.5), libxcb1 (>= 0) +Filename: pool/main/x/xcb-util/libxcb-aux0_0.3.6-1build1_amd64.deb +Size: 8962 +MD5sum: a35d570e9231a01ff6de0ec872638787 +SHA1: c551ed6a9b1b6c1d201537b85f4003926aa2833d +SHA256: 047ee120e83adbed4c57ff175e59ca02a772e7d4a5d1d014ff72d6f0da41e9ca +Description: utility libraries for X C Binding -- aux + This package contains the library files needed to run software using + libxcb-aux, providing convenient access to connection setup and some + core requests. + . + The xcb-util module provides a number of libraries which sit on top of + libxcb, the core X protocol library, and some of the extension + libraries. These experimental libraries provide convenience functions + and interfaces which make the raw X protocol more usable. Some of the + libraries also provide client-side code which is not strictly part of + the X protocol but which have traditionally been provided by Xlib. +Homepage: http://xcb.freedesktop.org +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, ubuntu-netbook + +Package: libxcb-dri2-0 +Priority: optional +Section: libs +Installed-Size: 68 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: XCB Developers <xcb@lists.freedesktop.org> +Architecture: amd64 +Source: libxcb +Version: 1.6-1 +Depends: libc6 (>= 2.2.5), libxcb1 (>= 0) +Filename: pool/main/libx/libxcb/libxcb-dri2-0_1.6-1_amd64.deb +Size: 10130 +MD5sum: 13f3278d872f700c5e2363cab9feb5db +SHA1: cc51153c443558292604acb98043517075332263 +SHA256: 2fe00f4216eb408b0e70ffd7681b81fc750a242661790c636998dfe5738be05d +Description: X C Binding, dri2 extension + This package contains the library files needed to run software using + libxcb-dri2, the dri2 extension for the X C Binding. + . + The XCB library provides an interface to the X Window System protocol, + designed to replace the Xlib interface. XCB provides several advantages over + Xlib: + . + * Size: small library and lower memory footprint + * Latency hiding: batch several requests and wait for the replies later + * Direct protocol access: one-to-one mapping between interface and protocol + * Thread support: access XCB from multiple threads, with no explicit locking + * Easy creation of new extensions: automatically generates interface from + machine-parsable protocol descriptions +Homepage: http://xcb.freedesktop.org +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + + +Package: libmtdev1 +Priority: optional +Section: libs +Installed-Size: 72 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: mtdev +Version: 1.0.9-0ubuntu1 +Depends: libc6 (>= 2.4) +Filename: pool/main/m/mtdev/libmtdev1_1.0.9-0ubuntu1_amd64.deb +Size: 10980 +MD5sum: 694e8cee8d0d21591fa308ddd1b1e41f +SHA1: 7ea377dec6755a3e659c116a989145609fc7e9a9 +SHA256: 88075b13ad116e38d33c84e63fa5e6195c84df16f4741c4054520618d7f17797 +Description: Multitouch Protocol Translation Library - shared library + libmtdev is a library for translating evdev multitouch events using the legacy + protocol to the new multitouch slots protocol. This is necessary for kernel + drivers that have not been updated to use the newer protocol. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: libutouch-grail1 +Priority: optional +Section: libs +Installed-Size: 84 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: utouch-grail +Version: 1.0.11-0ubuntu1 +Depends: libc6 (>= 2.4), libmtdev1 (>= 1.0.8) +Breaks: libutouch-geis1 (<= 1.0.8), xserver-xorg-input-gevdev (<= 1:2.3.2-6ubuntu1) +Filename: pool/main/u/utouch-grail/libutouch-grail1_1.0.11-0ubuntu1_amd64.deb +Size: 15360 +MD5sum: 210ad74aa06bf676d9ab0200fc2a1d19 +SHA1: 734014bca516535b85b3e3eb5f76734d1dca066a +SHA256: 0905710584348b58ee88f520c874d4d5198b6be38daff8a761ad263b0c350a6a +Description: Gesture Recognition And Instantiation Library + This library consists of an interface and tools for handling gesture + recognition and gesture instantiation. Applications can use the grail + callbacks to receive gesture primitives and raw input events from the + underlying kernel device. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: libdrm-intel1 +Priority: required +Section: libs +Installed-Size: 116 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Source: libdrm +Version: 2.4.21-1ubuntu2 +Depends: libc6 (>= 2.3.4), libdrm2 (>= 2.4.1) +Filename: pool/main/libd/libdrm/libdrm-intel1_2.4.21-1ubuntu2_amd64.deb +Size: 33178 +MD5sum: 2d647434700294708fcaa815bc75ca07 +SHA1: f808f92ca2c86d07e654f92cffe6a806bef53c64 +SHA256: 069eb06161ca6e17d29a8cc67c7eac21c6f935292d4f208e802d595da521566b +Description: Userspace interface to intel-specific kernel DRM services -- runtime + This library implements the userspace interface to the intel-specific kernel + DRM services. DRM stands for "Direct Rendering Manager", which is the + kernelspace portion of the "Direct Rendering Infrastructure" (DRI). The DRI is + currently used on Linux to provide hardware-accelerated OpenGL drivers. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: minimal + +Package: libdrm-nouveau1 +Priority: required +Section: libs +Installed-Size: 96 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Source: libdrm +Version: 2.4.21-1ubuntu2 +Depends: libc6 (>= 2.3.4), libdrm2 (>= 2.4.3) +Breaks: xserver-xorg-video-nouveau (<< 1:0.0.16) +Filename: pool/main/libd/libdrm/libdrm-nouveau1_2.4.21-1ubuntu2_amd64.deb +Size: 22290 +MD5sum: dd13107a609c4ef288aef8e0cf7c6bbe +SHA1: 3c17fcf1421f2585f3b6385eb434f8caa2ee56b8 +SHA256: f02f625b172a871e2c93a01234cb608e2c21ba21a6f76d48fff0dc743156d3a5 +Description: Userspace interface to nouveau-specific kernel DRM services -- runtime + This library implements the userspace interface to the nouveau-specific kernel + DRM services. DRM stands for "Direct Rendering Manager", which is the + kernelspace portion of the "Direct Rendering Infrastructure" (DRI). The DRI is + currently used on Linux to provide hardware-accelerated OpenGL drivers. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: minimal + +Package: libdrm-radeon1 +Priority: required +Section: libs +Installed-Size: 96 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Source: libdrm +Version: 2.4.21-1ubuntu2 +Depends: libc6 (>= 2.3.4), libdrm2 (>= 2.4.3) +Filename: pool/main/libd/libdrm/libdrm-radeon1_2.4.21-1ubuntu2_amd64.deb +Size: 23196 +MD5sum: 7d8c85369e9d9deaaff960715fb8cb5d +SHA1: b39304c4f1cce9c00b2c4e01845cc03760d97ca5 +SHA256: c282a95b5ee4361c3e1fd49cfe5f862ada91a9caa9c338b634aab2b792707800 +Description: Userspace interface to radeon-specific kernel DRM services -- runtime + This library implements the userspace interface to the radeon-specific kernel + DRM services. DRM stands for "Direct Rendering Manager", which is the + kernelspace portion of the "Direct Rendering Infrastructure" (DRI). The DRI is + currently used on Linux to provide hardware-accelerated OpenGL drivers. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: minimal + +Package: libdrm2 +Priority: required +Section: libs +Installed-Size: 120 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Source: libdrm +Version: 2.4.21-1ubuntu2 +Depends: libc6 (>= 2.7) +Filename: pool/main/libd/libdrm/libdrm2_2.4.21-1ubuntu2_amd64.deb +Size: 32386 +MD5sum: a66179dec8fa282a72d323cb85386a0c +SHA1: b06c48d149ad466c4e0c1f316573d8faa2924210 +SHA256: af7beb6b31b54371fdc6ec3c624199b323ac80d5043e4c5931ba1bf740462b10 +Description: Userspace interface to kernel DRM services -- runtime + This library implements the userspace interface to the kernel DRM + services. DRM stands for "Direct Rendering Manager", which is the + kernelspace portion of the "Direct Rendering Infrastructure" (DRI). + The DRI is currently used on Linux to provide hardware-accelerated + OpenGL drivers. + . + This package provides the runtime environment for libdrm. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: minimal + +Package: libxfont1 +Priority: optional +Section: libs +Installed-Size: 332 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Source: libxfont +Version: 1:1.4.2-1 +Depends: libbz2-1.0, libc6 (>= 2.4), libfontenc1, libfreetype6 (>= 2.2.1), zlib1g (>= 1:1.1.4) +Conflicts: xprint (<< 2:1.6.0-1) +Filename: pool/main/libx/libxfont/libxfont1_1.4.2-1_amd64.deb +Size: 156844 +MD5sum: 4ad60ad1f3096f03eabcf30dedb2c2ce +SHA1: 2a1e83c35583fe2f8351783a160326b48c4559b3 +SHA256: 97c121164fdef2e6f7332c27422fc07d2d7b3f137415b3ec3a6083e471f3290e +Description: X11 font rasterisation library + libXfont provides various services for X servers, most notably font + selection and rasterisation (through external libraries). + . + More information about X.Org can be found at: + <URL:http://www.X.org> + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libXfont +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, eucalyptus-cloud, eucalyptus-storage, print-server, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-common +Priority: optional +Section: x11 +Installed-Size: 176 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: all +Source: xorg-server +Version: 2:1.9.0-0ubuntu2 +Replaces: xserver-xorg-core (<< 2:1.5.2) +Depends: x11-common, xkb-data, x11-xkb-utils +Recommends: xfonts-base, xauth +Filename: pool/main/x/xorg-server/xserver-common_1.9.0-0ubuntu2_all.deb +Size: 86390 +MD5sum: 278a92c5c0b5dc2189ab7b7493b69add +SHA1: 46734bd7889084fe8a296ac50ed6c81bbdcb322a +SHA256: f2757c722684626f21b638fe8de2347c3a4ce5e686af5d6ab38a8e12755762b1 +Description: common files used by various X servers + This package provides files necessary for all X.Org based X servers. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xephyr +Priority: optional +Section: x11 +Installed-Size: 2164 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Source: xorg-server +Version: 2:1.9.0-0ubuntu2 +Depends: xserver-common (>= 2:1.9.0-0ubuntu2), libc6 (>= 2.4), libdrm2 (>= 2.3.1), libgcrypt11 (>= 1.4.2), libgl1-mesa-glx | libgl1, libpixman-1-0 (>= 0.15.16), libx11-6, libxau6, libxdmcp6, libxext6, libxfont1 (>= 1:1.4.2), libxv1 +Recommends: libgl1-mesa-dri (>= 7.1~rc1) +Filename: pool/main/x/xorg-server/xserver-xephyr_1.9.0-0ubuntu2_amd64.deb +Size: 1005784 +MD5sum: 93f42d8e5a4ccaac790908d9490aff49 +SHA1: 8c657f7ed9a5fea1bc72c341d690f89f7b2be852 +SHA256: 6ab0c82b3082bf3acfc9b54f63dbb472c55ca69b1dab06fc27e34ffd145c3881 +Description: nested X server + Xephyr is an X server that can be run inside another X server, + much like Xnest. It is based on the kdrive X server, and as a + result it supports newer extensions than Xnest, including render and + composite. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + . + This package is built from the X.org xserver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: edubuntu-desktop-gnome + +Package: xserver-xorg +Priority: optional +Section: x11 +Installed-Size: 180 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Source: xorg +Version: 1:7.5+6ubuntu3 +Replaces: x11-common (<< 1:7.3+11), xserver-common (<< 7) +Depends: xserver-xorg-core (>= 2:1.8.99.905), xserver-xorg-video-all | xserver-xorg-video-8, xserver-xorg-input-all | xserver-xorg-input-11, xserver-xorg-input-evdev, libc6 (>= 2.7), xkb-data (>= 1.4), x11-xkb-utils, console-setup +Recommends: libgl1-mesa-dri +Conflicts: x11-common (<< 1:7.3+11), xserver-common (<< 7), xserver-xfree86 (<< 6.8.2.dfsg.1-1) +Filename: pool/main/x/xorg/xserver-xorg_7.5+6ubuntu3_amd64.deb +Size: 20560 +MD5sum: 5f4f0c969d2758cee7ce5244917df903 +SHA1: 58290e5672b6e3223dc63db33b3196d3eaa44df6 +SHA256: 35b04c220fe1b76f52fca42bb97abeed2c9e8554ff280e42f7c4ad3017985632 +Description: the X.Org X server + This package depends on the full suite of the server and drivers for the + X.Org X server. It does not provide the actual server itself. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-core +Priority: optional +Section: x11 +Installed-Size: 4108 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Source: xorg-server +Version: 2:1.9.0-0ubuntu2 +Provides: xorg-input-abi-11.0, xorg-video-abi-8.0, xserver +Depends: xserver-common (>= 2:1.9.0-0ubuntu2), xserver-xorg, udev (>= 149), libc6 (>= 2.7), libdrm2 (>= 2.3.1), libgcrypt11 (>= 1.4.2), libpciaccess0 (>= 0.10.7), libpixman-1-0 (>= 0.15.16), libudev0 (>= 147), libxau6, libxdmcp6, libxfont1 (>= 1:1.4.2) +Recommends: libgl1-mesa-dri (>= 7.1~rc1) +Suggests: xfonts-100dpi | xfonts-75dpi, xfonts-scalable +Breaks: xserver-xorg-input, xserver-xorg-input-2, xserver-xorg-input-2.1, xserver-xorg-input-4, xserver-xorg-input-7, xserver-xorg-input-joystick (<= 1:1.5.0-3), xserver-xorg-input-synaptics (<= 1.2.2-1ubuntu4), xserver-xorg-input-tslib (<= 0.0.6-3), xserver-xorg-input-vmmouse (<= 1:12.6.5-4ubuntu2), xserver-xorg-input-wacom (<< 0.7.8), xserver-xorg-video, xserver-xorg-video-1.0, xserver-xorg-video-1.9, xserver-xorg-video-2, xserver-xorg-video-4, xserver-xorg-video-5, xserver-xorg-video-6 +Filename: pool/main/x/xorg-server/xserver-xorg-core_1.9.0-0ubuntu2_amd64.deb +Size: 1722082 +MD5sum: 22b1e5dcaa5a40520eb1c76996acde89 +SHA1: 26d0082a04d7c30791a8535643c08bd66cc71085 +SHA256: 073eacfdf298a76287cf9676212ac94eda9a2f7c9c1b62fc9ced3e110c06e88d +Description: Xorg X server - core server + The Xorg X server is an X server for several architectures and operating + systems, which is derived from the XFree86 4.x series of X servers. + . + The Xorg server supports most modern graphics hardware from most vendors, + and supersedes all XFree86 X servers. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + . + This package is built from the X.org xserver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-core-dbg +Priority: extra +Section: x11 +Installed-Size: 17404 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Source: xorg-server +Version: 2:1.9.0-0ubuntu2 +Depends: xserver-xorg-core (= 2:1.9.0-0ubuntu2) +Filename: pool/main/x/xorg-server/xserver-xorg-core-dbg_1.9.0-0ubuntu2_amd64.deb +Size: 6305640 +MD5sum: fe080ab7fa64b8dc8446b6fe82af196d +SHA1: ae450cf592342969903a42792d07914d2717f8dd +SHA256: fd4007f1de919f1ed8f9e8bfe0235bdbbe14e3ba78bf3cd010f43d1c64a83d50 +Description: Xorg - the X.Org X server (debugging symbols) + The Xorg X server is an X server for several architectures and operating + systems, which is derived from the XFree86 4.x series of X servers. + . + The Xorg server supports most modern graphics hardware from most vendors, + and supersedes all XFree86 X servers. + . + This package provides debugging symbols for the Xorg X server and associated + modules. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m + +Package: xserver-xorg-dev +Priority: optional +Section: x11 +Installed-Size: 1632 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Source: xorg-server +Version: 2:1.9.0-0ubuntu2 +Depends: libpixman-1-dev (>= 0.15.20), x11proto-core-dev (>= 7.0.17), x11proto-input-dev (>= 1.9.99.902), x11proto-xext-dev (>= 7.0.99.3), x11proto-video-dev, x11proto-randr-dev (>= 1.2.99.3), x11proto-render-dev (>= 2:0.11), x11proto-dri2-dev (>= 2.3), x11proto-fonts-dev, x11proto-xinerama-dev, x11proto-kb-dev, libxkbfile-dev, libpciaccess-dev +Filename: pool/main/x/xorg-server/xserver-xorg-dev_1.9.0-0ubuntu2_amd64.deb +Size: 315992 +MD5sum: 622dad3611cef47cad83b4a3c82c0a78 +SHA1: 35237aa66771f253e22ab46ed711d7feafc3e284 +SHA256: 94114cc3aa3e9601db43d92df263715c3141922ef04ce1886a56a8842765d5f2 +Description: Xorg X server - development files + This package provides development files for the X.Org ('Xorg') X server. + This is not quite the same as the DDK (Driver Development Kit) from the + XFree86 4.x and X.Org 6.7, 6.8 and 6.9 series of servers; it provides + headers and a pkg-config file for drivers using autotools to build + against. + . + Unless you are developing or building a driver, you probably want + xserver-xorg and/or xserver-xorg-core instead. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + . + This package is built from the X.org xserver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m + +Package: xserver-xorg-input-all +Priority: optional +Section: x11 +Installed-Size: 24 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Source: xorg +Version: 1:7.5+6ubuntu3 +Depends: xserver-xorg-input-evdev, xserver-xorg-input-synaptics, xserver-xorg-input-vmmouse, xserver-xorg-input-wacom, x11-common +Filename: pool/main/x/xorg/xserver-xorg-input-all_7.5+6ubuntu3_amd64.deb +Size: 1014 +MD5sum: 33d323837d8dd94ec2e63b4944316c83 +SHA1: 27b0484d0282b728bd9905115da55548c2884008 +SHA256: 61338a072689a5c1565a1968811c87e370e37facb12f4055b64f8b65e35f48ea +Description: the X.Org X server -- input driver metapackage + This package depends on the full suite of input drivers for the X.Org X server + (Xorg). It does not provide any drivers itself, and may be removed if you wish + to only have certain drivers installed. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-input-evdev +Priority: optional +Section: x11 +Installed-Size: 168 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Version: 1:2.3.2-6ubuntu1 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-input-gevdev +Provides: xserver-xorg-input-11 +Depends: libc6 (>= 2.7), libutouch-grail1 (>= 1.0.10), xorg-input-abi-11.0, xserver-xorg-core (>= 2:1.8.99.905-1ubuntu3) +Conflicts: xserver-xorg-input-gevdev +Filename: pool/main/x/xserver-xorg-input-evdev/xserver-xorg-input-evdev_2.3.2-6ubuntu1_amd64.deb +Size: 77602 +MD5sum: aa833ccaa08510e2cf02182157f49be4 +SHA1: 1b35f21aab75e0063a36bca95ecd36e4ca7cd6ef +SHA256: 8d600abfff74e13126c3b61530e782aa9ab88a8aeb0a1eeb42e6ebe2aafe314e +Description: X.Org X server -- evdev input driver + This package provides the driver for input devices using evdev, the Linux + kernel's event delivery mechanism. This driver allows for multiple keyboards + and mice to be treated as separate input devices. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + . + This package is built from the X.org xf86-input-evdev driver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-input-evdev-dev +Priority: optional +Section: libdevel +Installed-Size: 64 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: all +Source: xserver-xorg-input-evdev +Version: 1:2.3.2-6ubuntu1 +Filename: pool/main/x/xserver-xorg-input-evdev/xserver-xorg-input-evdev-dev_2.3.2-6ubuntu1_all.deb +Size: 8784 +MD5sum: fa1d8161aa475e16423413110209e183 +SHA1: 6781c1afc65ab072ff3dba19b691dcb2d2d49716 +SHA256: a5f5ec31050ba190900d71527717aff06270fd9b6ee93352df745231fc95147c +Description: X.Org X server -- evdev input driver (development headers) + This package provides the development headers for the evdev input driver + found in xserver-xorg-input-evdev. Non-developers likely have little use + for this package. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + . + This package is built from the X.org xf86-input-evdev driver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m + +Package: xserver-xorg-input-mouse +Priority: optional +Section: x11 +Installed-Size: 160 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Version: 1:1.5.0-2build1 +Replaces: xserver-xorg (<< 6.8.2-35) +Provides: xorg-driver-input, xserver-xorg-input-11 +Depends: libc6 (>= 2.7), xorg-input-abi-11.0, xserver-xorg-core (>= 2:1.8.99.904) +Filename: pool/main/x/xserver-xorg-input-mouse/xserver-xorg-input-mouse_1.5.0-2build1_amd64.deb +Size: 56550 +MD5sum: 3a94050557202448e164dc6aa2baa16d +SHA1: 418432ceb03b803619743c0e90b8afd2c050d595 +SHA256: dec2aef614e6481ac91237e6ad43ef4101ab8d0c12af0281419cece33a1fab40 +Description: X.Org X server -- mouse input driver + This package provides the driver for mouse input devices. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + . + This package is built from the X.org xf86-input-mouse driver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-input-synaptics +Priority: optional +Section: x11 +Installed-Size: 360 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Version: 1.2.2-2ubuntu3 +Replaces: xfree86-driver-synaptics (<< 0.14.4-2), xorg-driver-synaptics +Provides: xfree86-driver-synaptics, xorg-driver-synaptics, xserver-xorg-input-11 +Depends: udev, libc6 (>= 2.4), libpciaccess0, libpixman-1-0, libx11-6, libxi6 (>= 2:1.2.0), xorg-input-abi-11.0, xserver-xorg-core (>= 2:1.8.99.904) +Suggests: gpointing-device-settings, touchfreeze +Conflicts: xfree86-driver-synaptics (<< 0.14.4-2), xorg-driver-synaptics +Filename: pool/main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics_1.2.2-2ubuntu3_amd64.deb +Size: 157472 +MD5sum: 208387c243ca97b983263f9ad1f997e4 +SHA1: 7c48f093dd3173afac8b7a44729828aad970173c +SHA256: 9dbf323b790342bb5f3642104003acba7c2ce84279fcebfcafe9802cb872dd21 +Description: Synaptics TouchPad driver for X.Org server + This package provides an input driver for the X.Org X server to enable + advanced features of the Synaptics Touchpad including: + . + * Movement with adjustable, non-linear acceleration and speed + * Button events through short touching of the touchpad + * Double-Button events through double short touching of the touchpad + * Dragging through short touching and holding down the finger on the touchpad + * Middle and right button events on the upper and lower corner of the touchpad + * Vertical scrolling (button four and five events) through moving the finger + on the right side of the touchpad + * The up/down button sends button four/five events + * Horizontal scrolling (button six and seven events) through moving the finger + on the lower side of the touchpad + * The multi-buttons send button four/five events, and six/seven events for + horizontal scrolling + * Adjustable finger detection + * Multifinger taps: two finger for middle button and three finger for right + button events. (Needs hardware support. Not all models implement this + feature.) + * Run-time configuration using shared memory. This means you can change + parameter settings without restarting the X server (see synclient(1)). + * It also provides a daemon to disable touchpad while typing at the keyboard + and thus avoid unwanted mouse movements (see syndaemon(1)). +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-input-synaptics-dev +Priority: optional +Section: libdevel +Installed-Size: 76 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: all +Source: xserver-xorg-input-synaptics +Version: 1.2.2-2ubuntu3 +Depends: x11proto-core-dev +Filename: pool/main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics-dev_1.2.2-2ubuntu3_all.deb +Size: 16926 +MD5sum: 96c22d1c68e9037ee97b336edc572869 +SHA1: 8d921f825eaf88f55ca82dcb8271e71c0a3c36da +SHA256: 62879769c7ea06cc3cc4952a3c80175ffd45a0883c661251ef869b4318132e16 +Description: Synaptics TouchPad driver for X.Org server (development headers) + This package contains the development headers for the Synaptics input + driver found in xserver-xorg-input-synaptics. Non-developers likely have + little use for this package. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m + +Package: xserver-xorg-input-vmmouse +Priority: optional +Section: x11 +Installed-Size: 172 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Version: 1:12.6.9-2build1 +Replaces: xserver-xorg (<< 6.8.2-35) +Provides: xserver-xorg-input-11 +Depends: libc6 (>= 2.7), xorg-input-abi-11.0, xserver-xorg-core (>= 2:1.8.99.904), xserver-xorg-input-mouse, udev +Filename: pool/main/x/xserver-xorg-input-vmmouse/xserver-xorg-input-vmmouse_12.6.9-2build1_amd64.deb +Size: 31278 +MD5sum: 3a096dec7240837fec1bcdeece0d3523 +SHA1: 3c881221ccc56d3958d91da676f2ed177a4c31f6 +SHA256: 875498c91b8c3333a3277de41feba8ab9294912604d35aad3b35c3077ed18b5c +Description: X.Org X server -- VMMouse input driver to use with VMWare + This package provides the driver for the X11 vmmouse input device. + . + The VMMouse driver enables support for the special VMMouse protocol + that is provided by VMware virtual machines to give absolute pointer + positioning. + . + The vmmouse driver is capable of falling back to the standard "mouse" + driver if a VMware virtual machine is not detected. This allows for + dual-booting of an operating system from a virtual machine to real hardware + without having to edit xorg.conf every time. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + . + This package is built from the X.org xf86-input-vmmouse driver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-input-wacom +Priority: optional +Section: x11 +Installed-Size: 308 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Original-Maintainer: Ron Lee <ron@debian.org> +Architecture: amd64 +Source: xf86-input-wacom +Version: 1:0.10.8-0ubuntu1 +Replaces: wacom-tools (<< 0.10.0) +Provides: xorg-driver-input, xserver-xorg-input-11 +Depends: xorg-input-abi-11.0, xserver-xorg-core (>= 2:1.8.99.904), libc6 (>= 2.7), libx11-6, libxi6 (>= 2:1.2.0) +Suggests: xinput +Conflicts: wacom-tools (<< 0.10.0) +Filename: pool/main/x/xf86-input-wacom/xserver-xorg-input-wacom_0.10.8-0ubuntu1_amd64.deb +Size: 85548 +MD5sum: ac0e00807ae94d5f2f7d23be578abb12 +SHA1: 1c6e1c7c12363517dc956bff94fd3137ccdc9c8f +SHA256: 185bdca5588688037e8f9303dc3011db4b459c15bd57e14610414a7b6cc31178 +Description: X.Org X server -- Wacom input driver + This package provides the X.Org driver for Wacom tablet devices. +Homepage: http://linuxwacom.sf.net +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-video-all +Priority: optional +Section: x11 +Installed-Size: 24 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Source: xorg +Version: 1:7.5+6ubuntu3 +Replaces: xserver-xorg-driver-all +Depends: xserver-xorg-video-apm, xserver-xorg-video-ark, xserver-xorg-video-ati, xserver-xorg-video-chips, xserver-xorg-video-cirrus, xserver-xorg-video-fbdev, xserver-xorg-video-i128, xserver-xorg-video-intel, xserver-xorg-video-mga, xserver-xorg-video-neomagic, xserver-xorg-video-nouveau, xserver-xorg-video-nv, xserver-xorg-video-rendition, xserver-xorg-video-s3, xserver-xorg-video-s3virge, xserver-xorg-video-savage, xserver-xorg-video-siliconmotion, xserver-xorg-video-sis, xserver-xorg-video-sisusb, xserver-xorg-video-tdfx, xserver-xorg-video-trident, xserver-xorg-video-tseng, xserver-xorg-video-vesa, xserver-xorg-video-openchrome, xserver-xorg-video-voodoo, xserver-xorg-video-vmware, x11-common +Conflicts: xserver-xorg-driver-all +Filename: pool/main/x/xorg/xserver-xorg-video-all_7.5+6ubuntu3_amd64.deb +Size: 1146 +MD5sum: f7bc46f83b91857efd62086ccce6e137 +SHA1: 19b30dfd8e98e0dd16921f3715ecc2c4bfef15c0 +SHA256: b70a091c6960244112c79f6ddf7ada8715b316da2b3df7931df86d3234893b08 +Description: the X.Org X server -- output driver metapackage + This package depends on the full suite of output drivers for the X.Org X server + (Xorg). It does not provide any drivers itself, and may be removed if you wish + to only have certain drivers installed. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-video-apm +Priority: optional +Section: x11 +Installed-Size: 220 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Version: 1:1.2.3-0ubuntu1 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-apm +Provides: xorg-driver-video, xserver-xorg-video-8 +Depends: libc6 (>= 2.4), xorg-video-abi-8.0, xserver-xorg-core (>= 2:1.8.99.904) +Conflicts: xserver-xorg-driver-apm +Filename: pool/main/x/xserver-xorg-video-apm/xserver-xorg-video-apm_1.2.3-0ubuntu1_amd64.deb +Size: 75166 +MD5sum: d681c49714651d631bfdce3c8f8b4876 +SHA1: db29d20c5beb03f26d8fd0d0ff3bf6ad984fcde8 +SHA256: 0d0c328570db8eee1445bbd83848a7f7be1c4ef31be629b273758f027347c910 +Description: X.Org X server -- APM display driver + This package provides the driver for the Alliance Pro Motion family + of video cards; specifically, the 6420, 6422, AT24, AT25, and AT3D + cards. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + . + This package is built from the X.org xf86-video-apm driver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-video-ark +Priority: optional +Section: x11 +Installed-Size: 84 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Version: 1:0.7.2-2build2 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-ark +Provides: xorg-driver-video, xserver-xorg-video-8 +Depends: libc6 (>= 2.2.5), xorg-video-abi-8.0, xserver-xorg-core (>= 2:1.8.99.904) +Conflicts: xserver-xorg-driver-ark +Filename: pool/main/x/xserver-xorg-video-ark/xserver-xorg-video-ark_0.7.2-2build2_amd64.deb +Size: 18056 +MD5sum: 2805bc3e42b20b9212e8c2d3e904c8d1 +SHA1: bbdc07c1f02e15ccd22414dc5e6c2f3e389f7427 +SHA256: 683b9c5d142d4a9b21cf3a0a930cddf5ad59b5cff91a134728c9cfd74aabbfd5 +Description: X.Org X server -- ark display driver + This package provides the driver for the ark family + of chipsets. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-video-ark driver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-video-ati +Priority: optional +Section: x11 +Installed-Size: 100 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Version: 1:6.13.1-1ubuntu4 +Provides: xorg-driver-video, xserver-xorg-video-8 +Depends: libc6 (>= 2.2.5), libpciaccess0, xorg-video-abi-8.0, xserver-xorg-core (>= 2:1.8.99.905-1ubuntu3), xserver-xorg-video-r128, xserver-xorg-video-mach64, xserver-xorg-video-radeon +Filename: pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-ati_6.13.1-1ubuntu4_amd64.deb +Size: 21368 +MD5sum: 91f93ce4df4bc83846763a00ef3c51dc +SHA1: 47ff08c9ed28c3e3275b0710e373b95608f831a0 +SHA256: 87e558ebd7b1214425eaa4a3afed11a86c39058fee5d19bd19b1ea0f72ff6090 +Description: X.Org X server -- AMD/ATI display driver wrapper + This package provides the 'ati' driver for the AMD/ATI Mach64, Rage128, + Radeon, FireGL, FireMV, FirePro and FireStream series. This driver is + actually a wrapper that loads one of the 'mach64', 'r128' or 'radeon' + sub-drivers depending on the hardware. + These sub-drivers are brought through package dependencies. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + . + This package is built from the X.org xf86-video-ati driver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-video-ati-dbg +Priority: extra +Section: x11 +Installed-Size: 96 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Source: xserver-xorg-video-ati +Version: 1:6.13.1-1ubuntu4 +Depends: xserver-xorg-video-ati (= 1:6.13.1-1ubuntu4), xserver-xorg-video-mach64-dbg, xserver-xorg-video-r128-dbg, xserver-xorg-video-radeon-dbg +Filename: pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-ati-dbg_6.13.1-1ubuntu4_amd64.deb +Size: 25140 +MD5sum: 79ca46474fe815bc58ade6149c5213f0 +SHA1: 741ef65d6beb94f49213432bfb82dbfeeb70a375 +SHA256: 67c0f463dd9357578395832db8e432344d1639df41f6c80b010acb75b0af998b +Description: X.Org X server -- AMD/ATI display driver wrapper (debugging symbols) + This package provides the 'ati' driver for the AMD/ATI Mach64, Rage128, + Radeon, FireGL, FireMV, FirePro and FireStream series. This driver is + actually a wrapper that loads one of the 'mach64', 'r128' or 'radeon' + sub-drivers depending on the hardware. + These sub-drivers are brought through package dependencies. + . + This package provides debugging symbols for this X.org X driver wrapper + and brings debugging symbols for sub-drivers through package dependencies. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m + +Package: xserver-xorg-video-chips +Priority: optional +Section: x11 +Installed-Size: 236 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Version: 1:1.2.3-1 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-chips +Provides: xorg-driver-video, xserver-xorg-video-8 +Depends: libc6 (>= 2.2.5), xorg-video-abi-8.0, xserver-xorg-core (>= 2:1.8.99.904) +Conflicts: xserver-xorg-driver-chips +Filename: pool/main/x/xserver-xorg-video-chips/xserver-xorg-video-chips_1.2.3-1_amd64.deb +Size: 84812 +MD5sum: 6b6abc6c3922bda0d0c35d24ebbb2edd +SHA1: 92f73bb35f9f1e22d558c19c7de7c8388abf3702 +SHA256: 6f5dfd337a75db61a82704edbfadd063bce55970f7cfcb875d022d217ed76d09 +Description: X.Org X server -- Chips display driver + This package provides the driver for the Chips & Technologies family + of video cards. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + . + This package is built from the X.org xf86-video-chips driver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-video-cirrus +Priority: optional +Section: x11 +Installed-Size: 164 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Version: 1:1.3.2-2ubuntu3 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-cirrus +Provides: xorg-driver-video, xserver-xorg-video-8 +Depends: libc6 (>= 2.4), xorg-video-abi-8.0, xserver-xorg-core (>= 2:1.8.99.904) +Conflicts: xserver-xorg-driver-cirrus +Filename: pool/main/x/xserver-xorg-video-cirrus/xserver-xorg-video-cirrus_1.3.2-2ubuntu3_amd64.deb +Size: 48284 +MD5sum: b206bde81987c40ec2acefafe1d02151 +SHA1: cc2cd0482c1f002901645d52955a64790af677e6 +SHA256: 9c763caf29269b89b60ccd2c338fb282ee035447930366dca03461a9cc95911a +Description: X.Org X server -- Cirrus display driver + This package provides the driver for the Cirrus Logic family of video + cards. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + . + This package is built from the X.org xf86-video-cirrus driver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-video-fbdev +Priority: optional +Section: x11 +Installed-Size: 100 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Version: 1:0.4.2-2ubuntu2 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-fbdev +Provides: xorg-driver-video, xserver-xorg-video-8 +Depends: libc6 (>= 2.2.5), xorg-video-abi-8.0, xserver-xorg-core (>= 2:1.8.99.904) +Conflicts: xserver-xorg-driver-fbdev +Filename: pool/main/x/xserver-xorg-video-fbdev/xserver-xorg-video-fbdev_0.4.2-2ubuntu2_amd64.deb +Size: 22766 +MD5sum: c3595fdebc8771a1c1bb46c8ad703204 +SHA1: e6702adf49e636fe1afdecde9734525e39510367 +SHA256: fe8739839a641e80a688ee08c01a9fde82ece14bdde22fcd8d5b2bbed60aa49e +Description: X.Org X server -- fbdev display driver + This package provides the driver for the Linux framebuffer device (aka + 'fbdev'). + . + More information about X.Org can be found at: + <URL:http://www.X.org> + . + This package is built from the X.org xf86-video-fbdev driver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-video-i128 +Priority: optional +Section: x11 +Installed-Size: 140 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Version: 1:1.3.3-2build2 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-i128 +Provides: xorg-driver-video, xserver-xorg-video-8 +Depends: libc6 (>= 2.4), xorg-video-abi-8.0, xserver-xorg-core (>= 2:1.8.99.904) +Conflicts: xserver-xorg-driver-i128 +Filename: pool/main/x/xserver-xorg-video-i128/xserver-xorg-video-i128_1.3.3-2build2_amd64.deb +Size: 35928 +MD5sum: 92cdb3768406395d7dc38c8d5254a24b +SHA1: 4dd5b6fab1bec5e81d84d42f03286518fbbb603f +SHA256: c79f25b4fd0d7e0a731ae32eb1ac376c32a5bf297d96024cc82aee7669e05cbc +Description: X.Org X server -- i128 display driver + This package provides the driver for Number 9 Imagine (I128) video cards. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-video-i128 driver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-video-i740 +Priority: optional +Section: x11 +Installed-Size: 132 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Version: 1:1.3.2-2build1 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-i740 +Provides: xorg-driver-video, xserver-xorg-video-8 +Depends: libc6 (>= 2.3.4), xorg-video-abi-8.0, xserver-xorg-core (>= 2:1.8.99.904) +Conflicts: xserver-xorg-driver-i740 +Filename: pool/main/x/xserver-xorg-video-i740/xserver-xorg-video-i740_1.3.2-2build1_amd64.deb +Size: 33110 +MD5sum: affdf50d2cb8d927caa1458a00167a04 +SHA1: 72ad34b92111061f3e1c2d9e5e1b2ab5030419e8 +SHA256: a9d0cd04ba1b145ae345d396e8113c5ba9391662e53928407727ab9886cb6083 +Description: X.Org X server -- i740 display driver + This package provides the driver for the Intel i740 family of video chipsets. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + . + This package is built from the X.org xf86-video-i740 driver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m + +Package: xserver-xorg-video-intel +Priority: optional +Section: x11 +Installed-Size: 1020 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Version: 2:2.12.0-1ubuntu3 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-i810, xserver-xorg-video-i810 (<< 2:1.9.91-1), xserver-xorg-video-i810-modesetting, xserver-xorg-video-intel-modesetting +Provides: xorg-driver-video, xserver-xorg-video-8 +Depends: libc6 (>= 2.4), libdrm-intel1 (>= 2.4.21), libdrm2 (>= 2.4.17), libpciaccess0 (>= 0.8.0+git20071002), libx11-6, libx11-xcb1, libxcb-aux0 (>= 0.3.6), libxcb-dri2-0, libxcb1, libxext6, libxfixes3 (>= 1:4.0.1), libxv1, libxvmc1, xorg-video-abi-8.0, xserver-xorg-core (>= 2:1.8.99.904) +Recommends: intel-gpu-tools +Conflicts: 915resolution, xserver-xorg-driver-i810, xserver-xorg-video-i810 (<< 2:1.9.91-1), xserver-xorg-video-i810-modesetting, xserver-xorg-video-intel-modesetting +Filename: pool/main/x/xserver-xorg-video-intel/xserver-xorg-video-intel_2.12.0-1ubuntu3_amd64.deb +Size: 263918 +MD5sum: 982a8ed2c2b4499d6515cbd0ed345d4c +SHA1: 0a364cdb73efc9229517d4f15c8fd2e07d81d76b +SHA256: 570204fc03af24bdb3a5ed733b85575e519060719807d0f841c02d619b5041b6 +Description: X.Org X server -- Intel i8xx, i9xx display driver + This package provides the driver for the Intel i8xx and i9xx family + of chipsets, including i810, i815, i830, i845, i855, i865, i915, i945 + and i965 series chips. + . + This package also provides XvMC (XVideo Motion Compensation) drivers + for i810/i815 and i9xx and newer chipsets. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + . + This package is built from the X.org xf86-video-intel driver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-video-intel-dbg +Priority: extra +Section: x11 +Installed-Size: 2012 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Source: xserver-xorg-video-intel +Version: 2:2.12.0-1ubuntu3 +Depends: xserver-xorg-video-intel (= 2:2.12.0-1ubuntu3) +Recommends: intel-gpu-tools +Filename: pool/main/x/xserver-xorg-video-intel/xserver-xorg-video-intel-dbg_2.12.0-1ubuntu3_amd64.deb +Size: 852222 +MD5sum: 1e2b9de8e535a1e79e28c0b365530054 +SHA1: e62911adc3695e111d21f152ee5d443f3388191d +SHA256: ec72365988119977ae92c7ed651773a2d46db2654e645b3bd9f4d894b0cc9230 +Description: X.Org X server -- Intel i8xx, i9xx display driver (debug symbols) + This driver provides support for the Intel i8xx and i9xx family of chipsets, + including i810, i815, i830, i845, i855, i865, i915, and i945 series chips. + . + This package provides debugging symbols for this Xorg X driver. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m + +Package: xserver-xorg-video-mach64 +Priority: optional +Section: x11 +Installed-Size: 388 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Version: 6.8.2-3build2 +Replaces: xserver-xorg-video-ati (<= 1:6.8.0-1) +Provides: xorg-driver-video, xserver-xorg-video-8 +Depends: libc6 (>= 2.4), xorg-video-abi-8.0, xserver-xorg-core (>= 2:1.8.99.904) +Conflicts: xserver-xorg-video-ati (<= 1:6.8.0-1) +Filename: pool/main/x/xserver-xorg-video-mach64/xserver-xorg-video-mach64_6.8.2-3build2_amd64.deb +Size: 212368 +MD5sum: 293e572c7b07db7242cc3c90053ae082 +SHA1: 18236fb1abc2d6077ea9e9c2a60d0a7c7faa7723 +SHA256: 6f9f3276cdc916e4808db47b61d93ef8ff1f60f4f0bc95521446d2d448018f14 +Description: X.Org X server -- ATI Mach64 display driver + This driver for the X.Org X server (see xserver-xorg for a further description) + provides support for the ATI Mach64 series. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + . + This package is built from the X.org xf86-video-mach64 driver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-video-mach64-dbg +Priority: extra +Section: x11 +Installed-Size: 1916 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Source: xserver-xorg-video-mach64 +Version: 6.8.2-3build2 +Depends: xserver-xorg-video-mach64 (= 6.8.2-3build2) +Filename: pool/main/x/xserver-xorg-video-mach64/xserver-xorg-video-mach64-dbg_6.8.2-3build2_amd64.deb +Size: 949534 +MD5sum: 13879b58283b1afc6760cd9fe90dd1e1 +SHA1: 81fc81d66378f12d7e98cbd1fb82ead8ac22217f +SHA256: ac66a5f2d697a533727a95d07bafe0416053af8815786c4e10fa2e1479887586 +Description: X.Org X server -- ATI display driver (debugging symbols) + This driver for the X.Org X server (see xserver-xorg for a further description) + provides support for the ATI Mach64 series. + . + This package provides debugging symbols for the Xorg X server ATI Mach64 + display driver. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m + +Package: xserver-xorg-video-mga +Priority: optional +Section: x11 +Installed-Size: 284 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Version: 1:1.4.11.dfsg-4build1 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-mga +Provides: xorg-driver-video, xserver-xorg-video-8 +Depends: libc6 (>= 2.7), xorg-video-abi-8.0, xserver-xorg-core (>= 2:1.8.99.904) +Suggests: firmware-linux +Conflicts: xserver-xorg-driver-mga +Filename: pool/main/x/xserver-xorg-video-mga/xserver-xorg-video-mga_1.4.11.dfsg-4build1_amd64.deb +Size: 116770 +MD5sum: e7aad613e6d8566daee31386aaba9409 +SHA1: 7c9cdddc5eb80d338164e5c5c34337d82b9ca687 +SHA256: a7a02db1b18fb648cbe723666705128b912f97c12b0d471049f2b841ea248077 +Description: X.Org X server -- MGA display driver + This package provides the driver for the Matrox MGA family of chipsets, + including Matrox Millennium and Mystique cards. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + . + This package is built from the X.org xf86-video-mga driver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-video-neomagic +Priority: optional +Section: x11 +Installed-Size: 156 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Version: 1:1.2.4-3build2 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-neomagic +Provides: xorg-driver-video, xserver-xorg-video-8 +Depends: libc6 (>= 2.2.5), xorg-video-abi-8.0, xserver-xorg-core (>= 2:1.8.99.904) +Conflicts: xserver-xorg-driver-neomagic +Filename: pool/main/x/xserver-xorg-video-neomagic/xserver-xorg-video-neomagic_1.2.4-3build2_amd64.deb +Size: 46042 +MD5sum: 883c95770dec8473fc44f0560937bde6 +SHA1: 47add4ef96ffcd0eab086fb5c09412e769088ae3 +SHA256: f560066d2d7de1ba74b71382169f6a2402308822f1a07fbc5bbad30a3b99d846 +Description: X.Org X server -- Neomagic display driver + This package provides the driver for Neomagic MagicGraph chipsets, which are + commonly found in laptops. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-video-neomagic driver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-video-nouveau +Priority: optional +Section: x11 +Installed-Size: 304 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Version: 1:0.0.16+git20100805+b96170a-0ubuntu1 +Provides: xorg-driver-video, xserver-xorg-video-8 +Depends: libc6 (>= 2.4), libdrm-nouveau1 (>= 2.4.20-3~), libudev0 (>= 147), xorg-video-abi-8.0, xserver-xorg-core (>= 2:1.8.99.904) +Filename: pool/main/x/xserver-xorg-video-nouveau/xserver-xorg-video-nouveau_0.0.16+git20100805+b96170a-0ubuntu1_amd64.deb +Size: 113304 +MD5sum: ade4a7afa72b9bfcea0cdaee5d18472e +SHA1: f1cd5716bc00ffb0e55897a7aa9047a7537b9f42 +SHA256: 3f8a7eda416f6324495a74a04f3868a1251a1a4caa8ec002421adc0ec31268dc +Description: X.Org X server -- Nouveau display driver (experimental) + This driver for the X.Org X server (see xserver-xorg for a further description) + provides support for NVIDIA Riva, TNT, GeForce, and Quadro cards. + . + Although the nouveau project aims to provide full 3D support it is not yet + complete, and these packages do not include any 3D support. + Users requiring 3D support should use the non-free "nvidia" driver. + . + This package is built from the FreeDesktop.org xf86-video-nouveau driver. +Homepage: http://nouveau.freedesktop.org/wiki/ +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-video-nouveau-dbg +Priority: extra +Section: debug +Installed-Size: 1252 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Source: xserver-xorg-video-nouveau +Version: 1:0.0.16+git20100805+b96170a-0ubuntu1 +Depends: xserver-xorg-video-nouveau (= 1:0.0.16+git20100805+b96170a-0ubuntu1) +Filename: pool/main/x/xserver-xorg-video-nouveau/xserver-xorg-video-nouveau-dbg_0.0.16+git20100805+b96170a-0ubuntu1_amd64.deb +Size: 522694 +MD5sum: d50e53f1832e2acd58ad5adc7c324a5a +SHA1: 774ad386ef1cff56b346cde3b4c99d10f2bf2f93 +SHA256: 0e910561ac3913123fbaf1b8223f01d30c251138e7ba483e5ab77eb436988173 +Description: X.Org X server -- Nouveau display driver (debug symbols) + This driver for the X.Org X server (see xserver-xorg for a further description) + provides support for NVIDIA Riva, TNT, GeForce, and Quadro cards. + . + Although the nouveau project aims to provide full 3D support it is not yet + complete, and these packages do not include any 3D support. + Users requiring 3D support should use the non-free "nvidia" driver. + . + This package provides debugging symbols for this Xorg X driver. +Homepage: http://nouveau.freedesktop.org/wiki/ +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m + +Package: xserver-xorg-video-nv +Priority: optional +Section: x11 +Installed-Size: 288 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Version: 1:2.1.17-3ubuntu3 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-nv, xserver-xorg-video-riva128 +Provides: xf86-video-driver-riva128, xserver-xorg-video-8 +Depends: libc6 (>= 2.4), libdrm2 (>= 2.4.3), libpciaccess0 (>= 0.8.0+git20071002), xorg-video-abi-8.0, xserver-xorg-core (>= 2:1.8.99.904) +Conflicts: xserver-xorg-driver-nv, xserver-xorg-video-riva128 +Filename: pool/main/x/xserver-xorg-video-nv/xserver-xorg-video-nv_2.1.17-3ubuntu3_amd64.deb +Size: 117648 +MD5sum: a04ed6409ff5fd3fb7beb30d922bb046 +SHA1: e817cab78e016a3c585ea77cb45f6de6b77a743a +SHA256: 20a3fec830cf7ccafa31daf06a998fa550ed909359c4cf1f9590bd634030566e +Description: X.Org X server -- NV display driver + This driver for the X.Org X server (see xserver-xorg for a further description) + provides support for NVIDIA Riva, TNT, GeForce, and Quadro cards. + . + Note that this is not the same as the binary-only 'nvidia' driver, which + adds 3D support, but is binary-only and not supported. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + . + This package is built from the X.org xf86-video-nv driver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-video-openchrome +Priority: optional +Section: x11 +Installed-Size: 572 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Version: 1:0.2.904+svn842-0ubuntu1 +Replaces: libchromexvmc1, libchromexvmcpro1 +Provides: xorg-driver-video, xserver-xorg-video-8 +Depends: libc6 (>= 2.4), libdrm2 (>= 2.3.1), libx11-6, libxext6, libxv1, libxvmc1, xorg-video-abi-8.0, xserver-xorg-core (>= 2:1.8.99.904) +Conflicts: libchromexvmc1, libchromexvmcpro1 +Filename: pool/main/x/xserver-xorg-video-openchrome/xserver-xorg-video-openchrome_0.2.904+svn842-0ubuntu1_amd64.deb +Size: 195642 +MD5sum: 6b7ba8d6cea0d091c85c8677f57711df +SHA1: 8aa58956d76f4177b30a64c2e36ad379371f3e93 +SHA256: 31476e9de3305a4c069f922a452be791f0ae8f015407125f8c09eeb6eebca0aa +Description: X.Org X server -- VIA display driver + OpenChrome is a project for the development of free and open-source drivers + for the VIA UniChrome video chipsets. + . + Originally called the 'snapshot' release, since it was a snapshot of an + experimental branch of the unichrome cvs code, this is a continued development + of the open source unichrome driver (from http://unichrome.sf.net) which + also incorporates support for the unichrome-pro chipsets. + . + Support for hardware acceleration (XvMC) for all chipsets has subsequently + been ripped out of the unichrome.sf.net driver. Therefore your only option if + you wish to make use of the acceleration features of your VIA chip with free + and open-source drivers is to use this version of the driver. +Homepage: http://www.openchrome.org +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-video-r128 +Priority: optional +Section: x11 +Installed-Size: 320 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Version: 6.8.1-3build1 +Replaces: xserver-xorg-video-ati (<= 1:6.8.0-1) +Provides: xorg-driver-video, xserver-xorg-video-8 +Depends: libc6 (>= 2.7), xorg-video-abi-8.0, xserver-xorg-core (>= 2:1.8.99.904) +Suggests: firmware-linux +Conflicts: xserver-xorg-video-ati (<= 1:6.8.0-1) +Filename: pool/main/x/xserver-xorg-video-r128/xserver-xorg-video-r128_6.8.1-3build1_amd64.deb +Size: 179372 +MD5sum: bb1ced7f07b0df67f771005e2c778eb4 +SHA1: 622c864794e968edab180a122b7b158e0b8643b2 +SHA256: b3361b85020d8be4c3354872882c42debdc8d00a95a5ba6512c6418582334ae6 +Description: X.Org X server -- ATI r128 display driver + This driver for the X.Org X server (see xserver-xorg for a further description) + provides support for the ATI Rage 'r128' series. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + . + This package is built from the X.org xf86-video-r128 driver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-video-r128-dbg +Priority: extra +Section: x11 +Installed-Size: 644 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Source: xserver-xorg-video-r128 +Version: 6.8.1-3build1 +Depends: xserver-xorg-video-r128 (= 6.8.1-3build1) +Filename: pool/main/x/xserver-xorg-video-r128/xserver-xorg-video-r128-dbg_6.8.1-3build1_amd64.deb +Size: 331644 +MD5sum: 53ba42b5e97d8ae41a1d0d28cbd9d737 +SHA1: 69d657096949d9028c2226e8af5facba4e7cf046 +SHA256: 2976cecbb0ad4f2837c801d3e5ef1791bf25743d7c5724e901538820aca6c64e +Description: X.Org X server -- ATI r128 display driver (debugging symbols) + This driver for the X.Org X server (see xserver-xorg for a further description) + provides support for the ATI Rage 'r128' series. + . + This package provides debugging symbols for the Xorg X server ATI r128 + display driver. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m + +Package: xserver-xorg-video-radeon +Priority: optional +Section: x11 +Installed-Size: 1336 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Source: xserver-xorg-video-ati +Version: 1:6.13.1-1ubuntu4 +Replaces: xserver-xorg-video-ati (<= 1:6.8.191-1) +Provides: xorg-driver-video, xserver-xorg-video-8 +Depends: libc6 (>= 2.7), libdrm-radeon1 (>= 2.4.17), libdrm2 (>= 2.4.16), libpciaccess0 (>= 0.10.2), libpixman-1-0, libudev0 (>= 147), xorg-video-abi-8.0, xserver-xorg-core (>= 2:1.8.99.905-1ubuntu3) +Suggests: firmware-linux +Filename: pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-radeon_6.13.1-1ubuntu4_amd64.deb +Size: 446340 +MD5sum: 5cbd60724971234d437d66152bd6f53d +SHA1: 001f849426d1a04ce69ead3311ad72fa8a218223 +SHA256: b8ff48845a3c7ff814e3d3bd80e61d0c26d79deb8cde03f38462eb0be60060ab +Description: X.Org X server -- AMD/ATI Radeon display driver + This package provides the 'radeon' driver for the AMD/ATI Radeon, FireGL, + FireMV, FirePro and FireStream series. + . + Note that this is not the same as the ATI-provided, binary-only, 'fglrx' + driver, which provides additional 3D functionality for some newer Radeon + cards, but is not supported. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + . + This package is built from the X.org xf86-video-ati driver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-video-radeon-dbg +Priority: extra +Section: x11 +Installed-Size: 3636 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Source: xserver-xorg-video-ati +Version: 1:6.13.1-1ubuntu4 +Replaces: xserver-xorg-video-ati-dbg (<= 1:6.8.191-1) +Depends: xserver-xorg-video-radeon (= 1:6.13.1-1ubuntu4) +Filename: pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-radeon-dbg_6.13.1-1ubuntu4_amd64.deb +Size: 1622426 +MD5sum: 578f8055b90f4fffb4470536d0ee3816 +SHA1: ba25bf44d4db7e252452657beb9815fe498dc34b +SHA256: 318952ff7e6ee96d41736388ba0aaab4c50de8faecb5263c7290ee761a926248 +Description: X.Org X server -- AMD/ATI Radeon display driver (debugging symbols) + This package provides the 'radeon' driver for the AMD/ATI Radeon, FireGL, + FireMV, FirePro and FireStream series. + . + This package provides debugging symbols for this X.org X driver. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m + +Package: xserver-xorg-video-rendition +Priority: optional +Section: x11 +Installed-Size: 116 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Version: 1:4.2.4-0ubuntu1 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-rendition +Provides: xorg-driver-video, xserver-xorg-video-8 +Depends: libc6 (>= 2.4), xorg-video-abi-8.0, xserver-xorg-core (>= 2:1.8.99.904) +Conflicts: xserver-xorg-driver-rendition +Filename: pool/main/x/xserver-xorg-video-rendition/xserver-xorg-video-rendition_4.2.4-0ubuntu1_amd64.deb +Size: 32006 +MD5sum: 040f0b377d623d40fd33d3befcb12e77 +SHA1: a76e9747761a5225808bf96fcefdb0196d7c2540 +SHA256: 227537a5f5635d56e1b28f5455dda40ec01fbda04e67a6aab956cb455046dc16 +Description: X.Org X server -- Rendition display driver + This package provides the driver for the Rendition Verite family of chipsets, + commonly found in 3D accelerators such as the Creative 3D Blaster. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + . + This package is built from the X.org xf86-video-rendition driver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-video-s3 +Priority: optional +Section: x11 +Installed-Size: 148 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Version: 1:0.6.3-2build2 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-s3 +Provides: xorg-driver-video, xserver-xorg-video-8 +Depends: libc6 (>= 2.2.5), xorg-video-abi-8.0, xserver-xorg-core (>= 2:1.8.99.904) +Conflicts: xserver-xorg-driver-s3 +Filename: pool/main/x/xserver-xorg-video-s3/xserver-xorg-video-s3_0.6.3-2build2_amd64.deb +Size: 43636 +MD5sum: 0318e0c20f32816e993115dcc15a9b6b +SHA1: ff75f22d1054d73260f0968fd22ff978be6b215a +SHA256: 04ccbe465f03732a9a30d80527dada04197035d2cde298e1dbc13bc2dc57f57e +Description: X.Org X server -- legacy S3 display driver + This package provides the driver for certain legacy S3 video card chipsets, + including the Trio64 and 96x cards. It does not provide support for + ViRGE/Trio3D or Savage chipsets; support for these cards is provided by + xserver-xorg-video-s3virge and xserver-xorg-driver-savage, respectively. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + . + This package is built from the X.org xf86-video-s3 driver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-video-s3virge +Priority: optional +Section: x11 +Installed-Size: 160 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Version: 1:1.10.4-2build2 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-s3virge +Provides: xorg-driver-video, xserver-xorg-video-8 +Depends: libc6 (>= 2.2.5), xorg-video-abi-8.0, xserver-xorg-core (>= 2:1.8.99.904) +Conflicts: xserver-xorg-driver-s3virge +Filename: pool/main/x/xserver-xorg-video-s3virge/xserver-xorg-video-s3virge_1.10.4-2build2_amd64.deb +Size: 48792 +MD5sum: 3da2e57ba1ae98bfe73473416ff030f5 +SHA1: 3296574523259de9c62dbbf771584b94f8d519c0 +SHA256: 0c4604ad77d36b8913e602372f1c4721c3ae8b2a187d2b3583ce4d53bba29e60 +Description: X.Org X server -- S3 ViRGE display driver + This package provides the driver for the S3 ViRGE and Trio3D family + of chipsets. It does not support Trio64 or S3 96x cards; support for + these can be found in the xserver-xorg-video-s3 package. Support for + S3 Savage chipsets can be found in xserver-xorg-video-savage. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + . + This package is built from the X.org xf86-video-s3virge driver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-video-savage +Priority: optional +Section: x11 +Installed-Size: 240 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Architecture: amd64 +Version: 1:2.3.1-2ubuntu2 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-savage +Provides: xorg-driver-video, xserver-xorg-video-8 +Depends: libc6 (>= 2.3.4), xorg-video-abi-8.0, xserver-xorg-core (>= 2:1.8.99.904) +Conflicts: xserver-xorg-driver-savage +Filename: pool/main/x/xserver-xorg-video-savage/xserver-xorg-video-savage_2.3.1-2ubuntu2_amd64.deb +Size: 94910 +MD5sum: a57a30c861246f6c6d7bae87749bda30 +SHA1: aee96ab1c5817f881f7c30613efb6ff6c61590d4 +SHA256: 2465340a5607ff72b7088a4ad7a2f7254f02c4d17d0438c2823ff76c9ec5b01e +Description: X.Org X server -- Savage display driver + This package provides the driver for the S3/VIA Savage/ProSavage/Twister family + of chipsets. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + . + This package is built from the X.org xf86-video-savage driver module. +Orig-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-video-siliconmotion +Priority: optional +Section: x11 +Installed-Size: 224 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Version: 1:1.7.4-0ubuntu2 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-siliconmotion +Provides: xorg-driver-video, xserver-xorg-video-8 +Depends: libc6 (>= 2.7), xorg-video-abi-8.0, xserver-xorg-core (>= 2:1.8.99.904) +Conflicts: xserver-xorg-driver-siliconmotion +Filename: pool/main/x/xserver-xorg-video-siliconmotion/xserver-xorg-video-siliconmotion_1.7.4-0ubuntu2_amd64.deb +Size: 89322 +MD5sum: 67bb40a85964b18216c30594cd260a6a +SHA1: 39647585477ce517ce094fa346879cbe6c68a8f8 +SHA256: 9459d2f7d0be571881e18b7e24dae010f5a4d0c8210ea4bab306e476f77b7e63 +Description: X.Org X server -- SiliconMotion display driver + This package provides the driver for the SiliconMotion Lynx and Cougar family + of chipsets, commonly found in laptops. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + . + This package is built from the X.org xf86-video-siliconmotion driver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-video-sis +Priority: optional +Section: x11 +Installed-Size: 672 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Version: 1:0.10.3-1build1 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-sis +Provides: xorg-driver-video, xserver-xorg-video-8 +Depends: libc6 (>= 2.7), xorg-video-abi-8.0, xserver-xorg-core (>= 2:1.8.99.904) +Conflicts: xserver-xorg-driver-sis +Filename: pool/main/x/xserver-xorg-video-sis/xserver-xorg-video-sis_0.10.3-1build1_amd64.deb +Size: 297044 +MD5sum: 57f26ef639f3bc4dffce2e631f5edab3 +SHA1: fbeb26493846b2bd9f0dd306f411ded6b15e367a +SHA256: b391011332abdff5241f0bef9b295a981d0f12ed575b34827cca3d22809b1d5a +Description: X.Org X server -- SiS display driver + This package provides the driver for all SiS and XGI Volari cards. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + . + This package is built from the X.org xf86-video-sis driver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-video-sisusb +Priority: optional +Section: x11 +Installed-Size: 156 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Version: 1:0.9.4-0ubuntu1 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-sisusb +Provides: xorg-driver-video, xserver-xorg-video-8 +Depends: libc6 (>= 2.7), xorg-video-abi-8.0, xserver-xorg-core (>= 2:1.8.99.904) +Conflicts: xserver-xorg-driver-sisusb +Filename: pool/main/x/xserver-xorg-video-sisusb/xserver-xorg-video-sisusb_0.9.4-0ubuntu1_amd64.deb +Size: 49900 +MD5sum: e17bb0f9c542a826ae6ae9364e4651c0 +SHA1: 695515870f6b7c19e9e2b9a2c6aa63d188f9f0a3 +SHA256: fd6cfff10a85c55661e29b91aec99f538940d5cf55dc9fa138ea0dc83fda5b47 +Description: X.Org X server -- SiS USB display driver + This package provides the driver for SiS USB-attached video devices. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + . + This package is built from the X.org xf86-video-sisusb driver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-video-tdfx +Priority: optional +Section: x11 +Installed-Size: 152 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Version: 1:1.4.3-2build2 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-tdfx +Provides: xorg-driver-video, xserver-xorg-video-8 +Depends: libc6 (>= 2.2.5), xorg-video-abi-8.0, xserver-xorg-core (>= 2:1.8.99.904) +Conflicts: xserver-xorg-driver-tdfx +Filename: pool/main/x/xserver-xorg-video-tdfx/xserver-xorg-video-tdfx_1.4.3-2build2_amd64.deb +Size: 46392 +MD5sum: 0adaf52a840699116197b796a8eb5492 +SHA1: f2026af7d453518705f049ef9750ba3f08df1c62 +SHA256: 620e5143574d0820641004e9c386748c35344bb3ec95833d884685c022dabe87 +Description: X.Org X server -- tdfx display driver + This package provides the driver for 3dfx Voodoo video cards and their + derivatives. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-video-tdfx driver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-video-trident +Priority: optional +Section: x11 +Installed-Size: 244 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Version: 1:1.3.4-0ubuntu1 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-trident +Provides: xorg-driver-video, xserver-xorg-video-8 +Depends: libc6 (>= 2.7), xorg-video-abi-8.0, xserver-xorg-core (>= 2:1.8.99.904) +Conflicts: xserver-xorg-driver-trident +Filename: pool/main/x/xserver-xorg-video-trident/xserver-xorg-video-trident_1.3.4-0ubuntu1_amd64.deb +Size: 82352 +MD5sum: 5389ff7eb1757dda92a35b8cec818b23 +SHA1: f731b2a951e5a64b990ddd88275a9158ddfdee30 +SHA256: 9757b882d296eed853c152d79546ad61eec9162abe0f32007dfa666c774cb408 +Description: X.Org X server -- Trident display driver + This package provides the driver for Trident Blade/Image/ProVidia/TGUI/9xxx + video cards. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + . + This package is built from the X.org xf86-video-trident driver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-video-tseng +Priority: optional +Section: x11 +Installed-Size: 136 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Version: 1:1.2.4-0ubuntu1 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-tseng +Provides: xorg-driver-video, xserver-xorg-video-8 +Depends: libc6 (>= 2.2.5), xorg-video-abi-8.0, xserver-xorg-core (>= 2:1.8.99.904) +Conflicts: xserver-xorg-driver-tseng +Filename: pool/main/x/xserver-xorg-video-tseng/xserver-xorg-video-tseng_1.2.4-0ubuntu1_amd64.deb +Size: 37086 +MD5sum: 49454fcbc2be113329a7d7c4baa451ec +SHA1: ba126de1cb3ce5f3348de11bc2aa5656b59b1e63 +SHA256: 66b15338b13dd04c4f987326103b14f647824c368f197db5cdbd4e8038b4e764 +Description: X.Org X server -- Tseng display driver + This package provides the driver for Tseng Labs cards. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + . + This package is built from the X.org xf86-video-tseng driver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-video-vesa +Priority: optional +Section: x11 +Installed-Size: 108 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Version: 1:2.3.0-3build1 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-vesa +Provides: xorg-driver-video, xserver-xorg-video-8 +Depends: libc6 (>= 2.2.5), libdrm2 (>= 2.4.3), xorg-video-abi-8.0, xserver-xorg-core (>= 2:1.8.99.904) +Conflicts: xserver-xorg-driver-vesa +Filename: pool/main/x/xserver-xorg-video-vesa/xserver-xorg-video-vesa_2.3.0-3build1_amd64.deb +Size: 27648 +MD5sum: 11f9542a9848c934781ff4c7e526b4eb +SHA1: 7d04bd52102ba4bc279121dda3b23bf0bb365494 +SHA256: 8960650901beb1b9cebae21d4f7c505039b4e8b584acf7d495948d8c064c078a +Description: X.Org X server -- VESA display driver + This driver for the X.Org X server (see xserver-xorg for a further description) + uses the standard VESA interface provided on all video cards, but runs + unaccelerated. This driver is not recommended for use unless you have a + problem with the normal driver for your card, because it will peform very + badly. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + . + This package is built from the X.org xf86-video-vesa driver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-video-vmware +Priority: optional +Section: x11 +Installed-Size: 148 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Version: 1:11.0.1-2build1 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-vmware +Provides: xorg-driver-video, xserver-xorg-video-8 +Depends: libc6 (>= 2.4), libdrm2 (>= 2.3.1), xorg-video-abi-8.0, xserver-xorg-core (>= 2:1.8.99.904) +Conflicts: xserver-xorg-driver-vmware +Filename: pool/main/x/xserver-xorg-video-vmware/xserver-xorg-video-vmware_11.0.1-2build1_amd64.deb +Size: 46210 +MD5sum: 324e418b02bfaab852d05363b63beb7b +SHA1: 533ba227f0c038e7f4eb63689fb27ab48c8a3915 +SHA256: 5a9910e91c7f0c6c51bbbd93b95a933a13e14412b0c5d10d6c6d406acf036835 +Description: X.Org X server -- VMware display driver + This package provides the driver for VMware client sessions, i.e. if Linux + is running inside a VMware session. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + . + This package is built from the X.org xf86-video-vmware driver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook + +Package: xserver-xorg-video-voodoo +Priority: optional +Section: x11 +Installed-Size: 104 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Architecture: amd64 +Version: 1:1.2.4-0ubuntu1 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-voodoo +Provides: xorg-driver-video, xserver-xorg-video-8 +Depends: libc6 (>= 2.2.5), xorg-video-abi-8.0, xserver-xorg-core (>= 2:1.8.99.904) +Conflicts: xserver-xorg-driver-voodoo +Filename: pool/main/x/xserver-xorg-video-voodoo/xserver-xorg-video-voodoo_1.2.4-0ubuntu1_amd64.deb +Size: 25076 +MD5sum: 8fc0fa8abb44151231be76434bf3451e +SHA1: cb618ff8a5eff6389aa660f5a51643ed3ba8b3d6 +SHA256: dfdda11e40c533f6636084385882d114347336766e7fc4bb14f515df5b858982 +Description: X.Org X server -- Voodoo display driver + This package provides the driver for 3dfx Voodoo1 and Voodoo2 chipsets. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + . + This package is built from the X.org xf86-video-voodoo driver module. +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 18m +Task: ubuntu-desktop, ubuntu-uec-live, kubuntu-desktop, kubuntu-mobile, kubuntu-netbook, edubuntu-desktop, edubuntu-uec-live, xubuntu-desktop, mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend, ubuntu-netbook diff --git a/test/integration/framework b/test/integration/framework index 95fce1247..2422f0886 100644 --- a/test/integration/framework +++ b/test/integration/framework @@ -74,6 +74,7 @@ aptconfig() { runapt apt-config $*; } aptcache() { runapt apt-cache $*; } aptget() { runapt apt-get $*; } aptftparchive() { runapt apt-ftparchive $*; } +aptkey() { runapt apt-key $*; } dpkg() { $(which dpkg) --root=${TMPWORKINGDIRECTORY}/rootdir --force-not-root --force-bad-path --log=${TMPWORKINGDIRECTORY}/rootdir/var/log/dpkg.log $* } @@ -112,6 +113,7 @@ setupenvironment() { cp $(find $TESTDIR -name '*.pub' -o -name '*.sec') keys/ ln -s ${TMPWORKINGDIRECTORY}/keys/joesixpack.pub rootdir/etc/apt/trusted.gpg.d/joesixpack.gpg echo "Dir \"${TMPWORKINGDIRECTORY}/rootdir\";" > aptconfig.conf + echo "Dir::state::status \"${TMPWORKINGDIRECTORY}/rootdir/var/lib/dpkg/status\";" >> aptconfig.conf echo "Debug::NoLocking \"true\";" >> aptconfig.conf echo "APT::Get::Show-User-Simulation-Note \"false\";" >> aptconfig.conf echo "Dir::Bin::dpkg \"fakeroot\";" >> aptconfig.conf @@ -212,7 +214,7 @@ buildpackage() { fi local BUILT="$(dpkg-buildpackage -uc -us -a$ARCH 2> /dev/null)" local PKGS="$( echo "$BUILT" | grep '^dpkg-deb: building package' | cut -d'/' -f 2 | sed -e "s#'\.##")" - local SRCS="$( echo "$BUILT" | grep '^dpkg-source: info: building' | grep -o '[a-z0-9._-]*$')" + local SRCS="$( echo "$BUILT" | grep '^dpkg-source: info: building' | grep -o '[a-z0-9._+~-]*$')" cd - > /dev/null for PKG in $PKGS; do echo "pool/${PKG}" >> ${TMPWORKINGDIRECTORY}/incoming/${RELEASE}.${SECTION}.pkglist @@ -500,3 +502,27 @@ testnopackage() { fi msgpass } + +testdpkginstalled() { + msgtest "Test for correctly installed package(s) with" "dpkg -l $*" + local PKGS="$(dpkg -l $* | grep '^[a-z]' | grep '^[^i]' | wc -l)" + if [ "$PKGS" != 0 ]; then + echo $PKGS + dpkg -l $* | grep '^[a-z]' + msgfail + return 1 + fi + msgpass +} + +testdpkgnoninstalled() { + msgtest "Test for correctly non-installed package(s) with" "dpkg -l $*" + local PKGS="$(dpkg -l $* | grep '^[a-z]' | grep '^[^u]' | wc -l)" + if [ "$PKGS" != 0 ]; then + echo + dpkg -l $* | grep '^[a-z]' + msgfail + return 1 + fi + msgpass +} diff --git a/test/integration/run-tests b/test/integration/run-tests index cb74f21e7..c7ea0a61a 100755 --- a/test/integration/run-tests +++ b/test/integration/run-tests @@ -1,7 +1,7 @@ #!/bin/sh set -e -local DIR=$(readlink -f $(dirname $0)) +DIR=$(readlink -f $(dirname $0)) for testcase in $(run-parts --list $DIR | grep '/test-'); do echo "\033[1;32mRun Testcase \033[1;35m$(basename ${testcase})\033[0m" ${testcase} diff --git a/test/integration/status-bug-598669-install-postfix-gets-exim-heavy b/test/integration/status-bug-598669-install-postfix-gets-exim-heavy new file mode 100644 index 000000000..fcf21dc45 --- /dev/null +++ b/test/integration/status-bug-598669-install-postfix-gets-exim-heavy @@ -0,0 +1,30 @@ +Package: exim4-daemon-light +Status: install ok installed +Priority: standard +Section: mail +Installed-Size: 952 +Maintainer: Exim4 Maintainers <pkg-exim4-maintainers@lists.alioth.debian.org> +Architecture: i386 +Source: exim4 +Version: 4.72-1 +Replaces: mail-transport-agent +Provides: mail-transport-agent +Conflicts: mail-transport-agent +Filename: pool/main/e/exim4/exim4-daemon-light_4.72-1_i386.deb +Size: 459500 +MD5sum: f32ccafef44bed2efcd526cd6501307d +Description: lightweight Exim MTA (v4) daemon + +Package: exim4 +Status: install ok installed +Priority: standard +Section: mail +Installed-Size: 60 +Maintainer: Exim4 Maintainers <pkg-exim4-maintainers@lists.alioth.debian.org> +Architecture: all +Version: 4.72-1 +Depends: exim4-daemon-light | exim4-daemon-heavy +Filename: pool/main/e/exim4/exim4_4.72-1_all.deb +Size: 7738 +MD5sum: 2f473b82bbabac9718ff3e755eaf85c1 +Description: metapackage to ease Exim MTA (v4) installation diff --git a/test/integration/status-ubuntu-bug-614993 b/test/integration/status-ubuntu-bug-614993 new file mode 100644 index 000000000..c2f3d5010 --- /dev/null +++ b/test/integration/status-ubuntu-bug-614993 @@ -0,0 +1,5894 @@ +Package: xserver-xorg-input-vmmouse +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 176 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Architecture: amd64 +Version: 1:12.6.5-4ubuntu2 +Replaces: mdetect (<< 0.5.2.2), xserver-xorg (<< 6.8.2-35) +Provides: xserver-xorg-input-7 +Depends: libc6 (>= 2.7), xserver-xorg-core (>= 2:1.6.99.900), xserver-xorg-input-mouse, udev +Description: X.Org X server -- VMMouse input driver to use with VMWare + This package provides the driver for the X11 vmmouse input device. + . + The VMMouse driver enables support for the special VMMouse protocol + that is provided by VMware virtual machines to give absolute pointer + positioning. + . + The vmmouse driver is capable of falling back to the standard "mouse" + driver if a VMware virtual machine is not detected. This allows for + dual-booting of an operating system from a virtual machine to real hardware + without having to edit xorg.conf every time. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-input-vmmouse driver module. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libtext-wrapi18n-perl +Status: install ok installed +Priority: required +Section: perl +Installed-Size: 68 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Version: 0.06-7 +Depends: libtext-charwidth-perl +Description: internationalized substitute of Text::Wrap + This module is a substitution for Text::Wrap, supporting + multibyte characters such as UTF-8, EUC-JP, and GB2312, fullwidth + characters such as east Asian characters, combining characters + such as diacritical marks and Thai, and languages which don't + use whitespaces between words such as Chinese and Japanese. + . + It provides wrap(). +Original-Maintainer: Anibal Monsalve Salazar <anibal@debian.org> +Homepage: http://search.cpan.org/search?module=Text::WrapI18N + +Package: debconf +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 924 +Maintainer: Colin Watson <cjwatson@ubuntu.com> +Architecture: all +Version: 1.5.28ubuntu4 +Replaces: debconf-tiny +Provides: debconf-2.0 +Depends: debconf-i18n | debconf-english +Pre-Depends: perl-base (>= 5.6.1-4) +Recommends: apt-utils (>= 0.5.1) +Suggests: debconf-doc, debconf-utils, whiptail | dialog | gnome-utils, libterm-readline-gnu-perl, libgnome2-perl, libnet-ldap-perl, perl +Conflicts: apt (<< 0.3.12.1), cdebconf (<< 0.96), debconf-tiny, debconf-utils (<< 1.3.22), dialog (<< 0.9b-20020814-1), menu (<= 2.1.3-1), whiptail (<< 0.51.4-11), whiptail-utf8 (<= 0.50.17-13) +Conffiles: + /etc/apt/apt.conf.d/70debconf 7e9d09d5801a42b4926b736b8eeabb73 + /etc/bash_completion.d/debconf 8fa1862734fbe54d7178aaaa419f5a11 + /etc/debconf.conf 8c0619be413824f1fc7698cee0f23811 +Description: Debian configuration management system + Debconf is a configuration management system for debian packages. Packages + use Debconf to ask questions when they are installed. +Original-Maintainer: Debconf Developers <debconf-devel@lists.alioth.debian.org> +Python-Version: 2.6, 3.1 + +Package: xserver-common +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 172 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Architecture: all +Source: xorg-server +Version: 2:1.7.6-2ubuntu7 +Replaces: xserver-xorg-core (<< 2:1.5.2) +Depends: x11-common, xkb-data, x11-xkb-utils +Recommends: xfonts-base +Description: common files used by various X servers + This package provides files necessary for all X.Org based X servers. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: dash +Status: install ok installed +Priority: required +Section: shells +Installed-Size: 236 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 0.5.5.1-3ubuntu2 +Depends: debianutils (>= 2.15), dpkg (>= 1.15.0) +Pre-Depends: libc6 (>= 2.11) +Description: POSIX-compliant shell + The Debian Almquist Shell (dash) is a POSIX-compliant shell derived + from ash. + . + Since it executes scripts faster than bash, and has fewer library + dependencies (making it more robust against software or hardware + failures), it is used as the default system shell on Debian systems. +Homepage: http://gondor.apana.org.au/~herbert/dash/ +Original-Maintainer: Gerrit Pape <pape@smarden.org> + +Package: libmpfr1ldbl +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 656 +Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: mpfr +Version: 2.4.2-3ubuntu1 +Replaces: libmpfr1 +Depends: libgmp3c2 (>= 4.2.dfsg-1), libc6 (>= 2.4) +Conflicts: libgmp3 (<< 4.1.4-3), libmpfr1 +Description: multiple precision floating-point computation + MPFR provides a library for multiple-precision floating-point computation + with correct rounding. The computation is both efficient and has a + well-defined semantics. It copies the good ideas from the + ANSI/IEEE-754 standard for double-precision floating-point arithmetic + (53-bit mantissa). + . + The home page is http://www.mpfr.org/. +Homepage: http://www.mpfr.org/ +Original-Maintainer: Laurent Fousse <laurent@komite.net> + +Package: libxdmcp6 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 80 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libxdmcp +Version: 1:1.0.3-1 +Depends: libc6 (>= 2.4) +Description: X11 Display Manager Control Protocol library + This package provides the main interface to the X11 display manager control + protocol library, which allows for remote logins to display managers. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libXdmcp +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libgl1-mesa-dri +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 37216 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Architecture: amd64 +Source: mesa +Version: 7.7.1-1ubuntu2 +Replaces: xlibmesa-dri (<< 1:7.0.0) +Depends: libc6 (>= 2.4), libdrm-intel1 (>= 2.4.15), libdrm-radeon1 (>= 2.4.17), libdrm2 (>= 2.3.1), libexpat1 (>= 1.95.8) +Suggests: libglide3 +Breaks: libgl1-mesa-glx (<< 7.2), xserver-xorg-core (<< 2:1.5) +Conflicts: xlibmesa-dri (<< 1:7.0.0) +Description: A free implementation of the OpenGL API -- DRI modules + This version of Mesa provides GLX and DRI capabilities: it is capable of + both direct and indirect rendering. For direct rendering, it can use DRI + modules from the libgl1-mesa-dri package to accelerate drawing. + . + This package does not include the OpenGL library itself, only the DRI + modules for accelerating direct rendering. + . + For a complete description of Mesa, please look at the + libgl1-mesa-swx11 package. + . + The tdfx DRI module needs libglide3 to enable direct rendering. +Homepage: http://mesa3d.sourceforge.net/ +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: coreutils +Essential: yes +Status: install ok installed +Priority: required +Section: utils +Installed-Size: 12992 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 7.4-2ubuntu2 +Replaces: mktemp +Pre-Depends: libacl1 (>= 2.2.11-1), libattr1 (>= 2.4.41-1), libc6 (>= 2.11), libselinux1 (>= 1.32) +Description: The GNU core utilities + This package contains the essential basic system utilities. + . + Specifically, this package includes: + basename cat chgrp chmod chown chroot cksum comm cp csplit cut date dd df dir + dircolors dirname du echo env expand expr factor false fmt fold groups head + hostid id install join link ln logname ls md5sum mkdir mkfifo mknod mktemp + mv nice nl nohup od paste pathchk pinky pr printenv printf ptx pwd readlink + rm rmdir sha1sum seq shred sleep sort split stat stty sum sync tac tail tee + test touch tr true tsort tty uname unexpand uniq unlink users vdir wc who + whoami yes +Original-Maintainer: Michael Stone <mstone@debian.org> + +Package: libfreetype6 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 796 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: freetype +Version: 2.3.11-1ubuntu2 +Depends: libc6 (>= 2.4), zlib1g (>= 1:1.1.4) +Conflicts: freetype, xpdf-reader (<< 1.00-4) +Description: FreeType 2 font engine, shared library files + The FreeType project is a team of volunteers who develop free, + portable and high-quality software solutions for digital typography. + They specifically target embedded systems and focus on bringing small, + efficient and ubiquitous products. + . + The FreeType 2 library is their new software font engine. It has been + designed to provide the following important features: + * A universal and simple API to manage font files + * Support for several font formats through loadable modules + * High-quality anti-aliasing + * High portability & performance + . + Supported font formats include: + * TrueType files (.ttf) and collections (.ttc) + * Type 1 font files both in ASCII (.pfa) or binary (.pfb) format + * Type 1 Multiple Master fonts. The FreeType 2 API also provides + routines to manage design instances easily + * Type 1 CID-keyed fonts + * OpenType/CFF (.otf) fonts + * CFF/Type 2 fonts + * Adobe CEF fonts (.cef), used to embed fonts in SVG documents with + the Adobe SVG viewer plugin. + * Windows FNT/FON bitmap fonts + . + This package contains the files needed to run programs that use the + FreeType 2 library. + . + Home Page: http://www.freetype.org/ + Authors: David Turner <david.turner@freetype.org> + Robert Wilhelm <robert.wilhelm@freetype.org> + Werner Lemberg <werner.lemberg@freetype.org> +Original-Maintainer: Steve Langasek <vorlon@debian.org> + +Package: debianutils +Essential: yes +Status: install ok installed +Priority: required +Section: utils +Installed-Size: 228 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 3.2.2 +Depends: sensible-utils +Pre-Depends: libc6 (>= 2.7) +Description: Miscellaneous utilities specific to Debian + This package provides a number of small utilities which are used + primarily by the installation scripts of Debian packages, although + you may use them directly. + . + The specific utilities included are: installkernel run-parts + savelog tempfile which. +Original-Maintainer: Clint Adams <schizo@debian.org> + +Package: libxmuu1 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 72 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libxmu +Version: 2:1.0.5-1 +Depends: libc6 (>= 2.4), libx11-6 +Description: X11 miscellaneous micro-utility library + libXmuu provides a set of miscellaneous utility convenience functions for X + libraries to use. It is a lighter version of libXmu that does not depend + on libXt or libXext; for more information on libXmu, see libxmu6. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libXmu +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: initramfs-tools +Status: install ok installed +Priority: required +Section: utils +Installed-Size: 432 +Maintainer: Ubuntu Kernel Team <kernel-team@lists.ubuntu.com> +Architecture: all +Version: 0.92bubuntu78 +Provides: linux-initramfs-tool +Depends: initramfs-tools-bin (= 0.92bubuntu78), klibc-utils (>= 1.5.9-1), busybox-initramfs (>= 1:1.13.3-1ubuntu5), cpio, module-init-tools, udev (>= 147~-5), findutils (>= 4.2.24), util-linux (>> 2.15~rc1) +Breaks: mountall (<< 2.0~) +Conflicts: usplash (<< 0.5.50) +Conffiles: + /etc/initramfs-tools/initramfs.conf eec5dbb69cee0bc2894cbd36b36bb821 + /etc/initramfs-tools/update-initramfs.conf 25099e2e0961298b2772355149f9810d +Description: tools for generating an initramfs + This package contains tools to create and boot an initramfs for packaged 2.6 + Linux kernel. The initramfs is a gzipped cpio archive. At boot time, the + kernel unpacks that archive into RAM, mounts and uses it as initial root file + system. The mounting of the real root file system occurs in early user space. + klibc provides utilities to setup root. Having the root on EVMS, MD, LVM2, + LUKS or NFS is also supported. + Any boot loader with initrd support is able to load an initramfs archive. +Original-Maintainer: Debian kernel team <debian-kernel@lists.debian.org> + +Package: makedev +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 144 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Version: 2.3.1-89ubuntu1 +Depends: base-passwd (>= 3.0.4) +Conflicts: udev (<= 0.024-7) +Description: creates device files in /dev + The MAKEDEV executable is used to create device files, often in /dev. + . + Device files are special files through which applications can interact + with hardware. + . + This package is not necessary for most modern Linux systems, where the udev + subsystem provides a more dynamic mechanism for device file management. +Original-Maintainer: Bdale Garbee <bdale@gag.com> + +Package: x11-xkb-utils +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 524 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 7.5+1 +Replaces: setxkbmap, xbase-clients (<= 1:7.2.ds2-3), xkbcomp, xkbevd, xkbprint, xkbutils +Depends: libc6 (>= 2.7), libx11-6, libxaw7, libxkbfile1, libxmu6, libxt6, cpp +Pre-Depends: x11-common (>= 1:7.0.0) +Conflicts: setxkbmap, xkbcomp, xkbevd, xkbprint, xkbutils +Description: X11 XKB utilities + xkbutils contains a number of client-side utilities for XKB, the X11 + keyboard extension. + . + setxkbmap is a tool to query and change the current XKB map. + . + xkbbell generates a bell event through the keyboard. + . + xkbcomp is a tool to compile XKB definitions into map files the server + can use. + . + xkbevd is an experimental tool to listen for certain XKB events and execute + defined triggers when actions occur. + . + xkbprint is a tool to generate an image with the physical representation + of the keyboard as XKB sees it. + . + xkbvleds shows the changing status of keyboard LEDs. + . + xkbwatch shows the changing status of modifiers and LEDs. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: login +Essential: yes +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 2384 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: shadow +Version: 1:4.1.4.2-1ubuntu2 +Replaces: manpages-de (<< 0.5-3), manpages-tr (<< 1.0.5), manpages-zh (<< 1.5.1-1) +Pre-Depends: libc6 (>= 2.7), libpam0g (>= 0.99.7.1), libpam-runtime, libpam-modules +Conflicts: amavisd-new (<< 2.3.3-8), backupninja (<< 0.9.3-5), echolot (<< 2.1.8-4), gnunet (<< 0.7.0c-2), python-4suite (<< 0.99cvs20060405-1) +Conffiles: + /etc/pam.d/login 837d7e3c52c5570b4e48d751cae9f8b0 + /etc/pam.d/su 7309fb874571fe5447321b43448a50b3 + /etc/login.defs 182bb938192636c8b62e3d4349de6f72 + /etc/securetty 0ae2cda1645723f062be3abaf4331747 +Description: system login tools + These tools are required to be able to login and use your system. The + login program invokes your user shell and enables command execution. The + newgrp program is used to change your effective group ID (useful for + workgroup type situations). The su program allows changing your effective + user ID (useful being able to execute commands as another user). +Homepage: http://pkg-shadow.alioth.debian.org/ +Original-Maintainer: Shadow package maintainers <pkg-shadow-devel@lists.alioth.debian.org> + +Package: gpgv +Status: install ok installed +Priority: important +Section: utils +Installed-Size: 444 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: gnupg +Version: 1.4.10-2ubuntu1 +Depends: libbz2-1.0, libc6 (>= 2.4), libreadline6, zlib1g (>= 1:1.1.4) +Suggests: gnupg +Description: GNU privacy guard - signature verification tool + GnuPG is GNU's tool for secure communication and data storage. + . + gpgv is a stripped-down version of gnupg which is only able to check + signatures. It is smaller than the full-blown gnupg and uses a + different (and simpler) way to check that the public keys used to + make the signature are trustworthy. +Homepage: http://www.gnupg.org +Original-Maintainer: Debian GnuPG-Maintainers <pkg-gnupg-maint@lists.alioth.debian.org> + +Package: libgmp3c2 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 668 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: gmp +Version: 2:4.3.2+dfsg-1ubuntu1 +Replaces: libgmp3 +Depends: libc6 (>= 2.7) +Conflicts: libgmp2 (<< 2.0.2-10), libgmp3 +Description: Multiprecision arithmetic library + GNU MP is a programmer's library for arbitrary precision + arithmetic (ie, a bignum package). It can operate on signed + integer, rational, and floating point numeric types. + . + It has a rich set of functions, and the functions have a regular + interface. +Homepage: http://gmplib.org/ +Original-Maintainer: Debian Scientific Computing Team <pkg-scicomp-devel@lists.alioth.debian.org> + +Package: libdbus-1-3 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 348 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: dbus +Version: 1.2.16-2ubuntu4 +Depends: libc6 (>= 2.4) +Recommends: dbus +Conflicts: dbus (<< 0.60) +Description: simple interprocess messaging system + D-Bus is a message bus, used for sending messages between applications. + Conceptually, it fits somewhere in between raw sockets and CORBA in + terms of complexity. + . + D-Bus supports broadcast messages, asynchronous messages (thus + decreasing latency), authentication, and more. It is designed to be + low-overhead; messages are sent using a binary protocol, not using + XML. D-Bus also supports a method call mapping for its messages, but + it is not required; this makes using the system quite simple. + . + It comes with several bindings, including GLib, Python, Qt and Java. + . + The daemon can be found in the dbus package. +Homepage: http://dbus.freedesktop.org/ +Original-Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@lists.alioth.debian.org> + +Package: module-init-tools +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 376 +Maintainer: Scott James Remnant <scott@ubuntu.com> +Architecture: amd64 +Version: 3.11.1-2ubuntu1 +Depends: libc6 (>= 2.8), upstart-job +Breaks: initramfs-tools (<< 0.92bubuntu23) +Conffiles: + /etc/depmod.d/ubuntu.conf 7c8439ef36b12e5f226b5dbfa20b8c2d + /etc/modprobe.d/blacklist-ath_pci.conf d1da9bb08c2b0f56f3be93fd0e37946b + /etc/modprobe.d/blacklist-firewire.conf cb8a4c10a5dddd1d67092198b1ae415f + /etc/modprobe.d/blacklist-framebuffer.conf b46c9509180b5a76145f08be46b1aff5 + /etc/modprobe.d/blacklist-watchdog.conf 55327f9270c8a6257a833c4d127a39e1 + /etc/modprobe.d/blacklist.conf bc6754fa320733c6d239a4bb0148ffd7 + /etc/init/module-init-tools.conf 48db1b767c3148fd83eba59d12fc9a5e +Description: tools for managing Linux kernel modules + This package contains a set of programs for loading, inserting, and + removing kernel modules for Linux (versions 2.5.48 and above). + +Package: libgdbm3 +Status: install ok installed +Priority: important +Section: libs +Installed-Size: 128 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: gdbm +Version: 1.8.3-9 +Depends: libc6 (>= 2.2.5), dpkg (>= 1.15.4) | install-info +Description: GNU dbm database routines (runtime version) + GNU dbm ('gdbm') is a library of database functions that use extendible + hashing and works similarly to the standard UNIX 'dbm' functions. + . + The basic use of 'gdbm' is to store key/data pairs in a data file, thus + providing a persistent version of the 'dictionary' Abstract Data Type + ('hash' to perl programmers). +Original-Maintainer: Anibal Monsalve Salazar <anibal@debian.org> +Homepage: http://directory.fsf.org/project/gdbm/ + +Package: xserver-xorg-video-v4l +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 136 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1:0.2.0-4 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-v4l +Provides: xserver-xorg-video-6 +Depends: libc6 (>= 2.4), xserver-xorg-core (>= 2:1.6.99.900) +Conflicts: xserver-xorg-driver-v4l +Description: X.Org X server -- Video 4 Linux display driver + This driver for the X.Org X server (see xserver-xorg for a further description) + uses the Video For Linux interface. It does not provide a graphics chip + driver, but instead registers a number of generic Xv adaptors which can be + used with any graphics chipset driver. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-video-v4l driver module. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libgcrypt11 +Status: install ok installed +Priority: important +Section: libs +Installed-Size: 560 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1.4.4-5ubuntu2 +Depends: libc6 (>= 2.4), libgpg-error0 (>= 1.6) +Suggests: rng-tools +Description: LGPL Crypto library - runtime library + libgcrypt contains cryptographic functions. Many important free + ciphers, hash algorithms and public key signing algorithms have been + implemented: + arcfour, blowfish, cast5, DSA, DSA2, des, 3DES, elgamal, MD5, rijndael, + RMD160, RSA, SEED, SHA1, SHA-384, SHA-512, twofish, tiger. +Homepage: http://directory.fsf.org/project/libgcrypt/ +Original-Maintainer: Debian GnuTLS Maintainers <pkg-gnutls-maint@lists.alioth.debian.org> + +Package: xserver-xorg-video-sis +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 664 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1:0.10.2-2 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-sis +Provides: xserver-xorg-video-6 +Depends: libc6 (>= 2.7), xserver-xorg-core (>= 2:1.6.99.900) +Conflicts: xserver-xorg-driver-sis +Description: X.Org X server -- SiS display driver + This package provides the driver for all SiS and XGI Volari cards. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-video-sis driver module. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libxinerama1 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 68 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libxinerama +Version: 2:1.1-2 +Depends: libc6 (>= 2.2.5), libx11-6, libxext6 +Description: X11 Xinerama extension library + libXinerama provides an X Window System client interface to the XINERAMA + extension to the X protocol. + . + The Xinerama (also known as panoramiX) extension allows for multiple screens + attached to a single display to be treated as belonging together, and to give + desktop applications a better idea of the monitor layout. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libXinerama +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: lzma +Status: install ok installed +Priority: required +Section: utils +Installed-Size: 172 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 4.43-14ubuntu2 +Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0) +Description: Compression method of 7z format in 7-Zip program + LZMA is a compression algorithm, based on the famous Lempel Ziv + compression method. + . + The main characteristics of the algorithm are very good compression, + fast decompression, use of lot of RAM for compression and low usage of + RAM for decompression. + . + LZMA provides high compression ratio and very fast decompression, so it + is very suitable for embedded applications. For example, it can be used + for ROM (firmware) compression. + . + This package provides a gzip-like interface for the lzma program. +Homepage: http://www.7-zip.org/sdk.htm +Original-Maintainer: Mohammed Adnène Trojette <adn+deb@diwi.org> + +Package: libuuid1 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 120 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: util-linux +Version: 2.17.2-0ubuntu1 +Replaces: e2fsprogs (<< 1.34-1) +Depends: passwd, libc6 (>= 2.4) +Recommends: uuid-runtime +Description: Universally Unique ID library + The libuuid library generates and parses 128-bit universally unique + ids (UUIDs). A UUID is an identifier that is unique across both + space and time, with respect to the space of all UUIDs. A UUID can + be used for multiple purposes, from tagging objects with an extremely + short lifetime, to reliably identifying very persistent objects + across a network. + . + See RFC 4122 for more information. +Original-Maintainer: LaMont Jones <lamont@debian.org> + +Package: libtasn1-3 +Status: install ok installed +Priority: important +Section: libs +Installed-Size: 144 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 2.4-1 +Depends: libc6 (>= 2.4) +Conflicts: libtasn1-2 (= 0.3.1-1) +Description: Manage ASN.1 structures (runtime) + Manage ASN1 (Abstract Syntax Notation One) structures. + The main features of this library are: + * on-line ASN1 structure management that doesn't require any C code + file generation. + * off-line ASN1 structure management with C code file generation + containing an array. + * DER (Distinguish Encoding Rules) encoding + * no limits for INTEGER and ENUMERATED values + . + This package contains runtime libraries. +Original-Maintainer: Debian GnuTLS Maintainers <pkg-gnutls-maint@lists.alioth.debian.org> +Homepage: http://www.gnu.org/software/libtasn1/ + +Package: lsb-base +Status: install ok installed +Priority: required +Section: misc +Installed-Size: 84 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Source: lsb +Version: 4.0-0ubuntu8 +Replaces: lsb (<< 2.0-6), lsb-core (<< 2.0-6) +Depends: sed, ncurses-bin +Conflicts: lsb (<< 2.0-6), lsb-core (<< 2.0-6) +Conffiles: + /etc/lsb-base-logging.sh 5126106e3af09b522cdbd5e4685942af +Description: Linux Standard Base 4.0 init script functionality + The Linux Standard Base (http://www.linuxbase.org/) is a standard + core system that third-party applications written for Linux can + depend upon. + . + This package only includes the init-functions shell library, which + may be used by other packages' initialization scripts for console + logging and other purposes. +Homepage: http://www.linux-foundation.org/en/LSB +Original-Maintainer: Chris Lawrence <lawrencc@debian.org> + +Package: libcurl3-gnutls +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 440 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: curl +Version: 7.19.7-1ubuntu1 +Replaces: libcurl4-gnutls +Depends: libc6 (>= 2.7), libgcrypt11 (>= 1.4.2), libgnutls26 (>= 2.7.14-0), libgssapi-krb5-2 (>= 1.7dfsg~beta1), libidn11 (>= 1.13), libldap-2.4-2 (>= 2.4.7), zlib1g (>= 1:1.1.4), ca-certificates +Conflicts: libcurl4-gnutls +Description: Multi-protocol file transfer library (GnuTLS) + libcurl is designed to be a solid, usable, reliable and portable + multi-protocol file transfer library. + . + SSL support is provided by GnuTLS. + . + This is the shared version of libcurl. +Homepage: http://curl.haxx.se +Original-Maintainer: Domenico Andreoli <cavok@debian.org> + +Package: cpp-4.4 +Status: install ok installed +Priority: optional +Section: interpreters +Installed-Size: 9828 +Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: gcc-4.4 +Version: 4.4.3-4ubuntu5 +Depends: gcc-4.4-base (= 4.4.3-4ubuntu5), libc6 (>= 2.11), libgmp3c2, libmpfr1ldbl +Suggests: gcc-4.4-locales (>= 4.4.3-1) +Description: The GNU C preprocessor + A macro processor that is used automatically by the GNU C compiler + to transform programs before actual compilation. + . + This package has been separated from gcc for the benefit of those who + require the preprocessor but not the compiler. +Homepage: http://gcc.gnu.org/ +Original-Maintainer: Debian GCC Maintainers <debian-gcc@lists.debian.org> + +Package: procps +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 808 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1:3.2.8-1ubuntu4 +Replaces: bsdutils (<< 2.9x-1), watch +Provides: watch +Depends: libc6 (>= 2.4), libncurses5 (>= 5.6+20071006-3), upstart-job, lsb-base (>= 3.0-10) +Recommends: psmisc +Conflicts: libproc-dev (<< 1:1.2.6-2), pgrep (<< 3.3-5), procps-nonfree, w-bassman (<< 1.0-3), watch +Conffiles: + /etc/sysctl.d/10-console-messages.conf 154f6f5c5810d10bb303fb6a8e907c6a + /etc/sysctl.d/10-network-security.conf 4ac7258f5336e7eeaf448c05ab668d3c + /etc/sysctl.d/10-zeropage.conf 8d7193abcc4dfedaf519dd03016a5e59 + /etc/sysctl.d/README c20074b9b11a5202758c69d7bcb6996f + /etc/sysctl.conf 86b831bbed0a49bc7361ed64d6c09435 + /etc/init/procps.conf 72d5354efb1017283c440cf102b5d74a +Description: /proc file system utilities + These are utilities to browse the /proc filesystem, which is not a real file + system but a way for the kernel to provide information about the status of + entries in its process table. (e.g. running, stopped or "zombie") + Both command line and full screen utilities are provided. Ncurses is needed + for the full screen utilities. More information can be found at procps + website http://procps.sf.net/ + . + This package includes the following utilities: top, uptime, tload, + free, vmstat, watch, skill, pmap, pgrep, slabtop and pwdx. +Original-Maintainer: Craig Small <csmall@debian.org> + +Package: libgssapi-krb5-2 +Status: install ok installed +Priority: standard +Section: libs +Installed-Size: 312 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: krb5 +Version: 1.8.1+dfsg-2 +Replaces: libkrb53 (<< 1.6.dfsg.4~beta1-7) +Depends: libc6 (>= 2.7), libcomerr2 (>= 1.34), libk5crypto3 (>= 1.8+dfsg), libkeyutils1, libkrb5-3 (= 1.8.1+dfsg-2), libkrb5support0 (>= 1.7dfsg~beta2) +Suggests: krb5-doc, krb5-user +Description: MIT Kerberos runtime libraries - krb5 GSS-API Mechanism + Kerberos is a system for authenticating users and services on a network. + Kerberos is a trusted third-party service. That means that there is a + third party (the Kerberos server) that is trusted by all the entities on + the network (users and services, usually called "principals"). + . + This is the MIT reference implementation of Kerberos V5. + . + This package contains the runtime library for the MIT Kerberos + implementation of GSS-API used by applications and Kerberos clients. +Original-Maintainer: Sam Hartman <hartmans@debian.org> +Homepage: http://web.mit.edu/kerberos/ + +Package: python-minimal +Essential: yes +Status: install ok installed +Priority: required +Section: python +Installed-Size: 120 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Source: python-defaults +Version: 2.6.5-0ubuntu1 +Replaces: python (<= 2.4-1) +Depends: python2.6-minimal (>= 2.6.5), dpkg (>= 1.13.20) +Recommends: python +Conflicts: python (<= 2.4-1), python-central (<< 0.5.5) +Description: A minimal subset of the Python language (default version) + This package contains the interpreter and some essential modules. It's used + in the boot process for some basic tasks. + See /usr/share/doc/python2.6-minimal/README.Debian for a list of the modules + contained in this package. +Original-Maintainer: Matthias Klose <doko@debian.org> + +Package: ncurses-base +Essential: yes +Status: install ok installed +Priority: required +Section: utils +Installed-Size: 488 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Source: ncurses +Version: 5.7+20090803-2ubuntu3 +Replaces: ncurses-term +Provides: ncurses-runtime +Depends: libncurses5 +Conflicts: ncurses, ncurses-runtime +Conffiles: + /etc/terminfo/README 9d086188afcd9479ae96ff55dd6c1573 +Description: basic terminal type definitions + This package contains terminfo data files to support the most common types of + terminal, including ansi, dumb, linux, rxvt, screen, sun, vt100, vt102, vt220, + vt52, and xterm. +Homepage: ftp://invisible-island.net/ncurses/ +Original-Maintainer: Debian QA Group <packages@qa.debian.org> + +Package: libpam0g +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 272 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: pam +Version: 1.1.1-2ubuntu2 +Replaces: libpam0g-util +Depends: libc6 (>= 2.8), debconf (>= 0.5) | debconf-2.0 +Suggests: libpam-doc +Description: Pluggable Authentication Modules library + Contains the C shared library for Linux-PAM, a suite of shared + libraries that enable the local system administrator to choose how + applications authenticate users. In other words, without rewriting + or recompiling a PAM-aware application, it is possible to switch + between the authentication mechanism(s) it uses. One may entirely + upgrade the local authentication system without touching the + applications themselves. +Homepage: http://pam.sourceforge.net/ +Original-Maintainer: Steve Langasek <vorlon@debian.org> + +Package: libusb-0.1-4 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 100 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libusb +Version: 2:0.1.12-14 +Replaces: libusb0 +Depends: libc6 (>= 2.4) +Conflicts: libccid (<< 0.9.2-3), libusb0 +Description: userspace USB programming library + Library for programming USB applications without the knowledge + of Linux kernel internals. +Original-Maintainer: Aurelien Jarno <aurel32@debian.org> +Homepage: http://www.linux-usb.org/ + +Package: libgpg-error0 +Status: install ok installed +Priority: important +Section: libs +Installed-Size: 236 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libgpg-error +Version: 1.6-1ubuntu2 +Depends: libc6 (>= 2.2.5) +Description: library for common error values and messages in GnuPG components + Library that defines common error values for all GnuPG + components. Among these are GPG, GPGSM, GPGME, GPG-Agent, libgcrypt, + pinentry, SmartCard Daemon and possibly more in the future. +Original-Maintainer: Jose Carlos Garcia Sogo <jsogo@debian.org> + +Package: ucf +Status: install ok installed +Priority: standard +Section: utils +Installed-Size: 260 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Version: 3.0025 +Depends: debconf (>= 1.5.19), coreutils (>= 5.91) +Conffiles: + /etc/ucf.conf 5565b8b26108c49ba575ba452cd69b3e +Description: Update Configuration File: preserve user changes to config files. + Debian policy mandates that user changes to configuration files must be + preserved during package upgrades. The easy way to achieve this behavior + is to make the configuration file a 'conffile', in which case dpkg + handles the file specially during upgrades, prompting the user as + needed. + . + This is appropriate only if it is possible to distribute a default + version that will work for most installations, although some system + administrators may choose to modify it. This implies that the + default version will be part of the package distribution, and must + not be modified by the maintainer scripts during installation (or at + any other time). + . + This script attempts to provide conffile-like handling for files that + may not be labelled conffiles, and are not shipped in a Debian package, + but handled by the postinst instead. This script allows one to + maintain files in /etc, preserving user changes and in general + offering the same facilities while upgrading that dpkg normally + provides for 'conffiles'. + . + Additionally, this script provides facilities for transitioning a + file that had not been provided with conffile-like protection to come + under this schema, and attempts to minimize questions asked at + installation time. Indeed, the transitioning facility is better than the + one offered by dpkg while transitioning a file from a non-conffile to + conffile status. +Original-Maintainer: Manoj Srivastava <srivasta@debian.org> + +Package: perl-modules +Status: deinstall ok config-files +Priority: standard +Section: perl +Installed-Size: 15848 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Source: perl +Version: 5.10.1-8ubuntu2 +Config-Version: 5.10.1-8ubuntu2 +Replaces: libansicolor-perl, libarchive-tar-perl, libattribute-handlers-perl, libautodie-perl, libcgi-pm-perl, libcpanplus-perl, libextutils-cbuilder-perl, libextutils-parsexs-perl, libfile-temp-perl, libi18n-langtags-perl, libio-zlib-perl, liblocale-codes-perl, liblocale-maketext-perl, liblocale-maketext-simple-perl, libmath-bigint-perl, libmodule-build-perl, libmodule-corelist-perl, libmodule-load-conditional-perl, libmodule-load-perl, libmodule-pluggable-perl, libnet-perl, libnet-ping-perl, libparams-check-perl, libparent-perl, libparse-cpan-meta-perl, libpod-escapes-perl, libpod-parser-perl, libpod-simple-perl, libtest-harness-perl, libtest-simple-perl, libthread-queue-perl, libversion-perl, podlators-perl +Provides: libansicolor-perl, libarchive-tar-perl, libattribute-handlers-perl, libautodie-perl, libcgi-pm-perl, libcpanplus-perl, libextutils-cbuilder-perl, libextutils-parsexs-perl, libfile-temp-perl, libi18n-langtags-perl, libio-zlib-perl, liblocale-codes-perl, liblocale-maketext-perl, liblocale-maketext-simple-perl, libmath-bigint-perl, libmodule-build-perl, libmodule-corelist-perl, libmodule-load-conditional-perl, libmodule-load-perl, libmodule-pluggable-perl, libnet-perl, libnet-ping-perl, libparams-check-perl, libparent-perl, libparse-cpan-meta-perl, libpod-escapes-perl, libpod-parser-perl, libpod-simple-perl, libtest-harness-perl, libtest-simple-perl, libthread-queue-perl, libversion-perl, podlators-perl +Depends: perl (>= 5.10.1-1) +Conflicts: libansicolor-perl (<< 1.10-1), libarchive-tar-perl (<< 1.52), libattribute-handlers-perl (<< 0.85), libautodie-perl (<< 2.06.01), libcgi-pm-perl (<< 3.43), libcpanplus-perl (<< 0.88), libextutils-cbuilder-perl (<< 0.2602), libextutils-parsexs-perl (<< 2.2002), libfile-temp-perl (<< 0.22), libi18n-langtags-perl (<< 0.35-1), libio-zlib-perl (<< 1.09), liblocale-codes-perl (<< 2.07), liblocale-maketext-perl (<< 1.13), liblocale-maketext-simple-perl (<< 0.18-1), libmath-bigint-perl (<< 1.89), libmodule-build-perl (<< 0.340201), libmodule-corelist-perl (<< 2.18), libmodule-load-conditional-perl (<< 0.30), libmodule-load-perl (<< 0.16), libmodule-pluggable-perl (<< 3.9), libnet-perl (<= 1:1.19-3), libnet-ping-perl (<< 2.36), libparams-check-perl (<< 0.26-1), libparent-perl (<< 0.221), libparse-cpan-meta-perl (<< 1.39), libpod-escapes-perl (<< 1.04), libpod-parser-perl (<< 1.37), libpod-simple-perl (<< 3.07), libtest-harness-perl (<< 3.17), libtest-simple-perl (<< 0.92), libthread-queue-perl (<< 2.11), libversion-perl (<< 1:0.7700), podlators-perl (<= 2.2.2-1) +Conffiles: + /etc/perl/Net/libnet.cfg fb2946cae573b8ed3d654a180d458733 +Description: Core Perl modules + Architecture independent Perl modules. These modules are part of Perl and + required if the `perl' package is installed. +Original-Maintainer: Niko Tyni <ntyni@debian.org> + +Package: bsdutils +Essential: yes +Status: install ok installed +Priority: required +Section: utils +Installed-Size: 208 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: util-linux (2.17.2-0ubuntu1) +Version: 1:2.17.2-0ubuntu1 +Depends: libc6 (>= 2.7) +Recommends: bsdmainutils +Description: Basic utilities from 4.4BSD-Lite + This package contains the bare minimum number of BSD utilities needed + to boot a Debian system: logger, renice, script, scriptreplay, and wall. + The remaining standard BSD utilities are provided by bsdmainutils. +Original-Maintainer: LaMont Jones <lamont@debian.org> + +Package: xserver-xorg-video-apm +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 216 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1:1.2.2-1 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-apm +Provides: xserver-xorg-video-6 +Depends: libc6 (>= 2.4), xserver-xorg-core (>= 2:1.6.99.900) +Conflicts: xserver-xorg-driver-apm +Description: X.Org X server -- APM display driver + This package provides the driver for the Alliance Pro Motion family + of video cards; specifically, the 6420, 6422, AT24, AT25, and AT3D + cards. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-video-apm driver module. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: sensible-utils +Status: install ok installed +Priority: required +Section: utils +Installed-Size: 108 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Version: 0.0.1ubuntu3 +Replaces: debianutils (<= 2.32.3) +Description: Utilities for sensible alternative selection + This package provides a number of small utilities which are used + by programs to sensibly select and spawn an appropriate browser, + editor, or pager. + . + The specific utilities included are: select-editor sensible-browser + sensible-editor sensible-pager +Original-Maintainer: Clint Adams <schizo@debian.org> + +Package: xserver-xorg-video-voodoo +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 108 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1:1.2.3-1 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-voodoo +Provides: xserver-xorg-video-6 +Depends: libc6 (>= 2.2.5), xserver-xorg-core (>= 2:1.6.99.900) +Conflicts: xserver-xorg-driver-voodoo +Description: X.Org X server -- Voodoo display driver + This package provides the driver for 3dfx Voodoo1 and Voodoo2 chipsets. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-video-voodoo driver module. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libxkbfile1 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 204 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libxkbfile +Version: 1:1.0.6-1 +Depends: libc6 (>= 2.7), libx11-6 +Description: X11 keyboard file manipulation library + libxkbfile provides an interface to read and manipulate description files for + XKB, the X11 keyboard configuration extension. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libxkbfile +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: dpkg-dev +Status: deinstall ok config-files +Priority: optional +Section: utils +Installed-Size: 2068 +Origin: debian +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Bugs: debbugs://bugs.debian.org +Architecture: all +Source: dpkg +Version: 1.15.5.6ubuntu4 +Config-Version: 1.15.5.6ubuntu4 +Replaces: manpages-pl (<= 20051117-1) +Depends: dpkg (>= 1.15.4), perl5, perl-modules, bzip2, lzma, xz-utils, patch (>= 2.2-1), make, binutils, libtimedate-perl, base-files (>= 5.0.0) +Recommends: gcc | c-compiler, build-essential, fakeroot, gnupg, gpgv +Suggests: debian-keyring, debian-maintainers +Conflicts: devscripts (<< 2.10.26), dpkg-cross (<< 2.0.0) +Conffiles: + /etc/dpkg/shlibs.default 1a2b9d0a869e2aa885ae3621c557fb95 + /etc/dpkg/shlibs.override 84b1e69080569cc5c613a50887af5200 +Description: Debian package development tools + This package provides the development tools (including dpkg-source) + required to unpack, build and upload Debian source packages. + . + Most Debian source packages will require additional tools to build; + for example, most packages need make and the C compiler gcc. +Homepage: http://wiki.debian.org/Teams/Dpkg +Original-Maintainer: Dpkg Developers <debian-dpkg@lists.debian.org> + +Package: xserver-xorg-video-s3virge +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 160 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1:1.10.4-1 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-s3virge +Provides: xserver-xorg-video-6 +Depends: libc6 (>= 2.2.5), xserver-xorg-core (>= 2:1.6.99.900) +Conflicts: xserver-xorg-driver-s3virge +Description: X.Org X server -- S3 ViRGE display driver + This package provides the driver for the S3 ViRGE and Trio3D family + of chipsets. It does not support Trio64 or S3 96x cards; support for + these can be found in the xserver-xorg-video-s3 package. Support for + S3 Savage chipsets can be found in xserver-xorg-video-savage. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-video-s3virge driver module. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libssl0.9.8 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 2332 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: openssl +Version: 0.9.8k-7ubuntu8 +Depends: libc6 (>= 2.7), zlib1g (>= 1:1.1.4), debconf (>= 0.5) | debconf-2.0 +Conflicts: libssl, libssl096-dev (<< 0.9.6-2), openssl (<< 0.9.6-2), ssleay (<< 0.9.2b) +Description: SSL shared libraries + libssl and libcrypto shared libraries needed by programs like + apache-ssl, telnet-ssl and openssh. + . + It is part of the OpenSSL implementation of SSL. +Original-Maintainer: Debian OpenSSL Team <pkg-openssl-devel@lists.alioth.debian.org> + +Package: bzip2 +Status: install ok installed +Priority: optional +Section: utils +Installed-Size: 160 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1.0.5-4 +Replaces: libbz2 (<< 0.9.5d-3) +Depends: libbz2-1.0 (= 1.0.5-4), libc6 (>= 2.4) +Suggests: bzip2-doc +Description: high-quality block-sorting file compressor - utilities + bzip2 is a freely available, patent free, high-quality data compressor. + It typically compresses files to within 10% to 15% of the best available + techniques, whilst being around twice as fast at compression and six + times faster at decompression. + . + bzip2 compresses files using the Burrows-Wheeler block-sorting text + compression algorithm, and Huffman coding. Compression is generally + considerably better than that achieved by more conventional + LZ77/LZ78-based compressors, and approaches the performance of the PPM + family of statistical compressors. + . + The archive file format of bzip2 (.bz2) is incompatible with that of its + predecessor, bzip (.bz). +Original-Maintainer: Anibal Monsalve Salazar <anibal@debian.org> +Homepage: http://www.bzip.org/ + +Package: vim-common +Status: install ok installed +Priority: important +Section: editors +Installed-Size: 380 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: vim +Version: 2:7.2.330-1ubuntu3 +Depends: libc6 (>= 2.4) +Recommends: vim | vim-gnome | vim-gtk | vim-lesstif | vim-nox | vim-tiny +Conffiles: + /etc/vim/vimrc e8793640eb83ade46e2d452bcf62e7e3 +Description: Vi IMproved - Common files + Vim is an almost compatible version of the UNIX editor Vi. + . + Many new features have been added: multi level undo, syntax + highlighting, command line history, on-line help, filename + completion, block operations, folding, Unicode support, etc. + . + This package contains files shared by all non GUI-enabled vim + variants (vim and vim-tiny currently) available in Debian. + Examples of such shared files are: manpages, common executables + like xxd, and configuration files. +Homepage: http://www.vim.org/ +Original-Maintainer: Debian Vim Maintainers <pkg-vim-maintainers@lists.alioth.debian.org> + +Package: openssl +Status: install ok installed +Priority: optional +Section: utils +Installed-Size: 844 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 0.9.8k-7ubuntu8 +Depends: libc6 (>= 2.7), libssl0.9.8 (>= 0.9.8k-1), zlib1g (>= 1:1.1.4) +Suggests: ca-certificates, openssl-doc +Conflicts: ssleay (<< 0.9.2b) +Conffiles: + /etc/ssl/openssl.cnf 0b1cf9a835b829131d630b7c2fe55f3c +Description: Secure Socket Layer (SSL) binary and related cryptographic tools + This package contains the openssl binary and related tools. + . + It is part of the OpenSSL implementation of SSL. + . + You need it to perform certain cryptographic actions like: + - Creation of RSA, DH and DSA key parameters; + - Creation of X.509 certificates, CSRs and CRLs; + - Calculation of message digests; + - Encryption and decryption with ciphers; + - SSL/TLS client and server tests; + - Handling of S/MIME signed or encrypted mail. +Original-Maintainer: Debian OpenSSL Team <pkg-openssl-devel@lists.alioth.debian.org> + +Package: ncurses-bin +Essential: yes +Status: install ok installed +Priority: required +Section: utils +Installed-Size: 520 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: ncurses +Version: 5.7+20090803-2ubuntu3 +Provides: tput +Pre-Depends: libc6 (>= 2.4), libncurses5 (>= 5.6+20071006-3) +Conflicts: ncurses, tput +Description: terminal-related programs and man pages + This package contains the programs used for manipulating the terminfo + database and individual terminfo entries, as well as some programs for + resetting terminals and such. +Homepage: ftp://invisible-island.net/ncurses/ +Original-Maintainer: Debian QA Group <packages@qa.debian.org> + +Package: perl-base +Essential: yes +Status: install ok installed +Priority: required +Section: perl +Installed-Size: 4900 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: perl +Version: 5.10.1-8ubuntu2 +Replaces: libperl5.8 (<< 5.8.0-20), libscalar-list-utils-perl, libxsloader-perl, perl (<= 5.10.0-9), perl-modules (<< 5.10.1-1) +Provides: libscalar-list-utils-perl, libxsloader-perl, perl5-base, perlapi-5.10.0, perlapi-5.10.1 +Pre-Depends: libc6 (>= 2.11), dpkg (>= 1.14.20) +Suggests: perl +Breaks: doc-base (<< 0.8.16) +Conflicts: autoconf2.13 (<< 2.13-45), libscalar-list-utils-perl (<< 1:1.18-1), libxsloader-perl (<< 0.08-1), safe-rm (<< 0.8) +Description: minimal Perl system + Perl is a scripting language used in many system scripts and utilities. + . + This package provides a Perl interpreter and the small subset of the + standard run-time library required to perform basic tasks. For a full + Perl installation, install "perl" (and its dependencies, "perl-modules" + and "perl-doc"). +Original-Maintainer: Niko Tyni <ntyni@debian.org> + +Package: sysv-rc +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 288 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Source: sysvinit +Version: 2.87dsf-4ubuntu17 +Replaces: file-rc +Depends: debconf | debconf-2.0, sysvinit-utils (>= 2.86.ds1-62), insserv (>> 1.12.0-10) +Recommends: lsb-base (>= 3.2-14) +Suggests: sysv-rc-conf, bum +Breaks: initscripts (<< 2.86.ds1-63) +Conflicts: file-rc +Description: System-V-like runlevel change mechanism + This package provides support for the System-V like system + for booting, shutting down and changing runlevels, + configured through symbolic links in /etc/rc?.d/. +Homepage: http://freshmeat.net/projects/sysvinit/ +Original-Maintainer: Debian sysvinit maintainers <pkg-sysvinit-devel@lists.alioth.debian.org> + +Package: apt +Status: install ok installed +Priority: important +Section: admin +Installed-Size: 5488 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 0.7.25.3ubuntu7 +Replaces: libapt-pkg-dev (<< 0.3.7), libapt-pkg-doc (<< 0.3.7) +Provides: libapt-pkg-libc6.10-6-4.8 +Depends: libc6 (>= 2.8), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0) +Recommends: ubuntu-keyring +Suggests: aptitude | synaptic | wajig, dpkg-dev, apt-doc, bzip2, lzma, python-apt +Conffiles: + /etc/apt/apt.conf.d/01autoremove 6154750d39a78704b5bbf6fafd65ada7 + /etc/apt/apt.conf.d/01ubuntu 078b96538a377743bee0f554eb5b2fc6 + /etc/logrotate.d/apt 179f2ed4f85cbaca12fa3d69c2a4a1c3 + /etc/cron.daily/apt 3528ddf873535d4c268d83e73e85dc79 +Description: Advanced front-end for dpkg + This is Debian's next generation front-end for the dpkg package manager. + It provides the apt-get utility and APT dselect method that provides a + simpler, safer way to install and upgrade packages. + . + APT features complete installation ordering, multiple source capability + and several other unique features, see the Users Guide in apt-doc. +Original-Maintainer: APT Development Team <deity@lists.debian.org> + +Package: xserver-xorg-core +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 4872 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Architecture: amd64 +Source: xorg-server +Version: 2:1.7.6-2ubuntu7 +Replaces: xserver-common (<< 7), xserver-xfree86 (<< 1:7.0.0), xserver-xorg (<< 6.8.2-38) +Provides: xserver +Depends: xserver-common (>= 2:1.7.6-2ubuntu7), xserver-xorg, udev (>= 149), libc6 (>= 2.7), libdrm2 (>= 2.3.1), libgcrypt11 (>= 1.4.2), libpciaccess0 (>= 0.10.7), libpixman-1-0 (>= 0.15.16), libudev0 (>= 147), libxau6, libxdmcp6, libxfont1 (>= 1:1.2.9) +Recommends: libgl1-mesa-dri (>= 7.1~rc1) +Suggests: xfonts-100dpi | xfonts-75dpi, xfonts-scalable +Conflicts: xserver-common (<< 7), xserver-xfree86 (<< 1:7.0.0), xserver-xorg (<< 6.8.2-38), xserver-xorg-input, xserver-xorg-input-2, xserver-xorg-input-2.1, xserver-xorg-input-4, xserver-xorg-input-wacom (<< 0.7.8), xserver-xorg-video, xserver-xorg-video-1.0, xserver-xorg-video-1.9, xserver-xorg-video-2, xserver-xorg-video-4, xserver-xorg-video-5 +Description: Xorg X server - core server + The Xorg X server is an X server for several architectures and operating + systems, which is derived from the XFree86 4.x series of X servers. + . + The Xorg server supports most modern graphics hardware from most vendors, + and supersedes all XFree86 X servers. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xserver module. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libk5crypto3 +Status: install ok installed +Priority: standard +Section: libs +Installed-Size: 252 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: krb5 +Version: 1.8.1+dfsg-2 +Replaces: libkrb53 (<< 1.6.dfsg.4~beta1-7) +Depends: libc6 (>= 2.4), libkeyutils1, libkrb5support0 (>= 1.7dfsg~beta2) +Suggests: krb5-doc, krb5-user +Breaks: libgssapi-krb5-2 (<= 1.8~aa), libkrb5-3 (<= 1.8~aa) +Description: MIT Kerberos runtime libraries - Crypto Library + Kerberos is a system for authenticating users and services on a network. + Kerberos is a trusted third-party service. That means that there is a + third party (the Kerberos server) that is trusted by all the entities on + the network (users and services, usually called "principals"). + . + This is the MIT reference implementation of Kerberos V5. + . + This package contains the runtime cryptography libraries used by + applications and Kerberos clients. +Original-Maintainer: Sam Hartman <hartmans@debian.org> +Homepage: http://web.mit.edu/kerberos/ + +Package: netbase +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 100 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Version: 4.35ubuntu3 +Depends: lsb-base (>= 3.0-6), upstart-job +Recommends: ifupdown +Conflicts: inetutils-inetd (<< 2:1.4.3+20060719-3), openbsd-inetd (<< 0.20050402-3) +Conffiles: + /etc/protocols 3aaa310b088fa84233d7fb2e358d4d29 + /etc/rpc f0b6f6352bf886623adc04183120f83b + /etc/services b6a26fbe90d859f7c8600d5941262921 + /etc/init.d/networking db7e515f04f04f54708b5ea862585c31 +Description: Basic TCP/IP networking system + This package provides the necessary infrastructure for basic TCP/IP based + networking. +Original-Maintainer: Marco d'Itri <md@linux.it> + +Package: libdrm2 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 480 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Architecture: amd64 +Source: libdrm +Version: 2.4.18-1ubuntu3 +Depends: libc6 (>= 2.7) +Description: Userspace interface to kernel DRM services -- runtime + This library implements the userspace interface to the kernel DRM + services. DRM stands for "Direct Rendering Manager", which is the + kernelspace portion of the "Direct Rendering Infrastructure" (DRI). + The DRI is currently used on Linux to provide hardware-accelerated + OpenGL drivers. + . + This package provides the runtime environment for libdrm. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: xserver-xorg-video-openchrome +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 588 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1:0.2.904+svn827-1 +Replaces: libchromexvmc1, libchromexvmcpro1 +Provides: xserver-xorg-video-6 +Depends: libc6 (>= 2.4), libdrm2 (>= 2.3.1), libx11-6 (>= 0), libxext6 (>= 0), libxv1, libxvmc1, xserver-xorg-core (>= 2:1.6.99.900) +Conflicts: libchromexvmc1, libchromexvmcpro1 +Description: X.Org X server -- VIA display driver + OpenChrome is a project for the development of free and open-source drivers + for the VIA UniChrome video chipsets. + . + Originally called the 'snapshot' release, since it was a snapshot of an + experimental branch of the unichrome cvs code, this is a continued development + of the open source unichrome driver (from http://unichrome.sf.net) which + also incorporates support for the unichrome-pro chipsets. + . + Support for hardware acceleration (XvMC) for all chipsets has subsequently + been ripped out of the unichrome.sf.net driver. Therefore your only option if + you wish to make use of the acceleration features of your VIA chip with free + and open-source drivers is to use this version of the driver. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Homepage: http://www.openchrome.org + +Package: libxapian15 +Status: install ok installed +Priority: important +Section: libs +Installed-Size: 1644 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: xapian-core +Version: 1.0.18-1 +Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0), zlib1g (>= 1:1.1.4) +Suggests: xapian-tools +Conflicts: libxapian2 +Description: Search engine library + This package contains the core Xapian runtime library. + . + The Xapian search engine library is a highly adaptable toolkit which allows + developers to easily add advanced indexing and search facilities to their own + applications. It implements the probabilistic model of information retrieval, + and provides facilities for performing ranked free-text searches, relevance + feedback, phrase searching, boolean searching, stemming, and simultaneous + update and searching. It is highly scalable, and is capable of working with + collections containing hundreds of millions of documents. +Original-Maintainer: Olly Betts <olly@survex.com> +Homepage: http://xapian.org/ + +Package: libsepol1 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 328 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libsepol +Version: 2.0.40-2 +Depends: libc6 (>= 2.4) +Description: SELinux library for manipulating binary security policies + Security-enhanced Linux is a patch of the Linux kernel and a number + of utilities with enhanced security functionality designed to add + mandatory access controls to Linux. The Security-enhanced Linux + kernel contains new architectural components originally developed to + improve the security of the Flask operating system. These + architectural components provide general support for the enforcement + of many kinds of mandatory access control policies, including those + based on the concepts of Type Enforcement®, Role-based Access + Control, and Multi-level Security. + . + libsepol provides an API for the manipulation of SELinux binary policies. + It is used by checkpolicy (the policy compiler) and similar tools, as well + as by programs like load_policy that need to perform specific transformations + on binary policies such as customizing policy boolean settings. +Original-Maintainer: Manoj Srivastava <srivasta@debian.org> + +Package: libpam-modules +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 1196 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: pam +Version: 1.1.1-2ubuntu2 +Replaces: libpam-umask, libpam0g-util +Provides: libpam-mkhomedir, libpam-motd, libpam-umask +Depends: base-files (>= 5.0.0ubuntu6) +Pre-Depends: libc6 (>= 2.8), libdb4.8, libpam0g (>= 1.1.0), libselinux1 (>= 2.0.85), debconf (>= 0.5) | debconf-2.0 +Conflicts: libpam-mkhomedir, libpam-motd, libpam-umask +Conffiles: + /etc/security/access.conf 13ec4d189f0ed9acf3433977a53d446b + /etc/security/group.conf 5a6bd21801df034da8d64b407470e8f6 + /etc/security/limits.conf cbacdff4aa5f51749f191b32754946cb + /etc/security/namespace.conf c600fa5899cfb3198a01dfba2bf281f3 + /etc/security/namespace.init 114e73ed5f40956527286e6213d305bc + /etc/security/pam_env.conf ed3f430e418ad366ddb23307a8755249 + /etc/security/sepermit.conf d41c74654734a5c069a37bfc02f0a6d4 + /etc/security/time.conf c23fcbb29dda6c1499e6a5e5ade0265e +Description: Pluggable Authentication Modules for PAM + This package completes the set of modules for PAM. It includes the + pam_unix_*.so module as well as some specialty modules. +Homepage: http://pam.sourceforge.net/ +Original-Maintainer: Steve Langasek <vorlon@debian.org> + +Package: xserver-xorg-video-vmware +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 140 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1:10.16.9-1 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-vmware +Provides: xserver-xorg-video-6 +Depends: libc6 (>= 2.4), xserver-xorg-core (>= 2:1.6.99.900) +Conflicts: xserver-xorg-driver-vmware +Description: X.Org X server -- VMware display driver + This package provides the driver for VMware client sessions, i.e. if Linux + is running inside a VMware session. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-video-vmware driver module. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: tzdata +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 6276 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Version: 2010i-1 +Replaces: libc0.1, libc0.3, libc6, libc6.1 +Provides: tzdata-squeeze +Depends: debconf (>= 0.5) | debconf-2.0 +Description: time zone and daylight-saving time data + This package contains data required for the implementation of + standard local time for many representative locations around the + globe. It is updated periodically to reflect changes made by + political bodies to time zone boundaries, UTC offsets, and + daylight-saving rules. +Original-Maintainer: GNU Libc Maintainers <debian-glibc@lists.debian.org> + +Package: libudev0 +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 196 +Maintainer: Scott James Remnant <scott@ubuntu.com> +Architecture: amd64 +Source: udev +Version: 151-12 +Depends: libc6 (>= 2.4) +Description: udev library + libudev provides a set of functions for accessing the udev database + and querying sysfs. + +Package: libfontconfig1 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 444 +Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: fontconfig +Version: 2.8.0-2ubuntu1 +Provides: libfontconfig +Depends: libc6 (>= 2.7), libexpat1 (>= 1.95.8), libfreetype6 (>= 2.2.1), zlib1g (>= 1:1.1.4), fontconfig-config (= 2.8.0-2ubuntu1) +Description: generic font configuration library - runtime + Fontconfig is a font configuration and customization library, which + does not depend on the X Window System. It is designed to locate + fonts within the system and select them according to requirements + specified by applications. + . + This package contains the runtime library needed to launch applications + using fontconfig. +Original-Maintainer: Keith Packard <keithp@debian.org> + +Package: xserver-xorg-input-wacom +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 264 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Architecture: amd64 +Source: xf86-input-wacom +Version: 1:0.10.5-0ubuntu4 +Replaces: wacom-tools (<= 1:0.8.4.1-0ubuntu4) +Provides: xserver-xorg-input-7 +Depends: xserver-xorg-core (>= 2:1.6.99.900), libc6 (>= 2.7), libx11-6 (>= 0), libxi6 (>= 2:1.2.0) +Suggests: xinput +Conflicts: wacom-tools (<= 1:0.8.4.1-0ubuntu4) +Description: X.Org X server -- Wacom input driver + This package provides the X.Org driver for Wacom tablet devices. +Homepage: http://linuxwacom.sf.net +Original-Maintainer: Ron Lee <ron@debian.org> + +Package: ifupdown +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 276 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 0.6.8ubuntu29 +Replaces: netbase (<< 4.00) +Depends: net-tools, libc6 (>= 2.7), debconf (>= 1.2.0) | debconf-2.0, upstart-job, lsb-base (>= 1.3-9ubuntu3), netbase (>= 4.30ubuntu2) +Suggests: iproute, dhcp3-client | dhcp-client, ppp +Breaks: udev (<< 136-1) +Description: high level tools to configure network interfaces + This package provides the tools ifup and ifdown which may be used to + configure (or, respectively, deconfigure) network interfaces based on + interface definitions in the file /etc/network/interfaces. +Original-Maintainer: Anthony Towns <ajt@debian.org> + +Package: libxxf86dga1 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 84 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libxxf86dga +Version: 2:1.1.1-2 +Depends: libc6 (>= 2.3.4), libx11-6, libxext6, x11-common +Description: X11 Direct Graphics Access extension library + libXxf86dga provides the XFree86-DGA extension, which allows direct + graphics access to a framebuffer-like region, and also allows relative + mouse reporting, et al. It is mainly used by games and emulators for + games. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libXxf86dga +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libxext6 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 148 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libxext +Version: 2:1.1.1-2 +Depends: libc6 (>= 2.4), libx11-6 +Description: X11 miscellaneous extension library + libXext provides an X Window System client interface to several extensions to + the X protocol. + . + The supported protocol extensions are: + - DOUBLE-BUFFER (DBE), the Double Buffer extension; + - DPMS, the VESA Display Power Management System extension; + - Extended-Visual-Information (EVI), an extension for gathering extra + information about the X server's visuals; + - LBX, the Low Bandwidth X extension; + - MIT-SHM, the MIT X client/server shared memory extension; + - MIT-SUNDRY-NONSTANDARD, a miscellaneous extension by MIT; + - Multi-Buffering, the multi-buffering and stereo display extension; + - SECURITY, the X security extension; + - SHAPE, the non-rectangular shaped window extension; + - SYNC, the X synchronization extension; + - TOG-CUP, the Open Group's Colormap Utilization extension; + - XC-APPGROUP, the X Consortium's Application Group extension; + - XC-MISC, the X Consortium's resource ID querying extension; + - XTEST, the X test extension (this is one of two client-side + implementations; the other is in the libXtst library, provided by the + libxtst6 package); + . + libXext also provides a small set of utility functions to aid authors of + client APIs for X protocol extensions. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libXext +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: xterm +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 1332 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Architecture: amd64 +Version: 256-1ubuntu1 +Provides: x-terminal-emulator +Depends: xbitmaps, libc6 (>= 2.11), libfontconfig1 (>= 2.8.0), libice6 (>= 1:1.0.0), libncurses5 (>= 5.6+20071006-3), libx11-6 (>= 0), libxaw7, libxft2 (>> 2.1.1), libxmu6, libxt6 +Recommends: x11-utils | xutils +Suggests: xfonts-cyrillic +Conffiles: + /etc/X11/app-defaults/KOI8RXTerm e904665737663827da6ff9b9651910df + /etc/X11/app-defaults/KOI8RXTerm-color d2d26270262950b81921694506281cfe + /etc/X11/app-defaults/UXTerm 420d7404a359b3b74a24d415d1a53254 + /etc/X11/app-defaults/UXTerm-color 446ecb44b3bec790d5c7ac8582ef6ca5 + /etc/X11/app-defaults/XTerm b13fe7ad4bb906659bfc22db2513bacb + /etc/X11/app-defaults/XTerm-color 0ceac6d8b2f3e33be29edddb64394d96 +Description: X terminal emulator + xterm is a terminal emulator for the X Window System. It provides DEC VT102 + and Tektronix 4014 compatible terminals for programs that cannot use the + window system directly. This version implements ISO/ANSI colors and most of + the control sequences used by DEC VT220 terminals. + . + This package provides four commands: xterm, which is the traditional + terminal emulator; uxterm, which is a wrapper around xterm that is + intelligent about locale settings (especially those which use the UTF-8 + character encoding), but which requires the luit program from the x11-utils + package; koi8rxterm, a wrapper similar to uxterm for locales that use the + KOI8-R character set; and lxterm, a simple wrapper that chooses which of the + previous commands to execute based on the user's locale settings. + . + A complete list of control sequences supported by the X terminal emulator + is provided in /usr/share/doc/xterm. + . + The xterm program uses bitmap images provided by the xbitmaps package. + . + Those interested in using koi8rxterm will likely want to install the + xfonts-cyrillic package as well. +Homepage: http://invisible-island.net/xterm/xterm.html +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: xserver-xorg-video-radeon +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 1564 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: xserver-xorg-video-ati +Version: 1:6.13.0-1ubuntu5 +Replaces: xserver-xorg-video-ati (<= 1:6.8.191-1) +Provides: xserver-xorg-video-6 +Depends: libc6 (>= 2.7), libdrm-radeon1 (>= 2.4.17), libdrm2 (>= 2.4.16), libpciaccess0 (>= 0.10.2), libpixman-1-0, xserver-xorg-core (>= 2:1.6.99.900) +Suggests: firmware-linux +Description: X.Org X server -- AMD/ATI Radeon display driver + This package provides the 'radeon' driver for the AMD/ATI Radeon, FireGL, + FireMV, FirePro and FireStream series. + . + Note that this is not the same as the ATI-provided, binary-only, 'fglrx' + driver, which provides additional 3D functionality for some newer Radeon + cards, but is not supported. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-video-ati driver module. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: x11-session-utils +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 304 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 7.5+1 +Replaces: smproxy, xbase-clients (<= 1:7.2.ds2-3), xsm (<= 1:1.0.1-1), xutils (<= 1:7.1.ds.3-1) +Depends: libc6 (>= 2.7), libice6 (>= 1:1.0.0), libsm6, libx11-6, libxaw7, libxmu6, libxt6, cpp +Pre-Depends: x11-common (>= 1:7.0.0) +Conflicts: smproxy, xsm (<= 1:1.0.1-1) +Conffiles: + /etc/X11/app-defaults/XSm 34f161c4cba12ff40099e12b40e511d3 +Description: X session utilities + This package provides the X session manager and related tools: + - rstart; + - smproxy, a session manager proxy for X clients that do not use the X + session manager protocol; + - xsm, a session manager for X sessions; + Installation of an rsh or ssh daemon (server) is necessary if rstartd is + to be used, and installation of an rsh or ssh client is necessary if + rstart is to be used. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libxrender1 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 96 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libxrender +Version: 1:0.9.5-1 +Depends: libc6 (>= 2.2.5), libx11-6 +Description: X Rendering Extension client library + The X Rendering Extension (Render) introduces digital image composition as + the foundation of a new rendering model within the X Window System. + Rendering geometric figures is accomplished by client-side tessellation into + either triangles or trapezoids. Text is drawn by loading glyphs into the + server and rendering sets of them. The Xrender library exposes this + extension to X clients. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libXrender +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: mountall +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 232 +Maintainer: Scott James Remnant <scott@ubuntu.com> +Architecture: amd64 +Version: 2.14 +Replaces: upstart (<< 0.6.3-2) +Depends: makedev, udev, plymouth, coreutils (>= 7.1), libc6 (>= 2.9), libdbus-1-3 (>= 1.2.16), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0), libplymouth2 (>= 0.8.1-3), libudev0 (>= 151-5) +Breaks: policycoreutils (<< 2.0.69-2ubuntu4), usplash (<< 0.5.47) +Conffiles: + /etc/init/mountall.conf fba4525691d30c5b18cc3409f990c5be + /etc/init/mountall-net.conf feff70cd7006f6763e24263d381940f3 + /etc/init/mountall-reboot.conf 43e3c229085a13005b0681a49b2bef51 + /etc/init/mountall-shell.conf aa05af89db3de044d1cd7f6971b46d9f + /etc/init/mounted-dev.conf 0c983df7da8b456ea38068e39f2f2a1e + /etc/init/mounted-varrun.conf f1908b81facd9a0e78319327e6a9db0a + /etc/init/mounted-tmp.conf b049fee4d7c235355555a004befe4633 +Description: filesystem mounting tool + mountall mounts filesystems when the underlying block devices are + ready, or when network interfaces come up, checking the filesystems + first. + +Package: xserver-xorg-video-savage +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 240 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Architecture: amd64 +Version: 1:2.3.1-1ubuntu1 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-savage +Provides: xserver-xorg-video-6 +Depends: libc6 (>= 2.3.4), xserver-xorg-core (>= 2:1.6.99.900) +Conflicts: xserver-xorg-driver-savage +Description: X.Org X server -- Savage display driver + This package provides the driver for the S3/VIA Savage/ProSavage/Twister family + of chipsets. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-video-savage driver module. +Orig-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: xserver-xorg-video-fbdev +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 100 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1:0.4.1-1ubuntu1 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-fbdev +Provides: xserver-xorg-video-6 +Depends: libc6 (>= 2.2.5), xserver-xorg-core (>= 2:1.6.99.900) +Conflicts: xserver-xorg-driver-fbdev +Description: X.Org X server -- fbdev display driver + This package provides the driver for the Linux framebuffer device (aka + 'fbdev'). + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-video-fbdev driver module. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libxfont1 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 336 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libxfont +Version: 1:1.4.1-1 +Depends: libbz2-1.0, libc6 (>= 2.4), libfontenc1, libfreetype6 (>= 2.2.1), zlib1g (>= 1:1.1.4) +Conflicts: xprint (<< 2:1.6.0-1) +Description: X11 font rasterisation library + libXfont provides various services for X servers, most notably font + selection and rasterisation (through external libraries). + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libXfont +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: diffutils +Essential: yes +Status: install ok installed +Priority: required +Section: utils +Installed-Size: 776 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1:2.8.1-18 +Replaces: diff +Pre-Depends: libc6 (>= 2.4) +Suggests: diffutils-doc +Description: File comparison utilities + The diffutils package provides the diff, diff3, sdiff, and cmp programs. + . + `diff' shows differences between two files, or each corresponding file + in two directories. `cmp' shows the offsets and line numbers where + two files differ. `cmp' can also show all the characters that + differ between the two files, side by side. `diff3' shows differences + among three files. `sdiff' merges two files interactively. + . + The set of differences produced by `diff' can be used to distribute + updates to text files (such as program source code) to other people. + This method is especially useful when the differences are small compared + to the complete files. Given `diff' output, the `patch' program can + update, or "patch", a copy of the file. +Original-Maintainer: Santiago Vila <sanvila@debian.org> + +Package: libxvmc1 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 100 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libxvmc +Version: 2:1.0.5-1ubuntu1 +Depends: libc6 (>= 2.4), libx11-6, libxext6, libxv1, x11-common +Description: X11 Video extension library + libXvMC provides an X Window System client interface to the + XVideo-MotionCompensation extension to the X protocol. + . + The XVideo-MotionCompensation extension allows for further accelerated drawing + of videos. Video data may be sent at earlier stages of the decoding pipeline + than raw YUV data. At the moment, driver support for XvMC is poor to + non-existent. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libXvMC +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: xserver-xorg-input-evdev +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 180 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Architecture: amd64 +Version: 1:2.3.2-5ubuntu1 +Replaces: xserver-xorg (<< 6.8.2-35) +Provides: xserver-xorg-input-7 +Depends: libc6 (>= 2.7), xserver-xorg-core (>= 2:1.6.99.900) +Description: X.Org X server -- evdev input driver + This package provides the driver for input devices using evdev, the Linux + kernel's event delivery mechanism. This driver allows for multiple keyboards + and mice to be treated as separate input devices. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-input-evdev driver module. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libxpm4 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 128 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libxpm +Version: 1:3.5.8-1 +Depends: libc6 (>= 2.7), libx11-6 +Description: X11 pixmap library + libXpm provides support and common operation for the XPM pixmap format, which + is commonly used in legacy X applications. XPM is an extension of the + monochrome XBM bitmap specificied in the X protocol. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libXpm +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: tar +Essential: yes +Status: install ok installed +Priority: required +Section: utils +Installed-Size: 2464 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1.22-2 +Replaces: cpio (<< 2.4.2-39) +Pre-Depends: libc6 (>= 2.7) +Suggests: bzip2, ncompress +Conflicts: cpio (<= 2.4.2-38) +Conffiles: + /etc/rmt 3c58b7cd13da1085eff0acc6a00f43c7 +Description: GNU version of the tar archiving utility + Tar is a program for packaging a set of files as a single archive in tar + format. The function it performs is conceptually similar to cpio, and to + things like PKZIP in the DOS world. It is heavily used by the Debian package + management system, and is useful for performing system backups and exchanging + sets of files with others. +Original-Maintainer: Bdale Garbee <bdale@gag.com> + +Package: gcc-4.4 +Status: install ok installed +Priority: optional +Section: devel +Installed-Size: 4692 +Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 4.4.3-4ubuntu5 +Provides: c-compiler +Depends: gcc-4.4-base (= 4.4.3-4ubuntu5), cpp-4.4 (= 4.4.3-4ubuntu5), binutils (>= 2.20), libgcc1 (>= 1:4.4.3-4ubuntu5), libgomp1 (>= 4.4.3-4ubuntu5), libc6 (>= 2.11) +Recommends: libc6-dev (>= 2.5) +Suggests: gcc-4.4-multilib, libmudflap0-4.4-dev (>= 4.4.3-4ubuntu5), gcc-4.4-doc (>= 4.4.3-1), gcc-4.4-locales (>= 4.4.3-1), libgcc1-dbg, libgomp1-dbg, libmudflap0-dbg, libcloog-ppl0, libppl-c2, libppl7 +Description: The GNU C compiler + This is the GNU C compiler, a fairly portable optimizing compiler for C. +Homepage: http://gcc.gnu.org/ +Original-Maintainer: Debian GCC Maintainers <debian-gcc@lists.debian.org> + +Package: libdrm-radeon1 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 452 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Architecture: amd64 +Source: libdrm +Version: 2.4.18-1ubuntu3 +Depends: libc6 (>= 2.3.4), libdrm2 (>= 2.4.3) +Description: Userspace interface to radeon-specific kernel DRM services -- runtime + This library implements the userspace interface to the radeon-specific kernel + DRM services. DRM stands for "Direct Rendering Manager", which is the + kernelspace portion of the "Direct Rendering Infrastructure" (DRI). The DRI is + currently used on Linux to provide hardware-accelerated OpenGL drivers. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: zlib1g +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 176 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: zlib +Version: 1:1.2.3.3.dfsg-15ubuntu1 +Provides: libz1 +Depends: libc6 (>= 2.4) +Conflicts: zlib1 (<= 1:1.0.4-7) +Description: compression library - runtime + zlib is a library implementing the deflate compression method found + in gzip and PKZIP. This package includes the shared library. +Original-Maintainer: Mark Brown <broonie@debian.org> + +Package: xserver-xorg +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 180 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Architecture: amd64 +Source: xorg +Version: 1:7.5+5ubuntu1 +Replaces: x11-common (<< 1:7.3+11), xserver-common (<< 7) +Depends: xserver-xorg-core (>= 2:1.7), xserver-xorg-video-all | xserver-xorg-video-6, xserver-xorg-input-all | xserver-xorg-input-7, xserver-xorg-input-evdev, libc6 (>= 2.7), xkb-data (>= 1.4), x11-xkb-utils, console-setup +Recommends: libgl1-mesa-dri +Conflicts: x11-common (<< 1:7.3+11), xserver-common (<< 7), xserver-xfree86 (<< 6.8.2.dfsg.1-1) +Description: the X.Org X server + This package depends on the full suite of the server and drivers for the + X.Org X server. It does not provide the actual server itself. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libxrandr2 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 100 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libxrandr +Version: 2:1.3.0-3 +Depends: libc6 (>= 2.2.5), libx11-6 (>= 0), libxext6 (>= 0), libxrender1 +Description: X11 RandR extension library + libXrandr provides an X Window System client interface to the RandR + extension to the X protocol. + . + The RandR extension allows for run-time configuration of display attributes + such as resolution, rotation, and reflection. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libXrandr +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libglu1-mesa +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 548 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Architecture: amd64 +Source: mesa +Version: 7.7.1-1ubuntu2 +Replaces: libglu1 +Provides: libglu1 +Depends: libc6 (>= 2.11), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libstdc++6 (>= 4.1.1) +Conflicts: libglu1, mesag3 (<< 5.0.0-1), xlibmesa3 +Description: The OpenGL utility library (GLU) + GLU offers simple interfaces for building mipmaps; checking for the + presence of extensions in the OpenGL (or other libraries which follow + the same conventions for advertising extensions); drawing + piecewise-linear curves, NURBS, quadrics and other primitives + (including, but not limited to, teapots); tesselating surfaces; setting + up projection matrices and unprojecting screen coordinates to world + coordinates. + . + On Linux, this library is also known as libGLU or libGLU.so.1. + . + This package provides the SGI implementation of GLU shipped with the + Mesa package (ergo the "-mesa" suffix). +Homepage: http://mesa3d.sourceforge.net/ +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: adduser +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 884 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Version: 3.112ubuntu1 +Replaces: manpages-it (<< 0.3.4-2), manpages-pl (<= 20051117-1) +Depends: perl-base (>= 5.6.0), passwd (>= 1:4.0.12), debconf | debconf-2.0 +Suggests: liblocale-gettext-perl, perl-modules, ecryptfs-utils (>= 67-1) +Conffiles: + /etc/deluser.conf 527e6a57d0bc9f7c1b1aca2071f3da00 +Description: add and remove users and groups + This package includes the 'adduser' and 'deluser' commands for creating + and removing users. + . + - 'adduser' creates new users and groups and adds existing users to + existing groups; + - 'deluser' removes users and groups and removes users from a given + group. + . + Adding users with 'adduser' is much easier than adding them manually. + Adduser will choose appropriate UID and GID values, create a home + directory, copy skeletal user configuration, and automate setting + initial values for the user's password, real name and so on. + . + Deluser can back up and remove users' home directories + and mail spool or all the files they own on the system. + . + A custom script can be executed after each of the commands. + . + Development mailing list: + http://lists.alioth.debian.org/mailman/listinfo/adduser-devel/ +Homepage: http://alioth.debian.org/projects/adduser/ +Original-Maintainer: Debian Adduser Developers <adduser-devel@lists.alioth.debian.org> + +Package: libxcb1 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 180 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libxcb +Version: 1.5-2 +Depends: libc6 (>= 2.4), libxau6, libxdmcp6 +Breaks: libxcb-xlib0 +Description: X C Binding + This package contains the library files needed to run software using libxcb, + the X C Binding. + . + The XCB library provides an interface to the X Window System protocol, + designed to replace the Xlib interface. XCB provides several advantages over + Xlib: + . + * Size: small library and lower memory footprint + * Latency hiding: batch several requests and wait for the replies later + * Direct protocol access: one-to-one mapping between interface and protocol + * Thread support: access XCB from multiple threads, with no explicit locking + * Easy creation of new extensions: automatically generates interface from + machine-parsable protocol descriptions +Original-Maintainer: XCB Developers <xcb@lists.freedesktop.org> +Homepage: http://xcb.freedesktop.org + +Package: xserver-xorg-video-all +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 24 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Architecture: amd64 +Source: xorg +Version: 1:7.5+5ubuntu1 +Replaces: xserver-xorg-driver-all +Depends: xserver-xorg-video-apm, xserver-xorg-video-ark, xserver-xorg-video-ati, xserver-xorg-video-chips, xserver-xorg-video-cirrus, xserver-xorg-video-fbdev, xserver-xorg-video-i128, xserver-xorg-video-intel, xserver-xorg-video-mga, xserver-xorg-video-neomagic, xserver-xorg-video-nouveau, xserver-xorg-video-nv, xserver-xorg-video-rendition, xserver-xorg-video-s3, xserver-xorg-video-s3virge, xserver-xorg-video-savage, xserver-xorg-video-siliconmotion, xserver-xorg-video-sis, xserver-xorg-video-sisusb, xserver-xorg-video-tdfx, xserver-xorg-video-trident, xserver-xorg-video-tseng, xserver-xorg-video-vesa, xserver-xorg-video-openchrome, xserver-xorg-video-voodoo, xserver-xorg-video-v4l, xserver-xorg-video-vmware, x11-common +Conflicts: xserver-xorg-driver-all +Description: the X.Org X server -- output driver metapackage + This package depends on the full suite of output drivers for the X.Org X server + (Xorg). It does not provide any drivers itself, and may be removed if you wish + to only have certain drivers installed. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: locales +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 21820 +Maintainer: Martin Pitt <martin.pitt@ubuntu.com> +Architecture: all +Source: langpack-locales +Version: 2.11+git20100304-3 +Replaces: base-config, belocs-locale-data, belocs-locales-bin, libc6 (<< 2.3.6-0ubuntu6), libc6.1 (<< 2.3.6-0ubuntu6) +Depends: libc6 (>= 2.9-0ubuntu10) | libc6.1 (>= 2.9-0ubuntu10) +Conflicts: base-config, belocs-locale-data +Conffiles: + /etc/locale.alias 6ac3cbee43012440edc6bcbade0a61ce +Description: common files for locale support + This package provides support for localized environments (locales). + It installs character and transliteration maps, provides the POSIX + locale definition and provides common scripts for language pack + handling. + . + The actual locale definitions are not part of this package, these are + shipped in the language packs and are installed and removed + automatically. + +Package: manpages +Status: install ok installed +Priority: important +Section: doc +Installed-Size: 1104 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Version: 3.23-1 +Replaces: bind, rsh-server (<< 0.10-7) +Suggests: man-browser +Description: Manual pages about using a GNU/Linux system + This package contains GNU/Linux manual pages for these sections: + 4 = Devices (e.g. hd, sd). + 5 = File formats and protocols, syntaxes of several system + files (e.g. wtmp, /etc/passwd, nfs). + 7 = Conventions and standards, macro packages, etc. + (e.g. nroff, ascii). + . + Sections 1, 6 and 8 are provided by the respective applications. This + package only includes the intro man page describing the section. + . + The man pages describe syntaxes of several system files. +Original-Maintainer: Martin Schulze <joey@debian.org> + +Package: libgcc1 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 132 +Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: gcc-4.4 (4.4.3-4ubuntu5) +Version: 1:4.4.3-4ubuntu5 +Depends: gcc-4.4-base (= 4.4.3-4ubuntu5), libc6 (>= 2.2.5) +Description: GCC support library + Shared version of the support library, a library of internal subroutines + that GCC uses to overcome shortcomings of particular machines, or + special needs for some languages. +Homepage: http://gcc.gnu.org/ +Original-Maintainer: Debian GCC Maintainers <debian-gcc@lists.debian.org> + +Package: libklibc +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 136 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: klibc +Version: 1.5.17-4ubuntu1 +Description: minimal libc subset for use with initramfs + klibc is intended to be a minimalistic libc subset for use with + initramfs. It is deliberately written for small size, minimal + entanglement, and portability, not speed. It is definitely a work in + progress, and a lot of things are still missing. +Original-Maintainer: maximilian attems <maks@debian.org> + +Package: libxv1 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 80 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libxv +Version: 2:1.0.5-1 +Depends: libc6 (>= 2.4), libx11-6, libxext6 +Description: X11 Video extension library + libXv provides an X Window System client interface to the XVideo + extension to the X protocol. + . + The XVideo extension allows for accelerated drawing of videos. Hardware + adaptors are exposed to clients, which may draw in a number of colourspaces, + including YUV. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libXv +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: base-files +Essential: yes +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 500 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 5.0.0ubuntu20 +Replaces: base, dpkg (<= 1.15.0), lsb-release (<< 3.0-8), miscutils +Provides: base +Depends: base-passwd (>= 2.0.3.4), libpam-modules (>= 0.79-3ubuntu3) +Pre-Depends: awk +Conffiles: + /etc/debian_version 82711d8dc3e89c428b4694a284e32541 + /etc/dpkg/origins/debian 731423fa8ba067262f8ef37882d1e742 + /etc/dpkg/origins/ubuntu ea35901c45553c3451f60476be94d2d8 + /etc/host.conf 89408008f2585c957c031716600d5a80 + /etc/issue 0773f7fd061b03b7643118d133e4c581 + /etc/issue.net b779759799b4ec17dd4dab41ad557f49 + /etc/lsb-release a50b6779ddccab3277e2560028f3eb15 +Description: Debian base system miscellaneous files + This package contains the basic filesystem hierarchy of a Debian system, and + several important miscellaneous files, such as /etc/debian_version, + /etc/host.conf, /etc/issue, /etc/motd, /etc/profile, /etc/nsswitch.conf, + and others, and the text of several common licenses in use on Debian systems. +Original-Maintainer: Santiago Vila <sanvila@debian.org> + +Package: mount +Essential: yes +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 380 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: util-linux +Version: 2.17.2-0ubuntu1 +Pre-Depends: libblkid1 (>= 2.17), libc6 (>= 2.7), libselinux1 (>= 2.0.15), libsepol1 (>= 1.14), libuuid1 (>= 2.16) +Suggests: nfs-common (>= 1:1.1.0-13) +Breaks: nfs-common (<< 1:1.1.0-7) +Description: Tools for mounting and manipulating filesystems + This package provides the mount(8), umount(8), swapon(8), + swapoff(8), and losetup(8) commands. +Original-Maintainer: LaMont Jones <lamont@debian.org> + +Package: libtext-iconv-perl +Status: install ok installed +Priority: required +Section: perl +Installed-Size: 108 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1.7-2 +Depends: libc6 (>= 2.2.5), perl-base (>= 5.10.0-24ubuntu4), perlapi-5.10.0 +Description: converts between character sets in Perl + The iconv() family of functions from XPG4 define an API for converting + between character sets (e.g. UTF-8 to Latin1, EBCDIC to ASCII). They + are provided by libc6. + . + This package allows access to them from Perl via the Text::Iconv + package. +Original-Maintainer: Anibal Monsalve Salazar <anibal@debian.org> +Homepage: http://search.cpan.org/search?module=Text::Iconv + +Package: console-setup +Status: install ok installed +Priority: optional +Section: utils +Installed-Size: 1396 +Maintainer: Ubuntu Installer Team <ubuntu-installer@lists.ubuntu.com> +Architecture: all +Version: 1.34ubuntu15 +Depends: debconf (>= 0.5) | debconf-2.0, console-terminus (>= 4.26), xkb-data (>= 0.9), initramfs-tools (>= 0.85eubuntu12), kbd (>= 1.15-1ubuntu3) +Suggests: lsb-base (>= 3.0-6), locales +Conflicts: lsb (<< 2.0-6), lsb-base (<< 3.0-6), lsb-core (<< 2.0-6) +Conffiles: + /etc/console-setup/compose.ARMSCII-8.inc fef36b61fb8b1cacc151ad3db127f777 + /etc/console-setup/compose.CP1251.inc fef88d8c8dd4c726498003fd3cd84a7f + /etc/console-setup/compose.CP1255.inc c972a2e90938657e97b643366b98b2ed + /etc/console-setup/compose.CP1256.inc 5ea5e4d41da7a88f742863810e86144b + /etc/console-setup/compose.GEORGIAN-ACADEMY.inc b6d80f40abff7e8af236796ebaca0247 + /etc/console-setup/compose.GEORGIAN-PS.inc cf45272b6bf35a22223b132600dc36c3 + /etc/console-setup/compose.IBM1133.inc a31102602f7e7cab9738022b6c5469ae + /etc/console-setup/compose.ISIRI-3342.inc 5ada7fbba750192f11fa238add232ba9 + /etc/console-setup/compose.ISO-8859-1.inc 719a4300a50dcb168d7de921bab338e9 + /etc/console-setup/compose.ISO-8859-10.inc e5fce59617c839b56574c9e323d34686 + /etc/console-setup/compose.ISO-8859-11.inc ad2f3cc7ee64602a790bad8a2a989243 + /etc/console-setup/compose.ISO-8859-13.inc 9c2f47a52091515749fefc62fc8efd63 + /etc/console-setup/compose.ISO-8859-14.inc a19822b59629ea7af7682d9247de807f + /etc/console-setup/compose.ISO-8859-15.inc cfa9b04fec26afa1debc17ce09d46a0a + /etc/console-setup/compose.ISO-8859-16.inc 8245c19b5262d8d23ca856587739eb20 + /etc/console-setup/compose.ISO-8859-2.inc a56cb83dbe0cd88e4deef52d966d30e4 + /etc/console-setup/compose.ISO-8859-3.inc e70d7b634791b9c97db75bddf6dcc5fa + /etc/console-setup/compose.ISO-8859-4.inc 4092be9556db0ac82e96eae413f1bd47 + /etc/console-setup/compose.ISO-8859-5.inc f861a4b0403490677e6d400f2d7129da + /etc/console-setup/compose.ISO-8859-6.inc 41ea36ea1c1a1c0c9bebdf0016395e1f + /etc/console-setup/compose.ISO-8859-7.inc aa280de25f20e82f58da707101b24d48 + /etc/console-setup/compose.ISO-8859-8.inc 9cceaa9f3312f89aba371d3c893f4e7b + /etc/console-setup/compose.ISO-8859-9.inc 1893bc3994c24917c907a17ceb2f284b + /etc/console-setup/compose.KOI8-R.inc 8cfd7766b86e5e55d6e71d0d95519c92 + /etc/console-setup/compose.KOI8-U.inc 217ee62f6982736276f41f760f8622f8 + /etc/console-setup/compose.TIS-620.inc 31b73af83ef3993c128e2b983b9eaf89 + /etc/console-setup/compose.VISCII.inc 0741db54ddb6268e476010a44f219f03 + /etc/init/console-setup.conf 1e2fdc7b62f4d1dee3845f5fc2b13fc4 +Description: console font and keymap setup program + This package provides the Linux console with the same + keyboard configuration scheme as the X Window System. As a result, + there is no need to duplicate or change the keyboard files just to + make simple customizations such as the use of dead keys, the key + functioning as AltGr or Compose key, the key(s) to switch between + Latin and non-Latin mode, etc. + . + The package also contains console fonts supporting many of the + world's languages. It provides an unified set of font faces - the + classic VGA, the simplistic Fixed, and the cleaned Terminus, + TerminusBold and TerminusBoldVGA. +Original-Maintainer: Debian Install System Team <debian-boot@lists.debian.org> + +Package: xserver-xorg-input-synaptics +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 356 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1.2.2-1ubuntu4 +Replaces: xfree86-driver-synaptics (<< 0.14.4-2), xorg-driver-synaptics +Provides: xfree86-driver-synaptics, xorg-driver-synaptics, xserver-xorg-input-7 +Depends: udev, libc6 (>= 2.4), libpciaccess0, libpixman-1-0, libx11-6 (>= 0), libxi6 (>= 2:1.2.0), xserver-xorg-core (>= 2:1.6.99.900) +Suggests: gpointing-device-settings, touchfreeze +Conflicts: xfree86-driver-synaptics (<< 0.14.4-2), xorg-driver-synaptics +Description: Synaptics TouchPad driver for X.Org server + This package provides an input driver for the X.Org X server to enable + advanced features of the Synaptics Touchpad including: + . + * Movement with adjustable, non-linear acceleration and speed + * Button events through short touching of the touchpad + * Double-Button events through double short touching of the touchpad + * Dragging through short touching and holding down the finger on the touchpad + * Middle and right button events on the upper and lower corner of the touchpad + * Vertical scrolling (button four and five events) through moving the finger + on the right side of the touchpad + * The up/down button sends button four/five events + * Horizontal scrolling (button six and seven events) through moving the finger + on the lower side of the touchpad + * The multi-buttons send button four/five events, and six/seven events for + horizontal scrolling + * Adjustable finger detection + * Multifinger taps: two finger for middle button and three finger for right + button events. (Needs hardware support. Not all models implement this + feature.) + * Run-time configuration using shared memory. This means you can change + parameter settings without restarting the X server (see synclient(1)). + * It also provides a daemon to disable touchpad while typing at the keyboard + and thus avoid unwanted mouse movements (see syndaemon(1)). +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: xserver-xorg-video-vesa +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 108 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1:2.3.0-1ubuntu1 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-vesa +Provides: xserver-xorg-video-6 +Depends: libc6 (>= 2.2.5), xserver-xorg-core (>= 2:1.6.99.900) +Conflicts: xserver-xorg-driver-vesa +Description: X.Org X server -- VESA display driver + This driver for the X.Org X server (see xserver-xorg for a further description) + uses the standard VESA interface provided on all video cards, but runs + unaccelerated. This driver is not recommended for use unless you have a + problem with the normal driver for your card, because it will peform very + badly. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-video-vesa driver module. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libreadline6 +Status: install ok installed +Priority: important +Section: libs +Installed-Size: 408 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: readline6 +Version: 6.1-1 +Depends: readline-common, libc6 (>= 2.11~20100104-0ubuntu5), libncurses5 (>= 5.6+20071006-3) +Description: GNU readline and history libraries, run-time libraries + The GNU readline library aids in the consistency of user interface + across discrete programs that need to provide a command line + interface. + . + The GNU history library provides a consistent user interface for + recalling lines of previously typed input. +Original-Maintainer: Matthias Klose <doko@debian.org> + +Package: libncurses5 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 512 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: ncurses +Version: 5.7+20090803-2ubuntu3 +Depends: libc6 (>= 2.4) +Recommends: libgpm2 +Description: shared libraries for terminal handling + This package contains the shared libraries necessary to run programs + compiled with ncurses. +Homepage: ftp://invisible-island.net/ncurses/ +Original-Maintainer: Debian QA Group <packages@qa.debian.org> + +Package: libplymouth2 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 312 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: plymouth +Version: 0.8.2-2ubuntu2 +Replaces: plymouth (<< 0.7.0+git20090207-0ubuntu0.1~ppa4) +Depends: libc6 (>= 2.8), libpng12-0 (>= 1.2.13-4) +Breaks: casper (= 1.227), mountall (<< 2.8) +Description: graphical boot animation and logger - shared libraries + Plymouth is an application that runs very early in the boot process + (even before the root filesystem is mounted!) that provides a graphical + boot animation while the boot process happens in the background. + . + This package contains the shared libraries. + +Package: libkeyutils1 +Status: install ok installed +Priority: standard +Section: libs +Installed-Size: 60 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: keyutils +Version: 1.2-12 +Depends: libc6 (>= 2.2.5) +Description: Linux Key Management Utilities (library) + Keyutils is a set of utilities for managing the key retention facility in the + kernel, which can be used by filesystems, block devices and more to gain and + retain the authorization and encryption keys required to perform secure + operations. + . + This package provides a wrapper library for the key management facility system + calls. +Original-Maintainer: Daniel Baumann <daniel@lists.debian-maintainers.org> +Homepage: http://people.redhat.com/~dhowells/keyutils/ + +Package: libexpat1 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 392 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: expat +Version: 2.0.1-7ubuntu1 +Depends: libc6 (>= 2.4) +Conflicts: wink (<= 1.5.1060-4) +Description: XML parsing C library - runtime library + This package contains the runtime, shared library of expat, the C + library for parsing XML. Expat is a stream-oriented parser in + which an application registers handlers for things the parser + might find in the XML document (like start tags). +Homepage: http://expat.sourceforge.net +Original-Maintainer: Debian XML/SGML Group <debian-xml-sgml-pkgs@lists.alioth.debian.org> + +Package: xserver-xorg-video-rendition +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 116 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1:4.2.3-1 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-rendition +Provides: xserver-xorg-video-6 +Depends: libc6 (>= 2.4), xserver-xorg-core (>= 2:1.6.99.900) +Conflicts: xserver-xorg-driver-rendition +Description: X.Org X server -- Rendition display driver + This package provides the driver for the Rendition Verite family of chipsets, + commonly found in 3D accelerators such as the Creative 3D Blaster. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-video-rendition driver module. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: patch +Status: install ok installed +Priority: standard +Section: vcs +Installed-Size: 244 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 2.6-2ubuntu1 +Depends: libc6 (>= 2.4) +Suggests: ed, diffutils-doc +Description: Apply a diff file to an original + Patch will take a patch file containing any of the four forms + of difference listing produced by the diff program and apply + those differences to an original file, producing a patched + version. +Original-Maintainer: Christoph Berg <myon@debian.org> + +Package: initramfs-tools-bin +Status: install ok installed +Priority: required +Section: utils +Installed-Size: 104 +Maintainer: Ubuntu Kernel Team <kernel-team@lists.ubuntu.com> +Architecture: amd64 +Source: initramfs-tools +Version: 0.92bubuntu78 +Depends: libc6 (>= 2.11), libudev0 (>= 147) +Description: binaries used by initramfs-tools + This package contains binaries used inside the initramfs images generated + by initramfs-tools. +Original-Maintainer: Debian kernel team <debian-kernel@lists.debian.org> + +Package: libxi6 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 144 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libxi +Version: 2:1.3-3 +Depends: libc6 (>= 2.4), libx11-6 (>= 2:1.2.99.901), libxext6 (>= 0) +Description: X11 Input extension library + libXi provides an X Window System client interface to the XINPUT + extension to the X protocol. + . + The Input extension allows setup and configuration of multiple input devices, + and will soon allow hotplugging of input devices; to be added and removed on + the fly. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libXi +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: xinit +Status: deinstall ok config-files +Priority: optional +Section: x11 +Installed-Size: 128 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1.2.0-1 +Config-Version: 1.2.0-1 +Replaces: xbase-clients (<= 1:7.2.ds2-3) +Depends: libc6 (>= 2.4), libx11-6, x11-common, xauth +Recommends: xserver-xorg | xserver, xterm | x-session-manager | x-window-manager | x-terminal-emulator +Conffiles: + /etc/X11/xinit/xinitrc cc40a5ba097b062b284e639f4160c04e + /etc/X11/xinit/xserverrc 50faa91e980a25adcd0de32020b340bb +Description: X server initialisation tool + xinit and startx are programs which facilitate starting an X server, and + loading a base X session. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libattr1 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 68 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: attr +Version: 1:2.4.44-1 +Depends: libc6 (>= 2.4) +Conflicts: attr (<< 2.0.0) +Description: Extended attribute shared library + Contains the runtime environment required by programs that make use + of extended attributes. +Original-Maintainer: Nathan Scott <nathans@debian.org> +Homepage: http://savannah.nongnu.org/projects/attr/ + +Package: xfonts-base +Status: install ok installed +Priority: optional +Section: fonts +Installed-Size: 8272 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Version: 1:1.0.1 +Replaces: xfonts-misc +Depends: xfonts-utils +Suggests: xfs | xserver +Conffiles: + /etc/X11/fonts/misc/xfonts-base.alias a8ec05d528431d4c9703b55a7efd67a8 +Description: standard fonts for X + xfonts-base provides a standard set of low-resolution bitmapped fonts. In + most cases it is desirable to have the X font server (xfs) and/or an X server + installed to make the fonts available to X clients. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: xserver-xorg-video-sisusb +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 156 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1:0.9.3-1 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-sisusb +Provides: xserver-xorg-video-6 +Depends: libc6 (>= 2.7), xserver-xorg-core (>= 2:1.6.99.900) +Conflicts: xserver-xorg-driver-sisusb +Description: X.Org X server -- SiS USB display driver + This package provides the driver for SiS USB-attached video devices. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-video-sisusb driver module. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: sed +Essential: yes +Status: install ok installed +Priority: required +Section: utils +Installed-Size: 972 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 4.2.1-6 +Depends: dpkg (>= 1.15.4) | install-info +Pre-Depends: libc6 (>= 2.4), libselinux1 (>= 1.32) +Description: The GNU sed stream editor + sed reads the specified files or the standard input if no + files are specified, makes editing changes according to a + list of commands, and writes the results to the standard + output. +Original-Maintainer: Clint Adams <schizo@debian.org> +Homepage: http://www.gnu.org/software/sed/ + +Package: libidn11 +Status: install ok installed +Priority: standard +Section: libs +Installed-Size: 368 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libidn +Version: 1.15-2 +Replaces: libidn11-dev +Depends: libc6 (>= 2.4) +Conflicts: libidn9-dev +Description: GNU Libidn library, implementation of IETF IDN specifications + GNU Libidn is a fully documented implementation of the Stringprep, + Punycode and IDNA specifications. Libidn's purpose is to encode and + decode internationalized domain names. The Nameprep, XMPP, SASLprep, + and iSCSI profiles are supported. + . + This package contains the shared library. +Original-Maintainer: Anibal Monsalve Salazar <anibal@debian.org> +Homepage: http://www.gnu.org/software/libidn/ + +Package: xserver-xorg-video-tdfx +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 156 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1:1.4.3-1 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-tdfx +Provides: xserver-xorg-video-6 +Depends: libc6 (>= 2.2.5), xserver-xorg-core (>= 2:1.6.99.900) +Conflicts: xserver-xorg-driver-tdfx +Description: X.Org X server -- tdfx display driver + This package provides the driver for 3dfx Voodoo video cards and their + derivatives. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-video-tdfx driver module. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: klibc-utils +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 476 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: klibc +Version: 1.5.17-4ubuntu1 +Depends: libklibc (= 1.5.17-4ubuntu1) +Description: small utilities built with klibc for early boot + This package contains a collection of programs that are linked + against klibc. These duplicate some of the functionality of a + regular Linux toolset, but are typically much smaller than their + full-function counterparts. They are intended for inclusion in + initramfs images and embedded systems. +Original-Maintainer: maximilian attems <maks@debian.org> + +Package: e2fslibs +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 316 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: e2fsprogs +Version: 1.41.11-1ubuntu2 +Replaces: e2fsprogs (<< 1.34-1) +Provides: libe2p2, libext2fs2 +Depends: libc6 (>= 2.7) +Description: ext2/ext3/ext4 file system libraries + The ext2, ext3 and ext4 file systems are successors of the original ext + ("extended") file system. They are the main file system types used for + hard disks on Debian and other Linux systems. + . + This package provides the ext2fs and e2p libraries, for userspace software + that directly accesses extended file systems. Programs that use libext2fs + include e2fsck, mke2fs, and tune2fs. Programs that use libe2p include + dumpe2fs, chattr, and lsattr. +Homepage: http://e2fsprogs.sourceforge.net +Original-Maintainer: Theodore Y. Ts'o <tytso@mit.edu> + +Package: xfonts-100dpi +Status: install ok installed +Priority: optional +Section: fonts +Installed-Size: 4808 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Version: 1:1.0.1 +Depends: xfonts-utils +Suggests: xfs | xserver +Conffiles: + /etc/X11/fonts/100dpi/xfonts-100dpi.alias 85bebd6ca213aa656c301a72eb4397cb +Description: 100 dpi fonts for X + xfonts-100dpi provides a set of bitmapped fonts at 100 dots per inch. In + most cases it is desirable to have the X font server (xfs) and/or an X server + installed to make the fonts available to X clients. + . + This package contains only fonts in the ISO 10646-1 and ISO 8859-1 + encodings, to conserve disk space. For other encodings, see the + xfonts-100dpi-transcoded package. + . + This package and xfonts-75dpi provide the same set of fonts, rendered at + different resolutions; only one or the other is necessary, but both may be + installed. xfonts-100dpi may be more suitable for large monitors and/or + large screen resolutions (over 1024x768). + . + This package requires the xfonts-utils package to prepare the font + directories for use by an X server or X font server. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libkrb5support0 +Status: install ok installed +Priority: standard +Section: libs +Installed-Size: 124 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: krb5 +Version: 1.8.1+dfsg-2 +Replaces: libkrb53 (<< 1.6.dfsg.4~beta1-7) +Depends: libc6 (>= 2.3.4), libkeyutils1 +Suggests: krb5-doc, krb5-user +Description: MIT Kerberos runtime libraries - Support library + Kerberos is a system for authenticating users and services on a network. + Kerberos is a trusted third-party service. That means that there is a + third party (the Kerberos server) that is trusted by all the entities on + the network (users and services, usually called "principals"). + . + This is the MIT reference implementation of Kerberos V5. + . + This package contains an internal runtime support library used by other + Kerberos libraries. +Original-Maintainer: Sam Hartman <hartmans@debian.org> +Homepage: http://web.mit.edu/kerberos/ + +Package: libgl1-mesa-glx +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 632 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Architecture: amd64 +Source: mesa +Version: 7.7.1-1ubuntu2 +Replaces: libgl1, libgl1-mesa-dri (<< 6.4.0) +Provides: libgl1 +Depends: libc6 (>= 2.4), libdrm2 (>= 2.3.1), libx11-6 (>= 0), libxdamage1 (>= 1:1.1), libxext6 (>= 0), libxfixes3 (>= 1:4.0.1), libxxf86vm1, dpkg (>= 1.15.4) +Recommends: libgl1-mesa-dri (>= 7.2) +Conflicts: libgl1, libgl1-mesa-dri (<< 6.4.0) +Description: A free implementation of the OpenGL API -- GLX runtime + This version of Mesa provides GLX and DRI capabilities: it is capable of + both direct and indirect rendering. For direct rendering, it can use DRI + modules from the libgl1-mesa-dri package to accelerate drawing. + . + This package does not include the modules themselves: these can be found + in the libgl1-mesa-dri package. + . + For a complete description of Mesa, please look at the + libgl1-mesa-swx11 package. +Homepage: http://mesa3d.sourceforge.net/ +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: x11-utils +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 688 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 7.5+3 +Replaces: appres, editres, listres, luit, viewres, xbase-clients (<< 1:7.2.ds3), xdpyinfo, xdriinfo, xev, xfd, xfontsel, xkill, xlsatoms, xlsclients, xlsfonts, xmessage, xprop, xutils (<< 1:7.2), xvinfo, xwininfo +Depends: libc6 (>= 2.7), libfontconfig1 (>= 2.8.0), libfontenc1, libfreetype6 (>= 2.2.1), libgl1-mesa-glx | libgl1, libx11-6 (>= 0), libxaw7, libxext6 (>= 0), libxft2 (>> 2.1.1), libxi6 (>= 0), libxinerama1, libxmu6, libxmuu1, libxrender1, libxt6, libxtst6, libxv1, libxxf86dga1, libxxf86vm1, zlib1g (>= 1:1.1.4), cpp +Pre-Depends: x11-common (>= 1:7.0.0) +Suggests: mesa-utils +Conflicts: appres, editres, listres, luit, viewres, xdpyinfo, xdriinfo, xev, xfd, xfontsel, xkill, xlsatoms, xlsclients, xlsfonts, xmessage, xprop, xvinfo, xwininfo +Conffiles: + /etc/X11/app-defaults/Editres 04c860eb13ac3a4e8d74ebebcf3da76c + /etc/X11/app-defaults/Editres-color f16b07f1caf85b42cd40355e23d927a0 + /etc/X11/app-defaults/Viewres 4f77da598593ff07cda9d2d147a07772 + /etc/X11/app-defaults/Viewres-color ff9c397a80443790a97b909050f63282 + /etc/X11/app-defaults/Xfd 5cee09dc86e1dc14c19492b6b866d17c + /etc/X11/app-defaults/XFontSel d917f63ef27294544ab192a3e33e30df + /etc/X11/app-defaults/Xmessage eed84b35dde8b18e7dcfc80e75c1da67 + /etc/X11/app-defaults/Xmessage-color ca383db9e4e9648bda0952ad6b8a2115 +Description: X11 utilities + An X client is a program that interfaces with an X server (almost always via + the X libraries), and thus with some input and output hardware like a + graphics card, monitor, keyboard, and pointing device (such as a mouse). + . + This package provides a miscellaneous assortment of X utilities + that ship with the X Window System, including: + - appres, editres, listres and viewres, which query the X resource database; + - luit, a filter that can be run between an arbitrary application and a + UTF-8 terminal emulator; + - xdpyinfo, a display information utility for X; + - xdriinfo, query configuration information of DRI drivers; + - xev, an X event displayer; + - xfd, a tool that displays all the glyphs in a given X font; + - xfontsel, a tool for browsing and selecting X fonts; + - xkill, a tool for terminating misbehaving X clients; + - xlsatoms, which lists interned atoms defined on an X server; + - xlsclients, which lists client applications running on an X display; + - xlsfonts, a server font list displayer; + - xmessage, a tool to display message or dialog boxes; + - xprop, a property displayer for X; + - xvinfo, an Xv extension information utility for X; + - xwininfo, a window information utility for X; + . + The editres and viewres programs use bitmap images provided by the + xbitmaps package. The luit program requires locale information from + the libx11-data package. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: base-passwd +Essential: yes +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 184 +Maintainer: Colin Watson <cjwatson@debian.org> +Architecture: amd64 +Version: 3.5.22 +Replaces: base +Depends: libc6 (>= 2.8) +Description: Debian base system master password and group files + These are the canonical master copies of the user database files + (/etc/passwd and /etc/group), containing the Debian-allocated user and + group IDs. The update-passwd tool is provided to keep the system databases + synchronized with these master files. + +Package: libcomerr2 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 108 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: e2fsprogs +Version: 1.41.11-1ubuntu2 +Replaces: e2fsprogs (<< 1.34-1) +Provides: libcomerr-kth-compat +Depends: libc6 (>= 2.3.4) +Description: common error description library + libcomerr is an attempt to present a common error-handling mechanism to + manipulate the most common form of error code in a fashion that does not + have the problems identified with mechanisms commonly in use. +Homepage: http://e2fsprogs.sourceforge.net +Original-Maintainer: Theodore Y. Ts'o <tytso@mit.edu> + +Package: mawk +Status: install ok installed +Priority: required +Section: utils +Installed-Size: 256 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1.3.3-15ubuntu2 +Provides: awk +Pre-Depends: libc6 (>= 2.11~20100104-0ubuntu3) +Description: a pattern scanning and text processing language + Mawk is an interpreter for the AWK Programming Language. The AWK + language is useful for manipulation of data files, text retrieval and + processing, and for prototyping and experimenting with algorithms. Mawk + is a new awk meaning it implements the AWK language as defined in Aho, + Kernighan and Weinberger, The AWK Programming Language, Addison-Wesley + Publishing, 1988. (Hereafter referred to as the AWK book.) Mawk conforms + to the POSIX 1003.2 (draft 11.3) definition of the AWK language + which contains a few features not described in the AWK book, and mawk + provides a small number of extensions. + . + Mawk is smaller and much faster than gawk. It has some compile-time + limits such as NF = 32767 and sprintf buffer = 1020. +Original-Maintainer: Steve Langasek <vorlon@debian.org> + +Package: xserver-xorg-video-ark +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 84 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1:0.7.2-1 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-ark +Provides: xserver-xorg-video-6 +Depends: libc6 (>= 2.2.5), xserver-xorg-core (>= 2:1.6.99.900) +Conflicts: xserver-xorg-driver-ark +Description: X.Org X server -- ark display driver + This package provides the driver for the ark family + of chipsets. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-video-ark driver module. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: gnupg +Status: install ok installed +Priority: important +Section: utils +Installed-Size: 5320 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1.4.10-2ubuntu1 +Depends: libbz2-1.0, libc6 (>= 2.4), libreadline6, libusb-0.1-4 (>= 2:0.1.12), zlib1g (>= 1:1.1.4), dpkg (>= 1.15.4) | install-info, gpgv +Recommends: libldap-2.4-2 (>= 2.4.7), gnupg-curl +Suggests: gnupg-doc, xloadimage | imagemagick | eog, libpcsclite1 +Description: GNU privacy guard - a free PGP replacement + GnuPG is GNU's tool for secure communication and data storage. + It can be used to encrypt data and to create digital signatures. + It includes an advanced key management facility and is compliant + with the proposed OpenPGP Internet standard as described in RFC2440. + . + The gnupg package is built without libcurl. So it does not support + HKPS keyservers. Install the gnupg-curl package if you want to use + the keyserver helper tools built with libcurl and supporting HKPS. + . + GnuPG does not use any patented algorithms. This means it cannot be + compatible with PGP2, because that uses IDEA (which is patented in + a number of countries). +Homepage: http://www.gnupg.org +Original-Maintainer: Debian GnuPG-Maintainers <pkg-gnupg-maint@lists.alioth.debian.org> + +Package: xserver-xorg-video-cirrus +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 164 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Architecture: amd64 +Version: 1:1.3.2-1ubuntu1 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-cirrus +Provides: xserver-xorg-video-6 +Depends: libc6 (>= 2.4), xserver-xorg-core (>= 2:1.6.99.900) +Conflicts: xserver-xorg-driver-cirrus +Description: X.Org X server -- Cirrus display driver + This package provides the driver for the Cirrus Logic family of video + cards. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-video-cirrus driver module. +Orig-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libdb4.8 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 1516 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: db +Version: 4.8.24-1ubuntu1 +Depends: libc6 (>= 2.4) +Conflicts: libdb2 (<< 2:2.7.7-3) +Description: Berkeley v4.8 Database Libraries [runtime] + This is the runtime package for programs that use the v4.8 Berkeley + database library. +Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html +Original-Maintainer: Debian Berkeley DB Maintainers <pkg-db-devel@lists.alioth.debian.org> + +Package: x11-apps +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 2276 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 7.5+1ubuntu2 +Replaces: bitmap, ico, oclock, x11perf, xbase-clients (<= 1:7.2.ds2-3), xbiff, xcalc, xclipboard, xclock, xconsole, xcursorgen, xditview, xeyes, xgc, xload, xlogo, xmag, xman, xmore, xwd, xwud +Depends: libc6 (>= 2.11), libpng12-0 (>= 1.2.13-4), libsm6, libx11-6 (>= 0), libxaw7, libxcursor1 (>> 1.1.2), libxext6 (>= 0), libxft2 (>> 2.1.1), libxkbfile1, libxmu6, libxmuu1, libxrender1, libxt6, cpp +Pre-Depends: x11-common (>= 1:7.0.0) +Suggests: mesa-utils +Conflicts: bitmap, ico, oclock, x11perf, xbiff, xcalc, xclipboard, xclock, xconsole, xcursorgen, xditview, xeyes, xgc, xload, xlogo, xmag, xman, xmore, xwd, xwud +Conffiles: + /etc/X11/app-defaults/Bitmap 53d1579022e3e95bc2b15eb813f08731 + /etc/X11/app-defaults/Bitmap-color 946b659d5d6c41b6840f5e0df10680d9 + /etc/X11/app-defaults/Bitmap-nocase f2db8f925e5ea5680090c32db9121c8d + /etc/X11/app-defaults/Clock-color b4ba6ae900e0e488e4b030f14c6fe656 + /etc/X11/app-defaults/XCalc bc0d4c4717137a2d25e17b7358c8ad8d + /etc/X11/app-defaults/XCalc-color c8efe9caf8987a902df98270e2b291c9 + /etc/X11/app-defaults/XClipboard 18ebd8e152da9203e9e34e88dad98d97 + /etc/X11/app-defaults/XClock 812dfcc6f6d83e2ae9da809c3bf11c67 + /etc/X11/app-defaults/XClock-color 7b049809f0bca03c76480959e2e4db89 + /etc/X11/app-defaults/XConsole a310ffbe0ed9509a2477ea5f1ac1dcc5 + /etc/X11/app-defaults/Xditview 49d35244a61618b60f17d3400f64a81e + /etc/X11/app-defaults/Xditview-chrtr 98a562569a7db396c9a0d2e6d414067e + /etc/X11/app-defaults/Xedit 013f41442eb431168793e1943779c8f3 + /etc/X11/app-defaults/Xedit-color 59d7f0d96f4346ae0fe4904d46daf53c + /etc/X11/app-defaults/Xgc 744adc578acb239541e378eb16e337f7 + /etc/X11/app-defaults/Xgc-color 8dfaceb0c12917fd0b1c77423f9f6a47 + /etc/X11/app-defaults/XLoad 3ea554c7be110102e42e25d3d83c4134 + /etc/X11/app-defaults/XLogo fb1407c8cb1574726a6eb743b0092407 + /etc/X11/app-defaults/XLogo-color 439375bf8e3b87f46eebf35f55a8dbb5 + /etc/X11/app-defaults/Xmag 798a596142ae1b051408171e2b2db096 + /etc/X11/app-defaults/Xman b34cc2adfe0b89d436864163387417d1 + /etc/X11/app-defaults/XMore d6a85ee054f522e47a246d4471b6ab49 +Description: X applications + This package provides a miscellaneous assortment of X applications + that ship with the X Window System, including: + - atobm, bitmap, and bmtoa, tools for manipulating bitmap images; + - oclock and xclock, graphical clocks; + - xbiff, a tool which tells you when you have new email; + - xcalc, a scientific calculator desktop accessory; + - xclipboard, a tool to manage cut-and-pasted text selections; + - xconsole, which monitors system console messages; + - xcursorgen, a tool for creating X cursor files from PNGs; + - xditview, a viewer for ditroff output; + - xedit, a simple text editor for X; + - xeyes, a demo program in which a pair of eyes track the pointer; + - xgc, a graphics demo; + - xload, a monitor for the system load average; + - xlogo, a demo program that displays the X logo; + - xmag, which magnifies parts of the X screen; + - xman, a manual page browser; + - xmore, a text pager; + - xwd, a utility for taking window dumps ("screenshots") of the X session; + - xwud, a viewer for window dumps created by xwd; + - Xmark, x11perf, and x11perfcomp, tools for benchmarking graphical + operations under the X Window System; + . + The xbiff, xcalc, xconsole and xman programs use bitmap images provided + by the xbitmaps package. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: x11-common +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 640 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Architecture: all +Source: xorg +Version: 1:7.5+5ubuntu1 +Replaces: x-common, xfree86-common, xorg-common, xserver-common (<< 7) +Depends: debconf (>= 0.5) | debconf-2.0, upstart-job, debianutils (>= 1.13), lsb-base (>= 1.3-9ubuntu2) +Pre-Depends: debconf | debconf-2.0 +Conflicts: aee (<= 2.2.15b-1), ascd (<= 0.13.2-3), beaver (<= 0.2.5-2), bibview (<= 2.2-8), bugsx (<= 1.08-8), buici-clock (<= 0.4.5+b1), communicator-smotif-477, ctwm (<= 3.7-2), emelfm (<= 0.9.2-7), epan, fte-xwindow (<= 0.50.0-1.3), fvwm1 (<= 1.24r-46), fvwm95 (<= 2.0.43ba-23+b1), gerstensaft (<= 0.2-5.1), ghostview, gipsc (<= 0.4.3-2), grace (<= 1:5.1.18-1), grace6 (<= 5.99.0+final-4), gradio (<= 1.0.1-6), groff (<= 1.18.1.1-7), guitar (<= 0.1.4-11), hamsoft (<< 0.2.3-1), hanterm-classic (<= 3.1.6.0-4), hanterm-xf (<= 1:3.3.1p18-9.2), hfsutils-tcltk (<= 3.2.6-7), ibp (<= 0.21-4), isdnutils-xtools (<= 1:3.8.2005-12-06-4), ivtools-bin (<= 1.1.3-5), ivtools-dev (<= 1.1.3-5), kdrill (<= 6.4-2.1), kinput2-canna (<= 3.1-7), kinput2-canna-wnn (<= 3.1-7), kinput2-wnn (<= 3.1-7), kterm (<= 6.2.0-45), lbxproxy (<< 7.0), libmotif-dev (<= 2.2.3-1.3), libxft-dev (<= 2.1.8.2-5), lm-batmon (<= 0.96-3), login.app (<= 1.2.1-18), lsb-core (<= 3.1-4), lwm (<= 1.2.1-1), mctools-lite (<= 970129-16), mgp (<= 1.11b-6), motif-clients (<= 2.2.3-1.3), navigator-smotif-477, netscape-base-4, olvwm (<= 4.4.3.2p1.4-21), olwm (<= 3.2p1.4-21), oneko (<= 1.2.sakura.6-1), opera (<< 9.10-20060616), pgaccess (<= 1:0.98.8.20030520-2), phototk, pixmap (<= 2.6pl4-14.1), plotmtv (<= 1.4.4t-8.1), pmud (<= 0.10-9), ppxp (<= 0.2001080415-14), ppxp-x11 (<= 0.2001080415-14), procmeter (<= 2.5.1-11), propsel (<= 971130-5.3), proxymngr (<< 7.0), qcam (<= 0.91-11.1), regexplorer (<= 0.1.6-12), seyon (<= 2.20c-20), skkinput (<= 1:2.06.4-4), stella (<< 2.2-1), tkdesk (<= 2.0-5), tkseti (<= 3.06-1), tkworld, twlog (<= 1.3-4), twm (<< 7.0), ucbmpeg-play (<< 2.3p-13), vide (<= 1.21-3), videogen (<= 0.32-1), vtwm (<= 5.4.7-2), w9wm (<= 0.4.2-4), wdm (<= 1.28-1), wily (<= 0.13.41-6), wmavgload (<= 0.7.0-6.1), wmcpu (<= 1.3-4.1), wmdate (<= 0.5-7.1), wmnet (<= 1.05-12), wmnetselect (<= 0.85-5.5), wmscope (<= 3.0-9.1), wmsensors (<= 1.0.4-3.4), wmtv (<= 0.6.5-15), x-common, xautolock (<= 1:2.1-6), xbanner (<= 1.31-23), xbase-clients (<< 1:7.0), xbatt (<= 1.2.1-4), xbattbar (<= 1.4.2-3.1), xcal (<= 4.1-18.2), xcalendar-i18n (<= 4.0.0.i18p1-13.1), xcb (<= 2.4-4), xclip (<= 0.08-5), xclips (<= 6.21-6), xcolors (<= 1.5a-2), xcolorsel (<= 1.1a-11), xdkcal (<= 0.9d-2.1), xdm (<= 1:1.0.1-6), xdmx (<< 1:1.0), xdu (<= 3.0-14), xearth (<= 1.1-10.2), xengine (<= 1.11-9), xephem (<= 3.4-5), xext, xezmlm (<= 1.0.3-11), xfaces (<= 3.3-25), xfishtank (<= 2.2-23.1), xfm (<= 1.4.3-8), xfractint (<< 20.3.01-1), xfree86-common, xfs (<< 1:1.0), xfs-xtt (<= 1:1.4.1.xf430-6), xftp, xfwp (<< 7.0), xgdipc (<= 1.2-0.3), xgmod (<= 3.1-9), xgobi, xgraph (<= 12.1-3), xinput (<= 1.2-5.2), xipmsg (<= 0.8088-1.1), xisp, xlbiff (<< 4.1-4), xli (<= 1.17.0-21), xlockmore (<= 1:5.21-1), xlockmore-gl (<= 1:5.21-1), xlogmaster (<= 1.6.0-8), xmailbox (<= 2.5-9), xmem (<= 1.20-19), xmeter (<= 1.15-6), xmh (<= 6.8.2.dfsg.1-4), xmix (<= 2.1-5), xmon (<= 1.5.6-1.3), xnecview (<= 1.34-2), xnest (<< 1:1.0), xodo (<= 1.2-9.2), xorg-common, xpaste, xpmumon (<= 1.3.0), xpostit (<= 3.3.1-8.2), xpostitplus, xprint (<= 1:0.1.0.alpha1-13), xqbiff (<= 0.75-4), xrn (<= 9.02-7.1), xserver-common (<< 7), xserver-xfree86 (<< 1:7.0), xserver-xfree86-dbg, xserver-xorg (<< 1:7.4~), xslideshow (<= 3.1-8.1), xsysinfo (<= 1.7-2), xtel (<= 3.3.0-5.4), xterm (<< 208-1), xtoolwait (<= 1.3-6), xtrkcad (<= 3.1.4-1), xtrlock (<= 2.0-11), xturqstat (<= 2.2.2sarge1), xutils (<< 1:7.0), xv (<= 3.10a-26), xvfb (<< 1:1.0), xview-clients (<= 3.2p1.4-21), xviewg (<= 3.2p1.4-21), xviewg-dev (<= 3.2p1.4-21), xvkbd (<= 2.6-2.1), xwit (<= 3.4-6), xxkb (<= 1.10-2.1), xzoom (<= 0.3-17), yank (<= 0.2.1-7.2) +Conffiles: + /etc/X11/rgb.txt 09ee098b83d94c7c046d6b55ebe84ae1 + /etc/X11/Xreset 05d188ccac2f3360af8fe0c216640233 + /etc/X11/Xreset.d/README b344c222b5daf81926fd3270df374b5f + /etc/X11/Xsession 50678401170c9c701d2375bd279690c5 + /etc/X11/Xsession.d/20x11-common_process-args 862c8286749d25fe58dd98cad24c3fe4 + /etc/X11/Xsession.d/30x11-common_xresources 61cebe25ee0c64e981b88958dfee6f9c + /etc/X11/Xsession.d/40x11-common_xsessionrc db544c8543d1cb3762b9859288e77040 + /etc/X11/Xsession.d/50x11-common_determine-startup fe7c99261ba27b26aa14926d92447439 + /etc/X11/Xsession.d/60x11-common_localhost 2353ea72efc0c3e101058c3c56e282b4 + /etc/X11/Xsession.d/90x11-common_ssh-agent ae74aadf705c5fccf841ef921b45ca72 + /etc/X11/Xsession.d/99x11-common_start 3874d5e8f3ec888f69adb126e223e168 + /etc/X11/Xsession.options 210cd520efa87a5197cac01e10b3a84a + /etc/X11/Xresources/x11-common b640adb1cd646ec097f8df5b6deca9f0 + /etc/gdm/failsafeBlacklist 9b860f21bf33a6bfce55f233ba975e41 + /etc/gdm/failsafeXinit bf497dc1b011021e548c37392bd2a883 + /etc/gdm/failsafeXServer 791297354d1c22d1616154b3c6060f2d + /etc/init.d/x11-common 9a2901c839ade46a2a0f795ad1400fdf + /etc/init/failsafe-x.conf b85b200b5d58cbba7c81d51485e210fc +Description: X Window System (X.Org) infrastructure + x11-common contains the filesystem infrastructure required for further + installation of the X Window System in any configuration; it does not + provide a full installation of clients, servers, libraries, and utilities + required to run the X Window System. + . + A number of terms are used to refer to the X Window System, including "X", + "X Version 11", "X11", "X11R6", and "X11R7". The version of X used in + Debian is derived from the version released by the X.Org Foundation, and + is thus often also referred to as "X.Org". All of the preceding quoted + terms are functionally interchangeable in an Debian system. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: net-tools +Status: install ok installed +Priority: required +Section: net +Installed-Size: 1044 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1.60-23ubuntu2 +Replaces: ja-trans (<= 0.8-2), netbase (<< 4.00) +Depends: libc6 (>= 2.4) +Conflicts: ja-trans (<= 0.8-2) +Description: The NET-3 networking toolkit + This package includes the important tools for controlling the network + subsystem of the Linux kernel. This includes arp, ifconfig, netstat, + rarp, nameif and route. Additionally, this package contains utilities + relating to particular network hardware types (plipconfig, slattach, + mii-tool) and advanced aspects of IP configuration (iptunnel, ipmaddr). + . + In the upstream package 'hostname' and friends are included. Those are + not installed by this package, since there is a special "hostname*.deb". +Original-Maintainer: net-tools Team <pkg-net-tools-maintainers@lists.alioth.debian.org> + +Package: libxfixes3 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 80 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libxfixes +Version: 1:4.0.4-1 +Depends: libc6 (>= 2.2.5), libx11-6 +Description: X11 miscellaneous 'fixes' extension library + libXfixes provides an X Window System client interface to the 'XFIXES' + extension to the X protocol. + . + It provides support for Region types, and some cursor functions. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libXfixes +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: ccache +Status: install ok installed +Priority: optional +Section: devel +Installed-Size: 128 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 2.4-17build1 +Depends: libc6 (>= 2.8), zlib1g (>= 1:1.1.4) +Suggests: distcc +Description: Compiler results cacher, for fast recompiles + ccache is a compiler cache. It speeds up re-compilation of C/C++ code + by caching previous compiles and detecting when the same compile is + being done again. +Original-Maintainer: Y Giridhar Appaji Nag <appaji@debian.org> +Homepage: http://ccache.samba.org + +Package: xserver-xorg-video-r128 +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 320 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 6.8.1-2ubuntu1 +Replaces: xserver-xorg-video-ati (<= 1:6.8.0-1ubuntu1) +Provides: xserver-xorg-video-6 +Depends: libc6 (>= 2.7), xserver-xorg-core (>= 2:1.6.99.900) +Suggests: firmware-linux +Conflicts: xserver-xorg-video-ati (<= 1:6.8.0-1ubuntu1) +Description: X.Org X server -- ATI r128 display driver + This driver for the X.Org X server (see xserver-xorg for a further description) + provides support for the ATI Rage 'r128' series. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-video-r128 driver module. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libfs6 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 116 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libfs +Version: 2:1.0.2-1build1 +Depends: libc6 (>= 2.4) +Description: X11 Font Services library + libFS, the Font Services library, provides various functions useful to + X11 font servers, and clients connecting to font servers. It is not used + outside of these implementations. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libFS +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: debconf-i18n +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 1136 +Maintainer: Colin Watson <cjwatson@ubuntu.com> +Architecture: all +Source: debconf +Version: 1.5.28ubuntu4 +Replaces: debconf (<< 1.3.0), debconf-utils (<< 1.3.22) +Depends: debconf, liblocale-gettext-perl, libtext-iconv-perl, libtext-wrapi18n-perl, libtext-charwidth-perl +Conflicts: debconf-english, debconf-utils (<< 1.3.22) +Description: full internationalization support for debconf + This package provides full internationalization for debconf, including + translations into all available languages, support for using translated + debconf templates, and support for proper display of multibyte character + sets. +Original-Maintainer: Debconf Developers <debconf-devel@lists.alioth.debian.org> + +Package: libxmu6 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 164 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libxmu +Version: 2:1.0.5-1 +Depends: libc6 (>= 2.7), libx11-6, libxext6, libxt6 +Description: X11 miscellaneous utility library + libXmu provides a set of miscellaneous utility convenience functions for X + libraries to use. libXmuu is a lighter-weight version that does not depend + on libXt or libXext; for more information, see libxmuu1. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libXmu +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: grep +Essential: yes +Status: install ok installed +Priority: required +Section: utils +Installed-Size: 1188 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 2.5.4-4build1 +Provides: rgrep +Pre-Depends: libc6 (>= 2.4) +Suggests: libpcre3 (>= 7.7) +Conflicts: rgrep +Description: GNU grep, egrep and fgrep + 'grep' is a utility to search for text in files; it can be used from the + command line or in scripts. Even if you don't want to use it, other packages + on your system probably will. + . + The GNU family of grep utilities may be the "fastest grep in the west". + GNU grep is based on a fast lazy-state deterministic matcher (about + twice as fast as stock Unix egrep) hybridized with a Boyer-Moore-Gosper + search for a fixed string that eliminates impossible text from being + considered by the full regexp matcher without necessarily having to + look at every character. The result is typically many times faster + than Unix grep or egrep. (Regular expressions containing backreferencing + will run more slowly, however.) +Original-Maintainer: Anibal Monsalve Salazar <anibal@debian.org> +Homepage: http://www.gnu.org/software/grep/ + +Package: plymouth +Status: install ok installed +Priority: required +Section: x11 +Installed-Size: 480 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 0.8.2-2ubuntu2 +Depends: libc6 (>= 2.8), libdrm-intel1 (>= 2.4.9), libdrm-nouveau1 (>= 2.4.11-1ubuntu1~), libdrm-radeon1 (>= 2.4.17), libdrm2 (>= 2.4.3), libplymouth2 (= 0.8.2-2ubuntu2), upstart-job, udev (>= 149-2), mountall (>= 2.0), initramfs-tools +Recommends: plymouth-theme-ubuntu-text | plymouth-theme +Breaks: gdm (<< 2.29.1-0ubuntu4), kdm (<< 4:4.4.2-0ubuntu6), lubuntu-plymouth-theme (<= 0.4), ubuntustudio-plymouth-theme (<= 0.38), xubuntu-plymouth-theme (<< 10.04.4) +Conflicts: usplash +Conffiles: + /etc/init/plymouth.conf a0352db1159bc9f4322170dd78cd1dae + /etc/init/plymouth-log.conf 65d2943a69f455dec3fed43fd7996d76 + /etc/init/plymouth-splash.conf 5daa5d5dafaee30442e4d8d82e542c0a + /etc/init/plymouth-stop.conf f422b651bb1fe8164f968bb58e18bb6c +Description: graphical boot animation and logger - main package + Plymouth is an application that runs very early in the boot process + (even before the root filesystem is mounted!) that provides a graphical + boot animation while the boot process happens in the background. + +Package: libdrm-nouveau1 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 456 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Architecture: amd64 +Source: libdrm +Version: 2.4.18-1ubuntu3 +Depends: libc6 (>= 2.3.4), libdrm2 (>= 2.4.3) +Description: Userspace interface to nouveau-specific kernel DRM services -- runtime + This library implements the userspace interface to the nouveau-specific kernel + DRM services. DRM stands for "Direct Rendering Manager", which is the + kernelspace portion of the "Direct Rendering Infrastructure" (DRI). The DRI is + currently used on Linux to provide hardware-accelerated OpenGL drivers. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: kbd +Status: install ok installed +Priority: extra +Section: utils +Installed-Size: 1632 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1.15-1ubuntu3 +Replaces: open, util-linux (<< 2.11) +Provides: console-utilities, open +Depends: libc6 (>= 2.7), console-setup, lsb-base (>= 3.0-10), initramfs-tools +Conflicts: console-utilities, kbd-data, open, util-linux (<< 2.11) +Conffiles: + /etc/kbd/config 182c6394322efb8a10e6e95836ad220d + /etc/kbd/remap 2f1f15d62b45ab43c04b3ddbfcf591ec +Description: Linux console font and keytable utilities + This package allows you to set up the Linux console, change the font, + resize text mode virtual consoles and remap the keyboard. + . + You will probably want to install a set of data files, such as the one + in the “console-setup†package. +Original-Maintainer: Console utilities maintainers <pkg-kbd-devel@lists.alioth.debian.org> + +Package: libxdamage1 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 64 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libxdamage +Version: 1:1.1.2-1 +Depends: libc6 (>= 2.2.5), libx11-6, libxfixes3 (>= 1:4.0.1) +Description: X11 damaged region extension library + libXdamage provides an X Window System client interface to the DAMAGE + extension to the X protocol. + . + The Damage extension provides for notification of when on-screen regions have + been 'damaged' (altered). + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libXdamage +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: x11-xserver-utils +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 556 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 7.5+1ubuntu2 +Replaces: iceauth, sessreg, xbase-clients (<< 1:7.3), xgamma, xhost, xmodmap, xrandr, xrdb, xrefresh, xrgb, xset, xsetmode, xsetpointer, xsetroot, xstdcmap, xutils (<< 1:7.2), xvidtune +Depends: libc6 (>= 2.7), libice6 (>= 1:1.0.0), libx11-6 (>= 0), libxau6, libxaw7, libxext6 (>= 0), libxi6 (>= 0), libxmu6, libxmuu1, libxrandr2 (>= 2:1.2.99.3), libxrender1, libxt6, libxxf86vm1, cpp +Pre-Depends: x11-common (>= 1:7.0.0) +Suggests: nickle, cairo-5c, xorg-docs-core +Conflicts: iceauth, sessreg, xgamma, xhost, xmodmap, xrandr, xrdb, xrefresh, xrgb, xset, xsetmode, xsetpointer, xsetroot, xstdcmap, xvidtune +Conffiles: + /etc/X11/app-defaults/Xvidtune b8a276636b9bee314fa77b468a54a84a +Description: X server utilities + An X client is a program that interfaces with an X server (almost always via + the X libraries), and thus with some input and output hardware like a + graphics card, monitor, keyboard, and pointing device (such as a mouse). + . + This package provides a miscellaneous assortment of X Server utilities + that ship with the X Window System, including: + - iceauth, a tool for manipulating ICE protocol authorization records; + - rgb; + - sessreg, a simple program for managing utmp/wtmp entries; + - xcmsdb, a device color characteristic utility for the X Color Management + System; + - xgamma, a tool for querying and setting a monitor's gamma correction; + - xhost, a very dangerous program that you should never use; + - xmodmap, a utility for modifying keymaps and pointer button mappings in X; + - xrandr, a command-line interface to the RandR extension; + - xrdb, a tool to manage the X server resource database; + - xrefresh, a tool that forces a redraw of the X screen; + - xset, a tool for setting miscellaneous X server parameters; + - xsetmode and xsetpointer, tools for handling X Input devices; + - xsetroot, a tool for tailoring the appearance of the root window; + - xstdcmap, a utility to selectively define standard colormap properties; + - xvidtune, a tool for customizing X server modelines for your monitor. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libxaw7 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 516 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libxaw +Version: 2:1.0.7-1 +Depends: libc6 (>= 2.4), libx11-6, libxext6, libxmu6, libxpm4, libxt6 +Description: X11 Athena Widget library + libXaw7 provides the second version of Xaw, the Athena Widgets tookit, + which is largely used by legacy X applications. This version is the + most common version, as version 6 is considered deprecated, and version + 8, which adds Xprint support, is unsupported and not widely used. + In general, use of a more modern toolkit such as GTK+ is recommended. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libXaw +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: upstart +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 856 +Maintainer: Scott James Remnant <scott@ubuntu.com> +Architecture: amd64 +Version: 0.6.5-6 +Replaces: startup-tasks, system-services, sysvinit, upstart-compat-sysv, upstart-job +Provides: startup-tasks, system-services, upstart-compat-sysv, upstart-job +Depends: libc6 (>= 2.4), libdbus-1-3 (>= 1.2.16), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0), libudev0 (>= 151-5), sysvinit-utils, sysv-rc, initscripts, mountall, ifupdown (>= 0.6.8ubuntu29) +Conflicts: startup-tasks, system-services, sysvinit, upstart-compat-sysv, upstart-job +Conffiles: + /etc/dbus-1/system.d/Upstart.conf 64be74cddb0c74b7d98202b40389784c + /etc/init/control-alt-delete.conf 16e6603524084b63b0f0ca04eb56757e + /etc/init/rc-sysinit.conf bd0415c6387debecfff37a371b07002a + /etc/init/rc.conf c5e4b13b644d79d5a5c02e1396159c00 + /etc/init/rcS.conf 918e9d799d6aa99a0d96538d9685821d + /etc/init/tty1.conf 543a3404e714bb96b676770c8334d86d + /etc/init/tty2.conf 5eed82253d8c362021c344f1dbdc863b + /etc/init/tty3.conf b75577836957bb5adb50b3482c429edb + /etc/init/tty4.conf 27b4a36d59bf74fd6792a69394511e42 + /etc/init/tty5.conf 9803918babed47f733554dcd556d09d1 + /etc/init/tty6.conf 34f7b6971a5580f5fb6a2ff6f14af996 + /etc/init/upstart-udev-bridge.conf b3d59bd6e5debf634e4fe258d5a4dd71 +Description: event-based init daemon + upstart is a replacement for the /sbin/init daemon which handles + starting of tasks and services during boot, stopping them during + shutdown and supervising them while the system is running. +Homepage: http://upstart.ubuntu.com/ + +Package: xserver-xorg-video-neomagic +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 156 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1:1.2.4-2 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-neomagic +Provides: xserver-xorg-video-6 +Depends: libc6 (>= 2.2.5), xserver-xorg-core (>= 2:1.6.99.900) +Conflicts: xserver-xorg-driver-neomagic +Description: X.Org X server -- Neomagic display driver + This package provides the driver for Neomagic MagicGraph chipsets, which are + commonly found in laptops. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-video-neomagic driver module. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libcwidget3 +Status: install ok installed +Priority: important +Section: libs +Installed-Size: 844 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: cwidget +Version: 0.5.13-1ubuntu1 +Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libncursesw5 (>= 5.6+20071006-3), libsigc++-2.0-0c2a (>= 2.0.2), libstdc++6 (>= 4.1.1) +Suggests: libcwidget-dev +Description: high-level terminal interface library for C++ (runtime files) + libcwidget is a modern user interface library modeled on GTK+ and Qt, + but using curses as its display layer and with widgets that are + tailored to a terminal environment. + . + This package contains the files that are required to run programs + compiled against libcwidget. +Homepage: http://cwidget.alioth.debian.org +Original-Maintainer: Daniel Burrows <dburrows@debian.org> + +Package: libsasl2-modules +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 500 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: cyrus-sasl2 +Version: 2.1.23.dfsg1-5ubuntu1 +Depends: libsasl2-2 (= 2.1.23.dfsg1-5ubuntu1), libc6 (>= 2.4), libssl0.9.8 (>= 0.9.8k-1) +Suggests: libsasl2-modules-otp, libsasl2-modules-ldap, libsasl2-modules-sql, libsasl2-modules-gssapi-mit | libsasl2-modules-gssapi-heimdal +Description: Cyrus SASL - pluggable authentication modules + This is the Cyrus SASL API implementation, version 2.1. See package + libsasl2-2 and RFC 2222 for more information. + . + This package provides the following SASL modules: LOGIN, PLAIN, ANONYMOUS, + NTLM, CRAM-MD5, and DIGEST-MD5 (with DES support). +Homepage: http://cyrusimap.web.cmu.edu/ +Original-Maintainer: Debian Cyrus SASL Team <pkg-cyrus-sasl2-debian-devel@lists.alioth.debian.org> + +Package: libsasl2-2 +Status: install ok installed +Priority: standard +Section: libs +Installed-Size: 272 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: cyrus-sasl2 +Version: 2.1.23.dfsg1-5ubuntu1 +Replaces: libsasl2 +Depends: libc6 (>= 2.4), libdb4.8 +Recommends: libsasl2-modules (= 2.1.23.dfsg1-5ubuntu1) +Conflicts: libsasl2-gssapi-mit (<< 2.1.22), libsasl2-krb4-mit (<< 2.1.22), postfix (<< 2.3.4-3) +Description: Cyrus SASL - authentication abstraction library + This is the Cyrus SASL API implementation, version 2.1. + . + SASL is the Simple Authentication and Security Layer, a method for + adding authentication support to connection-based protocols. To use + SASL, a protocol includes a command for identifying and + authenticating a user to a server and for optionally negotiating + protection of subsequent protocol interactions. If its use is + negotiated, a security layer is inserted between the protocol and the + connection. See RFC 2222 for more information. + . + Any of: ANONYMOUS, CRAM-MD5, DIGEST-MD5, GSSAPI (MIT or Heimdal + Kerberos 5), NTLM, OTP, PLAIN, or LOGIN can be used. If you intend to + use this package on a server that provides SASL authentication, then + you must install some of the libsasl2-modules* packages. +Homepage: http://cyrusimap.web.cmu.edu/ +Original-Maintainer: Debian Cyrus SASL Team <pkg-cyrus-sasl2-debian-devel@lists.alioth.debian.org> + +Package: passwd +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 2640 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: shadow +Version: 1:4.1.4.2-1ubuntu2 +Replaces: manpages-tr (<< 1.0.5), manpages-zh (<< 1.5.1-1) +Depends: libc6 (>= 2.4), libpam0g (>= 0.99.7.1), libselinux1 (>= 1.32), libpam-modules, debianutils (>= 2.15.2) +Conffiles: + /etc/default/useradd cc9f9a7713ab62a32cd38363d958f396 + /etc/pam.d/passwd eaf2ad85b5ccd06cceb19a3e75f40c63 + /etc/pam.d/chfn 4d466e00a348ba426130664d795e8afa + /etc/pam.d/chsh a6e9b589e90009334ffd030d819290a6 + /etc/pam.d/chpasswd 9900720564cb4ee98b7da29e2d183cb2 + /etc/pam.d/newusers 1454e29bfa9f2a10836563e76936cea5 +Description: change and administer password and group data + This package includes passwd, chsh, chfn, and many other programs to + maintain password and group data. + . + Shadow passwords are supported. See /usr/share/doc/passwd/README.Debian +Homepage: http://pkg-shadow.alioth.debian.org/ +Original-Maintainer: Shadow package maintainers <pkg-shadow-devel@lists.alioth.debian.org> + +Package: xfonts-75dpi +Status: install ok installed +Priority: optional +Section: fonts +Installed-Size: 4476 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Version: 1:1.0.1 +Depends: xfonts-utils +Suggests: xfs | xserver +Conffiles: + /etc/X11/fonts/75dpi/xfonts-75dpi.alias 6bc48023f2ae7f3bfc105db7b0ee6b49 +Description: 75 dpi fonts for X + xfonts-75dpi provides a set of bitmapped fonts at 75 dots per inch. In + most cases it is desirable to have the X font server (xfs) and/or an X server + installed to make the fonts available to X clients. + . + This package contains only fonts in the ISO 10646-1 and ISO 8859-1 + encodings, to conserve disk space. For other encodings, see the + xfonts-75dpi-transcoded package. + . + This package and xfonts-100dpi provide the same set of fonts, rendered at + different resolutions; only one or the other is necessary, but both may be + installed. xfonts-75dpi may be more suitable for small monitors and/or + small screen resolutions (under 1024x768). + . + This package requires the xfonts-utils package to prepare the font + directories for use by an X server or X font server. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: hostname +Essential: yes +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 112 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 3.03ubuntu1 +Replaces: nis (<< 3.17-30) +Pre-Depends: libc6 (>= 2.4), upstart-job +Conflicts: nis (<< 3.17-30) +Conffiles: + /etc/init/hostname.conf e426591274acd83666295d90a937ee7a +Description: utility to set/show the host name or domain name + This package provides commands which can be used to display the system's + DNS name, and to display or set its hostname or NIS domain name. +Original-Maintainer: Debian Hostname Team <hostname-devel@lists.alioth.debian.org> + +Package: xkb-data +Status: install ok installed +Priority: extra +Section: x11 +Installed-Size: 3384 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Source: xkeyboard-config +Version: 1.8-1ubuntu8 +Breaks: libx11-6 (<< 2:1.1) +Description: X Keyboard Extension (XKB) configuration data + This package contains configuration data used by the X Keyboard + Extension (XKB), which allows selection of keyboard layouts when + using a graphical interface. + . + Every X11 vendor provides its own XKB data files, so keyboard layout + designers have to send their layouts to several places. The + xkeyboard-config project has been launched at FreeDesktop in order + to provide a central repository that could be used by all vendors. +Homepage: http://www.freedesktop.org/Software/XKeyboardConfig +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: fakeroot +Status: install ok installed +Priority: optional +Section: utils +Installed-Size: 372 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1.14.4-1ubuntu1 +Depends: libc6 (>= 2.7) +Description: Gives a fake root environment + This package is intended to enable something like: + dpkg-buildpackage -rfakeroot + i.e. to remove the need to become root for a package build. + This is done by setting LD_PRELOAD to libfakeroot.so, + which provides wrappers around getuid, chown, chmod, mknod, + stat, and so on, thereby creating a fake root environment. + . + fakeroot requires SYSV IPC or TCP to operate. +Original-Maintainer: Clint Adams <schizo@debian.org> + +Package: libacl1 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 92 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: acl +Version: 2.2.49-2 +Depends: libattr1 (>= 2.4.41-1), libc6 (>= 2.4) +Conflicts: acl (<< 2.0.0), libacl1-kerberos4kth +Description: Access control list shared library + This package contains the libacl.so dynamic library containing + the POSIX 1003.1e draft standard 17 functions for manipulating + access control lists. +Original-Maintainer: Nathan Scott <nathans@debian.org> +Homepage: http://savannah.nongnu.org/projects/acl/ + +Package: python2.6-minimal +Status: install ok installed +Priority: required +Section: python +Installed-Size: 5044 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: python2.6 +Version: 2.6.5-1ubuntu6 +Replaces: python2.6 (<< 2.6.4~rc1-1) +Depends: libc6 (>= 2.4), libssl0.9.8 (>= 0.9.8k-1), zlib1g (>= 1:1.2.0) +Recommends: python2.6 +Suggests: binfmt-support +Conflicts: binfmt-support (<< 1.1.2), python-central (<< 0.6.11ubuntu6) +Conffiles: + /etc/python2.6/sitecustomize.py d6b276695157bde06a56ba1b2bc53670 +Description: A minimal subset of the Python language (version 2.6) + This package contains the interpreter and some essential modules. It can + be used in the boot process for some basic tasks. + See /usr/share/doc/python2.6-minimal/README.Debian for a list of the modules + contained in this package. +Original-Maintainer: Matthias Klose <doko@debian.org> +Python-Runtime: python2.6 +Python-Version: 2.6 + +Package: libpam-runtime +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 1248 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Source: pam +Version: 1.1.1-2ubuntu2 +Replaces: libpam0g-dev, libpam0g-util +Depends: debconf (>= 1.5.19), libpam-modules (>= 1.0.1-6) +Conflicts: libpam0g-util +Conffiles: + /etc/pam.conf 87fc76f18e98ee7d3848f6b81b3391e5 + /etc/pam.d/other 31aa7f2181889ffb00b87df4126d1701 +Description: Runtime support for the PAM library + Contains configuration files and directories required for + authentication to work on Debian systems. This package is required + on almost all installations. +Homepage: http://pam.sourceforge.net/ +Original-Maintainer: Steve Langasek <vorlon@debian.org> + +Package: libslang2 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 1520 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: slang2 +Version: 2.2.2-2ubuntu1 +Depends: libc6 (>= 2.4) +Recommends: libpng12-0 +Description: The S-Lang programming library - runtime version + S-Lang is a C programmer's library that includes routines for the rapid + development of sophisticated, user friendly, multi-platform applications. + . + This package contains only the shared library libslang.so.* and copyright + information. It is only necessary for programs that use this library (such + as jed and slrn). If you plan on doing development with S-Lang, you will + need the companion -dev package as well. +Original-Maintainer: Alastair McKinstry <mckinstry@debian.org> + +Package: initscripts +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 336 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: sysvinit +Version: 2.87dsf-4ubuntu17 +Replaces: libc0.1, libc0.3, libc6, libc6.1 +Depends: libc6 (>= 2.4), mount (>= 2.11x-1), debianutils (>= 2.13.1), lsb-base (>= 3.2-14), sysvinit-utils (>= 2.86.ds1-39), sysv-rc | file-rc, passwd, upstart +Recommends: psmisc, e2fsprogs +Breaks: hostname (<< 2.95ubuntu1~boot2), rsyslog (<< 4.2.0-2ubuntu3~boot1), udev (<< 146-2~boot6), upstart (<< 0.6.3-2~boot4) +Conflicts: libdevmapper1.02.1 (<< 2:1.02.24-1) +Conffiles: + /etc/init.d/bootlogd 6e90878c898804bf9059f8a304faed5d + /etc/init.d/stop-bootlogd e1a190ec1150ff0c1514eb318be9e227 + /etc/init.d/stop-bootlogd-single 1046585487345dd2d5d4b2841fb4a75b + /etc/init.d/halt 6ae1b3b1b8198567a5e32116077f12a2 + /etc/init.d/killprocs 5e404d35091fab6c4889302736ed4602 + /etc/init.d/ondemand cc2a79a545967eec1170dc2bb44468e0 + /etc/init.d/rc.local 2964c1446c6453cdde4213eede97ac38 + /etc/init.d/reboot 1b9db1ef7bfd79b128ef85d5065721a6 + /etc/init.d/sendsigs 2a1f251ca12ef06f46a166f9a37e2400 + /etc/init.d/single dc13cb373c5c098a8fb95424701373e3 + /etc/init.d/umountfs 842eba3cdd65c66a424f80a53f87d704 + /etc/init.d/umountnfs.sh b824a44ff24087eb2bf6780db7dfd9dc + /etc/init.d/umountroot aa9aa9db438cc99f76b065827971ff42 + /etc/init.d/urandom d0385e199d51b19181b77dc55211ac02 + /etc/default/bootlogd 70a108da715299a6e33470eb450669fb + /etc/default/devpts fc857c5ac5fb84d80720ed4d1c624f6e + /etc/default/halt 18d9844cf8ca8608e2a559a4555e593a + /etc/default/tmpfs d959a98cfb571cd7fdfb36bbb3d0a5c8 +Description: scripts for initializing and shutting down the system + The scripts in this package initialize a standard Debian + GNU/Linux system at boot time and shut it down at halt or + reboot time. +Homepage: http://freshmeat.net/projects/sysvinit/ +Original-Maintainer: Debian sysvinit maintainers <pkg-sysvinit-devel@lists.alioth.debian.org> + +Package: libblkid1 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 248 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: util-linux +Version: 2.17.2-0ubuntu1 +Depends: libc6 (>= 2.4), libuuid1 (>= 2.16) +Conffiles: + /etc/blkid.conf 7f4c49e01e0a23d2f4b20eeb32e95abb +Description: block device id library + The blkid library which allows system programs like fsck and + mount to quickly and easily find block devices by filesystem UUID and + LABEL. This allows system administrators to avoid specifying + filesystems by hard-coded device names, but via a logical naming + system instead. +Original-Maintainer: LaMont Jones <lamont@debian.org> + +Package: xinput +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 92 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1.5.0-2ubuntu1 +Depends: libc6 (>= 2.4), libx11-6 (>= 2:1.2.99.901), libxext6, libxi6 (>= 2:1.2.99.4) +Description: Runtime configuration and test of XInput devices + Xinput is an utility for configuring and testing XInput + devices. +Original-Maintainer: Julien Cristau <jcristau@debian.org> + +Package: libss2 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 120 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: e2fsprogs +Version: 1.41.11-1ubuntu2 +Replaces: e2fsprogs (<< 1.34-1) +Depends: libcomerr2, libc6 (>= 2.11) +Description: command-line interface parsing library + This package includes a tool that parses a command table to generate + a simple command-line interface parser, the include files needed to + compile and use it, and the static libs. + . + It was originally inspired by the Multics SubSystem library. +Homepage: http://e2fsprogs.sourceforge.net +Original-Maintainer: Theodore Y. Ts'o <tytso@mit.edu> + +Package: findutils +Essential: yes +Status: install ok installed +Priority: required +Section: utils +Installed-Size: 1892 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 4.4.2-1ubuntu1 +Pre-Depends: libc6 (>= 2.7) +Suggests: mlocate | locate | slocate +Description: utilities for finding files--find, xargs + GNU findutils provides utilities to find files meeting specified + criteria and perform various actions on the files which are found. + This package contains 'find' and 'xargs'; however, 'locate' has + been split off into a separate package. +Homepage: http://savannah.gnu.org/projects/findutils/ +Original-Maintainer: Andreas Metzler <ametzler@debian.org> + +Package: libxft2 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 152 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Architecture: amd64 +Source: xft +Version: 2.1.14-1ubuntu1 +Depends: libc6 (>= 2.4), libfontconfig1 (>= 2.4.0), libfreetype6 (>= 2.3.5), libx11-6, libxrender1 +Description: FreeType-based font drawing library for X + Xft provides a client-side font API for X applications, making the FreeType + font rasterizer available to X clients. Fontconfig is used for font + specification resolution. Where available, the RENDER extension handles + glyph drawing; otherwise, the core X protocol is used. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: xz-utils +Status: install ok installed +Priority: optional +Section: utils +Installed-Size: 476 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 4.999.9beta+20091116-1 +Depends: libc6 (>= 2.7), liblzma1 (>= 4.999.9beta) +Conflicts: xz-lzma (<< 4.999.9beta+20091004-1) +Description: XZ-format compression utilities + XZ is the successor to the Lempel-Ziv/Markov-chain Algorithm + compression format, which provides memory-hungry but powerful + compression (often better than bzip2) and fast, easy decompression. + . + This package provides the command line tools for working with XZ + compression, including xz, unxz, xzcat, xzgrep, and so on. They can + also handle the older LZMA format, and if invoked via appropriate + symlinks will emulate the behavior of the commands in the lzma + package. + . + The XZ format is similar to the older LZMA format but includes some + improvements for general use: + . + * 'file' magic for detecting XZ files; + * crc64 data integrity check; + * limited random-access reading support; + * improved support for multithreading (not used in xz-utils); + * support for flushing the encoder. +Original-Maintainer: Jonathan Nieder <jrnieder@gmail.com> +Homepage: http://tukaani.org/xz/ + +Package: xserver-xorg-video-nouveau +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 296 +Maintainer: Ubuntu MOTU Developers <ubuntu-motu@lists.ubuntu.com> +Architecture: amd64 +Version: 1:0.0.15+git20100219+9b4118d-0ubuntu5 +Replaces: xserver-xorg (<< 6.8.2-35) +Provides: xserver-xorg-video-6 +Depends: libc6 (>= 2.4), libdrm-nouveau1 (>= 2.4.16), xserver-xorg-core (>= 2:1.6.99.900) +Description: X.Org X server -- Nouveau display driver (experimental) + This driver for the X.Org X server (see xserver-xorg for a further description) + provides support for NVIDIA Riva, TNT, GeForce, and Quadro cards. + . + Although the nouveau project aims to provide full 3D support it is not yet + complete, and these packages do not include any 3D support. + Users requiring 3D support should use the non-free "nvidia" driver. + . + This package is built from the FreeDesktop.org xf86-video-nouveau driver. +Homepage: http://nouveau.freedesktop.org/wiki/ +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: xfonts-encodings +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 832 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Version: 1:1.0.3-1 +Replaces: xfonts-base (<< 1:1.0.0) +Depends: x11-common +Description: Encodings for X.Org fonts + This package contains the encodings that map to specific characters. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libx11-6 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 1456 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Architecture: amd64 +Source: libx11 +Version: 2:1.3.2-1ubuntu3 +Depends: libc6 (>= 2.4), libxcb1 (>= 1.2), libx11-data +Conflicts: xlibs-data (<< 1:7.0.0) +Description: X11 client-side library + This package provides a client interface to the X Window System, otherwise + known as 'Xlib'. It provides a complete API for the basic functions of the + window system. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libX11 +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: e2fsprogs +Essential: yes +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 2148 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1.41.11-1ubuntu2 +Replaces: hurd (<= 20040301-1), libblkid1 (<< 1.38+1.39-WIP-2005.12.10-2), libuuid1 (<< 1.38+1.39-WIP-2005.12.10-2) +Pre-Depends: e2fslibs (= 1.41.11-1ubuntu2), libblkid1 (>= 1.34-1), libc6 (>= 2.11), libcomerr2 (>= 1.34-1), libss2 (>= 1.34-1), libuuid1 (>= 1.34-1), util-linux (>= 2.15~rc1-1) +Suggests: gpart, parted, e2fsck-static +Conflicts: dump (<< 0.4b4-4), initscripts (<< 2.85-4), quota (<< 1.55-8.1), sysvinit (<< 2.85-4) +Conffiles: + /etc/mke2fs.conf 33c2a4bda46c7cee498bb660084492dd +Description: ext2/ext3/ext4 file system utilities + The ext2, ext3 and ext4 file systems are successors of the original ext + ("extended") file system. They are the main file system types used for + hard disks on Debian and other Linux systems. + . + This package contains programs for creating, checking, and maintaining + ext-based file systems, and the generic fsck wrapper. +Homepage: http://e2fsprogs.sourceforge.net +Original-Maintainer: Theodore Y. Ts'o <tytso@mit.edu> + +Package: libsigc++-2.0-0c2a +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 100 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libsigc++-2.0 +Version: 2.2.4.2-1 +Replaces: libsigc++-1.9-0, libsigc++-2.0-0, libsigc++-2.0-0c2 +Depends: libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) +Conflicts: libsigc++-1.9-0, libsigc++-2.0-0, libsigc++-2.0-0c2 +Description: type-safe Signal Framework for C++ - runtime + This library implements a full callback system for use in widget + libraries, abstract interfaces, and general programming. It provides + the ability to connect an abstract callback to a class method, + function, or function object, and contains adaptor classes for the + connection of dissimilar callbacks. + . + These are the runtime files for libsigc++, needed only if you wish to + run software which depends on it. +Original-Maintainer: Daniel Burrows <dburrows@debian.org> + +Package: liblzma1 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 288 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: xz-utils +Version: 4.999.9beta+20091116-1 +Depends: libc6 (>= 2.4) +Description: XZ-format compression library + XZ is the successor to the Lempel-Ziv/Markov-chain Algorithm + compression format, which provides memory-hungry but powerful + compression (often better than bzip2) and fast, easy decompression. + . + The native format of liblzma is XZ; it also supports raw (headerless) + streams and the older LZMA format used by lzma. (For 7-Zip's related + format, use the p7zip package instead.) +Original-Maintainer: Jonathan Nieder <jrnieder@gmail.com> +Homepage: http://tukaani.org/xz/ + +Package: libnih1 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 252 +Maintainer: Scott James Remnant <scott@ubuntu.com> +Architecture: amd64 +Source: libnih +Version: 1.0.1-1 +Depends: libc6 (>> 2.10), libc6 (<< 2.12) +Description: NIH Utility Library + libnih is a light-weight "standard library" of C functions to ease the + development of other libraries and applications, especially those + normally found in /lib. + . + This package contains the shared library. + +Package: cpp +Status: install ok installed +Priority: optional +Section: interpreters +Installed-Size: 104 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: gcc-defaults (1.93ubuntu1) +Version: 4:4.4.3-1ubuntu1 +Depends: cpp-4.4 (>= 4.4.3-1) +Suggests: cpp-doc +Conflicts: cpp-doc (<< 1:2.95.3) +Description: The GNU C preprocessor (cpp) + The GNU C preprocessor is a macro processor that is used automatically + by the GNU C compiler to transform programs before actual compilation. + . + This package has been separated from gcc for the benefit of those who + require the preprocessor but not the compiler. + . + This is a dependency package providing the default GNU C preprocessor. +Original-Maintainer: Debian GCC Maintainers <debian-gcc@lists.debian.org> + +Package: libgnutls26 +Status: install ok installed +Priority: standard +Section: libs +Installed-Size: 1176 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: gnutls26 +Version: 2.8.5-2 +Replaces: gnutls0, gnutls0.4, gnutls3 +Depends: libc6 (>= 2.8), libgcrypt11 (>= 1.4.2), libtasn1-3 (>= 1.6-0), zlib1g (>= 1:1.1.4) +Suggests: gnutls-bin +Conflicts: gnutls0, gnutls0.4 +Description: the GNU TLS library - runtime library + gnutls is a portable library which implements the Transport Layer + Security (TLS) 1.0 and Secure Sockets Layer (SSL) 3.0 protocols. + . + Currently gnutls implements: + - the TLS 1.0 and SSL 3.0 protocols, without any US-export + controlled algorithms + - X509 Public Key Infrastructure (with several limitations). + - SRP for TLS authentication. + - TLS Extension mechanism + . + This package contains the runtime libraries. +Original-Maintainer: Debian GnuTLS Maintainers <pkg-gnutls-maint@lists.alioth.debian.org> +Homepage: http://www.gnutls.org/ + +Package: xserver-xorg-video-mga +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 284 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1:1.4.11.dfsg-2ubuntu1 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-mga +Provides: xserver-xorg-video-6 +Depends: libc6 (>= 2.7), xserver-xorg-core (>= 2:1.6.99.900) +Suggests: firmware-linux +Conflicts: xserver-xorg-driver-mga +Description: X.Org X server -- MGA display driver + This package provides the driver for the Matrox MGA family of chipsets, + including Matrox Millennium and Mystique cards. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-video-mga driver module. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: insserv +Status: install ok installed +Priority: required +Section: misc +Installed-Size: 292 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1.12.0-14 +Depends: libc6 (>= 2.7) +Suggests: bootchart +Breaks: sysv-rc (<< 2.87dsf-3) +Conffiles: + /etc/bash_completion.d/insserv 32975fe14795d6fce1408d5fd22747fd + /etc/insserv.conf 9c13a4d5da9cb2c2fa550a30705f041a +Description: Tool to organize boot sequence using LSB init.d script dependencies + The insserv program is used to update the order of symlinks in + /etc/rc?.d/ with sysv-rc based on dependencies specified in the + scripts themselves using LSB init.d script headers. + . + This allow each package maintainer to specify their init.d script + relation to other scripts and make it possible to detect and reject + script dependency loops as well as making sure all scripts start in + their intended order. + . + The program insserv in this package should be used with care and + together with the sysv-rc package, as using it incorrectly can lead + to an unbootable system. +Original-Maintainer: Petter Reinholdtsen <pere@debian.org> +Homepage: http://ftp.suse.com/pub/projects/init/ + +Package: xserver-xorg-video-i128 +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 140 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1:1.3.3-1 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-i128 +Provides: xserver-xorg-video-6 +Depends: libc6 (>= 2.4), xserver-xorg-core (>= 2:1.6.99.900) +Conflicts: xserver-xorg-driver-i128 +Description: X.Org X server -- i128 display driver + This package provides the driver for Number 9 Imagine (I128) video cards. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-video-i128 driver module. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: gzip +Essential: yes +Status: install ok installed +Priority: required +Section: utils +Installed-Size: 284 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1.3.12-9ubuntu1 +Pre-Depends: libc6 (>= 2.4) +Suggests: less +Description: GNU compression utilities + This package provides the standard GNU file compression utilities, which + are also the default compression tools for Debian. They typically operate + on files with names ending in '.gz', but can also decompress files ending + in '.Z' created with 'compress'. +Original-Maintainer: Bdale Garbee <bdale@gag.com> + +Package: dpkg +Essential: yes +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 6728 +Origin: debian +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Bugs: debbugs://bugs.debian.org +Architecture: amd64 +Version: 1.15.5.6ubuntu4 +Replaces: manpages-de (<= 0.4-3), manpages-pl (<= 20051117-1) +Pre-Depends: libc6 (>= 2.11), coreutils (>= 5.93-1), lzma +Suggests: apt +Breaks: emacs21 (<< 21.4a+1-5.7), emacs21-nox (<< 21.4a+1-5.7), emacs22 (<= 22.2-0ubuntu2), emacs22-gtk (<= 22.2-0ubuntu2), emacs22-nox (<= 22.2-0ubuntu2), jed (<< 1:0.99.18+dfsg.1-13), jed-extra (<= 2.5.3-2), konqueror (<= 4:4.2.96-1), pinfo (<< 0.6.9-3.1), tkinfo (<< 2.8-3.1), xemacs21-support (<< 21.4.22-2), xjed (<< 1:0.99.18+dfsg.1-13) +Conflicts: apt (<< 0.7.7), aptitude (<< 0.4.7-1), dpkg-dev (<< 1.14.16), dpkg-iasearch (<< 0.11), sysvinit (<< 2.82-1) +Conffiles: + /etc/dpkg/dpkg.cfg f4413ffb515f8f753624ae3bb365b81b + /etc/alternatives/README 69c4ba7f08363e998e0f2e244a04f881 + /etc/cron.daily/dpkg b6b8dc21210ea50db7cc4636f521758f + /etc/logrotate.d/dpkg 9e25c8505966b5829785f34a548ae11f +Description: Debian package management system + This package provides the low-level infrastructure for handling the + installation and removal of Debian software packages. + . + For Debian package development tools, install dpkg-dev. +Homepage: http://wiki.debian.org/Teams/Dpkg +Original-Maintainer: Dpkg Developers <debian-dpkg@lists.debian.org> + +Package: libpcre3 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 456 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: pcre3 +Version: 7.8-3build1 +Depends: libc6 (>= 2.4) +Conflicts: libpcre3-dev (<= 4.3-3) +Description: Perl 5 Compatible Regular Expression Library - runtime files + This is a library of functions to support regular expressions whose syntax + and semantics are as close as possible to those of the Perl 5 language. + . + This package contains the runtime libraries. +Original-Maintainer: Mark Baker <mark@mnb.org.uk> + +Package: aptitude +Status: install ok installed +Priority: important +Section: admin +Installed-Size: 9828 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 0.4.11.11-1ubuntu10 +Depends: libapt-pkg-libc6.10-6-4.8, libc6 (>= 2.4), libcwidget3, libept0 (>= 0.5.30), libgcc1 (>= 1:4.1.1), libncursesw5 (>= 5.6+20071006-3), libsigc++-2.0-0c2a (>= 2.0.2), libstdc++6 (>= 4.4.0), libxapian15, zlib1g (>= 1:1.1.4) +Recommends: libparse-debianchangelog-perl +Suggests: aptitude-doc-en | aptitude-doc, tasksel, debtags +Conffiles: + /etc/apt/apt.conf.d/05aptitude 85b39c8f9413a8f29ddcce844d026929 + /etc/cron.daily/aptitude f934222d5eb13cb132e2751bdb023318 + /etc/logrotate.d/aptitude fb66bc5dc8c13edbcb83cea15ff86959 +Description: terminal-based package manager + aptitude is a terminal-based package manager with a number of useful + features, including: a mutt-like syntax for matching packages in a + flexible manner, dselect-like persistence of user actions, the + ability to retrieve and display the Debian changelog of most + packages, and a command-line mode similar to that of apt-get. + . + aptitude is also Y2K-compliant, non-fattening, naturally cleansing, + and housebroken. +Original-Maintainer: Daniel Burrows <dburrows@debian.org> + +Package: libept0 +Status: install ok installed +Priority: important +Section: libs +Installed-Size: 528 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libept +Version: 0.5.30 +Depends: libapt-pkg-libc6.10-6-4.8, libc6 (>= 2.8), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0), libxapian15, zlib1g (>= 1:1.1.4) +Description: High-level library for managing Debian package information + The library defines a very minimal framework in which many sources of data + about Debian packages can be implemented and queried together. + . + The library includes four data sources: + . + * APT: access the APT database + * Debtags: access the Debtags tag information + * Popcon: access Popcon package scores + * The Xapian index built by apt-xapian-index + . + This is the shared library. +Original-Maintainer: Enrico Zini <enrico@debian.org> + +Package: libncursesw5 +Status: install ok installed +Priority: important +Section: libs +Installed-Size: 556 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: ncurses +Version: 5.7+20090803-2ubuntu3 +Depends: libc6 (>= 2.4) +Recommends: libgpm2 +Description: shared libraries for terminal handling (wide character support) + This package contains the shared libraries necessary to run programs + compiled with ncursesw, which includes support for wide characters. +Homepage: ftp://invisible-island.net/ncurses/ +Original-Maintainer: Debian QA Group <packages@qa.debian.org> + +Package: liblocale-gettext-perl +Status: install ok installed +Priority: required +Section: perl +Installed-Size: 108 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1.05-6 +Depends: libc6 (>= 2.2.5) +Pre-Depends: perl-base (>= 5.10.0-24ubuntu4), perlapi-5.10.0 +Description: Using libc functions for internationalization in Perl + The gettext module permits access from perl to the gettext() family of + functions for retrieving message strings from databases constructed + to internationalize software. + . + It provides gettext(), dgettext(), dcgettext(), textdomain(), + bindtextdomain(), bind_textdomain_codeset(), ngettext(), dcngettext() + and dngettext(). +Original-Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org> +Homepage: http://search.cpan.org/dist/gettext/gettext.pm + +Package: ubuntu-keyring +Status: install ok installed +Priority: important +Section: misc +Installed-Size: 60 +Maintainer: Michael Vogt <michael.vogt@canonical.com> +Architecture: all +Version: 2010.11.09 +Depends: gnupg (>= 1.0.6-4) +Description: GnuPG keys of the Ubuntu archive + The Ubuntu project digitally signs its Release files. This package + contains the archive keys used for that. + +Package: xbitmaps +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 476 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Version: 1.1.0-1 +Description: Base X bitmaps + This package contains the base X bitmaps, which are used in many legacy X + clients. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: busybox-initramfs +Status: install ok installed +Priority: required +Section: shells +Installed-Size: 344 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: busybox +Version: 1:1.13.3-1ubuntu11 +Replaces: busybox-cvs-initramfs +Depends: libc6 (>= 2.11) +Conflicts: busybox-cvs-initramfs +Description: Standalone shell setup for initramfs + BusyBox combines tiny versions of many common UNIX utilities into a single + small executable. It provides minimalist replacements for the most common + utilities you would usually find on your desktop system (i.e., ls, cp, mv, + mount, tar, etc.). The utilities in BusyBox generally have fewer options than + their full-featured GNU cousins; however, the options that are included + provide the expected functionality and behave very much like their GNU + counterparts. + . + busybox-initramfs provides a statically linked simple stand alone shell + that provides only the basic utilities needed for the initramfs. +Original-Maintainer: Debian Install System Team <debian-boot@lists.debian.org> + +Package: xserver-xorg-video-s3 +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 148 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1:0.6.3-1 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-s3 +Provides: xserver-xorg-video-6 +Depends: libc6 (>= 2.2.5), xserver-xorg-core (>= 2:1.6.99.900) +Conflicts: xserver-xorg-driver-s3 +Description: X.Org X server -- legacy S3 display driver + This package provides the driver for certain legacy S3 video card chipsets, + including the Trio64 and 96x cards. It does not provide support for + ViRGE/Trio3D or Savage chipsets; support for these cards is provided by + xserver-xorg-video-s3virge and xserver-xorg-driver-savage, respectively. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-video-s3 driver module. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: ttf-dejavu-core +Status: install ok installed +Priority: optional +Section: fonts +Installed-Size: 2564 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Source: ttf-dejavu +Version: 2.30-2 +Replaces: ttf-dejavu (<< 2.20-1) +Conflicts: ttf-dejavu (<< 2.20-1) +Description: Vera font family derivate with additional characters + DejaVu provides an expanded version of the Vera font family aiming for + quality and broader Unicode coverage while retaining the original Vera + style. DejaVu currently works towards conformance with the Multilingual + European Standards (MES-1 and MES-2) for Unicode coverage. The DejaVu + fonts provide serif, sans and monospaced variants. + . + This package only contains the sans, sans-bold, serif, serif-bold, + mono and mono-bold variants. For additional variants, see the + ttf-dejavu-extra package. + . + DejaVu fonts are intended for use on low-resolution devices (mainly + computer screens) but can be used in printing as well. +Original-Maintainer: Debian Fonts Task Force <pkg-fonts-devel@lists.alioth.debian.org> +Homepage: http://dejavu-fonts.org/ + +Package: xserver-xorg-video-trident +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 244 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1:1.3.3-1 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-trident +Provides: xserver-xorg-video-6 +Depends: libc6 (>= 2.7), xserver-xorg-core (>= 2:1.6.99.900) +Conflicts: xserver-xorg-driver-trident +Description: X.Org X server -- Trident display driver + This package provides the driver for Trident Blade/Image/ProVidia/TGUI/9xxx + video cards. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-video-trident driver module. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libbz2-1.0 +Status: install ok installed +Priority: important +Section: libs +Installed-Size: 128 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: bzip2 +Version: 1.0.5-4 +Depends: libc6 (>= 2.4) +Description: high-quality block-sorting file compressor library - runtime + This package contains libbzip2 which is used by the bzip2 compressor. + . + bzip2 is a freely available, patent free, high-quality data compressor. + It typically compresses files to within 10% to 15% of the best available + techniques, whilst being around twice as fast at compression and six + times faster at decompression. + . + bzip2 compresses files using the Burrows-Wheeler block-sorting text + compression algorithm, and Huffman coding. Compression is generally + considerably better than that achieved by more conventional + LZ77/LZ78-based compressors, and approaches the performance of the PPM + family of statistical compressors. + . + The archive file format of bzip2 (.bz2) is incompatible with that of its + predecessor, bzip (.bz). +Original-Maintainer: Anibal Monsalve Salazar <anibal@debian.org> +Homepage: http://www.bzip.org/ + +Package: xserver-xorg-video-chips +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 232 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1:1.2.2-1 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-chips +Provides: xserver-xorg-video-6 +Depends: libc6 (>= 2.2.5), xserver-xorg-core (>= 2:1.6.99.900) +Conflicts: xserver-xorg-driver-chips +Description: X.Org X server -- Chips display driver + This package provides the driver for the Chips & Technologies family + of video cards. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-video-chips driver module. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: xserver-xorg-video-intel +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 1688 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 2:2.9.1-3ubuntu5 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-i810, xserver-xorg-video-i810 (<< 2:1.9.91-1), xserver-xorg-video-i810-modesetting, xserver-xorg-video-intel-modesetting +Provides: xserver-xorg-video-6 +Depends: libc6 (>= 2.4), libdrm-intel1 (>= 2.4.11), libdrm2 (>= 2.4.3), libpciaccess0 (>= 0.8.0+git20071002), libxext6 (>= 0), libxfixes3 (>= 1:4.0.1), libxv1, libxvmc1, xserver-xorg-core (>= 2:1.6.99.900) +Recommends: intel-gpu-tools +Conflicts: 915resolution, xserver-xorg-driver-i810, xserver-xorg-video-i810 (<< 2:1.9.91-1), xserver-xorg-video-i810-modesetting, xserver-xorg-video-intel-modesetting +Description: X.Org X server -- Intel i8xx, i9xx display driver + This package provides the driver for the Intel i8xx and i9xx family + of chipsets, including i810, i815, i830, i845, i855, i865, i915, i945 + and i965 series chips. + . + This package also provides XvMC (XVideo Motion Compensation) drivers + for i810/i815 and i9xx and newer chipsets. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-video-intel driver module. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: xserver-xorg-video-mach64 +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 388 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 6.8.2-2 +Replaces: xserver-xorg-video-ati (<= 1:6.8.0-1) +Provides: xserver-xorg-video-6 +Depends: libc6 (>= 2.4), xserver-xorg-core (>= 2:1.6.99.900) +Conflicts: xserver-xorg-video-ati (<= 1:6.8.0-1) +Description: X.Org X server -- ATI Mach64 display driver + This driver for the X.Org X server (see xserver-xorg for a further description) + provides support for the ATI Mach64 series. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-video-mach64 driver module. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: console-terminus +Status: install ok installed +Priority: optional +Section: fonts +Installed-Size: 784 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Source: xfonts-terminus +Version: 4.30-2 +Recommends: kbd | console-tools +Suggests: console-setup +Conflicts: console-cyrillic (<= 0.9-11) +Description: Fixed-width fonts for fast reading on the Linux console + This package installs in /usr/share/consolefonts several console + variants of the Terminus font. If you have to work for extended time + in front of monitor (i.e. over eight hours), you may find that using + of these fonts reduces your eyes-fatigue. + . + The following charsets are supported: western European Latin, central + European Latin, Turkish Latin, Romanian Latin, Slavic Cyrillic and + Asian Cyrillic (Bashkyr, Kazakh, Mongolian and others). +Original-Maintainer: Anton Zinoviev <zinoviev@debian.org> + +Package: libdrm-intel1 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 476 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Architecture: amd64 +Source: libdrm +Version: 2.4.18-1ubuntu3 +Depends: libc6 (>= 2.3.4), libdrm2 (>= 2.4.1) +Description: Userspace interface to intel-specific kernel DRM services -- runtime + This library implements the userspace interface to the intel-specific kernel + DRM services. DRM stands for "Direct Rendering Manager", which is the + kernelspace portion of the "Direct Rendering Infrastructure" (DRI). The DRI is + currently used on Linux to provide hardware-accelerated OpenGL drivers. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libpciaccess0 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 112 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libpciaccess +Version: 0.11.0-1 +Depends: libc6 (>= 2.7), zlib1g (>= 1:1.1.4) +Suggests: pciutils +Description: Generic PCI access library for X + Provides functionality for X to access the PCI bus and devices + in a platform-independant way. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libc-bin +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 1784 +Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: eglibc +Version: 2.11.1-0ubuntu7 +Replaces: libc0.1, libc0.3, libc6, libc6.1 +Breaks: libc0.1 (<< 2.10), libc0.3 (<< 2.10), libc6 (<< 2.10), libc6.1 (<< 2.10) +Conffiles: + /etc/bindresvport.blacklist 154db0e55fa99051ff1bd99e5b2c0584 + /etc/ld.so.conf.d/libc.conf d4d833fd095fb7b90e1bb4a547f16de6 + /etc/gai.conf 4b3389be7132a6a8805f3df8d0ff00f6 +Description: Embedded GNU C Library: Binaries + This package contains utility programs related to the GNU C Library. + . + * catchsegv: catch segmentation faults in programs + * getconf: query system configuration variables + * getent: get entries from administrative databases + * iconv, iconvconfig: convert between character encodings + * ldd, ldconfig: print/configure shared library dependencies + * locale, localedef: show/generate locale definitions + * rpcinfo: report RPC information + * tzselect, zdump, zic: select/dump/compile time zones +Homepage: http://www.eglibc.org +Original-Maintainer: GNU Libc Maintainers <debian-glibc@lists.debian.org> + +Package: libldap-2.4-2 +Status: install ok installed +Priority: standard +Section: libs +Installed-Size: 496 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: openldap +Version: 2.4.21-0ubuntu5 +Replaces: libldap-2.3-0, libldap2 +Depends: libc6 (>= 2.4), libgnutls26 (>= 2.7.14-0), libgssapi-krb5-2 (>= 1.7+dfsg), libsasl2-2 +Conflicts: ldap-utils (<= 2.1.23-1) +Conffiles: + /etc/ldap/ldap.conf 7fac807f65d84394410881bc16f1198a +Description: OpenLDAP libraries + These are the run-time libraries for the OpenLDAP (Lightweight Directory + Access Protocol) servers and clients. +Homepage: http://www.openldap.org/ +Original-Maintainer: Debian OpenLDAP Maintainers <pkg-openldap-devel@lists.alioth.debian.org> + +Package: sysvinit-utils +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 300 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: sysvinit +Version: 2.87dsf-4ubuntu17 +Replaces: last, sysvconfig (<< 0.80ubuntu1), sysvinit (<= 2.86.ds1-65), sysvutils (<< 2.86.ds1-56ubuntu1) +Provides: sysvutils +Depends: libc6 (>= 2.8), libselinux1 (>= 1.32), libsepol1 (>= 1.14) +Recommends: upstart (>= 0.6.3-4) +Suggests: sash +Conflicts: chkconfig (<< 11.0-79.1-1ubuntu1), last, sysvconfig +Description: System-V-like utilities + This package contains the important System-V-like utilities. + . + Specifically, this package includes: + killall5, last, lastb, mesg, pidof, service, sulogin +Homepage: http://freshmeat.net/projects/sysvinit/ +Original-Maintainer: Debian sysvinit maintainers <pkg-sysvinit-devel@lists.alioth.debian.org> + +Package: xserver-xorg-input-all +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 24 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Architecture: amd64 +Source: xorg +Version: 1:7.5+5ubuntu1 +Depends: xserver-xorg-input-evdev, xserver-xorg-input-synaptics, xserver-xorg-input-vmmouse, xserver-xorg-input-wacom, x11-common +Description: the X.Org X server -- input driver metapackage + This package depends on the full suite of input drivers for the X.Org X server + (Xorg). It does not provide any drivers itself, and may be removed if you wish + to only have certain drivers installed. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: fontconfig-config +Status: install ok installed +Priority: optional +Section: fonts +Installed-Size: 428 +Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Source: fontconfig +Version: 2.8.0-2ubuntu1 +Replaces: fontconfig (<< 2.3.2-2) +Depends: ucf (>= 0.29), ttf-dejavu-core | ttf-bitstream-vera | ttf-freefont | gsfonts-x11 +Conflicts: fontconfig (<< 2.3.2-2) +Conffiles: + /etc/fonts/fonts.conf 4c841acd3dd065819b23a0fc077d783c + /etc/fonts/fonts.dtd 9a099c7722190e00548c0d8375bdc24b + /etc/fonts/conf.d/README 296384642206e0c9952d5c73a5451eec + /etc/fonts/conf.avail/10-antialias.conf d77e6cfb9608490da012671c25213fe4 + /etc/fonts/conf.avail/10-autohint.conf 5fe723b1fde478085868af26461bcf58 + /etc/fonts/conf.avail/10-hinting-full.conf 65b0e8b7e1392797850856d8411d7272 + /etc/fonts/conf.avail/10-hinting-medium.conf b663214dd84d0f5c4e279b153e0b38f9 + /etc/fonts/conf.avail/10-hinting-slight.conf 4d7df8529053d526a503b472ee42b2b3 + /etc/fonts/conf.avail/10-hinting.conf 4d1fb88a99c516270526c8dca5764df8 + /etc/fonts/conf.avail/10-no-sub-pixel.conf d06c13e792afb20a06528d23e6542459 + /etc/fonts/conf.avail/10-sub-pixel-bgr.conf cacb7572b778448d592501d03a7f96fd + /etc/fonts/conf.avail/10-sub-pixel-rgb.conf 60ef22ca1f56543131eddee764383b46 + /etc/fonts/conf.avail/10-sub-pixel-vbgr.conf d526b41cd9b4d5e09ab4044a39b4c038 + /etc/fonts/conf.avail/10-sub-pixel-vrgb.conf a3198f34365f978c1fb5355a92e4ef94 + /etc/fonts/conf.avail/10-unhinted.conf 7bdecdf76d7bb22cd39e3b18bcbcc28d + /etc/fonts/conf.avail/11-lcd-filter-lcddefault.conf 34d7cffd14602241d09f23b0d1a39521 + /etc/fonts/conf.avail/20-fix-globaladvance.conf fbad2da072b8609477d89a59a167705a + /etc/fonts/conf.avail/20-unhint-small-vera.conf b975a96cc427cde633cbdedc4012aa22 + /etc/fonts/conf.avail/25-unhint-nonlatin.conf 62953912e2a45ea9a1ef4d8a400b2894 + /etc/fonts/conf.avail/30-metric-aliases.conf 64accc211b62e4fb7da141d8c1c271b3 + /etc/fonts/conf.avail/30-urw-aliases.conf c6c33cfde9f637e1d2b8cad9353df6dc + /etc/fonts/conf.avail/40-nonlatin.conf c78f533d9546bfc3a78f85d96f9eccf7 + /etc/fonts/conf.avail/45-latin.conf 8d9a57e7891ecc9d6f0806a3e7c204a1 + /etc/fonts/conf.avail/49-sansserif.conf 22278b0b48e5864d9c7fcbc178da0db3 + /etc/fonts/conf.avail/50-user.conf 0165add6524289f6eb0461ba0be73be2 + /etc/fonts/conf.avail/51-local.conf a2fa562c168c2c4cc0c2480bfdc0f8eb + /etc/fonts/conf.avail/53-monospace-lcd-filter.conf a6737024098d0bdc74b70846d4b99fe9 + /etc/fonts/conf.avail/60-latin.conf 2a898e836efee4347362e1e7f09cd0d6 + /etc/fonts/conf.avail/65-fonts-persian.conf 7df3a06989afcf1ecd9a8f44c9bf5d63 + /etc/fonts/conf.avail/65-khmer.conf ce66ea0c26f43091ab70092f3f7024d4 + /etc/fonts/conf.avail/65-nonlatin.conf 12a4cb7a2d642497f73f338abf988235 + /etc/fonts/conf.avail/69-unifont.conf 49a6cb52e1cf23e0f691807a3e8c105d + /etc/fonts/conf.avail/70-no-bitmaps.conf dccfa658875eea3b30514d7a8bc306bc + /etc/fonts/conf.avail/70-yes-bitmaps.conf 91c414090c7d8bfe557785fe845cb6bd + /etc/fonts/conf.avail/80-delicious.conf 1c0cbfdceb6bc7a55668c11f03b0710b + /etc/fonts/conf.avail/90-synthetic.conf 7659edb861f44ff8e9f4e31567d24e47 + /etc/fonts/conf.avail/70-force-bitmaps.conf 6423e63e204d4ea4629cd3f58636fcdc +Description: generic font configuration library - configuration + Fontconfig is a font configuration and customization library, which + does not depend on the X Window System. It is designed to locate + fonts within the system and select them according to requirements + specified by applications. + . + This package contains the configuration files and scripts for fontconfig. +Original-Maintainer: Keith Packard <keithp@debian.org> + +Package: libxtst6 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 84 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libxtst +Version: 2:1.1.0-2 +Depends: libc6 (>= 2.4), libx11-6, libxext6, libxi6, x11-common +Description: X11 Testing -- Resource extension library + libXtst provides an X Window System client interface to the Record + extension to the X protocol. + . + The Record extension allows X clients to synthesise input events, which + is useful for automated testing. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libXtst +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: xserver-xorg-input-mouse +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 160 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1:1.5.0-1 +Replaces: xserver-xorg (<< 6.8.2-35) +Provides: xserver-xorg-input-7 +Depends: libc6 (>= 2.7), xserver-xorg-core (>= 2:1.6.99.900) +Description: X.Org X server -- mouse input driver + This package provides the driver for mouse input devices. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-input-mouse driver module. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libice6 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 156 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libice +Version: 2:1.0.6-1 +Depends: libc6 (>= 2.4), x11-common +Description: X11 Inter-Client Exchange library + This package provides the main interface to the X11 Inter-Client Exchange + library, which allows for communication of data between X clients. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libICE +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libnih-dbus1 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 80 +Maintainer: Scott James Remnant <scott@ubuntu.com> +Architecture: amd64 +Source: libnih +Version: 1.0.1-1 +Depends: libnih1 (= 1.0.1-1), libc6 (>= 2.3.4), libdbus-1-3 (>= 1.2.16) +Description: NIH D-Bus Bindings Library + libnih-dbus is a D-Bus bindings library that integrates with the main + loop provided by libnih. + . + This package contains the shared library. + +Package: libx11-data +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 2500 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Architecture: all +Source: libx11 +Version: 2:1.3.2-1ubuntu3 +Replaces: libx11-6 (<= 2:1.0.0-1) +Description: X11 client-side library + This package provides the locale data files for libx11. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libX11 +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libselinux1 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 228 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libselinux +Version: 2.0.89-4 +Depends: libc6 (>= 2.8) +Description: SELinux runtime shared libraries + This package provides the shared libraries for Security-enhanced + Linux that provides interfaces (e.g. library functions for the + SELinux kernel APIs like getcon(), other support functions like + getseuserbyname()) to SELinux-aware applications. Security-enhanced + Linux is a patch of the Linux kernel and a number of utilities with + enhanced security functionality designed to add mandatory access + controls to Linux. The Security-enhanced Linux kernel contains new + architectural components originally developed to improve the security + of the Flask operating system. These architectural components provide + general support for the enforcement of many kinds of mandatory access + control policies, including those based on the concepts of Type + Enforcement, Role-based Access Control, and Multi-level Security. + . + libselinux1 provides an API for SELinux applications to get and set + process and file security contexts and to obtain security policy + decisions. Required for any applications that use the SELinux + API. libselinux may use the shared libsepol to manipulate the binary + policy if necessary (e.g. to downgrade the policy format to an older + version supported by the kernel) when loading policy. +Original-Maintainer: Manoj Srivastava <srivasta@debian.org> + +Package: libc6 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 10208 +Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: eglibc +Version: 2.11.1-0ubuntu7 +Replaces: belocs-locales-bin +Provides: glibc-2.10-1 +Depends: libc-bin (= 2.11.1-0ubuntu7), debconf (>= 0.5) | debconf-2.0, libgcc1, tzdata, findutils (>= 4.4.0-2ubuntu2) +Suggests: glibc-doc, locales +Breaks: nscd (<< 2.9) +Conflicts: belocs-locales-bin, tzdata (<< 2007k-1), tzdata-etch +Conffiles: + /etc/ld.so.conf.d/x86_64-linux-gnu.conf 593ad12389ab2b6f952e7ede67b8fbbf +Description: Embedded GNU C Library: Shared libraries + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C library + and the standard math library, as well as many others. +Homepage: http://www.eglibc.org +Original-Maintainer: GNU Libc Maintainers <debian-glibc@lists.debian.org> + +Package: xserver-xorg-video-nv +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 304 +Maintainer: Ubuntu X-SWAT <ubuntu-x@lists.ubuntu.com> +Architecture: amd64 +Version: 1:2.1.15-1ubuntu3 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-nv, xserver-xorg-video-riva128 +Provides: xf86-video-driver-riva128, xserver-xorg-video-6 +Depends: libc6 (>= 2.4), xserver-xorg-core (>= 2:1.6.99.900) +Conflicts: xserver-xorg-driver-nv, xserver-xorg-video-riva128 +Description: X.Org X server -- NV display driver + This driver for the X.Org X server (see xserver-xorg for a further description) + provides support for NVIDIA Riva, TNT, GeForce, and Quadro cards. + . + Note that this is not the same as the binary-only 'nvidia' driver, which + adds 3D support, but is binary-only and not supported. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-video-nv driver module. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libsm6 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 92 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libsm +Version: 2:1.1.1-1 +Depends: libc6 (>= 2.4), libice6 (>= 1:1.0.0), libuuid1 (>= 2.16-1) +Description: X11 Session Management library + This package provides the main interface to the X11 Session Management + library, which allows for applications to both manage sessions, and make use + of session managers to save and restore their state for later use. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libSM +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libxxf86vm1 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 76 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libxxf86vm +Version: 1:1.1.0-2 +Depends: libc6 (>= 2.2.5), libx11-6, libxext6 +Description: X11 XFree86 video mode extension library + libXxf86vm provides an interface to the XFree86-VidModeExtension + extension, which allows client applications to get and set video mode + timings in extensive detail. It is used by the xvidtune program in + particular. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libXxf86vm +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libpng12-0 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 336 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libpng +Version: 1.2.42-1ubuntu2 +Replaces: libpng12-dev (<= 1.2.8rel-7) +Depends: libc6 (>= 2.11), zlib1g (>= 1:1.1.4) +Conflicts: libpng12-dev (<= 1.2.8rel-7), mzscheme (<= 1:209-5), pngcrush (<= 1.5.10-2), pngmeta (<= 1.11-3), povray-3.5 (<= 3.5.0c-10), qemacs (<= 0.3.1-5) +Description: PNG library - runtime + libpng is a library implementing an interface for reading and writing + PNG (Portable Network Graphics) format files. + . + This package contains the runtime library files needed to run software + using libpng. +Homepage: http://libpng.org/pub/png/libpng.html +Original-Maintainer: Anibal Monsalve Salazar <anibal@debian.org> + +Package: udev +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 1584 +Maintainer: Scott James Remnant <scott@ubuntu.com> +Architecture: amd64 +Version: 151-12 +Replaces: hotplug, ifrename, initramfs-tools (<< 0.040ubuntu1), udev-extras (<= 20090618) +Depends: libacl1 (>= 2.2.11-1), libc6 (>= 2.9), libglib2.0-0 (>= 2.16.0), libselinux1 (>= 1.32), libusb-0.1-4 (>= 2:0.1.12), upstart-job, module-init-tools (>= 3.2.1-0ubuntu3), initramfs-tools (>= 0.92bubuntu63), procps, adduser, util-linux (>> 2.15~rc2) +Suggests: watershed +Breaks: casper (<< 1.174), consolekit (<= 0.4.1), dmsetup (<= 2:1.02.27-4ubuntu5), initramfs-tools (<< 0.92bubuntu30), lvm2 (<= 2.02.39-0ubuntu9), mdadm (<= 2.6.7.1-1ubuntu8) +Conflicts: hotplug, ifrename, libdevmapper1.02 (<< 2:1.02.08-1ubuntu7), udev-extras (<= 20090618) +Conffiles: + /etc/udev/rules.d/README 3b6de9f3f911176734c66903b4f8735c + /etc/udev/udev.conf 8b024b79a468658332fbf2586737907e + /etc/init/udev.conf 57d33a5ba9c438b3be4275e908213535 + /etc/init/udev-finish.conf 28ebb3ad2d2c6ca545d72f3f0769f448 + /etc/init/udevtrigger.conf 16f1ef5e6e1a9c589fa6993af7ea9ff5 + /etc/init/udevmonitor.conf b541dfb5aa4958e9a5336ecaec00ca15 +Description: rule-based device node and kernel event manager + udev is a collection of tools and a daemon to manage events received from + the kernel and deal with them in user-space. Primarily this involves + creating and removing device nodes in /dev when hardware is discovered or + removed from the system. + . + Events are received via kernel netlink messaged and processed according to + rules in /etc/udev/rules.d and /lib/udev/rules.d, altering the name of the + device node, creating additional symlinks or calling other tools and programs + including those to load kernel modules and initialise the device. + +Package: libpixman-1-0 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 504 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: pixman +Version: 0.16.4-1ubuntu2 +Depends: libc6 (>= 2.4) +Description: pixel-manipulation library for X and cairo + A library for manipulating pixel regions -- a set of Y-X banded + rectangles, image compositing using the Porter/Duff model + and implicit mask generation for geometric primitives including + trapezoids, triangles, and rectangles. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: bash +Essential: yes +Status: install ok installed +Priority: required +Section: shells +Installed-Size: 3612 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 4.1-2ubuntu3 +Replaces: bash-completion (<< 20060301-0), bash-doc (<= 2.05-1) +Depends: base-files (>= 2.1.12), debianutils (>= 2.15) +Pre-Depends: dash, libc6 (>= 2.11), libncurses5 (>= 5.6+20071006-3) +Recommends: bash-completion (>= 20060301-0) +Suggests: bash-doc +Conflicts: bash-completion (<< 20060301-0) +Conffiles: + /etc/skel/.bashrc 65c464307b8370db7fd43189f237dbd6 + /etc/skel/.profile ecb6d3479ac3823f1da7f314d871989b + /etc/skel/.bash_logout 22bfb8c1dd94b5f3813a2b25da67463f + /etc/bash.bashrc 856b64d15f052027a6807413e9035d3f +Description: The GNU Bourne Again SHell + Bash is an sh-compatible command language interpreter that executes + commands read from the standard input or from a file. Bash also + incorporates useful features from the Korn and C shells (ksh and csh). + . + Bash is ultimately intended to be a conformant implementation of the + IEEE POSIX Shell and Tools specification (IEEE Working Group 1003.2). + . + The Programmable Completion Code, by Ian Macdonald, is now found in + the bash-completion package. +Homepage: http://tiswww.case.edu/php/chet/bash/bashtop.html +Original-Maintainer: Matthias Klose <doko@debian.org> + +Package: make +Status: install ok installed +Priority: standard +Section: devel +Installed-Size: 1224 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: make-dfsg +Version: 3.81-7ubuntu1 +Suggests: make-doc +Description: An utility for Directing compilation. + GNU Make is an utility which controls the generation of executables and + other target files of a program from the program's source files. It + determines automatically which pieces of a large program need to be + (re)created, and issues the commands to (re)create them. Make is not + limited to programs and executable, it can be applied to any task + where a set of target files must be created based on a set of input + files, based on dependency and processing rules. Indeed, Make is a + general purpose dependency solver. +Original-Maintainer: Manoj Srivastava <srivasta@debian.org> +Homepage: http://www.gnu.org/software/make/ + +Package: util-linux +Essential: yes +Status: install ok installed +Priority: required +Section: utils +Installed-Size: 2344 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 2.17.2-0ubuntu1 +Replaces: e2fsprogs (<= 1.41.8-1ubuntu1), fdisk, linux32, miscutils, schedutils, setterm, sparc-utils +Provides: linux32, schedutils +Depends: upstart-job, lsb-base (>= 3.0-6), tzdata (>= 2006c-2), dpkg (>= 1.15.4) | install-info +Pre-Depends: libblkid1 (>= 2.17), libc6 (>= 2.11), libncurses5 (>= 5.6+20071006-3), libselinux1 (>= 1.32), libslang2 (>= 2.0.7-1), libuuid1 (>= 2.16), zlib1g (>= 1:1.1.4) +Suggests: util-linux-locales, kbd | console-tools, dosfstools +Breaks: udev (<< 136-1) +Conflicts: console-tools (<< 1:0.2.3-21), fdisk, kbd (<< 1.05-3), linux32, schedutils, setterm +Conffiles: + /etc/init/hwclock.conf 132aa3db7e5a8cf55168e4866052208a + /etc/init/hwclock-save.conf 4a002046525e338fc23e4418602865c9 +Description: Miscellaneous system utilities + This package contains a number of important utilities, most of which + are oriented towards maintenance of your system. Some of the more + important utilities included in this package allow you to partition + your hard disk, view kernel messages, and create new filesystems. +Original-Maintainer: LaMont Jones <lamont@debian.org> + +Package: libxcursor1 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 92 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libxcursor +Version: 1:1.1.10-1 +Depends: libc6 (>= 2.4), libx11-6, libxfixes3 (>= 1:4.0.1), libxrender1 +Description: X cursor management library + Xcursor is a simple library designed to help locate and load cursors for the + X Window System. Cursors can be loaded from files or memory and can exist in + several sizes; the library automatically picks the best size. When using + images loaded from files, Xcursor prefers to use the Render extension's + CreateCursor request for rendering cursors. Where the Render extension is + not supported, Xcursor maps the cursor image to a standard X cursor and uses + the core X protocol CreateCursor request. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: xfonts-utils +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 528 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1:7.5+2 +Replaces: fonttosfnt (<< 1.0.4), xutils (<< 1:1.0.1-1) +Depends: libc6 (>= 2.8), libfontenc1, libfreetype6 (>= 2.2.1), libxfont1 (>= 1:1.2.9), zlib1g (>= 1:1.1.4), x11-common, xfonts-encodings +Description: X Window System font utility programs + xfonts-utils provides a set of utility programs shipped with the X Window + System that are needed for font management. + . + The programs in this package include: + - bdftopcf, which converts BDF fonts to PCF fonts; + - bdftruncate and ucs2any, tools to generate fonts with various encodings + from ISO 10646-encoded fonts + - mkfontdir, a program to generate fonts.dir files; + - mkfontscale, a program to generate fonts.scale files; + - fonttosfnt, a program to wrap bitmap fonts in a sfnt (TrueType) wrapper. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libfontenc1 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 88 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libfontenc +Version: 1:1.0.5-1 +Depends: libc6 (>= 2.7), zlib1g (>= 1:1.1.4) +Description: X11 font encoding library + libfontenc is a library which helps font libraries portably determine + and deal with different encodings of fonts. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libfontenc +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: cpio +Status: install ok installed +Priority: required +Section: utils +Installed-Size: 872 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 2.10-1ubuntu2 +Replaces: cpio-mt +Depends: libc6 (>= 2.6) +Conflicts: cpio-mt, mt-st (<< 0.6) +Description: GNU cpio -- a program to manage archives of files + GNU cpio is a tool for creating and extracting archives, or copying + files from one place to another. It handles a number of cpio formats + as well as reading and writing tar files. +Original-Maintainer: Clint Adams <schizo@debian.org> + +Package: libstdc++6 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 1268 +Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: gcc-4.4 +Version: 4.4.3-4ubuntu5 +Depends: gcc-4.4-base (= 4.4.3-4ubuntu5), libc6 (>= 2.4), libgcc1 +Conflicts: scim (<< 1.4.2-1) +Description: The GNU Standard C++ Library v3 + This package contains an additional runtime library for C++ programs + built with the GNU compiler. + . + libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which + was included up to g++-2.95. The first version of libstdc++-v3 appeared + in g++-3.0. +Homepage: http://gcc.gnu.org/ +Original-Maintainer: Debian GCC Maintainers <debian-gcc@lists.debian.org> + +Package: x11-xfs-utils +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 132 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 7.4+1build2 +Replaces: fslsfonts, fstobdf, showfont, xbase-clients (<= 1:7.2.ds2-3), xfsinfo, xutils (<= 1:7.1.ds.3-1) +Depends: libc6 (>= 2.4), libfs6, libx11-6 (>= 0) +Pre-Depends: x11-common (>= 1:7.0.0) +Conflicts: fslsfonts, fstobdf, showfont, xfsinfo +Description: X font server utilities + x11-xfs-utils provides a set of utility programs useful on a system that uses + an X font server. + . + The programs in this package include: + - fslsfonts, a tool that lists fonts served by an X font server; + - fstobdf, a tool which retrieves a font in BDF format from an X font server; + - showfont, a font dumper for use with an X font server; + - xfsinfo, an X font server information utility. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: ca-certificates +Status: install ok installed +Priority: optional +Section: misc +Installed-Size: 736 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Version: 20090814 +Depends: openssl, debconf (>= 0.5) | debconf-2.0 +Enhances: libssl0.9.8, openssl +Description: Common CA certificates + This package includes PEM files of CA certificates to allow SSL-based + applications to check for the authenticity of SSL connections. + . + It includes, among others, certificate authorities used by the Debian + infrastructure and those shipped with Mozilla's browsers. + . + Please note that certificate authorities whose certificates are + included in this package are not in any way audited for + trustworthiness and RFC 3647 compliance, and that full responsibility + to assess them belongs to the local system administrator. +Original-Maintainer: Philipp Kern <pkern@debian.org> + +Package: vim-tiny +Status: install ok installed +Priority: important +Section: editors +Installed-Size: 840 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: vim +Version: 2:7.2.330-1ubuntu3 +Replaces: vim-common (<< 1:7.1.293-2) +Provides: editor +Depends: vim-common (= 2:7.2.330-1ubuntu3), libc6 (>= 2.11), libncurses5 (>= 5.6+20071006-3), libselinux1 (>= 1.32) +Suggests: indent +Conflicts: vim-common (<< 1:7.1.293-2), vim-runtime (<< 1:7.1-056+1) +Conffiles: + /etc/vim/vimrc.tiny 3b4112567ad92c78ccc16c670df381e9 +Description: Vi IMproved - enhanced vi editor - compact version + Vim is an almost compatible version of the UNIX editor Vi. + . + Many new features have been added: multi level undo, syntax + highlighting, command line history, on-line help, filename + completion, block operations, folding, Unicode support, etc. + . + This package contains a minimal version of vim compiled with no + GUI and a small subset of features in order to keep small the + package size. This package does not depend on the vim-runtime + package, but installing it you will get its additional benefits + (online documentation, plugins, ...). +Homepage: http://www.vim.org/ +Original-Maintainer: Debian Vim Maintainers <pkg-vim-maintainers@lists.alioth.debian.org> + +Package: xorg-docs-core +Status: install ok installed +Priority: optional +Section: doc +Installed-Size: 108 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Source: xorg-docs +Version: 1:1.5-1 +Replaces: xorg-docs (<< 1:1.4-5) +Suggests: xorg-docs +Description: Core documentation for the X.org X Window System + This package contains core documentation for the X.org X Window + System. This currently includes only a set of manpages which are + standard for the system. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: xserver-xorg-video-ati +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 320 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1:6.13.0-1ubuntu5 +Provides: xserver-xorg-video-6 +Depends: libc6 (>= 2.2.5), libpciaccess0 (>= 0), xserver-xorg-core (>= 2:1.6.99.900), xserver-xorg-video-r128, xserver-xorg-video-mach64, xserver-xorg-video-radeon +Description: X.Org X server -- AMD/ATI display driver wrapper + This package provides the 'ati' driver for the AMD/ATI Mach64, Rage128, + Radeon, FireGL, FireMV, FirePro and FireStream series. This driver is + actually a wrapper that loads one of the 'mach64', 'r128' or 'radeon' + sub-drivers depending on the hardware. + These sub-drivers are brought through package dependencies. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-video-ati driver module. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: xserver-xorg-video-siliconmotion +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 228 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1:1.7.3-1 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-siliconmotion +Provides: xserver-xorg-video-6 +Depends: libc6 (>= 2.7), xserver-xorg-core (>= 2:1.6.99.900) +Conflicts: xserver-xorg-driver-siliconmotion +Description: X.Org X server -- SiliconMotion display driver + This package provides the driver for the SiliconMotion Lynx and Cougar family + of chipsets, commonly found in laptops. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-video-siliconmotion driver module. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: binutils +Status: install ok installed +Priority: optional +Section: devel +Installed-Size: 10176 +Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 2.20.1-3ubuntu5 +Replaces: binutils-gold (<< 2.20-5) +Provides: elf-binutils +Depends: libc6 (>= 2.11), zlib1g (>= 1:1.1.4) +Suggests: binutils-doc (>= 2.20.1-3ubuntu5) +Conflicts: elf-binutils, gas, modutils (<< 2.4.19-1) +Description: The GNU assembler, linker and binary utilities + The programs in this package are used to assemble, link and manipulate + binary and object files. They may be used in conjunction with a compiler + and various libraries to build programs. +Original-Maintainer: Matthias Klose <doko@debian.org> + +Package: libglib2.0-0 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 2428 +Maintainer: Ubuntu Desktop Team <ubuntu-desktop@lists.ubuntu.com> +Architecture: amd64 +Source: glib2.0 +Version: 2.24.0-0ubuntu4 +Replaces: libglib2.0-dev (<< 2.23.2-2) +Depends: libc6 (>= 2.9), libpcre3 (>= 7.7), libselinux1 (>= 1.32), zlib1g (>= 1:1.1.4) +Recommends: libglib2.0-data, shared-mime-info +Conflicts: libpango1.0-0 (<< 1.11) +Description: The GLib library of C routines + GLib is a library containing many useful C routines for things such + as trees, hashes, lists, and strings. It is a useful general-purpose + C library used by projects such as GTK+, GIMP, and GNOME. + . + This package contains the shared libraries. +Homepage: http://www.gtk.org/ +Original-Maintainer: Loic Minier <lool@dooz.org> + +Package: libgomp1 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 96 +Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: gcc-4.4 +Version: 4.4.3-4ubuntu5 +Depends: gcc-4.4-base (= 4.4.3-4ubuntu5), libc6 (>= 2.6) +Description: GCC OpenMP (GOMP) support library + GOMP is an implementation of OpenMP for the C, C++, and Fortran 95 compilers + in the GNU Compiler Collection. +Homepage: http://gcc.gnu.org/ +Original-Maintainer: Debian GCC Maintainers <debian-gcc@lists.debian.org> + +Package: xserver-xorg-video-tseng +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 136 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 1:1.2.3-1 +Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-tseng +Provides: xserver-xorg-video-6 +Depends: libc6 (>= 2.2.5), xserver-xorg-core (>= 2:1.6.99.900) +Conflicts: xserver-xorg-driver-tseng +Description: X.Org X server -- Tseng display driver + This package provides the driver for Tseng Labs cards. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This package is built from the X.org xf86-video-tseng driver module. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libtext-charwidth-perl +Status: install ok installed +Priority: required +Section: perl +Installed-Size: 96 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Version: 0.04-6 +Depends: libc6 (>= 2.2.5), perl-base (>= 5.10.0-24ubuntu4), perlapi-5.10.0 +Description: get display widths of characters on the terminal + This module permits perl software to get the display widths of characters + and strings on the terminal, using wcwidth() and wcswidth() from libc. + . + It provides mbwidth(), mbswidth(), and mblen(). +Original-Maintainer: Anibal Monsalve Salazar <anibal@debian.org> +Homepage: http://search.cpan.org/search?module=Text::CharWidth + +Package: libxt6 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 468 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libxt +Version: 1:1.0.7-1 +Depends: libc6 (>= 2.7), libice6 (>= 1:1.0.0), libsm6, libx11-6 +Description: X11 toolkit intrinsics library + libXt provides the X Toolkit Intrinsics, an abstract widget library upon + which other toolkits are based. Xt is the basis for many toolkits, including + the Athena widgets (Xaw), and LessTif (a Motif implementation). + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libXt +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: readline-common +Status: install ok installed +Priority: important +Section: utils +Installed-Size: 132 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Source: readline6 +Version: 6.1-1 +Replaces: libreadline-common, libreadline4 (<< 4.3-16), libreadline5 (<< 5.0-11) +Depends: dpkg (>= 1.15.4) | install-info +Conflicts: libreadline-common, libreadline5 (<< 5.0-11) +Description: GNU readline and history libraries, common files + The GNU readline library aids in the consistency of user interface + across discrete programs that need to provide a command line + interface. + . + The GNU history library provides a consistent user interface for + recalling lines of previously typed input. +Original-Maintainer: Matthias Klose <doko@debian.org> + +Package: gnupg-curl +Status: install ok installed +Priority: optional +Section: utils +Installed-Size: 156 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: gnupg +Version: 1.4.10-2ubuntu1 +Depends: libc6 (>= 2.4), libcurl3-gnutls (>= 7.16.2-1), libldap-2.4-2 (>= 2.4.7), gnupg +Description: GNU privacy guard - a free PGP replacement (cURL) + GnuPG is GNU's tool for secure communication and data storage. + It can be used to encrypt data and to create digital signatures. + It includes an advanced key management facility and is compliant + with the proposed OpenPGP Internet standard as described in RFC2440. + . + This package contains the keyserver helper tools built with libcurl, + which replace the ones in the gnupg package built with the "curl shim" + variant of gnupg. This package provides support for HKPS keyservers. + . + GnuPG does not use any patented algorithms. This means it cannot be + compatible with PGP2, because that uses IDEA (which is patented in + a number of countries). +Homepage: http://www.gnupg.org +Original-Maintainer: Debian GnuPG-Maintainers <pkg-gnupg-maint@lists.alioth.debian.org> + +Package: gcc-4.4-base +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 172 +Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: gcc-4.4 +Version: 4.4.3-4ubuntu5 +Description: The GNU Compiler Collection (base package) + This package contains files common to all languages and libraries + contained in the GNU Compiler Collection (GCC). +Homepage: http://gcc.gnu.org/ +Original-Maintainer: Debian GCC Maintainers <debian-gcc@lists.debian.org> + +Package: libkrb5-3 +Status: install ok installed +Priority: standard +Section: libs +Installed-Size: 964 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: krb5 +Version: 1.8.1+dfsg-2 +Replaces: libkrb53 (<< 1.6.dfsg.4~beta1-7) +Depends: libc6 (>= 2.9), libcomerr2 (>= 1.34), libk5crypto3 (>= 1.8+dfsg), libkeyutils1, libkrb5support0 (= 1.8.1+dfsg-2) +Suggests: krb5-doc, krb5-user +Conflicts: libapache-mod-auth-kerb (<= 4.996-5.0-rc6-2), libapache2-mod-auth-kerb (<= 4.996-5.0-rc6-2), ssh-krb5 (<< 3.8.1p1-10) +Description: MIT Kerberos runtime libraries + Kerberos is a system for authenticating users and services on a network. + Kerberos is a trusted third-party service. That means that there is a + third party (the Kerberos server) that is trusted by all the entities on + the network (users and services, usually called "principals"). + . + This is the MIT reference implementation of Kerberos V5. + . + This package contains the runtime library for the main Kerberos v5 API + used by applications and Kerberos clients. +Original-Maintainer: Sam Hartman <hartmans@debian.org> +Homepage: http://web.mit.edu/kerberos/ + +Package: libxau6 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 72 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: amd64 +Source: libxau +Version: 1:1.0.5-1 +Depends: libc6 (>= 2.4) +Description: X11 authorisation library + This package provides the main interface to the X11 authorisation handling, + which controls authorisation for X connections, both client-side and + server-side. + . + More information about X.Org can be found at: + <URL:http://www.X.org> + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libXau +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + diff --git a/test/integration/test-autoremove b/test/integration/test-autoremove index fb39e979a..1ca325b29 100755 --- a/test/integration/test-autoremove +++ b/test/integration/test-autoremove @@ -1,29 +1,53 @@ #!/bin/sh set -e -local TESTDIR=$(readlink -f $(dirname $0)) +TESTDIR=$(readlink -f $(dirname $0)) . $TESTDIR/framework setupenvironment -configarchitecture "i386" +configarchitecture 'i386' -buildsimplenativepackage "unrelated" "all" "1" "unstable" -buildsimplenativepackage "po-debconf" "all" "1.0.16" "unstable" -buildsimplenativepackage "debhelper" "all" "8.0.0" "unstable" "Depends: po-debconf" +buildsimplenativepackage 'unrelated' 'all' '1' 'unstable' +buildsimplenativepackage 'po-debconf' 'all' '1.0.16' 'unstable' +buildsimplenativepackage 'debhelper' 'all' '8.0.0' 'unstable' 'Depends: po-debconf' setupaptarchive aptget install unrelated debhelper -qq 2>&1 > /dev/null +testdpkginstalled 'unrelated' 'debhelper' 'po-debconf' -testfileequal "rootdir/var/lib/apt/extended_states" "Package: po-debconf +testfileequal 'rootdir/var/lib/apt/extended_states' 'Package: po-debconf Architecture: i386 Auto-Installed: 1 -" +' aptget remove debhelper -y -qq 2>&1 > /dev/null +testdpkgnoninstalled 'debhelper' +testdpkginstalled 'po-debconf unrelated' + +echo 'APT::NeverAutoRemove { "^debc.*nf$"; };' > rootdir/etc/apt/apt.conf.d/00autoremove +testequal 'Reading package lists... +Building dependency tree... +Reading state information... +The following packages will be REMOVED: + po-debconf +0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded. +Remv po-debconf [1.0.16]' aptget autoremove -s +testdpkginstalled 'po-debconf' + +echo 'APT::NeverAutoRemove { "^po-debconf$"; };' > rootdir/etc/apt/apt.conf.d/00autoremove aptget autoremove -y -qq 2>&1 > /dev/null +testdpkginstalled 'po-debconf' -testfileequal "rootdir/var/lib/apt/extended_states" "" +echo 'APT::NeverAutoRemove { "^po-.*$"; };' > rootdir/etc/apt/apt.conf.d/00autoremove +aptget autoremove -y -qq 2>&1 > /dev/null +testdpkginstalled "po-debconf" + +rm rootdir/etc/apt/apt.conf.d/00autoremove +aptget autoremove -y -qq 2>&1 > /dev/null +testdpkgnoninstalled 'po-debconf' + +testfileequal 'rootdir/var/lib/apt/extended_states' '' sed -i rootdir/var/log/apt/history.log -e '/^Commandline: / d' -e '/^Start-Date: / d' -e '/^End-Date: / d' -testfileequal "rootdir/var/log/apt/history.log" ' +testfileequal 'rootdir/var/log/apt/history.log' ' Install: unrelated:i386 (1), debhelper:i386 (8.0.0), po-debconf:i386 (1.0.16, automatic) Remove: debhelper:i386 (8.0.0) diff --git a/test/integration/test-bug-590438-broken-provides-thanks-to-remove-order b/test/integration/test-bug-590438-broken-provides-thanks-to-remove-order index 9fd7741f4..3be0bec48 100755 --- a/test/integration/test-bug-590438-broken-provides-thanks-to-remove-order +++ b/test/integration/test-bug-590438-broken-provides-thanks-to-remove-order @@ -1,7 +1,7 @@ #!/bin/sh set -e -local TESTDIR=$(readlink -f $(dirname $0)) +TESTDIR=$(readlink -f $(dirname $0)) . $TESTDIR/framework setupenvironment diff --git a/test/integration/test-bug-591882-conkeror b/test/integration/test-bug-591882-conkeror index b1dbb3a0a..e1c0b42d1 100755 --- a/test/integration/test-bug-591882-conkeror +++ b/test/integration/test-bug-591882-conkeror @@ -1,7 +1,7 @@ #!/bin/sh set -e -local TESTDIR=$(readlink -f $(dirname $0)) +TESTDIR=$(readlink -f $(dirname $0)) . $TESTDIR/framework setupenvironment configarchitecture "i386" @@ -34,8 +34,8 @@ The following packages will be upgraded: perl-base perl-modules readline-common sed ttf-dejavu-core ucf whiptail x11-common zlib1g 87 upgraded, 26 newly installed, 5 to remove and 0 not upgraded. -Need to get 0B/54.4MB of archives. -After this operation, 12.4MB of additional disk space will be used. +Need to get 0 B/54.4 MB of archives. +After this operation, 12.4 MB of additional disk space will be used. E: Trivial Only specified but this is not a trivial operation." UPGRADESUCCESS="Reading package lists... @@ -66,8 +66,8 @@ The following packages will be upgraded: perl-base perl-modules readline-common sed ttf-dejavu-core ucf whiptail x11-common zlib1g 88 upgraded, 30 newly installed, 4 to remove and 0 not upgraded. -Need to get 0B/62.9MB of archives. -After this operation, 36.0MB of additional disk space will be used. +Need to get 0 B/62.9 MB of archives. +After this operation, 36.0 MB of additional disk space will be used. E: Trivial Only specified but this is not a trivial operation." # Test that the old behavior can be restored with the option diff --git a/test/integration/test-bug-595691-empty-and-broken-archive-files b/test/integration/test-bug-595691-empty-and-broken-archive-files new file mode 100755 index 000000000..2f127221a --- /dev/null +++ b/test/integration/test-bug-595691-empty-and-broken-archive-files @@ -0,0 +1,91 @@ +#!/bin/sh +set -e + +TESTDIR=$(readlink -f $(dirname $0)) +. $TESTDIR/framework +setupenvironment +configarchitecture "i386" + +buildaptarchive +setupflataptarchive + +testaptgetupdate() { + aptget update 2>> testaptgetupdate.diff >> testaptgetupdate.diff || true + sed -i -e '/^Fetched / d' -e 's#\[[0-9]* [kMGTPY]*B\]#\[\]#' testaptgetupdate.diff + GIVEN="$1" + shift + msgtest "Test for correctness of" "apt-get update with $*" + if [ -z "$GIVEN" ]; then + echo -n "" | checkdiff - testaptgetupdate.diff && msgpass || msgfail + else + echo "$GIVEN" | checkdiff - testaptgetupdate.diff && msgpass || msgfail + fi + rm testaptgetupdate.diff +} + +touch aptarchive/en.bz2 + +testaptgetupdate "Ign file: Release.gpg +Ign file:$(readlink -f aptarchive)/ Translation-en +Get:1 file: Release [] +Reading package lists..." "empty file en.bz2 over file" + +rm aptarchive/en.bz2 +echo -n "" | bzip2 > aptarchive/en.bz2 + +testaptgetupdate "Ign file: Release.gpg +Get:1 file: Release [] +Reading package lists..." "empty archive en.bz2 over file" + +rm aptarchive/en.bz2 + +# do the same again with http instead of file +changetowebserver + +touch aptarchive/en.bz2 + +testaptgetupdate "Ign http://localhost Release.gpg +Get:1 http://localhost/ Translation-en +Get:2 http://localhost Release [] +Ign http://localhost/ Translation-en +Get:3 http://localhost Packages [] +Reading package lists..." "empty file en.bz2 over http" + +rm aptarchive/en.bz2 +echo -n "" | bzip2 > aptarchive/en.bz2 + +testaptgetupdate "Ign http://localhost Release.gpg +Get:1 http://localhost/ Translation-en [] +Get:2 http://localhost Release [] +Ign http://localhost Packages/DiffIndex +Get:3 http://localhost Packages [] +Reading package lists..." "empty archive en.bz2 over http" + +rm aptarchive/en.bz2 + +rm aptarchive/Packages +touch aptarchive/Packages +buildaptarchivefromfiles + +testaptgetupdate "Ign http://localhost Release.gpg +Ign http://localhost/ Translation-en +Get:1 http://localhost Release [] +Ign http://localhost Packages/DiffIndex +Get:2 http://localhost Packages [] +Reading package lists..." "empty archive Packages over http" + +find aptarchive/ -name 'Packages*' -type f -delete +touch aptarchive/Packages.bz2 +aptftparchive release aptarchive/ > aptarchive/Release + +#FIXME: we should response with a good error message instead +testaptgetupdate "Ign http://localhost Release.gpg +Ign http://localhost/ Translation-en +Get:1 http://localhost Release [] +Ign http://localhost Packages/DiffIndex +Get:2 http://localhost Packages +Err http://localhost Packages + Undetermined Error +W: Failed to fetch http://localhost:8080/Packages.bz2 Undetermined Error + +E: Some index files failed to download, they have been ignored, or old ones used instead." "empty file Packages over http" diff --git a/test/integration/test-bug-598669-install-postfix-gets-exim-heavy b/test/integration/test-bug-598669-install-postfix-gets-exim-heavy new file mode 100755 index 000000000..c3a77f346 --- /dev/null +++ b/test/integration/test-bug-598669-install-postfix-gets-exim-heavy @@ -0,0 +1,19 @@ +#!/bin/sh +set -e + +TESTDIR=$(readlink -f $(dirname $0)) +. $TESTDIR/framework +setupenvironment +configarchitecture "i386" +setupaptarchive + +testequal "Reading package lists... +Building dependency tree... +The following packages will be REMOVED: + exim4 exim4-daemon-light +The following NEW packages will be installed: + postfix +0 upgraded, 1 newly installed, 2 to remove and 0 not upgraded. +Need to get 0 B/1326 kB of archives. +After this operation, 2236 kB of additional disk space will be used. +E: Trivial Only specified but this is not a trivial operation." aptget install postfix --trivial-only diff --git a/test/integration/test-compressed-indexes b/test/integration/test-compressed-indexes index 0b73f4c35..97a1453f7 100755 --- a/test/integration/test-compressed-indexes +++ b/test/integration/test-compressed-indexes @@ -1,7 +1,7 @@ #!/bin/sh set -e -local TESTDIR=$(readlink -f $(dirname $0)) +TESTDIR=$(readlink -f $(dirname $0)) . $TESTDIR/framework setupenvironment diff --git a/test/integration/test-disappearing-packages b/test/integration/test-disappearing-packages index ebf2bb14f..12d215d7a 100755 --- a/test/integration/test-disappearing-packages +++ b/test/integration/test-disappearing-packages @@ -1,7 +1,7 @@ #!/bin/sh set -e -local TESTDIR=$(readlink -f $(dirname $0)) +TESTDIR=$(readlink -f $(dirname $0)) . $TESTDIR/framework setupenvironment configarchitecture "i386" diff --git a/test/integration/test-pdiff-usage b/test/integration/test-pdiff-usage index 85cbe9082..a70b6122c 100755 --- a/test/integration/test-pdiff-usage +++ b/test/integration/test-pdiff-usage @@ -1,7 +1,7 @@ #!/bin/sh set -e -local TESTDIR=$(readlink -f $(dirname $0)) +TESTDIR=$(readlink -f $(dirname $0)) . $TESTDIR/framework setupenvironment diff --git a/test/integration/test-policy-pinning b/test/integration/test-policy-pinning new file mode 100755 index 000000000..fa356ed54 --- /dev/null +++ b/test/integration/test-policy-pinning @@ -0,0 +1,228 @@ +#!/bin/sh +set -e + +TESTDIR=$(readlink -f $(dirname $0)) +. $TESTDIR/framework + +setupenvironment +configarchitecture "i386" + +buildaptarchive +setupflataptarchive + +STATUS=$(readlink -f rootdir/var/lib/dpkg/status) +APTARCHIVE=$(readlink -f aptarchive) + +testequalpolicy() { + local SP="$1" + local AP="$2" + shift 2 + testequal "Package files: + $(echo "$SP" | awk '{ printf("%3s\n",$0) }') ${STATUS} + release a=now + $(echo "$AP" | awk '{ printf("%3s\n",$0) }') file:${APTARCHIVE}/ Packages + release c= +Pinned packages:" aptcache policy $* +} + +aptget update -qq +testequalpolicy 100 500 +testequalpolicy 990 500 -t now + +sed -i aptarchive/Release -e 1i"NotAutomatic: yes" +rm rootdir/var/cache/apt/srcpkgcache.bin rootdir/var/cache/apt/pkgcache.bin +aptget update -qq + +testequalpolicy 100 1 -o Test=NotAutomatic +testequalpolicy 990 1 -o Test=NotAutomatic -t now + +sed -i aptarchive/Release -e 1i"ButAutomaticUpgrades: yes" +rm rootdir/var/cache/apt/srcpkgcache.bin rootdir/var/cache/apt/pkgcache.bin +aptget update -qq + +testequalpolicy 100 100 -o Test=ButAutomaticUpgrades +testequalpolicy 990 100 -o Test=ButAutomaticUpgrades -t now + +sed -i aptarchive/Release -e 's#NotAutomatic: yes#NotAutomatic: no#' -e '/ButAutomaticUpgrades: / d' +rm rootdir/var/cache/apt/srcpkgcache.bin rootdir/var/cache/apt/pkgcache.bin +aptget update -qq + +testequalpolicy 100 500 -o Test=Automatic +testequalpolicy 990 500 -o Test=Automatic -t now + +buildsimplenativepackage "coolstuff" "all" "1.0" "stable" +buildsimplenativepackage "coolstuff" "all" "2.0~bpo1" "backports" + +setupaptarchive + +testequalpolicycoolstuff() { + local INSTALLED="${1:-(none)}" + local CANDIDATE="${2:-(none)}" + local AB="$3" + local AS="$4" + local PB="$5" + local PINVERSION="$6" + if [ -n "$PINVERSION" ]; then + PINVERSION="Package pin: $PINVERSION + " + fi + local IS="" + local IB="" + local SB="" + local SS="" + [ "$1" = "2.0~bpo1" ] && IB="***" && SB=" + 100 $STATUS" || IB=" " + [ "$1" = "1.0" ] && IS="***" && SS=" + 100 $STATUS" || IS=" " + local BPO1ARCHIVE="" + local BPO2ARCHIVE="" + if [ ! "$7" = "2.0~bpo2" ]; then + BPO1ARCHIVE=" $(echo "$AB" | awk '{ printf("%3s\n",$0) }') file:${APTARCHIVE}/ backports/main i386 Packages" + else + BPO2ARCHIVE=" + 2.0~bpo2 $PB + $(echo "$AB" | awk '{ printf("%3s\n",$0) }') file:${APTARCHIVE}/ backports/main i386 Packages" + SB="$(echo "$SB" | tail -n 1)" + shift + fi + shift 6 + testequal "coolstuff: + Installed: $INSTALLED + Candidate: $CANDIDATE + ${PINVERSION}Version table:${BPO2ARCHIVE} + $IB 2.0~bpo1 $PB +${BPO1ARCHIVE}$SB + $IS 1.0 $PB + $(echo "$AS" | awk '{ printf("%3s\n",$0) }') file:${APTARCHIVE}/ stable/main i386 Packages$SS" \ + aptcache policy coolstuff -o Policy=${INSTALLED}-${CANDIDATE}-${AB}-${AS}-${PB} $* +} + +testequalpolicycoolstuff "" "2.0~bpo1" 500 500 0 "" +testequalpolicycoolstuff "" "1.0" 500 990 0 "" -t stable +testequalpolicycoolstuff "" "2.0~bpo1" 990 500 0 "" -t backports +echo "Package: * +Pin: release n=backports +Pin-Priority: 200" > rootdir/etc/apt/preferences +testequalpolicycoolstuff "" "1.0" 200 500 0 "" -o Test=GlobalPin +testequalpolicycoolstuff "" "1.0" 200 990 0 "" -o Test=GlobalPin -t stable +testequalpolicycoolstuff "" "2.0~bpo1" 990 500 0 "" -o Test=GlobalPin -t backports +echo "Package: * +Pin: release n=backports +Pin-Priority: 600" > rootdir/etc/apt/preferences +testequalpolicycoolstuff "" "2.0~bpo1" 600 500 0 "" -o Test=GlobalPin +testequalpolicycoolstuff "" "1.0" 600 990 0 "" -o Test=GlobalPin -t stable +echo "Package: coolstuff +Pin: release n=backports +Pin-Priority: 200" > rootdir/etc/apt/preferences +#FIXME: policy can't differentiate between two sources where one has a package specific pin in place +# testequalpolicycoolstuff "" "1.0" 500 500 200 "2.0~bpo1" -o Test=PackagePin +# testequalpolicycoolstuff "" "1.0" 990 500 200 "2.0~bpo1" -o Test=PackagePin -t backports +testequalpolicycoolstuff "" "1.0" 500 990 200 "2.0~bpo1" -o Test=PackagePin -t stable +echo "Package: coolstuff +Pin: release n=backports +Pin-Priority: 600" > rootdir/etc/apt/preferences +testequalpolicycoolstuff "" "2.0~bpo1" 500 500 600 "2.0~bpo1" -o Test=PackagePin +testequalpolicycoolstuff "" "1.0" 500 990 600 "2.0~bpo1" -o Test=PackagePin -t stable +testequalpolicycoolstuff "" "2.0~bpo1" 990 500 600 "2.0~bpo1" -o Test=PackagePin -t backports + +echo "Package: coolstuff +Pin: release n=backports +Pin-Priority: -1" > rootdir/etc/apt/preferences +# testequalpolicycoolstuff "" "1.0" 500 500 -1 "2.0~bpo1" -o Test=PackagePin +# testequalpolicycoolstuff "" "1.0" 990 500 -1 "2.0~bpo1" -o Test=PackagePin -t backports +# testequalpolicycoolstuff "" "1.0" 500 990 -1 "2.0~bpo1" -o Test=PackagePin -t stable + +rm rootdir/etc/apt/preferences +sed -i aptarchive/dists/backports/Release -e 1i"NotAutomatic: yes" +signreleasefiles +rm rootdir/var/cache/apt/srcpkgcache.bin rootdir/var/cache/apt/pkgcache.bin +aptget update -qq + +testequalpolicycoolstuff "" "1.0" 1 500 0 "" -o Test=NotAutomatic +testequalpolicycoolstuff "" "1.0" 1 990 0 "" -o Test=NotAutomatic -t stable +testequalpolicycoolstuff "" "2.0~bpo1" 990 500 0 "" -o Test=NotAutomatic -t backports +echo "Package: * +Pin: release n=backports +Pin-Priority: 200" > rootdir/etc/apt/preferences +testequalpolicycoolstuff "" "1.0" 200 500 0 "" -o Test=NotAutomatic +echo "Package: * +Pin: release n=backports +Pin-Priority: 600" > rootdir/etc/apt/preferences +testequalpolicycoolstuff "" "2.0~bpo1" 600 500 0 "" -o Test=NotAutomatic +testequalpolicycoolstuff "" "1.0" 600 990 0 "" -o Test=NotAutomatic -t stable +echo "Package: coolstuff +Pin: release n=backports +Pin-Priority: 200" > rootdir/etc/apt/preferences +testequalpolicycoolstuff "" "1.0" 1 500 200 "2.0~bpo1" -o Test=NotAutomatic +echo "Package: coolstuff +Pin: release n=backports +Pin-Priority: 600" > rootdir/etc/apt/preferences +testequalpolicycoolstuff "" "2.0~bpo1" 1 500 600 "2.0~bpo1" -o Test=NotAutomatic +testequalpolicycoolstuff "" "2.0~bpo1" 990 500 600 "2.0~bpo1" -o Test=NotAutomatic -t backports +testequalpolicycoolstuff "" "1.0" 1 990 600 "2.0~bpo1" -o Test=NotAutomatic -t stable + +rm rootdir/etc/apt/preferences +sed -i aptarchive/dists/backports/Release -e 1i"ButAutomaticUpgrades: yes" +signreleasefiles +rm rootdir/var/cache/apt/srcpkgcache.bin rootdir/var/cache/apt/pkgcache.bin +aptget update -qq + +testequalpolicycoolstuff "" "1.0" 100 500 0 "" -o Test=ButAutomaticUpgrades +testequalpolicycoolstuff "" "1.0" 100 990 0 "" -o Test=ButAutomaticUpgrades -t stable +testequalpolicycoolstuff "" "2.0~bpo1" 990 500 0 "" -o Test=ButAutomaticUpgrades -t backports +echo "Package: * +Pin: release n=backports +Pin-Priority: 200" > rootdir/etc/apt/preferences +testequalpolicycoolstuff "" "1.0" 200 500 0 "" -o Test=ButAutomaticUpgrades +echo "Package: * +Pin: release n=backports +Pin-Priority: 600" > rootdir/etc/apt/preferences +testequalpolicycoolstuff "" "2.0~bpo1" 600 500 0 "" -o Test=ButAutomaticUpgrades +testequalpolicycoolstuff "" "1.0" 600 990 0 "" -o Test=ButAutomaticUpgrades -t stable +echo "Package: coolstuff +Pin: release n=backports +Pin-Priority: 200" > rootdir/etc/apt/preferences +testequalpolicycoolstuff "" "1.0" 100 500 200 "2.0~bpo1" -o Test=ButAutomaticUpgrades +echo "Package: coolstuff +Pin: release n=backports +Pin-Priority: 600" > rootdir/etc/apt/preferences +testequalpolicycoolstuff "" "2.0~bpo1" 100 500 600 "2.0~bpo1" -o Test=ButAutomaticUpgrades +testequalpolicycoolstuff "" "2.0~bpo1" 990 500 600 "2.0~bpo1" -o Test=ButAutomaticUpgrades -t backports +testequalpolicycoolstuff "" "1.0" 100 990 600 "2.0~bpo1" -o Test=ButAutomaticUpgrades -t stable + +rm rootdir/etc/apt/preferences +aptget install coolstuff -qq > /dev/null 2> /dev/null +testequalpolicycoolstuff "1.0" "1.0" 100 500 0 "" -o Test=ButAutomaticUpgrades +aptget dist-upgrade -qq > /dev/null 2> /dev/null +testequalpolicycoolstuff "1.0" "1.0" 100 500 0 "" -o Test=ButAutomaticUpgrades +testequalpolicycoolstuff "1.0" "1.0" 100 990 0 "" -o Test=ButAutomaticUpgrades -t stable +testequalpolicycoolstuff "1.0" "2.0~bpo1" 990 500 0 "" -o Test=ButAutomaticUpgrades -t backports + +aptget install coolstuff -t backports -qq > /dev/null 2> /dev/null +testequalpolicycoolstuff "2.0~bpo1" "2.0~bpo1" 100 500 0 "" -o Test=ButAutomaticUpgrades +aptget dist-upgrade -qq > /dev/null 2> /dev/null +testequalpolicycoolstuff "2.0~bpo1" "2.0~bpo1" 100 500 0 "" -o Test=ButAutomaticUpgrades +testequalpolicycoolstuff "2.0~bpo1" "2.0~bpo1" 100 990 0 "" -o Test=ButAutomaticUpgrades -t stable +testequalpolicycoolstuff "2.0~bpo1" "2.0~bpo1" 990 500 0 "" -o Test=ButAutomaticUpgrades -t backports + +rm incoming/backports.main.pkglist incoming/backports.main.srclist +buildsimplenativepackage "coolstuff" "all" "2.0~bpo2" "backports" +setupaptarchive + +sed -i aptarchive/dists/backports/Release -e 1i"NotAutomatic: yes" +signreleasefiles +rm rootdir/var/cache/apt/srcpkgcache.bin rootdir/var/cache/apt/pkgcache.bin +aptget update -qq + +testequalpolicycoolstuff "2.0~bpo1" "2.0~bpo1" 1 500 0 "" "2.0~bpo2" -o Test=NotAutomatic +testequalpolicycoolstuff "2.0~bpo1" "2.0~bpo1" 1 990 0 "" "2.0~bpo2" -o Test=NotAutomatic -t stable +testequalpolicycoolstuff "2.0~bpo1" "2.0~bpo2" 990 500 0 "" "2.0~bpo2" -o Test=NotAutomatic -t backports + +sed -i aptarchive/dists/backports/Release -e 1i"ButAutomaticUpgrades: yes" +signreleasefiles +rm rootdir/var/cache/apt/srcpkgcache.bin rootdir/var/cache/apt/pkgcache.bin +aptget update -qq + +testequalpolicycoolstuff "2.0~bpo1" "2.0~bpo2" 100 500 0 "" "2.0~bpo2" -o Test=ButAutomaticUpgrades +testequalpolicycoolstuff "2.0~bpo1" "2.0~bpo2" 100 990 0 "" "2.0~bpo2" -o Test=ButAutomaticUpgrades -t stable +testequalpolicycoolstuff "2.0~bpo1" "2.0~bpo2" 990 500 0 "" "2.0~bpo2" -o Test=ButAutomaticUpgrades -t backports diff --git a/test/integration/test-ubuntu-bug-614993 b/test/integration/test-ubuntu-bug-614993 new file mode 100755 index 000000000..49955f231 --- /dev/null +++ b/test/integration/test-ubuntu-bug-614993 @@ -0,0 +1,59 @@ +#!/bin/sh +set -e + +TESTDIR=$(readlink -f $(dirname $0)) +. $TESTDIR/framework +setupenvironment +configarchitecture "amd64" +setupaptarchive + +# test success +UPGRADE="Reading package lists... +Building dependency tree... +The following extra packages will be installed: + libdrm-intel1 libdrm-nouveau1 libmtdev1 libutouch-grail1 libx11-xcb1 + libxcb-aux0 libxcb-dri2-0 libxfont1 xserver-common xserver-xorg-core + xserver-xorg-input-evdev xserver-xorg-input-mouse + xserver-xorg-input-synaptics xserver-xorg-input-vmmouse + xserver-xorg-input-wacom xserver-xorg-video-all xserver-xorg-video-apm + xserver-xorg-video-ark xserver-xorg-video-ati xserver-xorg-video-chips + xserver-xorg-video-cirrus xserver-xorg-video-fbdev xserver-xorg-video-i128 + xserver-xorg-video-intel xserver-xorg-video-mach64 xserver-xorg-video-mga + xserver-xorg-video-neomagic xserver-xorg-video-nouveau xserver-xorg-video-nv + xserver-xorg-video-openchrome xserver-xorg-video-r128 + xserver-xorg-video-radeon xserver-xorg-video-rendition xserver-xorg-video-s3 + xserver-xorg-video-s3virge xserver-xorg-video-savage + xserver-xorg-video-siliconmotion xserver-xorg-video-sis + xserver-xorg-video-sisusb xserver-xorg-video-tdfx xserver-xorg-video-trident + xserver-xorg-video-tseng xserver-xorg-video-vesa xserver-xorg-video-vmware + xserver-xorg-video-voodoo +Suggested packages: + xfonts-scalable gpointing-device-settings touchfreeze firmware-linux +Recommended packages: + xauth intel-gpu-tools +The following packages will be REMOVED: + xserver-xorg-video-v4l +The following NEW packages will be installed: + libmtdev1 libutouch-grail1 libx11-xcb1 libxcb-aux0 libxcb-dri2-0 +The following packages will be upgraded: + libdrm-intel1 libdrm-nouveau1 libxfont1 xserver-common xserver-xorg + xserver-xorg-core xserver-xorg-input-evdev xserver-xorg-input-mouse + xserver-xorg-input-synaptics xserver-xorg-input-vmmouse + xserver-xorg-input-wacom xserver-xorg-video-all xserver-xorg-video-apm + xserver-xorg-video-ark xserver-xorg-video-ati xserver-xorg-video-chips + xserver-xorg-video-cirrus xserver-xorg-video-fbdev xserver-xorg-video-i128 + xserver-xorg-video-intel xserver-xorg-video-mach64 xserver-xorg-video-mga + xserver-xorg-video-neomagic xserver-xorg-video-nouveau xserver-xorg-video-nv + xserver-xorg-video-openchrome xserver-xorg-video-r128 + xserver-xorg-video-radeon xserver-xorg-video-rendition xserver-xorg-video-s3 + xserver-xorg-video-s3virge xserver-xorg-video-savage + xserver-xorg-video-siliconmotion xserver-xorg-video-sis + xserver-xorg-video-sisusb xserver-xorg-video-tdfx xserver-xorg-video-trident + xserver-xorg-video-tseng xserver-xorg-video-vesa xserver-xorg-video-vmware + xserver-xorg-video-voodoo +41 upgraded, 5 newly installed, 1 to remove and 3 not upgraded. +Need to get 0 B/5505 kB of archives. +After this operation, 2294 kB disk space will be freed. +E: Trivial Only specified but this is not a trivial operation." +testequal "$UPGRADE" aptget install xserver-xorg --trivial-only + |